@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i&display=swap);





body {
  font-family: Open Sans;
}
.display-1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 3.5rem;
}
.display-1 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 2.5rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.7rem;
}
.display-4 > .mbr-iconfont {
  font-size: 0.7rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.8rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.8rem;
}
.display-7 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.8rem;
    font-size: calc( 1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.875rem + (3.5 - 1.875) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2rem;
    font-size: calc( 1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.525rem + (2.5 - 1.525) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.56rem;
    font-size: calc( 0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.895rem + (0.7 - 0.895) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 10px 15px;
  border-radius: 6px;
}
.btn-sm {
  padding: 5px 10px;
  border-radius: 6px;
}
.btn-md {
  padding: 15px 20px;
  border-radius: 6px;
}
.btn-lg {
  padding: 20px 25px;
  border-radius: 6px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #344cf1 !important;
}
.bg-info {
  background-color: #3f671b !important;
}
.bg-warning {
  background-color: #d63d3d !important;
}
.bg-danger {
  background-color: #ee9521 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #000101 !important;
  border-color: #000101 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #3f671b !important;
  border-color: #3f671b !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #1a2a0b !important;
  border-color: #1a2a0b !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #1a2a0b !important;
  border-color: #1a2a0b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0e26cb !important;
  border-color: #0e26cb !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #a42323 !important;
  border-color: #a42323 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #ee9521 !important;
  border-color: #ee9521 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #b56c0e !important;
  border-color: #b56c0e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b56c0e !important;
  border-color: #b56c0e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #cccccc;
  color: #cccccc;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #0a1c44;
  border-color: #0a1c44;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #0a1c44 !important;
  border-color: #0a1c44 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #0e1606;
  color: #0e1606;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #3f671b;
  border-color: #3f671b;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #3f671b !important;
  border-color: #3f671b !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0c21b3;
  color: #0c21b3;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #344cf1;
  border-color: #344cf1;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #344cf1 !important;
  border-color: #344cf1 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #8f1e1e;
  color: #8f1e1e;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #d63d3d;
  border-color: #d63d3d;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #d63d3d !important;
  border-color: #d63d3d !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #9d5e0c;
  color: #9d5e0c;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #ee9521;
  border-color: #ee9521;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ee9521 !important;
  border-color: #ee9521 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #0a1c44 !important;
}
.text-success {
  color: #344cf1 !important;
}
.text-info {
  color: #3f671b !important;
}
.text-warning {
  color: #d63d3d !important;
}
.text-danger {
  color: #ee9521 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #cccccc !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #000000 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0c21b3 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0e1606 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8f1e1e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #9d5e0c !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #3f671b;
}
.alert-warning {
  background-color: #d63d3d;
}
.alert-danger {
  background-color: #ee9521;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #ffffff;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #f3f4fe;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #7dcb37;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fae5e5;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fdefde;
}
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
.btn-primary:hover {
  color: #ffffff !important;
  background: white !important;
  border-color: white !important;
}
.form-control,
.jq-number__spin {
  background-color: #ffffff;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.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: #000000 !important;
  background-color: #ffffff !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: #0a1c44 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-r9t650DD9i {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r9t650DD9i .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r9t650DD9i .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-r9t650DD9i .img {
  margin: auto;
  max-height: 40px;
}
.cid-r9t650DD9i p {
  line-height: 1.5;
  margin: 0;
}
.cid-r9t650DD9i img {
  width: 169px;
}
.cid-r9t650DD9i .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-r9t650DD9i .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r9t650DD9i .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-r9t650DD9i .box {
    padding: 2rem 0rem;
  }
}
.cid-r9t650DD9i .card-title,
.cid-r9t650DD9i .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-r9t650DD9i .mbr-section-title {
  text-align: center;
}
.cid-r9t650DD9i .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r9t650DD9i .mbr-section-title,
.cid-r9t650DD9i .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r9t650DD9i .mbr-text,
.cid-r9t650DD9i .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gfNzY7t .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gfNzY7t .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gfNzY7t .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gfNzY7t .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gfNzY7t .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gfNzY7t .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gfNzY7t .dropdown-item {
  padding: 0;
}
.cid-sL4gfNzY7t .dropdown-item,
.cid-sL4gfNzY7t .nav-link,
.cid-sL4gfNzY7t .brand-name {
  font-style: normal;
}
.cid-sL4gfNzY7t .dropdown-item:hover,
.cid-sL4gfNzY7t .nav-link:hover,
.cid-sL4gfNzY7t .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gfNzY7t .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gfNzY7t .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gfNzY7t .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gfNzY7t .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gfNzY7t .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gfNzY7t .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gfNzY7t .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gfNzY7t .content-text {
  margin-bottom: 0;
}
.cid-sL4gfNzY7t .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gfNzY7t .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gfNzY7t .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gfNzY7t .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gfNzY7t .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gfNzY7t .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gfNzY7t .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gfNzY7t .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gfNzY7t .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gfNzY7t .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gfNzY7t .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gfNzY7t .content-right-side {
  text-align: center;
}
.cid-sL4gfNzY7t .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gfNzY7t .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gfNzY7t .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gfNzY7t .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gfNzY7t .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gfNzY7t .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gfNzY7t .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gfNzY7t .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gfNzY7t .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gfNzY7t .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gfNzY7t .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gfNzY7t .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gfNzY7t .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gfNzY7t .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gfNzY7t .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gfNzY7t .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gfNzY7t .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gfNzY7t .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gfNzY7t .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gfNzY7t .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gfNzY7t .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gfNzY7t .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gfNzY7t .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gfNzY7t .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gfNzY7t .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gfNzY7t .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gfNzY7t .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gfNzY7t .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-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gfNzY7t .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gfNzY7t .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gfNzY7t .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gfNzY7t .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gfNzY7t .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gfNzY7t .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gfNzY7t .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gfNzY7t button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gfNzY7t button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gfNzY7t button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gfNzY7t button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gfNzY7t button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gfNzY7t button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gfNzY7t button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gfNzY7t nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gfNzY7t nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gfNzY7t nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gfNzY7t nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gfNzY7t .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gfNzY7t .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gfNzY7t .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse.collapsing,
.cid-sL4gfNzY7t .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gfNzY7t .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gfNzY7t .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gfNzY7t .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gfNzY7t .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gfNzY7t .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gfNzY7t .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gfNzY7t .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gfNzY7t .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gfNzY7t .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gfNzY7t .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gfNzY7t .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gfNzY7t .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gfNzY7t .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gfNzY7t .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gfNzY7t .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gfNzY7t .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gfNzY7t .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gfNzY7t .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gfNzY7t .navbar-collapse.collapsing,
  .cid-sL4gfNzY7t .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gfNzY7t .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gfNzY7t .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gfNzY7t .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gfNzY7t .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gfNzY7t .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gfNzY7t .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gfNzY7t .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gfNzY7t .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gfNzY7t img {
    height: 3.8rem !important;
  }
  .cid-sL4gfNzY7t .btn {
    display: -webkit-flex;
  }
  .cid-sL4gfNzY7t button.navbar-toggler {
    display: block;
  }
  .cid-sL4gfNzY7t .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gfNzY7t .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gfNzY7t .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gfNzY7t .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gfNzY7t .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gfNzY7t .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gfNzY7t .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gfNzY7t .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gfNzY7t .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gfNzY7t .nav-link:focus {
  outline: none;
}
.cid-sL4gfNzY7t .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gfNzY7t .dropdown-item.active,
.cid-sL4gfNzY7t .dropdown-item:active {
  color: initial;
}
.cid-sL4gfNzY7t .widget-title,
.cid-sL4gfNzY7t .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gfNzY7t .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gfNzY7t .menu-logo {
    display: none;
  }
  .cid-sL4gfNzY7t .navbar {
    padding: 0;
  }
  .cid-sL4gfNzY7t .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gfNzY7t button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gfNzY7t .menu-logo {
    display: none;
  }
  .cid-sL4gfNzY7t .navbar {
    padding: 0;
  }
  .cid-sL4gfNzY7t .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gfNzY7t button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKS8LiWOsi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKS8LiWOsi .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS8LiWOsi .mbr-section-btn {
  color: #000000;
}
.cid-sKS8LiWOsi .mbr-text,
.cid-sKS8LiWOsi .mbr-section-btn {
  text-align: center;
}
.cid-r9PZvDJQxq {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-r9PZvDJQxq .card {
  align-items: center;
  -webkit-align-items: center;
}
.cid-r9PZvDJQxq .card-box {
  width: 50%;
}
.cid-r9PZvDJQxq .card-img {
  padding: 5rem;
  border: 0px solid #e9e9e9;
  border-radius: 50%;
  height: 100px;
  width: 50%;
  align-items: center;
  justify-content: left;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-r9PZvDJQxq .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-r9PZvDJQxq .mbr-text {
  color: #656565;
}
.cid-r9PZvDJQxq p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-r9PZvDJQxq .card {
    margin-bottom: -3.5rem;
  }
}
.cid-r9PZvDJQxq .card-title,
.cid-r9PZvDJQxq .card-img {
  color: #0087ab;
  text-align: center;
  width: 50%;
}
.cid-r9PZvDJQxq .mbr-section-title {
  text-align: center;
  width: 50%;
}
.cid-r9PZvDJQxq .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
  width: 50%;
}
.cid-r9PZvDJQxq .line-wrap {
  display: inline-block;
  width: 50%;
}
.cid-r9PZvDJQxq .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-r9PZvDJQxq .line-wrap2 {
  display: inline-block;
}
.cid-r9PZvDJQxq .line2 {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cid-r9PZvDJQxq .mbr-section-title,
.cid-r9PZvDJQxq .line-wrap {
  text-align: center;
}
.cid-r9PZvDJQxq .mbr-text,
.cid-r9PZvDJQxq .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-r9PZvDJQxq .mbr-text,
.cid-r9PZvDJQxq .line-wrap2 B {
  color: #000000;
}
.cid-r9S2wjeATr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-r9S2wjeATr .links {
  text-align: center;
  color: #ffffff;
}
.cid-r9S2wjeATr p {
  margin: 0;
}
.cid-r9OVcEmBT7 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-r9OVcEmBT7 .links {
  text-align: center;
  color: #ffffff;
}
.cid-r9OVcEmBT7 p {
  margin: 0;
}
.cid-r9OQtzu6aj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r9OQtzu6aj .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-r9OQtzu6aj .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r9OQtzu6aj .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-r9OQtzu6aj .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-r9OQtzu6aj .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r9OQtzu6aj .text2 {
  color: #000000;
  text-align: left;
}
.cid-r9OQtzu6aj .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r9OQtzu6aj .logo-title {
  text-align: center;
}
.cid-r9OQtzu6aj .logo-sub-title {
  text-align: center;
}
.cid-r9OQtzu6aj .links {
  text-align: center;
  color: #656565;
}
.cid-r9OQtzu6aj .logo-sub-title i {
  color: #9e9e9e;
}
.cid-r9QxiKH3Pq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r9QxiKH3Pq .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r9QxiKH3Pq .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-r9QxiKH3Pq .img {
  margin: auto;
  max-height: 40px;
}
.cid-r9QxiKH3Pq p {
  line-height: 1.5;
  margin: 0;
}
.cid-r9QxiKH3Pq img {
  width: 169px;
}
.cid-r9QxiKH3Pq .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-r9QxiKH3Pq .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r9QxiKH3Pq .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-r9QxiKH3Pq .box {
    padding: 2rem 3rem;
  }
}
.cid-r9QxiKH3Pq .card-title,
.cid-r9QxiKH3Pq .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-r9QxiKH3Pq .mbr-section-title {
  text-align: center;
}
.cid-r9QxiKH3Pq .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r9QxiKH3Pq .mbr-section-title,
.cid-r9QxiKH3Pq .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r9QxiKH3Pq .mbr-text,
.cid-r9QxiKH3Pq .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4goX4NxE .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4goX4NxE .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4goX4NxE .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4goX4NxE .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4goX4NxE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4goX4NxE .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4goX4NxE .dropdown-item {
  padding: 0;
}
.cid-sL4goX4NxE .dropdown-item,
.cid-sL4goX4NxE .nav-link,
.cid-sL4goX4NxE .brand-name {
  font-style: normal;
}
.cid-sL4goX4NxE .dropdown-item:hover,
.cid-sL4goX4NxE .nav-link:hover,
.cid-sL4goX4NxE .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4goX4NxE .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4goX4NxE .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4goX4NxE .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4goX4NxE .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4goX4NxE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4goX4NxE .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4goX4NxE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4goX4NxE .content-text {
  margin-bottom: 0;
}
.cid-sL4goX4NxE .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4goX4NxE .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4goX4NxE .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4goX4NxE .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4goX4NxE .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4goX4NxE .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4goX4NxE .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4goX4NxE .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4goX4NxE .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4goX4NxE .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4goX4NxE .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4goX4NxE .content-right-side {
  text-align: center;
}
.cid-sL4goX4NxE .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4goX4NxE .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4goX4NxE .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4goX4NxE .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4goX4NxE .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4goX4NxE .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4goX4NxE .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4goX4NxE .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4goX4NxE .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4goX4NxE .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4goX4NxE .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4goX4NxE .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4goX4NxE .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4goX4NxE .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4goX4NxE .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4goX4NxE .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4goX4NxE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4goX4NxE .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4goX4NxE .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4goX4NxE .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4goX4NxE .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4goX4NxE .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4goX4NxE .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4goX4NxE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4goX4NxE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4goX4NxE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4goX4NxE .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4goX4NxE .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-sL4goX4NxE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4goX4NxE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4goX4NxE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4goX4NxE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4goX4NxE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4goX4NxE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4goX4NxE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4goX4NxE .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4goX4NxE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4goX4NxE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4goX4NxE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4goX4NxE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4goX4NxE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4goX4NxE button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4goX4NxE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4goX4NxE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4goX4NxE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4goX4NxE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4goX4NxE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4goX4NxE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4goX4NxE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4goX4NxE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4goX4NxE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4goX4NxE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4goX4NxE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4goX4NxE .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse.collapsing,
.cid-sL4goX4NxE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4goX4NxE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4goX4NxE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4goX4NxE .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4goX4NxE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4goX4NxE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4goX4NxE .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4goX4NxE .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4goX4NxE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4goX4NxE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4goX4NxE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4goX4NxE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4goX4NxE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4goX4NxE .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4goX4NxE .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4goX4NxE .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4goX4NxE .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4goX4NxE .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4goX4NxE .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4goX4NxE .navbar-collapse.collapsing,
  .cid-sL4goX4NxE .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4goX4NxE .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4goX4NxE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4goX4NxE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4goX4NxE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4goX4NxE .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4goX4NxE .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4goX4NxE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4goX4NxE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4goX4NxE img {
    height: 3.8rem !important;
  }
  .cid-sL4goX4NxE .btn {
    display: -webkit-flex;
  }
  .cid-sL4goX4NxE button.navbar-toggler {
    display: block;
  }
  .cid-sL4goX4NxE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4goX4NxE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4goX4NxE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4goX4NxE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4goX4NxE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4goX4NxE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4goX4NxE .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4goX4NxE .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4goX4NxE .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4goX4NxE .nav-link:focus {
  outline: none;
}
.cid-sL4goX4NxE .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4goX4NxE .dropdown-item.active,
.cid-sL4goX4NxE .dropdown-item:active {
  color: initial;
}
.cid-sL4goX4NxE .widget-title,
.cid-sL4goX4NxE .widget-icon {
  color: #e9e9e9;
}
.cid-sL4goX4NxE .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4goX4NxE .menu-logo {
    display: none;
  }
  .cid-sL4goX4NxE .navbar {
    padding: 0;
  }
  .cid-sL4goX4NxE .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4goX4NxE button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4goX4NxE .menu-logo {
    display: none;
  }
  .cid-sL4goX4NxE .navbar {
    padding: 0;
  }
  .cid-sL4goX4NxE .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4goX4NxE button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-r9Rae2SRaj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-r9Rae2SRaj .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-r9Rae2SRaj .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-r9Rae2SRaj .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-r9Rae2SRaj .img {
  margin: auto;
}
.cid-r9Rae2SRaj .card-box {
  width: 100%;
}
.cid-r9Rae2SRaj p {
  line-height: 1.5;
  margin: 0;
}
.cid-r9Rae2SRaj .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-r9Rae2SRaj .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-r9Rae2SRaj .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-r9Rae2SRaj img {
  width: 100%;
}
.cid-r9Rae2SRaj .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-r9Rae2SRaj .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-r9Rae2SRaj .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-r9Rae2SRaj .box {
    padding: 2rem 3rem;
  }
}
.cid-r9Rae2SRaj .card-title,
.cid-r9Rae2SRaj .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-r9Rae2SRaj .mbr-section-title {
  text-align: center;
}
.cid-r9Rae2SRaj .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-r9Rae2SRaj .mbr-section-title,
.cid-r9Rae2SRaj .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-r9Rae2SRaj .mbr-text,
.cid-r9Rae2SRaj .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-r9Rae2SRaj .mbr-text,
.cid-r9Rae2SRaj .line-wrap2 B {
  color: #ee9521;
}
.cid-r9RbChzaA2 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-r9RbChzaA2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-r9RbChzaA2 .mbr-section-btn {
  color: #000000;
}
.cid-r9S5j0VlZe {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-r9S5j0VlZe .links {
  text-align: center;
  color: #ffffff;
}
.cid-r9S5j0VlZe p {
  margin: 0;
}
.cid-r9QxiNuNCm {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-r9QxiNuNCm .links {
  text-align: center;
  color: #ffffff;
}
.cid-r9QxiNuNCm p {
  margin: 0;
}
.cid-r9QxiO9M3S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-r9QxiO9M3S .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-r9QxiO9M3S .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-r9QxiO9M3S .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-r9QxiO9M3S .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-r9QxiO9M3S .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-r9QxiO9M3S .text2 {
  color: #000000;
  text-align: left;
}
.cid-r9QxiO9M3S .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-r9QxiO9M3S .logo-title {
  text-align: center;
}
.cid-r9QxiO9M3S .logo-sub-title {
  text-align: center;
}
.cid-r9QxiO9M3S .links {
  text-align: center;
  color: #656565;
}
.cid-r9QxiO9M3S .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ra9x0isfIK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra9x0isfIK .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra9x0isfIK .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-ra9x0isfIK .img {
  margin: auto;
  max-height: 40px;
}
.cid-ra9x0isfIK p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra9x0isfIK img {
  width: 169px;
}
.cid-ra9x0isfIK .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra9x0isfIK .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra9x0isfIK .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra9x0isfIK .box {
    padding: 2rem 3rem;
  }
}
.cid-ra9x0isfIK .card-title,
.cid-ra9x0isfIK .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-ra9x0isfIK .mbr-section-title {
  text-align: center;
}
.cid-ra9x0isfIK .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra9x0isfIK .mbr-section-title,
.cid-ra9x0isfIK .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra9x0isfIK .mbr-text,
.cid-ra9x0isfIK .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gR1yyow .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gR1yyow .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gR1yyow .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gR1yyow .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gR1yyow .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gR1yyow .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gR1yyow .dropdown-item {
  padding: 0;
}
.cid-sL4gR1yyow .dropdown-item,
.cid-sL4gR1yyow .nav-link,
.cid-sL4gR1yyow .brand-name {
  font-style: normal;
}
.cid-sL4gR1yyow .dropdown-item:hover,
.cid-sL4gR1yyow .nav-link:hover,
.cid-sL4gR1yyow .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gR1yyow .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gR1yyow .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gR1yyow .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gR1yyow .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gR1yyow .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gR1yyow .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gR1yyow .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gR1yyow .content-text {
  margin-bottom: 0;
}
.cid-sL4gR1yyow .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gR1yyow .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gR1yyow .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gR1yyow .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gR1yyow .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gR1yyow .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gR1yyow .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gR1yyow .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gR1yyow .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gR1yyow .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gR1yyow .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gR1yyow .content-right-side {
  text-align: center;
}
.cid-sL4gR1yyow .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gR1yyow .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gR1yyow .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gR1yyow .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gR1yyow .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gR1yyow .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gR1yyow .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gR1yyow .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gR1yyow .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gR1yyow .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gR1yyow .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gR1yyow .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gR1yyow .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gR1yyow .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gR1yyow .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gR1yyow .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gR1yyow .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gR1yyow .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gR1yyow .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gR1yyow .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gR1yyow .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gR1yyow .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gR1yyow .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gR1yyow .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gR1yyow .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gR1yyow .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gR1yyow .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gR1yyow .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-sL4gR1yyow .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gR1yyow .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gR1yyow .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gR1yyow .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gR1yyow .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gR1yyow .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gR1yyow .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gR1yyow .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gR1yyow .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gR1yyow .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gR1yyow .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gR1yyow .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gR1yyow button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gR1yyow button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gR1yyow button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gR1yyow button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gR1yyow button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gR1yyow button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gR1yyow button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gR1yyow nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gR1yyow nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gR1yyow nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gR1yyow nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gR1yyow .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gR1yyow .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gR1yyow .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse.collapsing,
.cid-sL4gR1yyow .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gR1yyow .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gR1yyow .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gR1yyow .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gR1yyow .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gR1yyow .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gR1yyow .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gR1yyow .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gR1yyow .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gR1yyow .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gR1yyow .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gR1yyow .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gR1yyow .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gR1yyow .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gR1yyow .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gR1yyow .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gR1yyow .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gR1yyow .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gR1yyow .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gR1yyow .navbar-collapse.collapsing,
  .cid-sL4gR1yyow .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gR1yyow .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gR1yyow .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gR1yyow .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gR1yyow .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gR1yyow .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gR1yyow .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gR1yyow .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gR1yyow .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gR1yyow img {
    height: 3.8rem !important;
  }
  .cid-sL4gR1yyow .btn {
    display: -webkit-flex;
  }
  .cid-sL4gR1yyow button.navbar-toggler {
    display: block;
  }
  .cid-sL4gR1yyow .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gR1yyow .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gR1yyow .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gR1yyow .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gR1yyow .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gR1yyow .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gR1yyow .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gR1yyow .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gR1yyow .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gR1yyow .nav-link:focus {
  outline: none;
}
.cid-sL4gR1yyow .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gR1yyow .dropdown-item.active,
.cid-sL4gR1yyow .dropdown-item:active {
  color: initial;
}
.cid-sL4gR1yyow .widget-title,
.cid-sL4gR1yyow .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gR1yyow .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gR1yyow .menu-logo {
    display: none;
  }
  .cid-sL4gR1yyow .navbar {
    padding: 0;
  }
  .cid-sL4gR1yyow .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gR1yyow button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gR1yyow .menu-logo {
    display: none;
  }
  .cid-sL4gR1yyow .navbar {
    padding: 0;
  }
  .cid-sL4gR1yyow .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gR1yyow button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-ra9x0jvgRY {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-ra9x0jvgRY .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra9x0jvgRY .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-ra9x0jvgRY .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-ra9x0jvgRY .img {
  margin: auto;
}
.cid-ra9x0jvgRY .card-box {
  width: 100%;
}
.cid-ra9x0jvgRY p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra9x0jvgRY .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-ra9x0jvgRY .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra9x0jvgRY .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-ra9x0jvgRY img {
  width: 100%;
}
.cid-ra9x0jvgRY .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra9x0jvgRY .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra9x0jvgRY .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra9x0jvgRY .box {
    padding: 2rem 3rem;
  }
}
.cid-ra9x0jvgRY .card-title,
.cid-ra9x0jvgRY .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-ra9x0jvgRY .mbr-section-title {
  text-align: center;
}
.cid-ra9x0jvgRY .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra9x0jvgRY .mbr-section-title,
.cid-ra9x0jvgRY .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra9x0jvgRY .mbr-text,
.cid-ra9x0jvgRY .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-ra9x0jvgRY .mbr-text,
.cid-ra9x0jvgRY .line-wrap2 B {
  color: #3f671b;
}
.cid-ra9x0khOX9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra9x0khOX9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ra9x0khOX9 .mbr-section-btn {
  color: #000000;
}
.cid-svKBpWQtAJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svKBpWQtAJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svKBpWQtAJ .mbr-section-btn {
  color: #000000;
}
.cid-svKBpWQtAJ .mbr-text,
.cid-svKBpWQtAJ .mbr-section-btn {
  color: #ffffff;
}
.cid-svKBYr6uzw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-svKBYr6uzw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svKBYr6uzw .mbr-section-btn {
  color: #000000;
}
.cid-svKBYr6uzw .mbr-text,
.cid-svKBYr6uzw .mbr-section-btn {
  color: #0a1c44;
}
.cid-stdsx9wNla {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stdsx9wNla .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stdsx9wNla .mbr-section-btn {
  color: #000000;
}
.cid-stdudYigE0 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-stdudYigE0 .mbr-section-subtitle {
  color: #767676;
}
.cid-stdudYigE0 .container-table {
  margin: 0 auto;
}
.cid-stdudYigE0 table.dataTable thead .sorting:before,
.cid-stdudYigE0 table.dataTable thead .sorting:after,
.cid-stdudYigE0 table.dataTable thead .sorting_asc:before,
.cid-stdudYigE0 table.dataTable thead .sorting_asc:after,
.cid-stdudYigE0 table.dataTable thead .sorting_desc:before,
.cid-stdudYigE0 table.dataTable thead .sorting_desc:after,
.cid-stdudYigE0 table.dataTable thead .sorting_asc_disabled:before,
.cid-stdudYigE0 table.dataTable thead .sorting_asc_disabled:after,
.cid-stdudYigE0 table.dataTable thead .sorting_desc_disabled:before,
.cid-stdudYigE0 table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-stdudYigE0 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-stdudYigE0 .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-stdudYigE0 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-stdudYigE0 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-stdudYigE0 .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-stdudYigE0 .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-stdudYigE0 .table-heads {
  color: #ffffff;
}
.cid-stdudYigE0 .dataTables_wrapper {
  display: block;
}
.cid-stdudYigE0 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-stdudYigE0 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-stdudYigE0 table {
  width: auto !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-stdudYigE0 table td,
.cid-stdudYigE0 table th {
  white-space: nowrap;
}
.cid-stdudYigE0 table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-stdudYigE0 table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-stdudYigE0 table td {
  border-top: 1px solid #ffffff;
}
.cid-stdudYigE0 table.table {
  background: #ececec;
}
.cid-stdudYigE0 .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-stdudYigE0 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-stdudYigE0 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-stdudYigE0 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-stdudYigE0 .dataTables_filter {
    text-align: center;
  }
  .cid-stdudYigE0 .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-stdudYigE0 .mbr-section-title,
.cid-stdudYigE0 .line-wrap {
  text-align: center;
}
.cid-stdudYigE0 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-stdzW0rxyl {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-stdzW0rxyl .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stdzW0rxyl .mbr-section-btn {
  color: #000000;
}
.cid-svNixA5cto {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svNixA5cto .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNixA5cto .mbr-section-btn {
  color: #000000;
}
.cid-stdAryO9I1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-stdAryO9I1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stdAryO9I1 .mbr-section-btn {
  color: #000000;
}
.cid-stdQyjCCO9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stdQyjCCO9 .mbr-section-subtitle {
  color: #767676;
}
.cid-stdQyjCCO9 .container-table {
  margin: 0 auto;
}
.cid-stdQyjCCO9 table.dataTable thead .sorting:before,
.cid-stdQyjCCO9 table.dataTable thead .sorting:after,
.cid-stdQyjCCO9 table.dataTable thead .sorting_asc:before,
.cid-stdQyjCCO9 table.dataTable thead .sorting_asc:after,
.cid-stdQyjCCO9 table.dataTable thead .sorting_desc:before,
.cid-stdQyjCCO9 table.dataTable thead .sorting_desc:after,
.cid-stdQyjCCO9 table.dataTable thead .sorting_asc_disabled:before,
.cid-stdQyjCCO9 table.dataTable thead .sorting_asc_disabled:after,
.cid-stdQyjCCO9 table.dataTable thead .sorting_desc_disabled:before,
.cid-stdQyjCCO9 table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-stdQyjCCO9 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-stdQyjCCO9 .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-stdQyjCCO9 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #3f671b;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-stdQyjCCO9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-stdQyjCCO9 .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #0a1c44;
}
.cid-stdQyjCCO9 .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-stdQyjCCO9 .table-heads {
  color: #ffffff;
}
.cid-stdQyjCCO9 .dataTables_wrapper {
  display: block;
}
.cid-stdQyjCCO9 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-stdQyjCCO9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-stdQyjCCO9 table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-stdQyjCCO9 table td,
.cid-stdQyjCCO9 table th {
  white-space: nowrap;
}
.cid-stdQyjCCO9 table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-stdQyjCCO9 table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-stdQyjCCO9 table td {
  border-top: 1px solid #ffffff;
}
.cid-stdQyjCCO9 table.table {
  background: #ececec;
}
.cid-stdQyjCCO9 .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-stdQyjCCO9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-stdQyjCCO9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-stdQyjCCO9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-stdQyjCCO9 .dataTables_filter {
    text-align: center;
  }
  .cid-stdQyjCCO9 .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-stdQyjCCO9 .mbr-section-title,
.cid-stdQyjCCO9 .line-wrap {
  text-align: center;
}
.cid-stdQyjCCO9 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sw3NnAcZqU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sw3NnAcZqU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sw3NnAcZqU .mbr-section-btn {
  color: #000000;
}
.cid-stdYHrrnlQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stdYHrrnlQ .mbr-section-subtitle {
  color: #767676;
}
.cid-stdYHrrnlQ .container-table {
  margin: 0 auto;
}
.cid-stdYHrrnlQ table.dataTable thead .sorting:before,
.cid-stdYHrrnlQ table.dataTable thead .sorting:after,
.cid-stdYHrrnlQ table.dataTable thead .sorting_asc:before,
.cid-stdYHrrnlQ table.dataTable thead .sorting_asc:after,
.cid-stdYHrrnlQ table.dataTable thead .sorting_desc:before,
.cid-stdYHrrnlQ table.dataTable thead .sorting_desc:after,
.cid-stdYHrrnlQ table.dataTable thead .sorting_asc_disabled:before,
.cid-stdYHrrnlQ table.dataTable thead .sorting_asc_disabled:after,
.cid-stdYHrrnlQ table.dataTable thead .sorting_desc_disabled:before,
.cid-stdYHrrnlQ table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-stdYHrrnlQ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-stdYHrrnlQ .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-stdYHrrnlQ .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-stdYHrrnlQ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-stdYHrrnlQ .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  color: #0a1c44;
}
.cid-stdYHrrnlQ .head-item:hover {
  background: #ffffff;
  color: inherit;
}
.cid-stdYHrrnlQ .table-heads {
  color: #ffffff;
}
.cid-stdYHrrnlQ .dataTables_wrapper {
  display: block;
}
.cid-stdYHrrnlQ .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-stdYHrrnlQ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-stdYHrrnlQ table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-stdYHrrnlQ table td,
.cid-stdYHrrnlQ table th {
  white-space: nowrap;
}
.cid-stdYHrrnlQ table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-stdYHrrnlQ table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-stdYHrrnlQ table td {
  border-top: 1px solid #ffffff;
}
.cid-stdYHrrnlQ table.table {
  background: #ececec;
}
.cid-stdYHrrnlQ .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-stdYHrrnlQ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-stdYHrrnlQ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-stdYHrrnlQ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-stdYHrrnlQ .dataTables_filter {
    text-align: center;
  }
  .cid-stdYHrrnlQ .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-stdYHrrnlQ .mbr-section-title,
.cid-stdYHrrnlQ .line-wrap {
  text-align: center;
}
.cid-stdYHrrnlQ .mbr-section-sub-title {
  text-align: center;
  color: #0a1c44;
}
.cid-ste0biYRrd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ste0biYRrd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ste0biYRrd .mbr-section-btn {
  color: #000000;
}
.cid-stdEjVWIqC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-stdEjVWIqC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stdEjVWIqC .mbr-section-btn {
  color: #000000;
}
.cid-svNpoS2VkL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svNpoS2VkL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNpoS2VkL .mbr-section-btn {
  color: #000000;
}
.cid-svNp97qgnw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-svNp97qgnw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNp97qgnw .mbr-section-btn {
  color: #000000;
}
.cid-svNqQG9lBw {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-svNqQG9lBw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNqQG9lBw .mbr-section-btn {
  color: #000000;
}
.cid-svNqQG9lBw .mbr-text,
.cid-svNqQG9lBw .mbr-section-btn {
  color: #ffffff;
}
.cid-ste4AINev7 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-ste4AINev7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ste4AINev7 .mbr-section-btn {
  color: #000000;
}
.cid-svNsDdAx8j {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNsDdAx8j .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNsDdAx8j .mbr-section-btn {
  color: #000000;
}
.cid-ste5IGva3w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-ste5IGva3w .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ste5IGva3w .mbr-section-btn {
  color: #000000;
}
.cid-ste5Y9snaQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ste5Y9snaQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ste5Y9snaQ .mbr-section-btn {
  color: #000000;
}
.cid-ste7v0yNFz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ste7v0yNFz .mbr-section-subtitle {
  color: #767676;
}
.cid-ste7v0yNFz .container-table {
  margin: 0 auto;
}
.cid-ste7v0yNFz table.dataTable thead .sorting:before,
.cid-ste7v0yNFz table.dataTable thead .sorting:after,
.cid-ste7v0yNFz table.dataTable thead .sorting_asc:before,
.cid-ste7v0yNFz table.dataTable thead .sorting_asc:after,
.cid-ste7v0yNFz table.dataTable thead .sorting_desc:before,
.cid-ste7v0yNFz table.dataTable thead .sorting_desc:after,
.cid-ste7v0yNFz table.dataTable thead .sorting_asc_disabled:before,
.cid-ste7v0yNFz table.dataTable thead .sorting_asc_disabled:after,
.cid-ste7v0yNFz table.dataTable thead .sorting_desc_disabled:before,
.cid-ste7v0yNFz table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-ste7v0yNFz .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-ste7v0yNFz .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-ste7v0yNFz .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-ste7v0yNFz .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-ste7v0yNFz .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-ste7v0yNFz .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-ste7v0yNFz .table-heads {
  color: #ffffff;
}
.cid-ste7v0yNFz .dataTables_wrapper {
  display: block;
}
.cid-ste7v0yNFz .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-ste7v0yNFz .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-ste7v0yNFz table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-ste7v0yNFz table td,
.cid-ste7v0yNFz table th {
  white-space: nowrap;
}
.cid-ste7v0yNFz table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-ste7v0yNFz table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-ste7v0yNFz table td {
  border-top: 1px solid #ffffff;
}
.cid-ste7v0yNFz table.table {
  background: #ececec;
}
.cid-ste7v0yNFz .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-ste7v0yNFz .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-ste7v0yNFz .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-ste7v0yNFz .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-ste7v0yNFz .dataTables_filter {
    text-align: center;
  }
  .cid-ste7v0yNFz .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-ste7v0yNFz .mbr-section-title,
.cid-ste7v0yNFz .line-wrap {
  text-align: center;
}
.cid-ste7v0yNFz .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-stebQdJMd4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stebQdJMd4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stebQdJMd4 .mbr-section-btn {
  color: #000000;
}
.cid-svNC4YUeEq {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svNC4YUeEq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNC4YUeEq .mbr-section-btn {
  color: #000000;
}
.cid-svNC4YUeEq .mbr-text,
.cid-svNC4YUeEq .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNCaDFrxC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNCaDFrxC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNCaDFrxC .mbr-section-btn {
  color: #000000;
}
.cid-svNCaDFrxC .mbr-text,
.cid-svNCaDFrxC .mbr-section-btn {
  color: #0a1c44;
}
.cid-stedB6xo4F {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-stedB6xo4F .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stedB6xo4F .mbr-section-btn {
  color: #000000;
}
.cid-stefQARcCu {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stefQARcCu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stefQARcCu .mbr-section-btn {
  color: #000000;
}
.cid-stehaTPFUf {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-stehaTPFUf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stehaTPFUf .mbr-section-btn {
  color: #000000;
}
.cid-svNFy8d61B {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svNFy8d61B .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNFy8d61B .mbr-section-btn {
  color: #000000;
}
.cid-svNFy8d61B .mbr-text,
.cid-svNFy8d61B .mbr-section-btn {
  color: #ececec;
}
.cid-svNFzThC7O {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNFzThC7O .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNFzThC7O .mbr-section-btn {
  color: #000000;
}
.cid-svNFzThC7O .mbr-text,
.cid-svNFzThC7O .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNGVGO0dC {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svNGVGO0dC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNGVGO0dC .mbr-section-btn {
  color: #000000;
}
.cid-svNGVGO0dC .mbr-text,
.cid-svNGVGO0dC .mbr-section-btn {
  color: #ececec;
}
.cid-svNGXYHDzb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNGXYHDzb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNGXYHDzb .mbr-section-btn {
  color: #000000;
}
.cid-svNGXYHDzb .mbr-text,
.cid-svNGXYHDzb .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNHpt2ZIz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svNHpt2ZIz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNHpt2ZIz .mbr-section-btn {
  color: #000000;
}
.cid-svNHpt2ZIz .mbr-text,
.cid-svNHpt2ZIz .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNHEKF0yM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNHEKF0yM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNHEKF0yM .mbr-section-btn {
  color: #000000;
}
.cid-svNHEKF0yM .mbr-text,
.cid-svNHEKF0yM .mbr-section-btn {
  color: #0a1c44;
}
.cid-steiQZTbMy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-steiQZTbMy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steiQZTbMy .mbr-section-btn {
  color: #000000;
}
.cid-stejpEvTN3 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stejpEvTN3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stejpEvTN3 .mbr-section-btn {
  color: #000000;
}
.cid-stel59s0ID {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-stel59s0ID .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stel59s0ID .mbr-section-btn {
  color: #000000;
}
.cid-stel59s0ID P {
  color: #0a1c44;
  text-align: left;
}
.cid-steoUzZZqX {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-steoUzZZqX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steoUzZZqX .mbr-section-btn {
  color: #000000;
}
.cid-svKzZBUyBl {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ececec;
}
.cid-svKzZBUyBl .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-svKzZBUyBl img {
  width: 100%;
}
.cid-svKzZBUyBl p {
  line-height: 1.6;
}
.cid-svKzZBUyBl .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svKzZBUyBl .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-svKzZBUyBl .mbr-text,
.cid-svKzZBUyBl .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-svKzZBUyBl .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-svKzZBUyBl .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-svKzZBUyBl .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-svKzZBUyBl .mbr-section-title,
.cid-svKzZBUyBl .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-svKzZBUyBl .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-ra9x0kUC2n {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-ra9x0kUC2n .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra9x0kUC2n p {
  margin: 0;
}
.cid-ra9x0lj2rz {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-ra9x0lj2rz .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra9x0lj2rz p {
  margin: 0;
}
.cid-ra9x0lHz1t {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra9x0lHz1t .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-ra9x0lHz1t .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ra9x0lHz1t .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra9x0lHz1t .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-ra9x0lHz1t .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ra9x0lHz1t .text2 {
  color: #000000;
  text-align: left;
}
.cid-ra9x0lHz1t .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ra9x0lHz1t .logo-title {
  text-align: center;
}
.cid-ra9x0lHz1t .logo-sub-title {
  text-align: center;
}
.cid-ra9x0lHz1t .links {
  text-align: center;
  color: #656565;
}
.cid-ra9x0lHz1t .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ra7o1jiwzI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra7o1jiwzI .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra7o1jiwzI .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-ra7o1jiwzI .img {
  margin: auto;
  max-height: 40px;
}
.cid-ra7o1jiwzI p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra7o1jiwzI img {
  width: 169px;
}
.cid-ra7o1jiwzI .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra7o1jiwzI .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra7o1jiwzI .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra7o1jiwzI .box {
    padding: 2rem 3rem;
  }
}
.cid-ra7o1jiwzI .card-title,
.cid-ra7o1jiwzI .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-ra7o1jiwzI .mbr-section-title {
  text-align: center;
}
.cid-ra7o1jiwzI .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra7o1jiwzI .mbr-section-title,
.cid-ra7o1jiwzI .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra7o1jiwzI .mbr-text,
.cid-ra7o1jiwzI .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gI2fEbE .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gI2fEbE .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gI2fEbE .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gI2fEbE .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gI2fEbE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gI2fEbE .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gI2fEbE .dropdown-item {
  padding: 0;
}
.cid-sL4gI2fEbE .dropdown-item,
.cid-sL4gI2fEbE .nav-link,
.cid-sL4gI2fEbE .brand-name {
  font-style: normal;
}
.cid-sL4gI2fEbE .dropdown-item:hover,
.cid-sL4gI2fEbE .nav-link:hover,
.cid-sL4gI2fEbE .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gI2fEbE .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gI2fEbE .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gI2fEbE .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gI2fEbE .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gI2fEbE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gI2fEbE .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gI2fEbE .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gI2fEbE .content-text {
  margin-bottom: 0;
}
.cid-sL4gI2fEbE .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gI2fEbE .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gI2fEbE .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gI2fEbE .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gI2fEbE .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gI2fEbE .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gI2fEbE .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gI2fEbE .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gI2fEbE .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gI2fEbE .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gI2fEbE .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gI2fEbE .content-right-side {
  text-align: center;
}
.cid-sL4gI2fEbE .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gI2fEbE .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gI2fEbE .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gI2fEbE .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gI2fEbE .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gI2fEbE .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gI2fEbE .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gI2fEbE .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gI2fEbE .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gI2fEbE .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gI2fEbE .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gI2fEbE .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gI2fEbE .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gI2fEbE .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gI2fEbE .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gI2fEbE .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gI2fEbE .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gI2fEbE .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gI2fEbE .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gI2fEbE .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gI2fEbE .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gI2fEbE .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gI2fEbE .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gI2fEbE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gI2fEbE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gI2fEbE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gI2fEbE .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gI2fEbE .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-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gI2fEbE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gI2fEbE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gI2fEbE .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gI2fEbE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gI2fEbE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gI2fEbE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gI2fEbE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gI2fEbE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gI2fEbE button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gI2fEbE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gI2fEbE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gI2fEbE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gI2fEbE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gI2fEbE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gI2fEbE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gI2fEbE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gI2fEbE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gI2fEbE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gI2fEbE .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gI2fEbE .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gI2fEbE .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse.collapsing,
.cid-sL4gI2fEbE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gI2fEbE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gI2fEbE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gI2fEbE .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gI2fEbE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gI2fEbE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gI2fEbE .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gI2fEbE .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gI2fEbE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gI2fEbE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gI2fEbE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gI2fEbE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gI2fEbE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gI2fEbE .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gI2fEbE .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gI2fEbE .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gI2fEbE .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gI2fEbE .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gI2fEbE .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gI2fEbE .navbar-collapse.collapsing,
  .cid-sL4gI2fEbE .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gI2fEbE .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gI2fEbE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gI2fEbE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gI2fEbE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gI2fEbE .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gI2fEbE .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gI2fEbE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gI2fEbE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gI2fEbE img {
    height: 3.8rem !important;
  }
  .cid-sL4gI2fEbE .btn {
    display: -webkit-flex;
  }
  .cid-sL4gI2fEbE button.navbar-toggler {
    display: block;
  }
  .cid-sL4gI2fEbE .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gI2fEbE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gI2fEbE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gI2fEbE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gI2fEbE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gI2fEbE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gI2fEbE .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gI2fEbE .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gI2fEbE .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gI2fEbE .nav-link:focus {
  outline: none;
}
.cid-sL4gI2fEbE .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gI2fEbE .dropdown-item.active,
.cid-sL4gI2fEbE .dropdown-item:active {
  color: initial;
}
.cid-sL4gI2fEbE .widget-title,
.cid-sL4gI2fEbE .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gI2fEbE .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gI2fEbE .menu-logo {
    display: none;
  }
  .cid-sL4gI2fEbE .navbar {
    padding: 0;
  }
  .cid-sL4gI2fEbE .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gI2fEbE button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gI2fEbE .menu-logo {
    display: none;
  }
  .cid-sL4gI2fEbE .navbar {
    padding: 0;
  }
  .cid-sL4gI2fEbE .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gI2fEbE button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-ra7o1kJyei {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-ra7o1kJyei .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra7o1kJyei .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-ra7o1kJyei .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-ra7o1kJyei .img {
  margin: auto;
}
.cid-ra7o1kJyei .card-box {
  width: 100%;
}
.cid-ra7o1kJyei p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra7o1kJyei .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-ra7o1kJyei .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra7o1kJyei .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-ra7o1kJyei img {
  width: 100%;
}
.cid-ra7o1kJyei .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra7o1kJyei .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra7o1kJyei .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra7o1kJyei .box {
    padding: 2rem 3rem;
  }
}
.cid-ra7o1kJyei .card-title,
.cid-ra7o1kJyei .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-ra7o1kJyei .mbr-section-title {
  text-align: center;
}
.cid-ra7o1kJyei .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra7o1kJyei .mbr-section-title,
.cid-ra7o1kJyei .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra7o1kJyei .mbr-text,
.cid-ra7o1kJyei .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-ra7o1lKI3s {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra7o1lKI3s .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-ra7o1lKI3s .mbr-text,
.cid-ra7o1lKI3s .mbr-section-btn {
  text-align: center;
}
.cid-stakLrzFU0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stakLrzFU0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stakLrzFU0 .mbr-section-btn {
  color: #000000;
}
.cid-stakY5cEv5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-stakY5cEv5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stakY5cEv5 .mbr-section-btn {
  color: #000000;
}
.cid-stalgIKdyC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-stalgIKdyC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-stalgIKdyC .mbr-section-btn {
  color: #000000;
}
.cid-svHNIYGlgm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHNIYGlgm .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHNIYGlgm .mbr-section-btn {
  color: #000000;
}
.cid-svHOpckh2b {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-svHOpckh2b .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHOpckh2b .mbr-section-btn {
  color: #000000;
}
.cid-svHPwjSqLT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHPwjSqLT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHPwjSqLT .mbr-section-btn {
  color: #000000;
}
.cid-ra7o1nj1hY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-ra7o1nj1hY .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra7o1nj1hY p {
  margin: 0;
}
.cid-ra7o1nU5xc {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-ra7o1nU5xc .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra7o1nU5xc p {
  margin: 0;
}
.cid-ra7o1oD2E9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra7o1oD2E9 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-ra7o1oD2E9 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ra7o1oD2E9 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra7o1oD2E9 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-ra7o1oD2E9 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ra7o1oD2E9 .text2 {
  color: #000000;
  text-align: left;
}
.cid-ra7o1oD2E9 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ra7o1oD2E9 .logo-title {
  text-align: center;
}
.cid-ra7o1oD2E9 .logo-sub-title {
  text-align: center;
}
.cid-ra7o1oD2E9 .links {
  text-align: center;
  color: #656565;
}
.cid-ra7o1oD2E9 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ra0GdnZROA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra0GdnZROA .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra0GdnZROA .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-ra0GdnZROA .img {
  margin: auto;
  max-height: 40px;
}
.cid-ra0GdnZROA p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra0GdnZROA img {
  width: 169px;
}
.cid-ra0GdnZROA .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra0GdnZROA .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra0GdnZROA .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra0GdnZROA .box {
    padding: 2rem 3rem;
  }
}
.cid-ra0GdnZROA .card-title,
.cid-ra0GdnZROA .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-ra0GdnZROA .mbr-section-title {
  text-align: center;
}
.cid-ra0GdnZROA .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra0GdnZROA .mbr-section-title,
.cid-ra0GdnZROA .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra0GdnZROA .mbr-text,
.cid-ra0GdnZROA .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gz5Q2Zr .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gz5Q2Zr .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gz5Q2Zr .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gz5Q2Zr .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gz5Q2Zr .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gz5Q2Zr .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gz5Q2Zr .dropdown-item {
  padding: 0;
}
.cid-sL4gz5Q2Zr .dropdown-item,
.cid-sL4gz5Q2Zr .nav-link,
.cid-sL4gz5Q2Zr .brand-name {
  font-style: normal;
}
.cid-sL4gz5Q2Zr .dropdown-item:hover,
.cid-sL4gz5Q2Zr .nav-link:hover,
.cid-sL4gz5Q2Zr .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gz5Q2Zr .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gz5Q2Zr .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gz5Q2Zr .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gz5Q2Zr .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gz5Q2Zr .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gz5Q2Zr .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gz5Q2Zr .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gz5Q2Zr .content-text {
  margin-bottom: 0;
}
.cid-sL4gz5Q2Zr .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gz5Q2Zr .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gz5Q2Zr .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gz5Q2Zr .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gz5Q2Zr .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gz5Q2Zr .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gz5Q2Zr .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gz5Q2Zr .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gz5Q2Zr .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gz5Q2Zr .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gz5Q2Zr .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gz5Q2Zr .content-right-side {
  text-align: center;
}
.cid-sL4gz5Q2Zr .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gz5Q2Zr .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gz5Q2Zr .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gz5Q2Zr .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gz5Q2Zr .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gz5Q2Zr .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gz5Q2Zr .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gz5Q2Zr .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gz5Q2Zr .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gz5Q2Zr .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gz5Q2Zr .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gz5Q2Zr .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gz5Q2Zr .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gz5Q2Zr .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gz5Q2Zr .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gz5Q2Zr .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gz5Q2Zr .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gz5Q2Zr .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gz5Q2Zr .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gz5Q2Zr .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gz5Q2Zr .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gz5Q2Zr .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gz5Q2Zr .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gz5Q2Zr .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gz5Q2Zr .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gz5Q2Zr .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gz5Q2Zr .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-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gz5Q2Zr .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gz5Q2Zr .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gz5Q2Zr .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gz5Q2Zr .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gz5Q2Zr .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gz5Q2Zr .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gz5Q2Zr .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gz5Q2Zr button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gz5Q2Zr button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gz5Q2Zr button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gz5Q2Zr button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gz5Q2Zr button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gz5Q2Zr button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gz5Q2Zr button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gz5Q2Zr nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gz5Q2Zr nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gz5Q2Zr nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gz5Q2Zr nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gz5Q2Zr .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.collapsing,
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gz5Q2Zr .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gz5Q2Zr .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gz5Q2Zr .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gz5Q2Zr .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gz5Q2Zr .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gz5Q2Zr .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gz5Q2Zr .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gz5Q2Zr .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gz5Q2Zr .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse.collapsing,
  .cid-sL4gz5Q2Zr .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gz5Q2Zr .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gz5Q2Zr .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gz5Q2Zr .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gz5Q2Zr .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gz5Q2Zr .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gz5Q2Zr img {
    height: 3.8rem !important;
  }
  .cid-sL4gz5Q2Zr .btn {
    display: -webkit-flex;
  }
  .cid-sL4gz5Q2Zr button.navbar-toggler {
    display: block;
  }
  .cid-sL4gz5Q2Zr .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gz5Q2Zr .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gz5Q2Zr .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gz5Q2Zr .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gz5Q2Zr .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gz5Q2Zr .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gz5Q2Zr .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gz5Q2Zr .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gz5Q2Zr .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gz5Q2Zr .nav-link:focus {
  outline: none;
}
.cid-sL4gz5Q2Zr .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gz5Q2Zr .dropdown-item.active,
.cid-sL4gz5Q2Zr .dropdown-item:active {
  color: initial;
}
.cid-sL4gz5Q2Zr .widget-title,
.cid-sL4gz5Q2Zr .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gz5Q2Zr .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gz5Q2Zr .menu-logo {
    display: none;
  }
  .cid-sL4gz5Q2Zr .navbar {
    padding: 0;
  }
  .cid-sL4gz5Q2Zr .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gz5Q2Zr button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gz5Q2Zr .menu-logo {
    display: none;
  }
  .cid-sL4gz5Q2Zr .navbar {
    padding: 0;
  }
  .cid-sL4gz5Q2Zr .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gz5Q2Zr button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-ra0GdptxOl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-ra0GdptxOl .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra0GdptxOl .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-ra0GdptxOl .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-ra0GdptxOl .img {
  margin: auto;
}
.cid-ra0GdptxOl .card-box {
  width: 100%;
}
.cid-ra0GdptxOl p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra0GdptxOl .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-ra0GdptxOl .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra0GdptxOl .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-ra0GdptxOl img {
  width: 100%;
}
.cid-ra0GdptxOl .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra0GdptxOl .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra0GdptxOl .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra0GdptxOl .box {
    padding: 2rem 3rem;
  }
}
.cid-ra0GdptxOl .card-title,
.cid-ra0GdptxOl .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-ra0GdptxOl .mbr-section-title {
  text-align: center;
}
.cid-ra0GdptxOl .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra0GdptxOl .mbr-section-title,
.cid-ra0GdptxOl .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra0GdptxOl .mbr-text,
.cid-ra0GdptxOl .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-ra0GP6WAwP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra0GP6WAwP .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-ra0GP6WAwP .mbr-text,
.cid-ra0GP6WAwP .mbr-section-btn {
  text-align: center;
}
.cid-sta5f4IqZ9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sta5f4IqZ9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta5f4IqZ9 .mbr-section-btn {
  color: #000000;
}
.cid-sta5f4IqZ9 .mbr-text,
.cid-sta5f4IqZ9 .mbr-section-btn {
  color: #000000;
}
.cid-sta4dEq1dR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sta4dEq1dR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta4dEq1dR .mbr-section-btn {
  color: #000000;
}
.cid-sta4dEq1dR .mbr-text,
.cid-sta4dEq1dR .mbr-section-btn {
  color: #000000;
}
.cid-sta5zi0hLM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sta5zi0hLM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta5zi0hLM .mbr-section-btn {
  color: #000000;
}
.cid-sta5zi0hLM .mbr-text,
.cid-sta5zi0hLM .mbr-section-btn {
  color: #000000;
}
.cid-sta6ijda38 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sta6ijda38 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta6ijda38 .mbr-section-btn {
  color: #000000;
}
.cid-sta6ijda38 .mbr-text,
.cid-sta6ijda38 .mbr-section-btn {
  color: #000000;
}
.cid-sta6ijda38 P {
  color: #0a1c44;
  text-align: left;
}
.cid-sta6DuTAe8 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sta6DuTAe8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta6DuTAe8 .mbr-section-btn {
  color: #000000;
}
.cid-sta6DuTAe8 .mbr-text,
.cid-sta6DuTAe8 .mbr-section-btn {
  color: #000000;
}
.cid-sta8ySImdL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sta8ySImdL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta8ySImdL .mbr-section-btn {
  color: #000000;
}
.cid-sta8ySImdL .mbr-text,
.cid-sta8ySImdL .mbr-section-btn {
  color: #000000;
}
.cid-svHLv7yuc8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svHLv7yuc8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHLv7yuc8 .mbr-section-btn {
  color: #000000;
}
.cid-svHEsN5buZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svHEsN5buZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHEsN5buZ .mbr-section-btn {
  color: #000000;
}
.cid-svHLb7h9bt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHLb7h9bt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHLb7h9bt .mbr-section-btn {
  color: #000000;
}
.cid-sta9iPTSWT {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sta9iPTSWT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sta9iPTSWT .mbr-section-btn {
  color: #000000;
}
.cid-sta9iPTSWT .mbr-text,
.cid-sta9iPTSWT .mbr-section-btn {
  color: #000000;
}
.cid-svHM0krxoQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svHM0krxoQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHM0krxoQ .mbr-section-btn {
  color: #000000;
}
.cid-ra0GdrzQUx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-ra0GdrzQUx .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra0GdrzQUx p {
  margin: 0;
}
.cid-ra0GdsapHa {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-ra0GdsapHa .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra0GdsapHa p {
  margin: 0;
}
.cid-ra0GdsP6jo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra0GdsP6jo .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-ra0GdsP6jo .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ra0GdsP6jo .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra0GdsP6jo .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-ra0GdsP6jo .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ra0GdsP6jo .text2 {
  color: #000000;
  text-align: left;
}
.cid-ra0GdsP6jo .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ra0GdsP6jo .logo-title {
  text-align: center;
}
.cid-ra0GdsP6jo .logo-sub-title {
  text-align: center;
}
.cid-ra0GdsP6jo .links {
  text-align: center;
  color: #656565;
}
.cid-ra0GdsP6jo .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st4qzrrolb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4qzrrolb .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-st4qzrrolb .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-st4qzrrolb .img {
  margin: auto;
  max-height: 40px;
}
.cid-st4qzrrolb p {
  line-height: 1.5;
  margin: 0;
}
.cid-st4qzrrolb img {
  width: 169px;
}
.cid-st4qzrrolb .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-st4qzrrolb .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-st4qzrrolb .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-st4qzrrolb .box {
    padding: 2rem 0rem;
  }
}
.cid-st4qzrrolb .card-title,
.cid-st4qzrrolb .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-st4qzrrolb .mbr-section-title {
  text-align: center;
}
.cid-st4qzrrolb .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-st4qzrrolb .mbr-section-title,
.cid-st4qzrrolb .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-st4qzrrolb .mbr-text,
.cid-st4qzrrolb .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLPaK5MB4f .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLPaK5MB4f .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLPaK5MB4f .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLPaK5MB4f .menu-logo {
  margin: 0 auto !important;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLPaK5MB4f .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLPaK5MB4f .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLPaK5MB4f .dropdown-item {
  padding: 0;
}
.cid-sLPaK5MB4f .dropdown-item,
.cid-sLPaK5MB4f .nav-link,
.cid-sLPaK5MB4f .brand-name {
  font-style: normal;
}
.cid-sLPaK5MB4f .dropdown-item:hover,
.cid-sLPaK5MB4f .nav-link:hover,
.cid-sLPaK5MB4f .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLPaK5MB4f .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLPaK5MB4f .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLPaK5MB4f .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLPaK5MB4f .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLPaK5MB4f .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLPaK5MB4f .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLPaK5MB4f .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLPaK5MB4f .content-text {
  margin-bottom: 0;
}
.cid-sLPaK5MB4f .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLPaK5MB4f .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLPaK5MB4f .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLPaK5MB4f .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLPaK5MB4f .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLPaK5MB4f .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLPaK5MB4f .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLPaK5MB4f .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLPaK5MB4f .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLPaK5MB4f .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLPaK5MB4f .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLPaK5MB4f .content-right-side {
  text-align: center;
}
.cid-sLPaK5MB4f .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLPaK5MB4f .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLPaK5MB4f .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLPaK5MB4f .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLPaK5MB4f .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLPaK5MB4f .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLPaK5MB4f .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLPaK5MB4f .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLPaK5MB4f .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLPaK5MB4f .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLPaK5MB4f .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLPaK5MB4f .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLPaK5MB4f .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLPaK5MB4f .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLPaK5MB4f .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLPaK5MB4f .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLPaK5MB4f .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLPaK5MB4f .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLPaK5MB4f .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLPaK5MB4f .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLPaK5MB4f .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLPaK5MB4f .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLPaK5MB4f .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLPaK5MB4f .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLPaK5MB4f .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLPaK5MB4f .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLPaK5MB4f .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLPaK5MB4f .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-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLPaK5MB4f .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLPaK5MB4f .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLPaK5MB4f .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLPaK5MB4f .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLPaK5MB4f .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLPaK5MB4f .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLPaK5MB4f .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLPaK5MB4f button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLPaK5MB4f button.navbar-toggler:focus {
  outline: none;
}
.cid-sLPaK5MB4f button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLPaK5MB4f button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLPaK5MB4f button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLPaK5MB4f button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLPaK5MB4f button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLPaK5MB4f nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLPaK5MB4f nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLPaK5MB4f nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLPaK5MB4f nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLPaK5MB4f .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLPaK5MB4f .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLPaK5MB4f .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse.collapsing,
.cid-sLPaK5MB4f .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLPaK5MB4f .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLPaK5MB4f .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLPaK5MB4f .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLPaK5MB4f .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLPaK5MB4f .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLPaK5MB4f .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLPaK5MB4f .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLPaK5MB4f .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLPaK5MB4f .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLPaK5MB4f .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLPaK5MB4f .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLPaK5MB4f .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLPaK5MB4f .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLPaK5MB4f .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLPaK5MB4f .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLPaK5MB4f .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLPaK5MB4f .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLPaK5MB4f .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLPaK5MB4f .navbar-collapse.collapsing,
  .cid-sLPaK5MB4f .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLPaK5MB4f .navbar-collapse.collapsing .navbar-nav,
  .cid-sLPaK5MB4f .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLPaK5MB4f .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLPaK5MB4f .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLPaK5MB4f .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLPaK5MB4f .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLPaK5MB4f .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLPaK5MB4f .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLPaK5MB4f img {
    height: 3.8rem !important;
  }
  .cid-sLPaK5MB4f .btn {
    display: -webkit-flex;
  }
  .cid-sLPaK5MB4f button.navbar-toggler {
    display: block;
  }
  .cid-sLPaK5MB4f .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLPaK5MB4f .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLPaK5MB4f .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLPaK5MB4f .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLPaK5MB4f .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLPaK5MB4f .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLPaK5MB4f .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLPaK5MB4f .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLPaK5MB4f .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLPaK5MB4f .nav-link:focus {
  outline: none;
}
.cid-sLPaK5MB4f .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLPaK5MB4f .dropdown-item.active,
.cid-sLPaK5MB4f .dropdown-item:active {
  color: initial;
}
.cid-sLPaK5MB4f .widget-title,
.cid-sLPaK5MB4f .widget-icon {
  color: #e9e9e9;
}
.cid-sLPaK5MB4f .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLPaK5MB4f .menu-logo {
    display: none;
  }
  .cid-sLPaK5MB4f .navbar {
    padding: 0;
  }
  .cid-sLPaK5MB4f .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLPaK5MB4f button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLPaK5MB4f .menu-logo {
    display: none;
  }
  .cid-sLPaK5MB4f .navbar {
    padding: 0;
  }
  .cid-sLPaK5MB4f .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLPaK5MB4f button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLPbeveTNY {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLPbeveTNY .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLPbeveTNY .mbr-section-btn {
  color: #000000;
}
.cid-sLPbeveTNY .mbr-text,
.cid-sLPbeveTNY .mbr-section-btn {
  text-align: center;
  color: #f8c301;
}
.cid-sLPbd6GuSv {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sLPbd6GuSv .card {
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLPbd6GuSv .card-box {
  width: 50%;
}
.cid-sLPbd6GuSv .card-img {
  padding: 5rem;
  border: 0px solid #e9e9e9;
  border-radius: 50%;
  height: 100px;
  width: 50%;
  align-items: center;
  justify-content: left;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLPbd6GuSv .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sLPbd6GuSv .mbr-text {
  color: #656565;
}
.cid-sLPbd6GuSv p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sLPbd6GuSv .card {
    margin-bottom: -3.5rem;
  }
}
.cid-sLPbd6GuSv .card-title,
.cid-sLPbd6GuSv .card-img {
  color: #0087ab;
  text-align: center;
  width: 50%;
}
.cid-sLPbd6GuSv .mbr-section-title {
  text-align: center;
  width: 50%;
}
.cid-sLPbd6GuSv .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
  width: 50%;
}
.cid-sLPbd6GuSv .line-wrap {
  display: inline-block;
  width: 50%;
}
.cid-sLPbd6GuSv .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sLPbd6GuSv .line-wrap2 {
  display: inline-block;
}
.cid-sLPbd6GuSv .line2 {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cid-sLPbd6GuSv .mbr-section-title,
.cid-sLPbd6GuSv .line-wrap {
  text-align: center;
}
.cid-sLPbd6GuSv .mbr-text,
.cid-sLPbd6GuSv .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sLPbd6GuSv .mbr-text,
.cid-sLPbd6GuSv .line-wrap2 B {
  color: #000000;
}
.cid-st4qztgj2B {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-st4qztgj2B .links {
  text-align: center;
  color: #ffffff;
}
.cid-st4qztgj2B p {
  margin: 0;
}
.cid-st4qztBWtT {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-st4qztBWtT .links {
  text-align: center;
  color: #ffffff;
}
.cid-st4qztBWtT p {
  margin: 0;
}
.cid-st4qzuacbd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4qzuacbd .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-st4qzuacbd .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st4qzuacbd .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-st4qzuacbd .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-st4qzuacbd .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st4qzuacbd .text2 {
  color: #000000;
  text-align: left;
}
.cid-st4qzuacbd .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-st4qzuacbd .logo-title {
  text-align: center;
}
.cid-st4qzuacbd .logo-sub-title {
  text-align: center;
}
.cid-st4qzuacbd .links {
  text-align: center;
  color: #656565;
}
.cid-st4qzuacbd .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st4sAV5blg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4sAV5blg .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-st4sAV5blg .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-st4sAV5blg .img {
  margin: auto;
  max-height: 40px;
}
.cid-st4sAV5blg p {
  line-height: 1.5;
  margin: 0;
}
.cid-st4sAV5blg img {
  width: 169px;
}
.cid-st4sAV5blg .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-st4sAV5blg .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-st4sAV5blg .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-st4sAV5blg .box {
    padding: 2rem 0rem;
  }
}
.cid-st4sAV5blg .card-title,
.cid-st4sAV5blg .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-st4sAV5blg .mbr-section-title {
  text-align: center;
}
.cid-st4sAV5blg .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-st4sAV5blg .mbr-section-title,
.cid-st4sAV5blg .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-st4sAV5blg .mbr-text,
.cid-st4sAV5blg .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvhxXaWLL .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNvhxXaWLL .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNvhxXaWLL .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNvhxXaWLL .menu-logo {
  margin: 0 auto !important;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNvhxXaWLL .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNvhxXaWLL .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNvhxXaWLL .dropdown-item {
  padding: 0;
}
.cid-sNvhxXaWLL .dropdown-item,
.cid-sNvhxXaWLL .nav-link,
.cid-sNvhxXaWLL .brand-name {
  font-style: normal;
}
.cid-sNvhxXaWLL .dropdown-item:hover,
.cid-sNvhxXaWLL .nav-link:hover,
.cid-sNvhxXaWLL .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNvhxXaWLL .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNvhxXaWLL .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNvhxXaWLL .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNvhxXaWLL .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNvhxXaWLL .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNvhxXaWLL .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNvhxXaWLL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNvhxXaWLL .content-text {
  margin-bottom: 0;
}
.cid-sNvhxXaWLL .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNvhxXaWLL .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNvhxXaWLL .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNvhxXaWLL .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNvhxXaWLL .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNvhxXaWLL .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvhxXaWLL .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvhxXaWLL .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNvhxXaWLL .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvhxXaWLL .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNvhxXaWLL .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNvhxXaWLL .content-right-side {
  text-align: center;
}
.cid-sNvhxXaWLL .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNvhxXaWLL .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNvhxXaWLL .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNvhxXaWLL .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNvhxXaWLL .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvhxXaWLL .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNvhxXaWLL .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNvhxXaWLL .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNvhxXaWLL .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNvhxXaWLL .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNvhxXaWLL .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNvhxXaWLL .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNvhxXaWLL .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNvhxXaWLL .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNvhxXaWLL .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNvhxXaWLL .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNvhxXaWLL .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNvhxXaWLL .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNvhxXaWLL .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNvhxXaWLL .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNvhxXaWLL .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvhxXaWLL .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNvhxXaWLL .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNvhxXaWLL .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNvhxXaWLL .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNvhxXaWLL .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNvhxXaWLL .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNvhxXaWLL .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-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNvhxXaWLL .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNvhxXaWLL .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNvhxXaWLL .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNvhxXaWLL .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNvhxXaWLL .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNvhxXaWLL .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNvhxXaWLL .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNvhxXaWLL button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNvhxXaWLL button.navbar-toggler:focus {
  outline: none;
}
.cid-sNvhxXaWLL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNvhxXaWLL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNvhxXaWLL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvhxXaWLL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvhxXaWLL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNvhxXaWLL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvhxXaWLL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNvhxXaWLL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNvhxXaWLL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvhxXaWLL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNvhxXaWLL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNvhxXaWLL .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse.collapsing,
.cid-sNvhxXaWLL .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNvhxXaWLL .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNvhxXaWLL .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNvhxXaWLL .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNvhxXaWLL .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNvhxXaWLL .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNvhxXaWLL .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNvhxXaWLL .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNvhxXaWLL .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNvhxXaWLL .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNvhxXaWLL .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNvhxXaWLL .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNvhxXaWLL .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNvhxXaWLL .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNvhxXaWLL .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNvhxXaWLL .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNvhxXaWLL .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNvhxXaWLL .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNvhxXaWLL .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNvhxXaWLL .navbar-collapse.collapsing,
  .cid-sNvhxXaWLL .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNvhxXaWLL .navbar-collapse.collapsing .navbar-nav,
  .cid-sNvhxXaWLL .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNvhxXaWLL .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNvhxXaWLL .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNvhxXaWLL .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNvhxXaWLL .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNvhxXaWLL .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNvhxXaWLL .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNvhxXaWLL img {
    height: 3.8rem !important;
  }
  .cid-sNvhxXaWLL .btn {
    display: -webkit-flex;
  }
  .cid-sNvhxXaWLL button.navbar-toggler {
    display: block;
  }
  .cid-sNvhxXaWLL .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNvhxXaWLL .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvhxXaWLL .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNvhxXaWLL .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNvhxXaWLL .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNvhxXaWLL .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNvhxXaWLL .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNvhxXaWLL .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNvhxXaWLL .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNvhxXaWLL .nav-link:focus {
  outline: none;
}
.cid-sNvhxXaWLL .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNvhxXaWLL .dropdown-item.active,
.cid-sNvhxXaWLL .dropdown-item:active {
  color: initial;
}
.cid-sNvhxXaWLL .widget-title,
.cid-sNvhxXaWLL .widget-icon {
  color: #e9e9e9;
}
.cid-sNvhxXaWLL .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNvhxXaWLL .menu-logo {
    display: none;
  }
  .cid-sNvhxXaWLL .navbar {
    padding: 0;
  }
  .cid-sNvhxXaWLL .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvhxXaWLL button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNvhxXaWLL .menu-logo {
    display: none;
  }
  .cid-sNvhxXaWLL .navbar {
    padding: 0;
  }
  .cid-sNvhxXaWLL .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvhxXaWLL button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNvhG4GO1D {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNvhG4GO1D .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvhG4GO1D p {
  margin: 0;
}
.cid-sNvhOyTRC9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvhOyTRC9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvhOyTRC9 .mbr-section-btn {
  color: #000000;
}
.cid-sNvhOyTRC9 .mbr-text,
.cid-sNvhOyTRC9 .mbr-section-btn {
  text-align: center;
}
.cid-sNvhCOy8V1 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sNvhCOy8V1 .card {
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvhCOy8V1 .card-box {
  width: 50%;
}
.cid-sNvhCOy8V1 .card-img {
  padding: 5rem;
  border: 0px solid #e9e9e9;
  border-radius: 50%;
  height: 100px;
  width: 50%;
  align-items: center;
  justify-content: left;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvhCOy8V1 .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sNvhCOy8V1 .mbr-text {
  color: #656565;
}
.cid-sNvhCOy8V1 p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sNvhCOy8V1 .card {
    margin-bottom: -3.5rem;
  }
}
.cid-sNvhCOy8V1 .card-title,
.cid-sNvhCOy8V1 .card-img {
  color: #0087ab;
  text-align: center;
  width: 50%;
}
.cid-sNvhCOy8V1 .mbr-section-title {
  text-align: center;
  width: 50%;
}
.cid-sNvhCOy8V1 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
  width: 50%;
}
.cid-sNvhCOy8V1 .line-wrap {
  display: inline-block;
  width: 50%;
}
.cid-sNvhCOy8V1 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sNvhCOy8V1 .line-wrap2 {
  display: inline-block;
}
.cid-sNvhCOy8V1 .line2 {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cid-sNvhCOy8V1 .mbr-section-title,
.cid-sNvhCOy8V1 .line-wrap {
  text-align: center;
}
.cid-sNvhCOy8V1 .mbr-text,
.cid-sNvhCOy8V1 .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sNvhCOy8V1 .mbr-text,
.cid-sNvhCOy8V1 .line-wrap2 B {
  color: #000000;
}
.cid-st4sAWn3RA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-st4sAWn3RA .links {
  text-align: center;
  color: #ffffff;
}
.cid-st4sAWn3RA p {
  margin: 0;
}
.cid-st4sAWQ6fj {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-st4sAWQ6fj .links {
  text-align: center;
  color: #ffffff;
}
.cid-st4sAWQ6fj p {
  margin: 0;
}
.cid-st4sAXicJE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4sAXicJE .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-st4sAXicJE .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-st4sAXicJE .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-st4sAXicJE .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-st4sAXicJE .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-st4sAXicJE .text2 {
  color: #000000;
  text-align: left;
}
.cid-st4sAXicJE .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-st4sAXicJE .logo-title {
  text-align: center;
}
.cid-st4sAXicJE .logo-sub-title {
  text-align: center;
}
.cid-st4sAXicJE .links {
  text-align: center;
  color: #656565;
}
.cid-st4sAXicJE .logo-sub-title i {
  color: #9e9e9e;
}
.cid-staoIPPFoA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-staoIPPFoA .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-staoIPPFoA .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-staoIPPFoA .img {
  margin: auto;
  max-height: 40px;
}
.cid-staoIPPFoA p {
  line-height: 1.5;
  margin: 0;
}
.cid-staoIPPFoA img {
  width: 169px;
}
.cid-staoIPPFoA .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-staoIPPFoA .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-staoIPPFoA .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-staoIPPFoA .box {
    padding: 2rem 0rem;
  }
}
.cid-staoIPPFoA .card-title,
.cid-staoIPPFoA .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-staoIPPFoA .mbr-section-title {
  text-align: center;
}
.cid-staoIPPFoA .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-staoIPPFoA .mbr-section-title,
.cid-staoIPPFoA .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-staoIPPFoA .mbr-text,
.cid-staoIPPFoA .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4l4nsQtp .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4l4nsQtp .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4l4nsQtp .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4l4nsQtp .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4l4nsQtp .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4l4nsQtp .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4l4nsQtp .dropdown-item {
  padding: 0;
}
.cid-sL4l4nsQtp .dropdown-item,
.cid-sL4l4nsQtp .nav-link,
.cid-sL4l4nsQtp .brand-name {
  font-style: normal;
}
.cid-sL4l4nsQtp .dropdown-item:hover,
.cid-sL4l4nsQtp .nav-link:hover,
.cid-sL4l4nsQtp .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4l4nsQtp .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4l4nsQtp .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4l4nsQtp .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4l4nsQtp .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4l4nsQtp .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4l4nsQtp .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4l4nsQtp .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4l4nsQtp .content-text {
  margin-bottom: 0;
}
.cid-sL4l4nsQtp .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4l4nsQtp .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4l4nsQtp .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4l4nsQtp .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4l4nsQtp .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4l4nsQtp .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4l4nsQtp .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4l4nsQtp .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4l4nsQtp .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4l4nsQtp .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4l4nsQtp .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4l4nsQtp .content-right-side {
  text-align: center;
}
.cid-sL4l4nsQtp .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4l4nsQtp .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4l4nsQtp .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4l4nsQtp .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4l4nsQtp .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4l4nsQtp .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4l4nsQtp .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4l4nsQtp .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4l4nsQtp .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4l4nsQtp .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4l4nsQtp .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4l4nsQtp .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4l4nsQtp .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4l4nsQtp .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4l4nsQtp .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4l4nsQtp .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4l4nsQtp .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4l4nsQtp .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4l4nsQtp .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4l4nsQtp .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4l4nsQtp .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4l4nsQtp .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4l4nsQtp .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4l4nsQtp .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4l4nsQtp .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4l4nsQtp .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4l4nsQtp .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4l4nsQtp .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-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4l4nsQtp .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4l4nsQtp .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4l4nsQtp .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4l4nsQtp .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4l4nsQtp .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4l4nsQtp .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4l4nsQtp .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4l4nsQtp button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4l4nsQtp button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4l4nsQtp button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4l4nsQtp button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4l4nsQtp button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4l4nsQtp button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4l4nsQtp button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4l4nsQtp nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4l4nsQtp nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4l4nsQtp nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4l4nsQtp nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4l4nsQtp .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4l4nsQtp .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4l4nsQtp .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse.collapsing,
.cid-sL4l4nsQtp .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4l4nsQtp .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4l4nsQtp .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4l4nsQtp .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4l4nsQtp .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4l4nsQtp .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4l4nsQtp .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4l4nsQtp .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4l4nsQtp .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4l4nsQtp .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4l4nsQtp .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4l4nsQtp .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4l4nsQtp .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4l4nsQtp .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4l4nsQtp .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4l4nsQtp .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4l4nsQtp .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4l4nsQtp .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4l4nsQtp .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4l4nsQtp .navbar-collapse.collapsing,
  .cid-sL4l4nsQtp .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4l4nsQtp .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4l4nsQtp .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4l4nsQtp .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4l4nsQtp .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4l4nsQtp .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4l4nsQtp .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4l4nsQtp .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4l4nsQtp .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4l4nsQtp img {
    height: 3.8rem !important;
  }
  .cid-sL4l4nsQtp .btn {
    display: -webkit-flex;
  }
  .cid-sL4l4nsQtp button.navbar-toggler {
    display: block;
  }
  .cid-sL4l4nsQtp .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4l4nsQtp .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4l4nsQtp .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4l4nsQtp .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4l4nsQtp .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4l4nsQtp .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4l4nsQtp .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4l4nsQtp .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4l4nsQtp .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4l4nsQtp .nav-link:focus {
  outline: none;
}
.cid-sL4l4nsQtp .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4l4nsQtp .dropdown-item.active,
.cid-sL4l4nsQtp .dropdown-item:active {
  color: initial;
}
.cid-sL4l4nsQtp .widget-title,
.cid-sL4l4nsQtp .widget-icon {
  color: #e9e9e9;
}
.cid-sL4l4nsQtp .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4l4nsQtp .menu-logo {
    display: none;
  }
  .cid-sL4l4nsQtp .navbar {
    padding: 0;
  }
  .cid-sL4l4nsQtp .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4l4nsQtp button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4l4nsQtp .menu-logo {
    display: none;
  }
  .cid-sL4l4nsQtp .navbar {
    padding: 0;
  }
  .cid-sL4l4nsQtp .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4l4nsQtp button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sL3YvLyhom {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sL3YvLyhom .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sL3YvLyhom .mbr-section-btn {
  color: #000000;
}
.cid-sL3YvLyhom .mbr-text,
.cid-sL3YvLyhom .mbr-section-btn {
  text-align: center;
}
.cid-sL3YxIZlAf {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sL3YxIZlAf .card {
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL3YxIZlAf .card-box {
  width: 50%;
}
.cid-sL3YxIZlAf .card-img {
  padding: 5rem;
  border: 0px solid #e9e9e9;
  border-radius: 50%;
  height: 100px;
  width: 50%;
  align-items: center;
  justify-content: left;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL3YxIZlAf .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sL3YxIZlAf .mbr-text {
  color: #656565;
}
.cid-sL3YxIZlAf p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sL3YxIZlAf .card {
    margin-bottom: -3.5rem;
  }
}
.cid-sL3YxIZlAf .card-title,
.cid-sL3YxIZlAf .card-img {
  color: #0087ab;
  text-align: center;
  width: 50%;
}
.cid-sL3YxIZlAf .mbr-section-title {
  text-align: center;
  width: 50%;
}
.cid-sL3YxIZlAf .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
  width: 50%;
}
.cid-sL3YxIZlAf .line-wrap {
  display: inline-block;
  width: 50%;
}
.cid-sL3YxIZlAf .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sL3YxIZlAf .line-wrap2 {
  display: inline-block;
}
.cid-sL3YxIZlAf .line2 {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cid-sL3YxIZlAf .mbr-section-title,
.cid-sL3YxIZlAf .line-wrap {
  text-align: center;
}
.cid-sL3YxIZlAf .mbr-text,
.cid-sL3YxIZlAf .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sL3YxIZlAf .mbr-text,
.cid-sL3YxIZlAf .line-wrap2 B {
  color: #000000;
}
.cid-staoIRbdoh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-staoIRbdoh .links {
  text-align: center;
  color: #ffffff;
}
.cid-staoIRbdoh p {
  margin: 0;
}
.cid-staoIRxggX {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-staoIRxggX .links {
  text-align: center;
  color: #ffffff;
}
.cid-staoIRxggX p {
  margin: 0;
}
.cid-staoIRUN0e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-staoIRUN0e .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-staoIRUN0e .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-staoIRUN0e .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-staoIRUN0e .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-staoIRUN0e .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-staoIRUN0e .text2 {
  color: #000000;
  text-align: left;
}
.cid-staoIRUN0e .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-staoIRUN0e .logo-title {
  text-align: center;
}
.cid-staoIRUN0e .logo-sub-title {
  text-align: center;
}
.cid-staoIRUN0e .links {
  text-align: center;
  color: #656565;
}
.cid-staoIRUN0e .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ra9Ao09yg1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra9Ao09yg1 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra9Ao09yg1 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-ra9Ao09yg1 .img {
  margin: auto;
  max-height: 40px;
}
.cid-ra9Ao09yg1 p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra9Ao09yg1 img {
  width: 169px;
}
.cid-ra9Ao09yg1 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra9Ao09yg1 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra9Ao09yg1 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra9Ao09yg1 .box {
    padding: 2rem 3rem;
  }
}
.cid-ra9Ao09yg1 .card-title,
.cid-ra9Ao09yg1 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-ra9Ao09yg1 .mbr-section-title {
  text-align: center;
}
.cid-ra9Ao09yg1 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra9Ao09yg1 .mbr-section-title,
.cid-ra9Ao09yg1 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra9Ao09yg1 .mbr-text,
.cid-ra9Ao09yg1 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gUrSII5 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gUrSII5 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gUrSII5 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gUrSII5 .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gUrSII5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gUrSII5 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gUrSII5 .dropdown-item {
  padding: 0;
}
.cid-sL4gUrSII5 .dropdown-item,
.cid-sL4gUrSII5 .nav-link,
.cid-sL4gUrSII5 .brand-name {
  font-style: normal;
}
.cid-sL4gUrSII5 .dropdown-item:hover,
.cid-sL4gUrSII5 .nav-link:hover,
.cid-sL4gUrSII5 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gUrSII5 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gUrSII5 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gUrSII5 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gUrSII5 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gUrSII5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gUrSII5 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gUrSII5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gUrSII5 .content-text {
  margin-bottom: 0;
}
.cid-sL4gUrSII5 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gUrSII5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gUrSII5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gUrSII5 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gUrSII5 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gUrSII5 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gUrSII5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gUrSII5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gUrSII5 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gUrSII5 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gUrSII5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gUrSII5 .content-right-side {
  text-align: center;
}
.cid-sL4gUrSII5 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gUrSII5 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gUrSII5 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gUrSII5 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gUrSII5 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gUrSII5 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gUrSII5 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gUrSII5 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gUrSII5 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gUrSII5 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gUrSII5 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gUrSII5 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gUrSII5 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gUrSII5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gUrSII5 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gUrSII5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gUrSII5 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gUrSII5 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gUrSII5 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gUrSII5 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gUrSII5 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gUrSII5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gUrSII5 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gUrSII5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gUrSII5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gUrSII5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gUrSII5 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gUrSII5 .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-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gUrSII5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gUrSII5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gUrSII5 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gUrSII5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gUrSII5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gUrSII5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gUrSII5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gUrSII5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gUrSII5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gUrSII5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gUrSII5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gUrSII5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gUrSII5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gUrSII5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gUrSII5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gUrSII5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gUrSII5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gUrSII5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gUrSII5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gUrSII5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gUrSII5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse.collapsing,
.cid-sL4gUrSII5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gUrSII5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gUrSII5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gUrSII5 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gUrSII5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gUrSII5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gUrSII5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gUrSII5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gUrSII5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gUrSII5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gUrSII5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gUrSII5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gUrSII5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gUrSII5 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gUrSII5 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gUrSII5 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gUrSII5 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gUrSII5 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gUrSII5 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gUrSII5 .navbar-collapse.collapsing,
  .cid-sL4gUrSII5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gUrSII5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gUrSII5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gUrSII5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gUrSII5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gUrSII5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gUrSII5 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gUrSII5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gUrSII5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gUrSII5 img {
    height: 3.8rem !important;
  }
  .cid-sL4gUrSII5 .btn {
    display: -webkit-flex;
  }
  .cid-sL4gUrSII5 button.navbar-toggler {
    display: block;
  }
  .cid-sL4gUrSII5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gUrSII5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gUrSII5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gUrSII5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gUrSII5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gUrSII5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gUrSII5 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gUrSII5 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gUrSII5 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gUrSII5 .nav-link:focus {
  outline: none;
}
.cid-sL4gUrSII5 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gUrSII5 .dropdown-item.active,
.cid-sL4gUrSII5 .dropdown-item:active {
  color: initial;
}
.cid-sL4gUrSII5 .widget-title,
.cid-sL4gUrSII5 .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gUrSII5 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gUrSII5 .menu-logo {
    display: none;
  }
  .cid-sL4gUrSII5 .navbar {
    padding: 0;
  }
  .cid-sL4gUrSII5 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gUrSII5 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gUrSII5 .menu-logo {
    display: none;
  }
  .cid-sL4gUrSII5 .navbar {
    padding: 0;
  }
  .cid-sL4gUrSII5 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gUrSII5 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-ra9Ao1iD2B {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-ra9Ao1iD2B .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra9Ao1iD2B .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-ra9Ao1iD2B .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-ra9Ao1iD2B .img {
  margin: auto;
}
.cid-ra9Ao1iD2B .card-box {
  width: 100%;
}
.cid-ra9Ao1iD2B p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra9Ao1iD2B .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-ra9Ao1iD2B .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra9Ao1iD2B .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-ra9Ao1iD2B img {
  width: 100%;
}
.cid-ra9Ao1iD2B .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra9Ao1iD2B .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra9Ao1iD2B .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra9Ao1iD2B .box {
    padding: 2rem 3rem;
  }
}
.cid-ra9Ao1iD2B .card-title,
.cid-ra9Ao1iD2B .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-ra9Ao1iD2B .mbr-section-title {
  text-align: center;
}
.cid-ra9Ao1iD2B .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra9Ao1iD2B .mbr-section-title,
.cid-ra9Ao1iD2B .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra9Ao1iD2B .mbr-text,
.cid-ra9Ao1iD2B .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-ra9Ao1iD2B .mbr-text,
.cid-ra9Ao1iD2B .line-wrap2 B {
  color: #42929d;
}
.cid-ra9Ao2ajQg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-ra9Ao2ajQg .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ra9Ao2ajQg .mbr-section-btn {
  color: #000000;
}
.cid-steyX8ZNfi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-steyX8ZNfi .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steyX8ZNfi .mbr-section-btn {
  color: #000000;
}
.cid-svNOmVpmS4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svNOmVpmS4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNOmVpmS4 .mbr-section-btn {
  color: #000000;
}
.cid-svNOmVpmS4 .mbr-text,
.cid-svNOmVpmS4 .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNOHEwtu0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-svNOHEwtu0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNOHEwtu0 .mbr-section-btn {
  color: #000000;
}
.cid-svNOHEwtu0 .mbr-text,
.cid-svNOHEwtu0 .mbr-section-btn {
  color: #0a1c44;
}
.cid-steAHquYcq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-steAHquYcq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steAHquYcq .mbr-section-btn {
  color: #000000;
}
.cid-svNPMMfQ2W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svNPMMfQ2W .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNPMMfQ2W .mbr-section-btn {
  color: #000000;
}
.cid-svNPMMfQ2W .mbr-text,
.cid-svNPMMfQ2W .mbr-section-btn {
  color: #ffffff;
}
.cid-svNQ8L0kvP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNQ8L0kvP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNQ8L0kvP .mbr-section-btn {
  color: #000000;
}
.cid-svNQ8L0kvP .mbr-text,
.cid-svNQ8L0kvP .mbr-section-btn {
  color: #0a1c44;
}
.cid-steCqW9zB3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-steCqW9zB3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steCqW9zB3 .mbr-section-btn {
  color: #000000;
}
.cid-steDMRsfXh {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-steDMRsfXh .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steDMRsfXh .mbr-section-btn {
  color: #000000;
}
.cid-svNTsb6Cbp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svNTsb6Cbp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNTsb6Cbp .mbr-section-btn {
  color: #000000;
}
.cid-svNTsb6Cbp .mbr-text,
.cid-svNTsb6Cbp .mbr-section-btn {
  color: #ececec;
}
.cid-steKYBkPzo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-steKYBkPzo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steKYBkPzo .mbr-section-btn {
  color: #000000;
}
.cid-steLmO3ukp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-steLmO3ukp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steLmO3ukp .mbr-section-btn {
  color: #000000;
}
.cid-steM4Hj6z2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-steM4Hj6z2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steM4Hj6z2 .mbr-section-btn {
  color: #000000;
}
.cid-svNVxoTmix {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-svNVxoTmix .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNVxoTmix .mbr-section-btn {
  color: #000000;
}
.cid-svNVxoTmix .mbr-text,
.cid-svNVxoTmix .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNXZ0o93P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svNXZ0o93P .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNXZ0o93P .mbr-section-btn {
  color: #000000;
}
.cid-svNXZ0o93P .mbr-text,
.cid-svNXZ0o93P .mbr-section-btn {
  color: #0a1c44;
}
.cid-svNYpkNSb0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svNYpkNSb0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNYpkNSb0 .mbr-section-btn {
  color: #000000;
}
.cid-svNYpkNSb0 .mbr-text,
.cid-svNYpkNSb0 .mbr-section-btn {
  color: #ececec;
}
.cid-steMuLsdB3 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-steMuLsdB3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steMuLsdB3 .mbr-section-btn {
  color: #000000;
}
.cid-steMuLsdB3 P {
  color: #0a1c44;
  text-align: left;
}
.cid-svNZG2TApD {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svNZG2TApD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svNZG2TApD .mbr-section-btn {
  color: #000000;
}
.cid-svNZG2TApD P {
  text-align: left;
  color: #0a1c44;
}
.cid-steOzxbiku {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-steOzxbiku .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steOzxbiku .mbr-section-btn {
  color: #000000;
}
.cid-steOzxbiku P {
  color: #0a1c44;
  text-align: left;
}
.cid-svQr7MJmRx {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svQr7MJmRx .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svQr7MJmRx .mbr-section-btn {
  color: #000000;
}
.cid-svQrk0Xs4N {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-svQrk0Xs4N .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svQrk0Xs4N .mbr-section-btn {
  color: #000000;
}
.cid-svQrk0Xs4N .mbr-text,
.cid-svQrk0Xs4N .mbr-section-btn {
  color: #0a1c44;
}
.cid-svQufWhZ1A {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svQufWhZ1A .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svQufWhZ1A .mbr-section-btn {
  color: #000000;
}
.cid-svQvJnLku9 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-svQvJnLku9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svQvJnLku9 .mbr-section-btn {
  color: #000000;
}
.cid-svQvJnLku9 .mbr-text,
.cid-svQvJnLku9 .mbr-section-btn {
  color: #ececec;
}
.cid-steXQ8Crr2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-steXQ8Crr2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-steXQ8Crr2 .mbr-section-btn {
  color: #000000;
}
.cid-ra9Ao2UrOC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-ra9Ao2UrOC .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra9Ao2UrOC p {
  margin: 0;
}
.cid-ra9Ao3qkzf {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-ra9Ao3qkzf .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra9Ao3qkzf p {
  margin: 0;
}
.cid-ra9Ao3RXZL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra9Ao3RXZL .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-ra9Ao3RXZL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ra9Ao3RXZL .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra9Ao3RXZL .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-ra9Ao3RXZL .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ra9Ao3RXZL .text2 {
  color: #000000;
  text-align: left;
}
.cid-ra9Ao3RXZL .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ra9Ao3RXZL .logo-title {
  text-align: center;
}
.cid-ra9Ao3RXZL .logo-sub-title {
  text-align: center;
}
.cid-ra9Ao3RXZL .links {
  text-align: center;
  color: #656565;
}
.cid-ra9Ao3RXZL .logo-sub-title i {
  color: #9e9e9e;
}
.cid-svdXMzdfLN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svdXMzdfLN .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-svdXMzdfLN .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-svdXMzdfLN .img {
  margin: auto;
  max-height: 40px;
}
.cid-svdXMzdfLN p {
  line-height: 1.5;
  margin: 0;
}
.cid-svdXMzdfLN img {
  width: 169px;
}
.cid-svdXMzdfLN .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-svdXMzdfLN .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svdXMzdfLN .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-svdXMzdfLN .box {
    padding: 2rem 3rem;
  }
}
.cid-svdXMzdfLN .card-title,
.cid-svdXMzdfLN .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-svdXMzdfLN .mbr-section-title {
  text-align: center;
}
.cid-svdXMzdfLN .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-svdXMzdfLN .mbr-section-title,
.cid-svdXMzdfLN .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-svdXMzdfLN .mbr-text,
.cid-svdXMzdfLN .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4hgQc1aX .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4hgQc1aX .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4hgQc1aX .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4hgQc1aX .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4hgQc1aX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4hgQc1aX .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4hgQc1aX .dropdown-item {
  padding: 0;
}
.cid-sL4hgQc1aX .dropdown-item,
.cid-sL4hgQc1aX .nav-link,
.cid-sL4hgQc1aX .brand-name {
  font-style: normal;
}
.cid-sL4hgQc1aX .dropdown-item:hover,
.cid-sL4hgQc1aX .nav-link:hover,
.cid-sL4hgQc1aX .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4hgQc1aX .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4hgQc1aX .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4hgQc1aX .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4hgQc1aX .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4hgQc1aX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4hgQc1aX .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4hgQc1aX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4hgQc1aX .content-text {
  margin-bottom: 0;
}
.cid-sL4hgQc1aX .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4hgQc1aX .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4hgQc1aX .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4hgQc1aX .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4hgQc1aX .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4hgQc1aX .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4hgQc1aX .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4hgQc1aX .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4hgQc1aX .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4hgQc1aX .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4hgQc1aX .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4hgQc1aX .content-right-side {
  text-align: center;
}
.cid-sL4hgQc1aX .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4hgQc1aX .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4hgQc1aX .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4hgQc1aX .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4hgQc1aX .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4hgQc1aX .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4hgQc1aX .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4hgQc1aX .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4hgQc1aX .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4hgQc1aX .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4hgQc1aX .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4hgQc1aX .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4hgQc1aX .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4hgQc1aX .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4hgQc1aX .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4hgQc1aX .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4hgQc1aX .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4hgQc1aX .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4hgQc1aX .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4hgQc1aX .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4hgQc1aX .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4hgQc1aX .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4hgQc1aX .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4hgQc1aX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4hgQc1aX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4hgQc1aX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4hgQc1aX .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4hgQc1aX .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-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4hgQc1aX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4hgQc1aX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4hgQc1aX .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4hgQc1aX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4hgQc1aX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4hgQc1aX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4hgQc1aX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4hgQc1aX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4hgQc1aX button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4hgQc1aX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4hgQc1aX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4hgQc1aX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4hgQc1aX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4hgQc1aX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4hgQc1aX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4hgQc1aX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4hgQc1aX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4hgQc1aX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4hgQc1aX .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4hgQc1aX .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4hgQc1aX .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse.collapsing,
.cid-sL4hgQc1aX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4hgQc1aX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4hgQc1aX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4hgQc1aX .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4hgQc1aX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4hgQc1aX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4hgQc1aX .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4hgQc1aX .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4hgQc1aX .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4hgQc1aX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4hgQc1aX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4hgQc1aX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4hgQc1aX .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4hgQc1aX .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4hgQc1aX .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4hgQc1aX .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4hgQc1aX .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4hgQc1aX .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4hgQc1aX .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4hgQc1aX .navbar-collapse.collapsing,
  .cid-sL4hgQc1aX .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4hgQc1aX .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4hgQc1aX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4hgQc1aX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4hgQc1aX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4hgQc1aX .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4hgQc1aX .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4hgQc1aX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4hgQc1aX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4hgQc1aX img {
    height: 3.8rem !important;
  }
  .cid-sL4hgQc1aX .btn {
    display: -webkit-flex;
  }
  .cid-sL4hgQc1aX button.navbar-toggler {
    display: block;
  }
  .cid-sL4hgQc1aX .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4hgQc1aX .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4hgQc1aX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4hgQc1aX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4hgQc1aX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4hgQc1aX .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4hgQc1aX .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4hgQc1aX .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4hgQc1aX .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4hgQc1aX .nav-link:focus {
  outline: none;
}
.cid-sL4hgQc1aX .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4hgQc1aX .dropdown-item.active,
.cid-sL4hgQc1aX .dropdown-item:active {
  color: initial;
}
.cid-sL4hgQc1aX .widget-title,
.cid-sL4hgQc1aX .widget-icon {
  color: #e9e9e9;
}
.cid-sL4hgQc1aX .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4hgQc1aX .menu-logo {
    display: none;
  }
  .cid-sL4hgQc1aX .navbar {
    padding: 0;
  }
  .cid-sL4hgQc1aX .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4hgQc1aX button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4hgQc1aX .menu-logo {
    display: none;
  }
  .cid-sL4hgQc1aX .navbar {
    padding: 0;
  }
  .cid-sL4hgQc1aX .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4hgQc1aX button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-svdXMAbr3e {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-svdXMAbr3e .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-svdXMAbr3e .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-svdXMAbr3e .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-svdXMAbr3e .img {
  margin: auto;
}
.cid-svdXMAbr3e .card-box {
  width: 100%;
}
.cid-svdXMAbr3e p {
  line-height: 1.5;
  margin: 0;
}
.cid-svdXMAbr3e .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-svdXMAbr3e .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-svdXMAbr3e .card-img span {
  color: #000000;
  font-size: 3.2rem;
}
.cid-svdXMAbr3e img {
  width: 100%;
}
.cid-svdXMAbr3e .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-svdXMAbr3e .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-svdXMAbr3e .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-svdXMAbr3e .box {
    padding: 2rem 3rem;
  }
}
.cid-svdXMAbr3e .card-title,
.cid-svdXMAbr3e .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-svdXMAbr3e .mbr-section-title {
  text-align: center;
}
.cid-svdXMAbr3e .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-svdXMAbr3e .mbr-section-title,
.cid-svdXMAbr3e .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-svdXMAbr3e .mbr-text,
.cid-svdXMAbr3e .line-wrap2 {
  text-align: left;
  color: #3f671b;
}
.cid-svdXMAbr3e .mbr-text,
.cid-svdXMAbr3e .line-wrap2 B {
  color: #ee9521;
}
.cid-svdXMBzIfo {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svdXMBzIfo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svdXMBzIfo .mbr-section-btn {
  color: #000000;
}
.cid-svdXMBzIfo .mbr-section-title {
  color: #3f671b;
}
.cid-svdXMBzIfo .mbr-section-title DIV {
  text-align: center;
}
.cid-svdXMBzIfo P {
  color: #000000;
  text-align: left;
}
.cid-svecIg4xNK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-svecIg4xNK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svecIg4xNK .mbr-section-btn {
  color: #000000;
}
.cid-svelBEyvwG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-svelBEyvwG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svelBEyvwG .mbr-section-btn {
  color: #000000;
}
.cid-svelBEyvwG .mbr-text,
.cid-svelBEyvwG .mbr-section-btn {
  color: #f5f7fa;
}
.cid-svemMnJaEB {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-svemMnJaEB .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svemMnJaEB .mbr-section-btn {
  color: #000000;
}
.cid-svew7waVtv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-svew7waVtv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svew7waVtv .mbr-section-btn {
  color: #000000;
}
.cid-svdXMCfvYh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-svdXMCfvYh .links {
  text-align: center;
  color: #ffffff;
}
.cid-svdXMCfvYh p {
  margin: 0;
}
.cid-svdXMCGsda {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-svdXMCGsda .links {
  text-align: center;
  color: #ffffff;
}
.cid-svdXMCGsda p {
  margin: 0;
}
.cid-svdXMD6vBX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svdXMD6vBX .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-svdXMD6vBX .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-svdXMD6vBX .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-svdXMD6vBX .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-svdXMD6vBX .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-svdXMD6vBX .text2 {
  color: #000000;
  text-align: left;
}
.cid-svdXMD6vBX .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-svdXMD6vBX .logo-title {
  text-align: center;
}
.cid-svdXMD6vBX .logo-sub-title {
  text-align: center;
}
.cid-svdXMD6vBX .links {
  text-align: center;
  color: #656565;
}
.cid-svdXMD6vBX .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSdk4bRSj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSdk4bRSj .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSdk4bRSj .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSdk4bRSj .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSdk4bRSj p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSdk4bRSj img {
  width: 169px;
}
.cid-sKSdk4bRSj .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSdk4bRSj .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSdk4bRSj .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSdk4bRSj .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSdk4bRSj .card-title,
.cid-sKSdk4bRSj .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSdk4bRSj .mbr-section-title {
  text-align: center;
}
.cid-sKSdk4bRSj .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSdk4bRSj .mbr-section-title,
.cid-sKSdk4bRSj .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSdk4bRSj .mbr-text,
.cid-sKSdk4bRSj .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb6BPPBQi .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb6BPPBQi .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb6BPPBQi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb6BPPBQi .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb6BPPBQi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb6BPPBQi .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb6BPPBQi .dropdown-item {
  padding: 0;
}
.cid-sLb6BPPBQi .dropdown-item,
.cid-sLb6BPPBQi .nav-link,
.cid-sLb6BPPBQi .brand-name {
  font-style: normal;
}
.cid-sLb6BPPBQi .dropdown-item:hover,
.cid-sLb6BPPBQi .nav-link:hover,
.cid-sLb6BPPBQi .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb6BPPBQi .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb6BPPBQi .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb6BPPBQi .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb6BPPBQi .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb6BPPBQi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb6BPPBQi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb6BPPBQi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb6BPPBQi .content-text {
  margin-bottom: 0;
}
.cid-sLb6BPPBQi .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb6BPPBQi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb6BPPBQi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb6BPPBQi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb6BPPBQi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb6BPPBQi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6BPPBQi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6BPPBQi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb6BPPBQi .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb6BPPBQi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb6BPPBQi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb6BPPBQi .content-right-side {
  text-align: center;
}
.cid-sLb6BPPBQi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb6BPPBQi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb6BPPBQi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb6BPPBQi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb6BPPBQi .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6BPPBQi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb6BPPBQi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb6BPPBQi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb6BPPBQi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb6BPPBQi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb6BPPBQi .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb6BPPBQi .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb6BPPBQi .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb6BPPBQi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb6BPPBQi .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb6BPPBQi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb6BPPBQi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb6BPPBQi .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb6BPPBQi .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb6BPPBQi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb6BPPBQi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6BPPBQi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb6BPPBQi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb6BPPBQi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb6BPPBQi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb6BPPBQi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb6BPPBQi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb6BPPBQi .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-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb6BPPBQi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb6BPPBQi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb6BPPBQi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb6BPPBQi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb6BPPBQi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb6BPPBQi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb6BPPBQi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb6BPPBQi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb6BPPBQi button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb6BPPBQi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb6BPPBQi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb6BPPBQi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6BPPBQi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6BPPBQi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb6BPPBQi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6BPPBQi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb6BPPBQi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb6BPPBQi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6BPPBQi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb6BPPBQi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb6BPPBQi .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse.collapsing,
.cid-sLb6BPPBQi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb6BPPBQi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb6BPPBQi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb6BPPBQi .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb6BPPBQi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb6BPPBQi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb6BPPBQi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb6BPPBQi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb6BPPBQi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb6BPPBQi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb6BPPBQi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb6BPPBQi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb6BPPBQi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb6BPPBQi .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb6BPPBQi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb6BPPBQi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb6BPPBQi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb6BPPBQi .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb6BPPBQi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb6BPPBQi .navbar-collapse.collapsing,
  .cid-sLb6BPPBQi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb6BPPBQi .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb6BPPBQi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb6BPPBQi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb6BPPBQi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb6BPPBQi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb6BPPBQi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb6BPPBQi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb6BPPBQi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb6BPPBQi img {
    height: 3.8rem !important;
  }
  .cid-sLb6BPPBQi .btn {
    display: -webkit-flex;
  }
  .cid-sLb6BPPBQi button.navbar-toggler {
    display: block;
  }
  .cid-sLb6BPPBQi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb6BPPBQi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6BPPBQi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb6BPPBQi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb6BPPBQi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb6BPPBQi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb6BPPBQi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb6BPPBQi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb6BPPBQi .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb6BPPBQi .nav-link:focus {
  outline: none;
}
.cid-sLb6BPPBQi .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb6BPPBQi .dropdown-item.active,
.cid-sLb6BPPBQi .dropdown-item:active {
  color: initial;
}
.cid-sLb6BPPBQi .widget-title,
.cid-sLb6BPPBQi .widget-icon {
  color: #e9e9e9;
}
.cid-sLb6BPPBQi .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb6BPPBQi .menu-logo {
    display: none;
  }
  .cid-sLb6BPPBQi .navbar {
    padding: 0;
  }
  .cid-sLb6BPPBQi .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6BPPBQi button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb6BPPBQi .menu-logo {
    display: none;
  }
  .cid-sLb6BPPBQi .navbar {
    padding: 0;
  }
  .cid-sLb6BPPBQi .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6BPPBQi button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKSdk4V2tQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSdk4V2tQ .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSdk4V2tQ .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKSdk4V2tQ .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKSdk4V2tQ .img {
  margin: auto;
}
.cid-sKSdk4V2tQ .card-box {
  width: 100%;
}
.cid-sKSdk4V2tQ p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSdk4V2tQ .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKSdk4V2tQ .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSdk4V2tQ .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKSdk4V2tQ img {
  width: 100%;
}
.cid-sKSdk4V2tQ .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSdk4V2tQ .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSdk4V2tQ .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSdk4V2tQ .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSdk4V2tQ .card-title,
.cid-sKSdk4V2tQ .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKSdk4V2tQ .mbr-section-title {
  text-align: center;
}
.cid-sKSdk4V2tQ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSdk4V2tQ .mbr-section-title,
.cid-sKSdk4V2tQ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSdk4V2tQ .mbr-text,
.cid-sKSdk4V2tQ .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKSdk4V2tQ .mbr-text,
.cid-sKSdk4V2tQ .line-wrap2 B {
  color: #ee9521;
}
.cid-sKSdk5CUJR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSdk5CUJR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSdk5CUJR .mbr-section-btn {
  color: #000000;
}
.cid-sKSdk67sgk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSdk67sgk .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSdk67sgk p {
  margin: 0;
}
.cid-sKSdk6qQ3B {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSdk6qQ3B .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSdk6qQ3B p {
  margin: 0;
}
.cid-sKSdk6KAqk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSdk6KAqk .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSdk6KAqk .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSdk6KAqk .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSdk6KAqk .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSdk6KAqk .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSdk6KAqk .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSdk6KAqk .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSdk6KAqk .logo-title {
  text-align: center;
}
.cid-sKSdk6KAqk .logo-sub-title {
  text-align: center;
}
.cid-sKSdk6KAqk .links {
  text-align: center;
  color: #656565;
}
.cid-sKSdk6KAqk .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKS6Np7MVk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKS6Np7MVk .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKS6Np7MVk .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKS6Np7MVk .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKS6Np7MVk p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKS6Np7MVk img {
  width: 169px;
}
.cid-sKS6Np7MVk .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKS6Np7MVk .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKS6Np7MVk .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKS6Np7MVk .box {
    padding: 2rem 3rem;
  }
}
.cid-sKS6Np7MVk .card-title,
.cid-sKS6Np7MVk .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKS6Np7MVk .mbr-section-title {
  text-align: center;
}
.cid-sKS6Np7MVk .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKS6Np7MVk .mbr-section-title,
.cid-sKS6Np7MVk .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKS6Np7MVk .mbr-text,
.cid-sKS6Np7MVk .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb8iYT7YJ .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb8iYT7YJ .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb8iYT7YJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb8iYT7YJ .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb8iYT7YJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb8iYT7YJ .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb8iYT7YJ .dropdown-item {
  padding: 0;
}
.cid-sLb8iYT7YJ .dropdown-item,
.cid-sLb8iYT7YJ .nav-link,
.cid-sLb8iYT7YJ .brand-name {
  font-style: normal;
}
.cid-sLb8iYT7YJ .dropdown-item:hover,
.cid-sLb8iYT7YJ .nav-link:hover,
.cid-sLb8iYT7YJ .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb8iYT7YJ .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb8iYT7YJ .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb8iYT7YJ .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb8iYT7YJ .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb8iYT7YJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb8iYT7YJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb8iYT7YJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb8iYT7YJ .content-text {
  margin-bottom: 0;
}
.cid-sLb8iYT7YJ .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb8iYT7YJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb8iYT7YJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb8iYT7YJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb8iYT7YJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb8iYT7YJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8iYT7YJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8iYT7YJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb8iYT7YJ .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb8iYT7YJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb8iYT7YJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb8iYT7YJ .content-right-side {
  text-align: center;
}
.cid-sLb8iYT7YJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb8iYT7YJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb8iYT7YJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb8iYT7YJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb8iYT7YJ .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8iYT7YJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb8iYT7YJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb8iYT7YJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb8iYT7YJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb8iYT7YJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb8iYT7YJ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb8iYT7YJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb8iYT7YJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb8iYT7YJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb8iYT7YJ .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb8iYT7YJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb8iYT7YJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb8iYT7YJ .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb8iYT7YJ .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb8iYT7YJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb8iYT7YJ .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8iYT7YJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb8iYT7YJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb8iYT7YJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb8iYT7YJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb8iYT7YJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb8iYT7YJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb8iYT7YJ .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-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb8iYT7YJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb8iYT7YJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb8iYT7YJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb8iYT7YJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb8iYT7YJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb8iYT7YJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb8iYT7YJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb8iYT7YJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb8iYT7YJ button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb8iYT7YJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb8iYT7YJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb8iYT7YJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8iYT7YJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8iYT7YJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb8iYT7YJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8iYT7YJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb8iYT7YJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb8iYT7YJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8iYT7YJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb8iYT7YJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb8iYT7YJ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.collapsing,
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb8iYT7YJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb8iYT7YJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb8iYT7YJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb8iYT7YJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb8iYT7YJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb8iYT7YJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb8iYT7YJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb8iYT7YJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb8iYT7YJ .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb8iYT7YJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb8iYT7YJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb8iYT7YJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb8iYT7YJ .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb8iYT7YJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb8iYT7YJ .navbar-collapse.collapsing,
  .cid-sLb8iYT7YJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb8iYT7YJ .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb8iYT7YJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb8iYT7YJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb8iYT7YJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb8iYT7YJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb8iYT7YJ .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb8iYT7YJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb8iYT7YJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb8iYT7YJ img {
    height: 3.8rem !important;
  }
  .cid-sLb8iYT7YJ .btn {
    display: -webkit-flex;
  }
  .cid-sLb8iYT7YJ button.navbar-toggler {
    display: block;
  }
  .cid-sLb8iYT7YJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb8iYT7YJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8iYT7YJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb8iYT7YJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb8iYT7YJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb8iYT7YJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb8iYT7YJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb8iYT7YJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb8iYT7YJ .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb8iYT7YJ .nav-link:focus {
  outline: none;
}
.cid-sLb8iYT7YJ .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb8iYT7YJ .dropdown-item.active,
.cid-sLb8iYT7YJ .dropdown-item:active {
  color: initial;
}
.cid-sLb8iYT7YJ .widget-title,
.cid-sLb8iYT7YJ .widget-icon {
  color: #e9e9e9;
}
.cid-sLb8iYT7YJ .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb8iYT7YJ .menu-logo {
    display: none;
  }
  .cid-sLb8iYT7YJ .navbar {
    padding: 0;
  }
  .cid-sLb8iYT7YJ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8iYT7YJ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb8iYT7YJ .menu-logo {
    display: none;
  }
  .cid-sLb8iYT7YJ .navbar {
    padding: 0;
  }
  .cid-sLb8iYT7YJ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8iYT7YJ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKS6NpX2Sl {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKS6NpX2Sl .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKS6NpX2Sl .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKS6NpX2Sl .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKS6NpX2Sl .img {
  margin: auto;
}
.cid-sKS6NpX2Sl .card-box {
  width: 100%;
}
.cid-sKS6NpX2Sl p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKS6NpX2Sl .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKS6NpX2Sl .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKS6NpX2Sl .card-img span {
  color: #000000;
  font-size: 3.2rem;
}
.cid-sKS6NpX2Sl img {
  width: 100%;
}
.cid-sKS6NpX2Sl .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKS6NpX2Sl .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKS6NpX2Sl .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKS6NpX2Sl .box {
    padding: 2rem 3rem;
  }
}
.cid-sKS6NpX2Sl .card-title,
.cid-sKS6NpX2Sl .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKS6NpX2Sl .mbr-section-title {
  text-align: center;
}
.cid-sKS6NpX2Sl .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKS6NpX2Sl .mbr-section-title,
.cid-sKS6NpX2Sl .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKS6NpX2Sl .mbr-text,
.cid-sKS6NpX2Sl .line-wrap2 {
  text-align: left;
  color: #3f671b;
}
.cid-sKS6NpX2Sl .mbr-text,
.cid-sKS6NpX2Sl .line-wrap2 B {
  color: #ee9521;
}
.cid-sKS6NqDlwQ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKS6NqDlwQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS6NqDlwQ .mbr-section-btn {
  color: #000000;
}
.cid-sKS6NqDlwQ .mbr-section-title {
  color: #3f671b;
}
.cid-sKS6NqDlwQ .mbr-section-title DIV {
  text-align: center;
}
.cid-sKS6NqDlwQ P {
  color: #000000;
  text-align: left;
}
.cid-sKS6Nr94tR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKS6Nr94tR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS6Nr94tR .mbr-section-btn {
  color: #000000;
}
.cid-sKS6NrQINN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKS6NrQINN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS6NrQINN .mbr-section-btn {
  color: #000000;
}
.cid-sKS6NrQINN .mbr-text,
.cid-sKS6NrQINN .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sKS6NsnIQU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKS6NsnIQU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS6NsnIQU .mbr-section-btn {
  color: #000000;
}
.cid-sKS6Nt6XSb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKS6Nt6XSb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKS6Nt6XSb .mbr-section-btn {
  color: #000000;
}
.cid-sKS6NtWgVK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKS6NtWgVK .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKS6NtWgVK p {
  margin: 0;
}
.cid-sKS6NuqfDZ {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKS6NuqfDZ .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKS6NuqfDZ p {
  margin: 0;
}
.cid-sKS6NuVvop {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKS6NuVvop .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKS6NuVvop .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKS6NuVvop .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKS6NuVvop .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKS6NuVvop .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKS6NuVvop .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKS6NuVvop .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKS6NuVvop .logo-title {
  text-align: center;
}
.cid-sKS6NuVvop .logo-sub-title {
  text-align: center;
}
.cid-sKS6NuVvop .links {
  text-align: center;
  color: #656565;
}
.cid-sKS6NuVvop .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSfl8ZTpH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfl8ZTpH .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfl8ZTpH .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSfl8ZTpH .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSfl8ZTpH p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfl8ZTpH img {
  width: 169px;
}
.cid-sKSfl8ZTpH .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfl8ZTpH .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfl8ZTpH .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfl8ZTpH .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfl8ZTpH .card-title,
.cid-sKSfl8ZTpH .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSfl8ZTpH .mbr-section-title {
  text-align: center;
}
.cid-sKSfl8ZTpH .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfl8ZTpH .mbr-section-title,
.cid-sKSfl8ZTpH .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfl8ZTpH .mbr-text,
.cid-sKSfl8ZTpH .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb6K56kCs .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb6K56kCs .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb6K56kCs .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb6K56kCs .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb6K56kCs .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb6K56kCs .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb6K56kCs .dropdown-item {
  padding: 0;
}
.cid-sLb6K56kCs .dropdown-item,
.cid-sLb6K56kCs .nav-link,
.cid-sLb6K56kCs .brand-name {
  font-style: normal;
}
.cid-sLb6K56kCs .dropdown-item:hover,
.cid-sLb6K56kCs .nav-link:hover,
.cid-sLb6K56kCs .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb6K56kCs .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb6K56kCs .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb6K56kCs .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb6K56kCs .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb6K56kCs .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb6K56kCs .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb6K56kCs .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb6K56kCs .content-text {
  margin-bottom: 0;
}
.cid-sLb6K56kCs .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb6K56kCs .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb6K56kCs .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb6K56kCs .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb6K56kCs .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb6K56kCs .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6K56kCs .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6K56kCs .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb6K56kCs .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb6K56kCs .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb6K56kCs .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb6K56kCs .content-right-side {
  text-align: center;
}
.cid-sLb6K56kCs .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb6K56kCs .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb6K56kCs .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb6K56kCs .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb6K56kCs .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6K56kCs .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb6K56kCs .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb6K56kCs .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb6K56kCs .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb6K56kCs .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb6K56kCs .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb6K56kCs .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb6K56kCs .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb6K56kCs .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb6K56kCs .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb6K56kCs .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb6K56kCs .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb6K56kCs .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb6K56kCs .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb6K56kCs .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb6K56kCs .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6K56kCs .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb6K56kCs .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb6K56kCs .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb6K56kCs .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb6K56kCs .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb6K56kCs .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb6K56kCs .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-sLb6K56kCs .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb6K56kCs .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb6K56kCs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb6K56kCs .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb6K56kCs .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb6K56kCs .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb6K56kCs .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb6K56kCs .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb6K56kCs .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb6K56kCs .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb6K56kCs .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb6K56kCs .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb6K56kCs button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb6K56kCs button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb6K56kCs button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb6K56kCs button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb6K56kCs button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6K56kCs button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6K56kCs button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb6K56kCs nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6K56kCs nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb6K56kCs nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb6K56kCs nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6K56kCs .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb6K56kCs .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb6K56kCs .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse.collapsing,
.cid-sLb6K56kCs .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb6K56kCs .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb6K56kCs .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb6K56kCs .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb6K56kCs .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb6K56kCs .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb6K56kCs .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb6K56kCs .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb6K56kCs .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb6K56kCs .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb6K56kCs .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb6K56kCs .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb6K56kCs .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb6K56kCs .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb6K56kCs .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb6K56kCs .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb6K56kCs .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb6K56kCs .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb6K56kCs .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb6K56kCs .navbar-collapse.collapsing,
  .cid-sLb6K56kCs .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb6K56kCs .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb6K56kCs .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb6K56kCs .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb6K56kCs .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb6K56kCs .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb6K56kCs .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb6K56kCs .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb6K56kCs .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb6K56kCs img {
    height: 3.8rem !important;
  }
  .cid-sLb6K56kCs .btn {
    display: -webkit-flex;
  }
  .cid-sLb6K56kCs button.navbar-toggler {
    display: block;
  }
  .cid-sLb6K56kCs .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb6K56kCs .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6K56kCs .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb6K56kCs .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb6K56kCs .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb6K56kCs .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb6K56kCs .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb6K56kCs .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb6K56kCs .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb6K56kCs .nav-link:focus {
  outline: none;
}
.cid-sLb6K56kCs .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb6K56kCs .dropdown-item.active,
.cid-sLb6K56kCs .dropdown-item:active {
  color: initial;
}
.cid-sLb6K56kCs .widget-title,
.cid-sLb6K56kCs .widget-icon {
  color: #e9e9e9;
}
.cid-sLb6K56kCs .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb6K56kCs .menu-logo {
    display: none;
  }
  .cid-sLb6K56kCs .navbar {
    padding: 0;
  }
  .cid-sLb6K56kCs .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6K56kCs button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb6K56kCs .menu-logo {
    display: none;
  }
  .cid-sLb6K56kCs .navbar {
    padding: 0;
  }
  .cid-sLb6K56kCs .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6K56kCs button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLb7OOuOqm {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLb7OOuOqm .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLb7OOuOqm .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLb7OOuOqm .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLb7OOuOqm .img {
  margin: auto;
}
.cid-sLb7OOuOqm .card-box {
  width: 100%;
}
.cid-sLb7OOuOqm p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLb7OOuOqm .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLb7OOuOqm .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb7OOuOqm .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLb7OOuOqm img {
  width: 100%;
}
.cid-sLb7OOuOqm .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLb7OOuOqm .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLb7OOuOqm .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLb7OOuOqm .box {
    padding: 2rem 3rem;
  }
}
.cid-sLb7OOuOqm .card-title,
.cid-sLb7OOuOqm .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLb7OOuOqm .mbr-section-title {
  text-align: center;
}
.cid-sLb7OOuOqm .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLb7OOuOqm .mbr-section-title,
.cid-sLb7OOuOqm .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLb7OOuOqm .mbr-text,
.cid-sLb7OOuOqm .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sKSflaOo3s {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSflaOo3s .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sKSflaOo3s .mbr-text,
.cid-sKSflaOo3s .mbr-section-btn {
  text-align: center;
}
.cid-sKSflbg4De {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSflbg4De .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflbg4De .mbr-section-btn {
  color: #000000;
}
.cid-sKSflbg4De .mbr-text,
.cid-sKSflbg4De .mbr-section-btn {
  color: #000000;
}
.cid-sKSflbKWdO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSflbKWdO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflbKWdO .mbr-section-btn {
  color: #000000;
}
.cid-sKSflbKWdO .mbr-text,
.cid-sKSflbKWdO .mbr-section-btn {
  color: #000000;
}
.cid-sKSflcfEUZ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKSflcfEUZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflcfEUZ .mbr-section-btn {
  color: #000000;
}
.cid-sKSflcfEUZ .mbr-text,
.cid-sKSflcfEUZ .mbr-section-btn {
  color: #000000;
}
.cid-sKSflcHenn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSflcHenn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflcHenn .mbr-section-btn {
  color: #000000;
}
.cid-sKSflcHenn .mbr-text,
.cid-sKSflcHenn .mbr-section-btn {
  color: #000000;
}
.cid-sKSflcHenn P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKSfldeeim {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKSfldeeim .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfldeeim .mbr-section-btn {
  color: #000000;
}
.cid-sKSfldeeim .mbr-text,
.cid-sKSfldeeim .mbr-section-btn {
  color: #000000;
}
.cid-sKSfldOoky {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-sKSfldOoky .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfldOoky .mbr-section-btn {
  color: #000000;
}
.cid-sKSfldOoky .mbr-text,
.cid-sKSfldOoky .mbr-section-btn {
  color: #000000;
}
.cid-sKSflemJ01 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSflemJ01 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflemJ01 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfleQ9gR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfleQ9gR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfleQ9gR .mbr-section-btn {
  color: #000000;
}
.cid-sKSflfl6Ta {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSflfl6Ta .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflfl6Ta .mbr-section-btn {
  color: #000000;
}
.cid-sKSflfTJZp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSflfTJZp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflfTJZp .mbr-section-btn {
  color: #000000;
}
.cid-sKSflfTJZp .mbr-text,
.cid-sKSflfTJZp .mbr-section-btn {
  color: #000000;
}
.cid-sKSflgoCPf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSflgoCPf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSflgoCPf .mbr-section-btn {
  color: #000000;
}
.cid-sKSflgUhmd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSflgUhmd .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSflgUhmd p {
  margin: 0;
}
.cid-sKSflhjNsY {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSflhjNsY .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSflhjNsY p {
  margin: 0;
}
.cid-sKSflhOWpy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSflhOWpy .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSflhOWpy .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSflhOWpy .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSflhOWpy .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSflhOWpy .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSflhOWpy .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSflhOWpy .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSflhOWpy .logo-title {
  text-align: center;
}
.cid-sKSflhOWpy .logo-sub-title {
  text-align: center;
}
.cid-sKSflhOWpy .links {
  text-align: center;
  color: #656565;
}
.cid-sKSflhOWpy .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSfB3ruem {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfB3ruem .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfB3ruem .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSfB3ruem .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSfB3ruem p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfB3ruem img {
  width: 169px;
}
.cid-sKSfB3ruem .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfB3ruem .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfB3ruem .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfB3ruem .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfB3ruem .card-title,
.cid-sKSfB3ruem .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSfB3ruem .mbr-section-title {
  text-align: center;
}
.cid-sKSfB3ruem .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfB3ruem .mbr-section-title,
.cid-sKSfB3ruem .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfB3ruem .mbr-text,
.cid-sKSfB3ruem .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb7ZsjtuS .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb7ZsjtuS .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb7ZsjtuS .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb7ZsjtuS .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb7ZsjtuS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb7ZsjtuS .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb7ZsjtuS .dropdown-item {
  padding: 0;
}
.cid-sLb7ZsjtuS .dropdown-item,
.cid-sLb7ZsjtuS .nav-link,
.cid-sLb7ZsjtuS .brand-name {
  font-style: normal;
}
.cid-sLb7ZsjtuS .dropdown-item:hover,
.cid-sLb7ZsjtuS .nav-link:hover,
.cid-sLb7ZsjtuS .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb7ZsjtuS .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb7ZsjtuS .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb7ZsjtuS .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb7ZsjtuS .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb7ZsjtuS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb7ZsjtuS .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb7ZsjtuS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb7ZsjtuS .content-text {
  margin-bottom: 0;
}
.cid-sLb7ZsjtuS .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb7ZsjtuS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb7ZsjtuS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb7ZsjtuS .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb7ZsjtuS .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb7ZsjtuS .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb7ZsjtuS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb7ZsjtuS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb7ZsjtuS .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb7ZsjtuS .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb7ZsjtuS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb7ZsjtuS .content-right-side {
  text-align: center;
}
.cid-sLb7ZsjtuS .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb7ZsjtuS .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb7ZsjtuS .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb7ZsjtuS .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb7ZsjtuS .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb7ZsjtuS .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb7ZsjtuS .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb7ZsjtuS .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb7ZsjtuS .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb7ZsjtuS .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb7ZsjtuS .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb7ZsjtuS .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb7ZsjtuS .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb7ZsjtuS .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb7ZsjtuS .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb7ZsjtuS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb7ZsjtuS .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb7ZsjtuS .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb7ZsjtuS .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb7ZsjtuS .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb7ZsjtuS .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb7ZsjtuS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb7ZsjtuS .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb7ZsjtuS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb7ZsjtuS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb7ZsjtuS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb7ZsjtuS .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb7ZsjtuS .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-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb7ZsjtuS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb7ZsjtuS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb7ZsjtuS .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb7ZsjtuS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb7ZsjtuS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb7ZsjtuS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb7ZsjtuS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb7ZsjtuS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb7ZsjtuS button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb7ZsjtuS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb7ZsjtuS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb7ZsjtuS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb7ZsjtuS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb7ZsjtuS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb7ZsjtuS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb7ZsjtuS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb7ZsjtuS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb7ZsjtuS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb7ZsjtuS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb7ZsjtuS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb7ZsjtuS .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.collapsing,
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb7ZsjtuS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb7ZsjtuS .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb7ZsjtuS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb7ZsjtuS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb7ZsjtuS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb7ZsjtuS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb7ZsjtuS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb7ZsjtuS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb7ZsjtuS .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb7ZsjtuS .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb7ZsjtuS .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb7ZsjtuS .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb7ZsjtuS .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb7ZsjtuS .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb7ZsjtuS .navbar-collapse.collapsing,
  .cid-sLb7ZsjtuS .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb7ZsjtuS .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb7ZsjtuS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb7ZsjtuS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb7ZsjtuS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb7ZsjtuS .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb7ZsjtuS .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb7ZsjtuS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb7ZsjtuS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb7ZsjtuS img {
    height: 3.8rem !important;
  }
  .cid-sLb7ZsjtuS .btn {
    display: -webkit-flex;
  }
  .cid-sLb7ZsjtuS button.navbar-toggler {
    display: block;
  }
  .cid-sLb7ZsjtuS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb7ZsjtuS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb7ZsjtuS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb7ZsjtuS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb7ZsjtuS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb7ZsjtuS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb7ZsjtuS .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb7ZsjtuS .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb7ZsjtuS .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb7ZsjtuS .nav-link:focus {
  outline: none;
}
.cid-sLb7ZsjtuS .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb7ZsjtuS .dropdown-item.active,
.cid-sLb7ZsjtuS .dropdown-item:active {
  color: initial;
}
.cid-sLb7ZsjtuS .widget-title,
.cid-sLb7ZsjtuS .widget-icon {
  color: #e9e9e9;
}
.cid-sLb7ZsjtuS .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb7ZsjtuS .menu-logo {
    display: none;
  }
  .cid-sLb7ZsjtuS .navbar {
    padding: 0;
  }
  .cid-sLb7ZsjtuS .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb7ZsjtuS button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb7ZsjtuS .menu-logo {
    display: none;
  }
  .cid-sLb7ZsjtuS .navbar {
    padding: 0;
  }
  .cid-sLb7ZsjtuS .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb7ZsjtuS button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKSfB4bIV0 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfB4bIV0 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfB4bIV0 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKSfB4bIV0 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKSfB4bIV0 .img {
  margin: auto;
}
.cid-sKSfB4bIV0 .card-box {
  width: 100%;
}
.cid-sKSfB4bIV0 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfB4bIV0 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKSfB4bIV0 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfB4bIV0 .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKSfB4bIV0 img {
  width: 100%;
}
.cid-sKSfB4bIV0 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfB4bIV0 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfB4bIV0 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfB4bIV0 .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfB4bIV0 .card-title,
.cid-sKSfB4bIV0 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKSfB4bIV0 .mbr-section-title {
  text-align: center;
}
.cid-sKSfB4bIV0 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfB4bIV0 .mbr-section-title,
.cid-sKSfB4bIV0 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfB4bIV0 .mbr-text,
.cid-sKSfB4bIV0 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKSfB4bIV0 .mbr-text,
.cid-sKSfB4bIV0 .line-wrap2 B {
  color: #f8c301;
}
.cid-sKSfB4OfjD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKSfB4OfjD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB4OfjD .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB5gOE3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f8c301;
}
.cid-sKSfB5gOE3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB5gOE3 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB5gOE3 .mbr-text,
.cid-sKSfB5gOE3 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB5HmdZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKSfB5HmdZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB5HmdZ .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB5HmdZ .mbr-text,
.cid-sKSfB5HmdZ .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB6cQVs {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-sKSfB6cQVs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB6cQVs .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB6cQVs .mbr-text,
.cid-sKSfB6cQVs .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB6Hz6m {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfB6Hz6m .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB6Hz6m .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB6Hz6m .mbr-text,
.cid-sKSfB6Hz6m .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB7h8J0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfB7h8J0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB7h8J0 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB7L6RI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKSfB7L6RI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB7L6RI .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB7L6RI .mbr-text,
.cid-sKSfB7L6RI .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB8i0PH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfB8i0PH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB8i0PH .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB8i0PH .mbr-text,
.cid-sKSfB8i0PH .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB8Ord3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfB8Ord3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB8Ord3 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB9jAmv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfB9jAmv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB9jAmv .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB9jAmv .mbr-text,
.cid-sKSfB9jAmv .mbr-section-btn {
  color: #000000;
}
.cid-sKSfB9P6F6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfB9P6F6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfB9P6F6 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfBamHTL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfBamHTL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfBamHTL .mbr-section-btn {
  color: #000000;
}
.cid-sKSfBamHTL .mbr-text,
.cid-sKSfBamHTL .mbr-section-btn {
  color: #000000;
}
.cid-sKSfBb2N2v {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfBb2N2v .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfBb2N2v .mbr-section-btn {
  color: #000000;
}
.cid-sKSfBb2N2v .mbr-text,
.cid-sKSfBb2N2v .mbr-section-btn {
  color: #000000;
}
.cid-sKSfBc78LQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfBc78LQ .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfBc78LQ p {
  margin: 0;
}
.cid-sKSfBcyvbt {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSfBcyvbt .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfBcyvbt p {
  margin: 0;
}
.cid-sKSfBcYOoI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfBcYOoI .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSfBcYOoI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSfBcYOoI .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfBcYOoI .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSfBcYOoI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSfBcYOoI .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSfBcYOoI .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSfBcYOoI .logo-title {
  text-align: center;
}
.cid-sKSfBcYOoI .logo-sub-title {
  text-align: center;
}
.cid-sKSfBcYOoI .links {
  text-align: center;
  color: #656565;
}
.cid-sKSfBcYOoI .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSfBds8pA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfBds8pA .container-fluid {
  padding: 0;
}
.cid-sKSfBds8pA img {
  width: 100%;
}
.cid-sKSfBds8pA .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-sKSfBds8pA .content {
    padding: 3rem;
  }
}
.cid-sKSfBds8pA .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-sKSfBds8pA .img-col {
  padding: 0;
  margin: auto;
}
.cid-sKSfBds8pA .mbr-section-title {
  text-align: left;
}
.cid-sKSfFyR67k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFyR67k .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfFyR67k .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSfFyR67k .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSfFyR67k p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfFyR67k img {
  width: 169px;
}
.cid-sKSfFyR67k .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfFyR67k .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfFyR67k .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfFyR67k .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfFyR67k .card-title,
.cid-sKSfFyR67k .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSfFyR67k .mbr-section-title {
  text-align: center;
}
.cid-sKSfFyR67k .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfFyR67k .mbr-section-title,
.cid-sKSfFyR67k .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfFyR67k .mbr-text,
.cid-sKSfFyR67k .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb8624oOq .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb8624oOq .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb8624oOq .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb8624oOq .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb8624oOq .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8624oOq .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb8624oOq .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb8624oOq .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb8624oOq .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb8624oOq .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb8624oOq .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb8624oOq .dropdown-item {
  padding: 0;
}
.cid-sLb8624oOq .dropdown-item,
.cid-sLb8624oOq .nav-link,
.cid-sLb8624oOq .brand-name {
  font-style: normal;
}
.cid-sLb8624oOq .dropdown-item:hover,
.cid-sLb8624oOq .nav-link:hover,
.cid-sLb8624oOq .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb8624oOq .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb8624oOq .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb8624oOq .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb8624oOq .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb8624oOq .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb8624oOq .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb8624oOq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb8624oOq .content-text {
  margin-bottom: 0;
}
.cid-sLb8624oOq .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb8624oOq .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb8624oOq .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb8624oOq .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb8624oOq .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb8624oOq .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8624oOq .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8624oOq .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb8624oOq .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb8624oOq .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb8624oOq .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb8624oOq .content-right-side {
  text-align: center;
}
.cid-sLb8624oOq .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb8624oOq .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb8624oOq .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb8624oOq .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb8624oOq .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8624oOq .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb8624oOq .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb8624oOq .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb8624oOq .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb8624oOq .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb8624oOq .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb8624oOq .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb8624oOq .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb8624oOq .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb8624oOq .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb8624oOq .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb8624oOq .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb8624oOq .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb8624oOq .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb8624oOq .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb8624oOq .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8624oOq .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb8624oOq .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb8624oOq .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb8624oOq .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb8624oOq .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb8624oOq .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb8624oOq .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-sLb8624oOq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb8624oOq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb8624oOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb8624oOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb8624oOq .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb8624oOq .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb8624oOq .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb8624oOq .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb8624oOq .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb8624oOq .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb8624oOq .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb8624oOq .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb8624oOq button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb8624oOq button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb8624oOq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb8624oOq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb8624oOq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8624oOq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8624oOq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb8624oOq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8624oOq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb8624oOq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb8624oOq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8624oOq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb8624oOq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb8624oOq .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb8624oOq .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb8624oOq .collapsed .navbar-collapse.collapsing,
.cid-sLb8624oOq .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb8624oOq .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb8624oOq .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb8624oOq .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb8624oOq .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb8624oOq .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb8624oOq .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb8624oOq .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb8624oOq .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb8624oOq .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb8624oOq .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb8624oOq .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb8624oOq .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb8624oOq .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb8624oOq .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb8624oOq .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb8624oOq .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb8624oOq .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb8624oOq .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb8624oOq .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb8624oOq .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb8624oOq .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb8624oOq .navbar-collapse.collapsing,
  .cid-sLb8624oOq .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb8624oOq .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb8624oOq .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb8624oOq .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb8624oOq .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb8624oOq .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb8624oOq .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb8624oOq .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb8624oOq .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb8624oOq img {
    height: 3.8rem !important;
  }
  .cid-sLb8624oOq .btn {
    display: -webkit-flex;
  }
  .cid-sLb8624oOq button.navbar-toggler {
    display: block;
  }
  .cid-sLb8624oOq .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb8624oOq .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8624oOq .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb8624oOq .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb8624oOq .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb8624oOq .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb8624oOq .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb8624oOq .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb8624oOq .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb8624oOq .nav-link:focus {
  outline: none;
}
.cid-sLb8624oOq .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb8624oOq .dropdown-item.active,
.cid-sLb8624oOq .dropdown-item:active {
  color: initial;
}
.cid-sLb8624oOq .widget-title,
.cid-sLb8624oOq .widget-icon {
  color: #e9e9e9;
}
.cid-sLb8624oOq .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb8624oOq .menu-logo {
    display: none;
  }
  .cid-sLb8624oOq .navbar {
    padding: 0;
  }
  .cid-sLb8624oOq .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8624oOq button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb8624oOq .menu-logo {
    display: none;
  }
  .cid-sLb8624oOq .navbar {
    padding: 0;
  }
  .cid-sLb8624oOq .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8624oOq button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKSfFzFxnB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFzFxnB .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfFzFxnB .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKSfFzFxnB .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKSfFzFxnB .img {
  margin: auto;
}
.cid-sKSfFzFxnB .card-box {
  width: 100%;
}
.cid-sKSfFzFxnB p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfFzFxnB .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKSfFzFxnB .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfFzFxnB .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKSfFzFxnB img {
  width: 100%;
}
.cid-sKSfFzFxnB .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfFzFxnB .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfFzFxnB .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfFzFxnB .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfFzFxnB .card-title,
.cid-sKSfFzFxnB .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKSfFzFxnB .mbr-section-title {
  text-align: center;
}
.cid-sKSfFzFxnB .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfFzFxnB .mbr-section-title,
.cid-sKSfFzFxnB .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfFzFxnB .mbr-text,
.cid-sKSfFzFxnB .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKSfFzFxnB .mbr-text,
.cid-sKSfFzFxnB .line-wrap2 B {
  color: #3f671b;
}
.cid-sKSfFAmsxa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFAmsxa .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFAmsxa .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFAXZHn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfFAXZHn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFAXZHn .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFAXZHn .mbr-text,
.cid-sKSfFAXZHn .mbr-section-btn {
  color: #ffffff;
}
.cid-sKSfFBrGnl {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKSfFBrGnl .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFBrGnl .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFBrGnl .mbr-text,
.cid-sKSfFBrGnl .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFBVpIc {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFBVpIc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFBVpIc .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFCqhvc {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKSfFCqhvc .mbr-section-subtitle {
  color: #767676;
}
.cid-sKSfFCqhvc .container-table {
  margin: 0 auto;
}
.cid-sKSfFCqhvc table.dataTable thead .sorting:before,
.cid-sKSfFCqhvc table.dataTable thead .sorting:after,
.cid-sKSfFCqhvc table.dataTable thead .sorting_asc:before,
.cid-sKSfFCqhvc table.dataTable thead .sorting_asc:after,
.cid-sKSfFCqhvc table.dataTable thead .sorting_desc:before,
.cid-sKSfFCqhvc table.dataTable thead .sorting_desc:after,
.cid-sKSfFCqhvc table.dataTable thead .sorting_asc_disabled:before,
.cid-sKSfFCqhvc table.dataTable thead .sorting_asc_disabled:after,
.cid-sKSfFCqhvc table.dataTable thead .sorting_desc_disabled:before,
.cid-sKSfFCqhvc table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKSfFCqhvc .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKSfFCqhvc .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKSfFCqhvc .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKSfFCqhvc .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKSfFCqhvc .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sKSfFCqhvc .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKSfFCqhvc .table-heads {
  color: #ffffff;
}
.cid-sKSfFCqhvc .dataTables_wrapper {
  display: block;
}
.cid-sKSfFCqhvc .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKSfFCqhvc .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKSfFCqhvc table {
  width: auto !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKSfFCqhvc table td,
.cid-sKSfFCqhvc table th {
  white-space: nowrap;
}
.cid-sKSfFCqhvc table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKSfFCqhvc table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKSfFCqhvc table td {
  border-top: 1px solid #ffffff;
}
.cid-sKSfFCqhvc table.table {
  background: #ececec;
}
.cid-sKSfFCqhvc .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKSfFCqhvc .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKSfFCqhvc .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKSfFCqhvc .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKSfFCqhvc .dataTables_filter {
    text-align: center;
  }
  .cid-sKSfFCqhvc .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKSfFCqhvc .mbr-section-title,
.cid-sKSfFCqhvc .line-wrap {
  text-align: center;
}
.cid-sKSfFCqhvc .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKSfFDAbzJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfFDAbzJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFDAbzJ .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFE9f8Z {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFE9f8Z .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFE9f8Z .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFEPYZG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFEPYZG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFEPYZG .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFFqF1p {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFFqF1p .mbr-section-subtitle {
  color: #767676;
}
.cid-sKSfFFqF1p .container-table {
  margin: 0 auto;
}
.cid-sKSfFFqF1p table.dataTable thead .sorting:before,
.cid-sKSfFFqF1p table.dataTable thead .sorting:after,
.cid-sKSfFFqF1p table.dataTable thead .sorting_asc:before,
.cid-sKSfFFqF1p table.dataTable thead .sorting_asc:after,
.cid-sKSfFFqF1p table.dataTable thead .sorting_desc:before,
.cid-sKSfFFqF1p table.dataTable thead .sorting_desc:after,
.cid-sKSfFFqF1p table.dataTable thead .sorting_asc_disabled:before,
.cid-sKSfFFqF1p table.dataTable thead .sorting_asc_disabled:after,
.cid-sKSfFFqF1p table.dataTable thead .sorting_desc_disabled:before,
.cid-sKSfFFqF1p table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKSfFFqF1p .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKSfFFqF1p .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKSfFFqF1p .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #3f671b;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKSfFFqF1p .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKSfFFqF1p .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #0a1c44;
}
.cid-sKSfFFqF1p .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKSfFFqF1p .table-heads {
  color: #ffffff;
}
.cid-sKSfFFqF1p .dataTables_wrapper {
  display: block;
}
.cid-sKSfFFqF1p .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKSfFFqF1p .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKSfFFqF1p table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKSfFFqF1p table td,
.cid-sKSfFFqF1p table th {
  white-space: nowrap;
}
.cid-sKSfFFqF1p table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKSfFFqF1p table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKSfFFqF1p table td {
  border-top: 1px solid #ffffff;
}
.cid-sKSfFFqF1p table.table {
  background: #ececec;
}
.cid-sKSfFFqF1p .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKSfFFqF1p .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKSfFFqF1p .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKSfFFqF1p .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKSfFFqF1p .dataTables_filter {
    text-align: center;
  }
  .cid-sKSfFFqF1p .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKSfFFqF1p .mbr-section-title,
.cid-sKSfFFqF1p .line-wrap {
  text-align: center;
}
.cid-sKSfFFqF1p .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKSfFGjIcu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFGjIcu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFGjIcu .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFGShHY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFGShHY .mbr-section-subtitle {
  color: #767676;
}
.cid-sKSfFGShHY .container-table {
  margin: 0 auto;
}
.cid-sKSfFGShHY table.dataTable thead .sorting:before,
.cid-sKSfFGShHY table.dataTable thead .sorting:after,
.cid-sKSfFGShHY table.dataTable thead .sorting_asc:before,
.cid-sKSfFGShHY table.dataTable thead .sorting_asc:after,
.cid-sKSfFGShHY table.dataTable thead .sorting_desc:before,
.cid-sKSfFGShHY table.dataTable thead .sorting_desc:after,
.cid-sKSfFGShHY table.dataTable thead .sorting_asc_disabled:before,
.cid-sKSfFGShHY table.dataTable thead .sorting_asc_disabled:after,
.cid-sKSfFGShHY table.dataTable thead .sorting_desc_disabled:before,
.cid-sKSfFGShHY table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKSfFGShHY .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKSfFGShHY .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKSfFGShHY .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKSfFGShHY .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKSfFGShHY .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  color: #0a1c44;
}
.cid-sKSfFGShHY .head-item:hover {
  background: #ffffff;
  color: inherit;
}
.cid-sKSfFGShHY .table-heads {
  color: #ffffff;
}
.cid-sKSfFGShHY .dataTables_wrapper {
  display: block;
}
.cid-sKSfFGShHY .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKSfFGShHY .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKSfFGShHY table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKSfFGShHY table td,
.cid-sKSfFGShHY table th {
  white-space: nowrap;
}
.cid-sKSfFGShHY table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKSfFGShHY table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKSfFGShHY table td {
  border-top: 1px solid #ffffff;
}
.cid-sKSfFGShHY table.table {
  background: #ececec;
}
.cid-sKSfFGShHY .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKSfFGShHY .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKSfFGShHY .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKSfFGShHY .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKSfFGShHY .dataTables_filter {
    text-align: center;
  }
  .cid-sKSfFGShHY .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKSfFGShHY .mbr-section-title,
.cid-sKSfFGShHY .line-wrap {
  text-align: center;
}
.cid-sKSfFGShHY .mbr-section-sub-title {
  text-align: center;
  color: #0a1c44;
}
.cid-sKSfFHKKHU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFHKKHU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFHKKHU .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFIwAyd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFIwAyd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFIwAyd .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFJ7wBN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfFJ7wBN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFJ7wBN .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFJIcFY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfFJIcFY .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFJIcFY .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFKkljR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKSfFKkljR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFKkljR .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFKkljR .mbr-text,
.cid-sKSfFKkljR .mbr-section-btn {
  color: #ffffff;
}
.cid-sKSfFKWElq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfFKWElq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFKWElq .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFLG7Y9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFLG7Y9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFLG7Y9 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFMjSvK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfFMjSvK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFMjSvK .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFMYDus {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFMYDus .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFMYDus .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFNCoFr {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFNCoFr .mbr-section-subtitle {
  color: #767676;
}
.cid-sKSfFNCoFr .container-table {
  margin: 0 auto;
}
.cid-sKSfFNCoFr table.dataTable thead .sorting:before,
.cid-sKSfFNCoFr table.dataTable thead .sorting:after,
.cid-sKSfFNCoFr table.dataTable thead .sorting_asc:before,
.cid-sKSfFNCoFr table.dataTable thead .sorting_asc:after,
.cid-sKSfFNCoFr table.dataTable thead .sorting_desc:before,
.cid-sKSfFNCoFr table.dataTable thead .sorting_desc:after,
.cid-sKSfFNCoFr table.dataTable thead .sorting_asc_disabled:before,
.cid-sKSfFNCoFr table.dataTable thead .sorting_asc_disabled:after,
.cid-sKSfFNCoFr table.dataTable thead .sorting_desc_disabled:before,
.cid-sKSfFNCoFr table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKSfFNCoFr .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKSfFNCoFr .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKSfFNCoFr .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKSfFNCoFr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKSfFNCoFr .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sKSfFNCoFr .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKSfFNCoFr .table-heads {
  color: #ffffff;
}
.cid-sKSfFNCoFr .dataTables_wrapper {
  display: block;
}
.cid-sKSfFNCoFr .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKSfFNCoFr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKSfFNCoFr table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKSfFNCoFr table td,
.cid-sKSfFNCoFr table th {
  white-space: nowrap;
}
.cid-sKSfFNCoFr table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKSfFNCoFr table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKSfFNCoFr table td {
  border-top: 1px solid #ffffff;
}
.cid-sKSfFNCoFr table.table {
  background: #ececec;
}
.cid-sKSfFNCoFr .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKSfFNCoFr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKSfFNCoFr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKSfFNCoFr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKSfFNCoFr .dataTables_filter {
    text-align: center;
  }
  .cid-sKSfFNCoFr .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKSfFNCoFr .mbr-section-title,
.cid-sKSfFNCoFr .line-wrap {
  text-align: center;
}
.cid-sKSfFNCoFr .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKSfFOGfvN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFOGfvN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFOGfvN .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFPyufu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfFPyufu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFPyufu .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFPyufu .mbr-text,
.cid-sKSfFPyufu .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFQdxha {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFQdxha .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFQdxha .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFQdxha .mbr-text,
.cid-sKSfFQdxha .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFQSHAh {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFQSHAh .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFQSHAh .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFRAgiL {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFRAgiL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFRAgiL .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFSgkEp {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfFSgkEp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFSgkEp .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFT3zo9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfFT3zo9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFT3zo9 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFT3zo9 .mbr-text,
.cid-sKSfFT3zo9 .mbr-section-btn {
  color: #ececec;
}
.cid-sKSfFTOBIE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFTOBIE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFTOBIE .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFTOBIE .mbr-text,
.cid-sKSfFTOBIE .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFUwV6E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfFUwV6E .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFUwV6E .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFUwV6E .mbr-text,
.cid-sKSfFUwV6E .mbr-section-btn {
  color: #ececec;
}
.cid-sKSfFVdBso {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFVdBso .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFVdBso .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFVdBso .mbr-text,
.cid-sKSfFVdBso .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFVUikX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfFVUikX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFVUikX .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFVUikX .mbr-text,
.cid-sKSfFVUikX .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFWDXmR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfFWDXmR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFWDXmR .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFWDXmR .mbr-text,
.cid-sKSfFWDXmR .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfFXtYac {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFXtYac .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFXtYac .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFYdp56 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFYdp56 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFYdp56 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFYYJbG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfFYYJbG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFYYJbG .mbr-section-btn {
  color: #000000;
}
.cid-sKSfFYYJbG P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKSfFZQh0Z {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfFZQh0Z .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfFZQh0Z .mbr-section-btn {
  color: #000000;
}
.cid-sKSfG0AQG0 {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ececec;
}
.cid-sKSfG0AQG0 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sKSfG0AQG0 img {
  width: 100%;
}
.cid-sKSfG0AQG0 p {
  line-height: 1.6;
}
.cid-sKSfG0AQG0 .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKSfG0AQG0 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sKSfG0AQG0 .mbr-text,
.cid-sKSfG0AQG0 .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-sKSfG0AQG0 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKSfG0AQG0 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sKSfG0AQG0 .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sKSfG0AQG0 .mbr-section-title,
.cid-sKSfG0AQG0 .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-sKSfG0AQG0 .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sKSfG1sPkS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfG1sPkS .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfG1sPkS p {
  margin: 0;
}
.cid-sKSfG27uOw {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSfG27uOw .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfG27uOw p {
  margin: 0;
}
.cid-sKSfG2OAsL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfG2OAsL .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSfG2OAsL .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSfG2OAsL .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfG2OAsL .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSfG2OAsL .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSfG2OAsL .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSfG2OAsL .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSfG2OAsL .logo-title {
  text-align: center;
}
.cid-sKSfG2OAsL .logo-sub-title {
  text-align: center;
}
.cid-sKSfG2OAsL .links {
  text-align: center;
  color: #656565;
}
.cid-sKSfG2OAsL .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSfLhoxWV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLhoxWV .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfLhoxWV .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSfLhoxWV .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSfLhoxWV p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfLhoxWV img {
  width: 169px;
}
.cid-sKSfLhoxWV .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfLhoxWV .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfLhoxWV .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfLhoxWV .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfLhoxWV .card-title,
.cid-sKSfLhoxWV .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSfLhoxWV .mbr-section-title {
  text-align: center;
}
.cid-sKSfLhoxWV .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfLhoxWV .mbr-section-title,
.cid-sKSfLhoxWV .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfLhoxWV .mbr-text,
.cid-sKSfLhoxWV .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb8bLxIip .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb8bLxIip .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb8bLxIip .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb8bLxIip .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb8bLxIip .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb8bLxIip .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb8bLxIip .dropdown-item {
  padding: 0;
}
.cid-sLb8bLxIip .dropdown-item,
.cid-sLb8bLxIip .nav-link,
.cid-sLb8bLxIip .brand-name {
  font-style: normal;
}
.cid-sLb8bLxIip .dropdown-item:hover,
.cid-sLb8bLxIip .nav-link:hover,
.cid-sLb8bLxIip .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb8bLxIip .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb8bLxIip .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb8bLxIip .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb8bLxIip .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb8bLxIip .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb8bLxIip .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb8bLxIip .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb8bLxIip .content-text {
  margin-bottom: 0;
}
.cid-sLb8bLxIip .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb8bLxIip .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb8bLxIip .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb8bLxIip .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb8bLxIip .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb8bLxIip .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8bLxIip .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb8bLxIip .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb8bLxIip .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb8bLxIip .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb8bLxIip .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb8bLxIip .content-right-side {
  text-align: center;
}
.cid-sLb8bLxIip .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb8bLxIip .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb8bLxIip .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb8bLxIip .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb8bLxIip .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8bLxIip .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb8bLxIip .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb8bLxIip .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb8bLxIip .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb8bLxIip .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb8bLxIip .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb8bLxIip .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb8bLxIip .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb8bLxIip .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb8bLxIip .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb8bLxIip .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb8bLxIip .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb8bLxIip .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb8bLxIip .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb8bLxIip .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb8bLxIip .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb8bLxIip .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb8bLxIip .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb8bLxIip .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb8bLxIip .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb8bLxIip .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb8bLxIip .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb8bLxIip .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-sLb8bLxIip .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb8bLxIip .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb8bLxIip .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb8bLxIip .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb8bLxIip .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb8bLxIip .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb8bLxIip .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb8bLxIip .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb8bLxIip .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb8bLxIip .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb8bLxIip .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb8bLxIip .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb8bLxIip button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb8bLxIip button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb8bLxIip button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb8bLxIip button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb8bLxIip button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8bLxIip button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb8bLxIip button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb8bLxIip nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8bLxIip nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb8bLxIip nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb8bLxIip nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb8bLxIip .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb8bLxIip .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb8bLxIip .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse.collapsing,
.cid-sLb8bLxIip .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb8bLxIip .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb8bLxIip .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb8bLxIip .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb8bLxIip .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb8bLxIip .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb8bLxIip .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb8bLxIip .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb8bLxIip .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb8bLxIip .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb8bLxIip .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb8bLxIip .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb8bLxIip .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb8bLxIip .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb8bLxIip .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb8bLxIip .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb8bLxIip .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb8bLxIip .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb8bLxIip .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb8bLxIip .navbar-collapse.collapsing,
  .cid-sLb8bLxIip .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb8bLxIip .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb8bLxIip .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb8bLxIip .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb8bLxIip .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb8bLxIip .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb8bLxIip .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb8bLxIip .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb8bLxIip .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb8bLxIip img {
    height: 3.8rem !important;
  }
  .cid-sLb8bLxIip .btn {
    display: -webkit-flex;
  }
  .cid-sLb8bLxIip button.navbar-toggler {
    display: block;
  }
  .cid-sLb8bLxIip .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb8bLxIip .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8bLxIip .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb8bLxIip .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb8bLxIip .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb8bLxIip .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb8bLxIip .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb8bLxIip .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb8bLxIip .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb8bLxIip .nav-link:focus {
  outline: none;
}
.cid-sLb8bLxIip .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb8bLxIip .dropdown-item.active,
.cid-sLb8bLxIip .dropdown-item:active {
  color: initial;
}
.cid-sLb8bLxIip .widget-title,
.cid-sLb8bLxIip .widget-icon {
  color: #e9e9e9;
}
.cid-sLb8bLxIip .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb8bLxIip .menu-logo {
    display: none;
  }
  .cid-sLb8bLxIip .navbar {
    padding: 0;
  }
  .cid-sLb8bLxIip .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8bLxIip button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb8bLxIip .menu-logo {
    display: none;
  }
  .cid-sLb8bLxIip .navbar {
    padding: 0;
  }
  .cid-sLb8bLxIip .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb8bLxIip button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKSfLiaOjs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfLiaOjs .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfLiaOjs .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKSfLiaOjs .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKSfLiaOjs .img {
  margin: auto;
}
.cid-sKSfLiaOjs .card-box {
  width: 100%;
}
.cid-sKSfLiaOjs p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfLiaOjs .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKSfLiaOjs .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfLiaOjs .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKSfLiaOjs img {
  width: 100%;
}
.cid-sKSfLiaOjs .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfLiaOjs .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfLiaOjs .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfLiaOjs .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfLiaOjs .card-title,
.cid-sKSfLiaOjs .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKSfLiaOjs .mbr-section-title {
  text-align: center;
}
.cid-sKSfLiaOjs .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfLiaOjs .mbr-section-title,
.cid-sKSfLiaOjs .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfLiaOjs .mbr-text,
.cid-sKSfLiaOjs .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKSfLiaOjs .mbr-text,
.cid-sKSfLiaOjs .line-wrap2 B {
  color: #42929d;
}
.cid-sKSfLiNexd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfLiNexd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLiNexd .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLjiIOb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLjiIOb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLjiIOb .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLjTkIO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfLjTkIO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLjTkIO .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLjTkIO .mbr-text,
.cid-sKSfLjTkIO .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLkmRIB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLkmRIB .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLkmRIB .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLkmRIB .mbr-text,
.cid-sKSfLkmRIB .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLkQtnQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLkQtnQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLkQtnQ .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLlkq1L {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfLlkq1L .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLlkq1L .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLlkq1L .mbr-text,
.cid-sKSfLlkq1L .mbr-section-btn {
  color: #ffffff;
}
.cid-sKSfLlO1nf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLlO1nf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLlO1nf .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLlO1nf .mbr-text,
.cid-sKSfLlO1nf .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLmid9x {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfLmid9x .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLmid9x .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLmOPi1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLmOPi1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLmOPi1 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLnvd2w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfLnvd2w .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLnvd2w .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLnvd2w .mbr-text,
.cid-sKSfLnvd2w .mbr-section-btn {
  color: #ececec;
}
.cid-sKSfLo1UmM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfLo1UmM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLo1UmM .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLoxvxr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLoxvxr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLoxvxr .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLp45X1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfLp45X1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLp45X1 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLpA2i8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLpA2i8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLpA2i8 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLpA2i8 .mbr-text,
.cid-sKSfLpA2i8 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLq83fI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLq83fI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLq83fI .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLq83fI .mbr-text,
.cid-sKSfLq83fI .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLqNnD6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfLqNnD6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLqNnD6 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLqNnD6 .mbr-text,
.cid-sKSfLqNnD6 .mbr-section-btn {
  color: #ececec;
}
.cid-sKSfLrmKwq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLrmKwq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLrmKwq .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLrmKwq P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKSfLrXrM8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfLrXrM8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLrXrM8 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLrXrM8 P {
  text-align: left;
  color: #0a1c44;
}
.cid-sKSfLswg8D {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLswg8D .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLswg8D .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLswg8D P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKSfLt77cb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfLt77cb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLt77cb .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLtIuOg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKSfLtIuOg .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLtIuOg .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLtIuOg .mbr-text,
.cid-sKSfLtIuOg .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKSfLutPGK {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfLutPGK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLutPGK .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLv50Dq {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKSfLv50Dq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLv50Dq .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLv50Dq .mbr-text,
.cid-sKSfLv50Dq .mbr-section-btn {
  color: #ececec;
}
.cid-sKSfLvIpls {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfLvIpls .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfLvIpls .mbr-section-btn {
  color: #000000;
}
.cid-sKSfLwVqWt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfLwVqWt .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfLwVqWt p {
  margin: 0;
}
.cid-sKSfLxqRqe {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSfLxqRqe .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfLxqRqe p {
  margin: 0;
}
.cid-sKSfLy3X2j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfLy3X2j .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSfLy3X2j .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSfLy3X2j .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfLy3X2j .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSfLy3X2j .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSfLy3X2j .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSfLy3X2j .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSfLy3X2j .logo-title {
  text-align: center;
}
.cid-sKSfLy3X2j .logo-sub-title {
  text-align: center;
}
.cid-sKSfLy3X2j .links {
  text-align: center;
  color: #656565;
}
.cid-sKSfLy3X2j .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKSfu41KiV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfu41KiV .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfu41KiV .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKSfu41KiV .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKSfu41KiV p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfu41KiV img {
  width: 169px;
}
.cid-sKSfu41KiV .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfu41KiV .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfu41KiV .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfu41KiV .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfu41KiV .card-title,
.cid-sKSfu41KiV .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKSfu41KiV .mbr-section-title {
  text-align: center;
}
.cid-sKSfu41KiV .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfu41KiV .mbr-section-title,
.cid-sKSfu41KiV .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfu41KiV .mbr-text,
.cid-sKSfu41KiV .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLb6NljsSi .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLb6NljsSi .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLb6NljsSi .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLb6NljsSi .menu-logo {
  margin: 0 auto !important;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLb6NljsSi .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLb6NljsSi .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLb6NljsSi .dropdown-item {
  padding: 0;
}
.cid-sLb6NljsSi .dropdown-item,
.cid-sLb6NljsSi .nav-link,
.cid-sLb6NljsSi .brand-name {
  font-style: normal;
}
.cid-sLb6NljsSi .dropdown-item:hover,
.cid-sLb6NljsSi .nav-link:hover,
.cid-sLb6NljsSi .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLb6NljsSi .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLb6NljsSi .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLb6NljsSi .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLb6NljsSi .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLb6NljsSi .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLb6NljsSi .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLb6NljsSi .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLb6NljsSi .content-text {
  margin-bottom: 0;
}
.cid-sLb6NljsSi .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLb6NljsSi .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLb6NljsSi .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLb6NljsSi .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLb6NljsSi .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLb6NljsSi .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6NljsSi .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLb6NljsSi .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLb6NljsSi .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLb6NljsSi .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLb6NljsSi .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLb6NljsSi .content-right-side {
  text-align: center;
}
.cid-sLb6NljsSi .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLb6NljsSi .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLb6NljsSi .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLb6NljsSi .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLb6NljsSi .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6NljsSi .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLb6NljsSi .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLb6NljsSi .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLb6NljsSi .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLb6NljsSi .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLb6NljsSi .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLb6NljsSi .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLb6NljsSi .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLb6NljsSi .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLb6NljsSi .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLb6NljsSi .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLb6NljsSi .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLb6NljsSi .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLb6NljsSi .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLb6NljsSi .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLb6NljsSi .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLb6NljsSi .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLb6NljsSi .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLb6NljsSi .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLb6NljsSi .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLb6NljsSi .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLb6NljsSi .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLb6NljsSi .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-sLb6NljsSi .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLb6NljsSi .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLb6NljsSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLb6NljsSi .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLb6NljsSi .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLb6NljsSi .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLb6NljsSi .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLb6NljsSi .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLb6NljsSi .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLb6NljsSi .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLb6NljsSi .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLb6NljsSi .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLb6NljsSi button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLb6NljsSi button.navbar-toggler:focus {
  outline: none;
}
.cid-sLb6NljsSi button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLb6NljsSi button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLb6NljsSi button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6NljsSi button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLb6NljsSi button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLb6NljsSi nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6NljsSi nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLb6NljsSi nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLb6NljsSi nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLb6NljsSi .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLb6NljsSi .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLb6NljsSi .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse.collapsing,
.cid-sLb6NljsSi .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLb6NljsSi .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLb6NljsSi .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLb6NljsSi .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLb6NljsSi .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLb6NljsSi .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLb6NljsSi .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLb6NljsSi .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLb6NljsSi .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLb6NljsSi .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLb6NljsSi .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLb6NljsSi .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLb6NljsSi .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLb6NljsSi .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLb6NljsSi .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLb6NljsSi .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLb6NljsSi .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLb6NljsSi .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLb6NljsSi .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLb6NljsSi .navbar-collapse.collapsing,
  .cid-sLb6NljsSi .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLb6NljsSi .navbar-collapse.collapsing .navbar-nav,
  .cid-sLb6NljsSi .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLb6NljsSi .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLb6NljsSi .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLb6NljsSi .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLb6NljsSi .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLb6NljsSi .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLb6NljsSi .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLb6NljsSi img {
    height: 3.8rem !important;
  }
  .cid-sLb6NljsSi .btn {
    display: -webkit-flex;
  }
  .cid-sLb6NljsSi button.navbar-toggler {
    display: block;
  }
  .cid-sLb6NljsSi .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLb6NljsSi .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6NljsSi .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLb6NljsSi .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLb6NljsSi .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLb6NljsSi .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLb6NljsSi .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLb6NljsSi .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLb6NljsSi .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLb6NljsSi .nav-link:focus {
  outline: none;
}
.cid-sLb6NljsSi .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLb6NljsSi .dropdown-item.active,
.cid-sLb6NljsSi .dropdown-item:active {
  color: initial;
}
.cid-sLb6NljsSi .widget-title,
.cid-sLb6NljsSi .widget-icon {
  color: #e9e9e9;
}
.cid-sLb6NljsSi .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLb6NljsSi .menu-logo {
    display: none;
  }
  .cid-sLb6NljsSi .navbar {
    padding: 0;
  }
  .cid-sLb6NljsSi .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6NljsSi button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLb6NljsSi .menu-logo {
    display: none;
  }
  .cid-sLb6NljsSi .navbar {
    padding: 0;
  }
  .cid-sLb6NljsSi .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLb6NljsSi button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKSfu4WEwd {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKSfu4WEwd .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKSfu4WEwd .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKSfu4WEwd .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKSfu4WEwd .img {
  margin: auto;
}
.cid-sKSfu4WEwd .card-box {
  width: 100%;
}
.cid-sKSfu4WEwd p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKSfu4WEwd .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKSfu4WEwd .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfu4WEwd .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKSfu4WEwd img {
  width: 100%;
}
.cid-sKSfu4WEwd .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKSfu4WEwd .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKSfu4WEwd .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKSfu4WEwd .box {
    padding: 2rem 3rem;
  }
}
.cid-sKSfu4WEwd .card-title,
.cid-sKSfu4WEwd .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKSfu4WEwd .mbr-section-title {
  text-align: center;
}
.cid-sKSfu4WEwd .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKSfu4WEwd .mbr-section-title,
.cid-sKSfu4WEwd .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKSfu4WEwd .mbr-text,
.cid-sKSfu4WEwd .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sKSfu5J7K6 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfu5J7K6 .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sKSfu5J7K6 .mbr-text,
.cid-sKSfu5J7K6 .mbr-section-btn {
  text-align: center;
}
.cid-sKSfu6awB5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfu6awB5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu6awB5 .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu6Dm5E {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKSfu6Dm5E .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu6Dm5E .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu78HBx {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfu78HBx .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu78HBx .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu7BKcz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfu7BKcz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu7BKcz .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu85fVI {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKSfu85fVI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu85fVI .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu85fVI P {
  color: #000000;
  text-align: left;
}
.cid-sKSfu8zSCQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKSfu8zSCQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKSfu8zSCQ .mbr-section-btn {
  color: #000000;
}
.cid-sKSfu99hoR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKSfu99hoR .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfu99hoR p {
  margin: 0;
}
.cid-sKSfu9w5vF {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKSfu9w5vF .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKSfu9w5vF p {
  margin: 0;
}
.cid-sKSfu9Twiz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKSfu9Twiz .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKSfu9Twiz .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKSfu9Twiz .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKSfu9Twiz .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKSfu9Twiz .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKSfu9Twiz .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKSfu9Twiz .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKSfu9Twiz .logo-title {
  text-align: center;
}
.cid-sKSfu9Twiz .logo-sub-title {
  text-align: center;
}
.cid-sKSfu9Twiz .links {
  text-align: center;
  color: #656565;
}
.cid-sKSfu9Twiz .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZFn4QB10 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFn4QB10 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFn4QB10 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZFn4QB10 .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZFn4QB10 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFn4QB10 img {
  width: 169px;
}
.cid-sKZFn4QB10 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFn4QB10 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFn4QB10 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFn4QB10 .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFn4QB10 .card-title,
.cid-sKZFn4QB10 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZFn4QB10 .mbr-section-title {
  text-align: center;
}
.cid-sKZFn4QB10 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFn4QB10 .mbr-section-title,
.cid-sKZFn4QB10 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFn4QB10 .mbr-text,
.cid-sKZFn4QB10 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdE93LzVg .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdE93LzVg .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdE93LzVg .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdE93LzVg .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdE93LzVg .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdE93LzVg .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdE93LzVg .dropdown-item {
  padding: 0;
}
.cid-sLdE93LzVg .dropdown-item,
.cid-sLdE93LzVg .nav-link,
.cid-sLdE93LzVg .brand-name {
  font-style: normal;
}
.cid-sLdE93LzVg .dropdown-item:hover,
.cid-sLdE93LzVg .nav-link:hover,
.cid-sLdE93LzVg .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdE93LzVg .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdE93LzVg .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdE93LzVg .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdE93LzVg .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdE93LzVg .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdE93LzVg .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdE93LzVg .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdE93LzVg .content-text {
  margin-bottom: 0;
}
.cid-sLdE93LzVg .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdE93LzVg .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdE93LzVg .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdE93LzVg .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdE93LzVg .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdE93LzVg .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdE93LzVg .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdE93LzVg .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdE93LzVg .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdE93LzVg .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdE93LzVg .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdE93LzVg .content-right-side {
  text-align: center;
}
.cid-sLdE93LzVg .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdE93LzVg .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdE93LzVg .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdE93LzVg .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdE93LzVg .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdE93LzVg .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdE93LzVg .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdE93LzVg .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdE93LzVg .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdE93LzVg .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdE93LzVg .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdE93LzVg .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdE93LzVg .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdE93LzVg .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdE93LzVg .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdE93LzVg .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdE93LzVg .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdE93LzVg .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdE93LzVg .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdE93LzVg .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdE93LzVg .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdE93LzVg .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdE93LzVg .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdE93LzVg .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdE93LzVg .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdE93LzVg .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdE93LzVg .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdE93LzVg .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-sLdE93LzVg .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdE93LzVg .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdE93LzVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdE93LzVg .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdE93LzVg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdE93LzVg .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdE93LzVg .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdE93LzVg .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdE93LzVg .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdE93LzVg .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdE93LzVg .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdE93LzVg .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdE93LzVg button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdE93LzVg button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdE93LzVg button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdE93LzVg button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdE93LzVg button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdE93LzVg button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdE93LzVg button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdE93LzVg nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdE93LzVg nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdE93LzVg nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdE93LzVg nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdE93LzVg .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdE93LzVg .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdE93LzVg .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse.collapsing,
.cid-sLdE93LzVg .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdE93LzVg .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdE93LzVg .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdE93LzVg .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdE93LzVg .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdE93LzVg .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdE93LzVg .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdE93LzVg .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdE93LzVg .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdE93LzVg .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdE93LzVg .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdE93LzVg .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdE93LzVg .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdE93LzVg .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdE93LzVg .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdE93LzVg .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdE93LzVg .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdE93LzVg .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdE93LzVg .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdE93LzVg .navbar-collapse.collapsing,
  .cid-sLdE93LzVg .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdE93LzVg .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdE93LzVg .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdE93LzVg .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdE93LzVg .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdE93LzVg .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdE93LzVg .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdE93LzVg .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdE93LzVg .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdE93LzVg img {
    height: 3.8rem !important;
  }
  .cid-sLdE93LzVg .btn {
    display: -webkit-flex;
  }
  .cid-sLdE93LzVg button.navbar-toggler {
    display: block;
  }
  .cid-sLdE93LzVg .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdE93LzVg .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdE93LzVg .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdE93LzVg .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdE93LzVg .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdE93LzVg .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdE93LzVg .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdE93LzVg .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdE93LzVg .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdE93LzVg .nav-link:focus {
  outline: none;
}
.cid-sLdE93LzVg .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdE93LzVg .dropdown-item.active,
.cid-sLdE93LzVg .dropdown-item:active {
  color: initial;
}
.cid-sLdE93LzVg .widget-title,
.cid-sLdE93LzVg .widget-icon {
  color: #e9e9e9;
}
.cid-sLdE93LzVg .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdE93LzVg .menu-logo {
    display: none;
  }
  .cid-sLdE93LzVg .navbar {
    padding: 0;
  }
  .cid-sLdE93LzVg .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdE93LzVg button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdE93LzVg .menu-logo {
    display: none;
  }
  .cid-sLdE93LzVg .navbar {
    padding: 0;
  }
  .cid-sLdE93LzVg .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdE93LzVg button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZFn5P4VD {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFn5P4VD .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFn5P4VD .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZFn5P4VD .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZFn5P4VD .img {
  margin: auto;
}
.cid-sKZFn5P4VD .card-box {
  width: 100%;
}
.cid-sKZFn5P4VD p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFn5P4VD .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZFn5P4VD .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFn5P4VD .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZFn5P4VD img {
  width: 100%;
}
.cid-sKZFn5P4VD .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFn5P4VD .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFn5P4VD .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFn5P4VD .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFn5P4VD .card-title,
.cid-sKZFn5P4VD .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZFn5P4VD .mbr-section-title {
  text-align: center;
}
.cid-sKZFn5P4VD .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFn5P4VD .mbr-section-title,
.cid-sKZFn5P4VD .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFn5P4VD .mbr-text,
.cid-sKZFn5P4VD .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKZFn5P4VD .mbr-text,
.cid-sKZFn5P4VD .line-wrap2 B {
  color: #ee9521;
}
.cid-sKZFn6z4UC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFn6z4UC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFn6z4UC .mbr-section-btn {
  color: #000000;
}
.cid-sKZFn7mZkU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFn7mZkU .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFn7mZkU p {
  margin: 0;
}
.cid-sKZFn7HhpX {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZFn7HhpX .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFn7HhpX p {
  margin: 0;
}
.cid-sKZFn854fo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFn854fo .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZFn854fo .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZFn854fo .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFn854fo .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZFn854fo .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZFn854fo .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZFn854fo .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZFn854fo .logo-title {
  text-align: center;
}
.cid-sKZFn854fo .logo-sub-title {
  text-align: center;
}
.cid-sKZFn854fo .links {
  text-align: center;
  color: #656565;
}
.cid-sKZFn854fo .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZFwVzkYt {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFwVzkYt .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFwVzkYt .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZFwVzkYt .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZFwVzkYt p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFwVzkYt img {
  width: 169px;
}
.cid-sKZFwVzkYt .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFwVzkYt .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFwVzkYt .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFwVzkYt .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFwVzkYt .card-title,
.cid-sKZFwVzkYt .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZFwVzkYt .mbr-section-title {
  text-align: center;
}
.cid-sKZFwVzkYt .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFwVzkYt .mbr-section-title,
.cid-sKZFwVzkYt .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFwVzkYt .mbr-text,
.cid-sKZFwVzkYt .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEfLoYVK .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEfLoYVK .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEfLoYVK .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEfLoYVK .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEfLoYVK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEfLoYVK .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEfLoYVK .dropdown-item {
  padding: 0;
}
.cid-sLdEfLoYVK .dropdown-item,
.cid-sLdEfLoYVK .nav-link,
.cid-sLdEfLoYVK .brand-name {
  font-style: normal;
}
.cid-sLdEfLoYVK .dropdown-item:hover,
.cid-sLdEfLoYVK .nav-link:hover,
.cid-sLdEfLoYVK .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEfLoYVK .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEfLoYVK .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEfLoYVK .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEfLoYVK .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEfLoYVK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEfLoYVK .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEfLoYVK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEfLoYVK .content-text {
  margin-bottom: 0;
}
.cid-sLdEfLoYVK .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEfLoYVK .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEfLoYVK .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEfLoYVK .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEfLoYVK .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEfLoYVK .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEfLoYVK .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEfLoYVK .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEfLoYVK .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEfLoYVK .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEfLoYVK .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEfLoYVK .content-right-side {
  text-align: center;
}
.cid-sLdEfLoYVK .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEfLoYVK .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEfLoYVK .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEfLoYVK .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEfLoYVK .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEfLoYVK .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEfLoYVK .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEfLoYVK .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEfLoYVK .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEfLoYVK .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEfLoYVK .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEfLoYVK .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEfLoYVK .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEfLoYVK .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEfLoYVK .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEfLoYVK .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEfLoYVK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEfLoYVK .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEfLoYVK .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEfLoYVK .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEfLoYVK .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEfLoYVK .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEfLoYVK .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEfLoYVK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEfLoYVK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEfLoYVK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEfLoYVK .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEfLoYVK .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-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEfLoYVK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEfLoYVK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEfLoYVK .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEfLoYVK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEfLoYVK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEfLoYVK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEfLoYVK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEfLoYVK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEfLoYVK button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEfLoYVK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEfLoYVK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEfLoYVK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEfLoYVK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEfLoYVK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEfLoYVK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEfLoYVK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEfLoYVK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEfLoYVK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEfLoYVK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEfLoYVK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEfLoYVK .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse.collapsing,
.cid-sLdEfLoYVK .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEfLoYVK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEfLoYVK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEfLoYVK .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEfLoYVK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEfLoYVK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEfLoYVK .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEfLoYVK .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEfLoYVK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEfLoYVK .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEfLoYVK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEfLoYVK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEfLoYVK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEfLoYVK .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEfLoYVK .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEfLoYVK .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEfLoYVK .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEfLoYVK .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEfLoYVK .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEfLoYVK .navbar-collapse.collapsing,
  .cid-sLdEfLoYVK .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEfLoYVK .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEfLoYVK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEfLoYVK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEfLoYVK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEfLoYVK .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEfLoYVK .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEfLoYVK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEfLoYVK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEfLoYVK img {
    height: 3.8rem !important;
  }
  .cid-sLdEfLoYVK .btn {
    display: -webkit-flex;
  }
  .cid-sLdEfLoYVK button.navbar-toggler {
    display: block;
  }
  .cid-sLdEfLoYVK .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEfLoYVK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEfLoYVK .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEfLoYVK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEfLoYVK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEfLoYVK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEfLoYVK .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEfLoYVK .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEfLoYVK .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEfLoYVK .nav-link:focus {
  outline: none;
}
.cid-sLdEfLoYVK .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEfLoYVK .dropdown-item.active,
.cid-sLdEfLoYVK .dropdown-item:active {
  color: initial;
}
.cid-sLdEfLoYVK .widget-title,
.cid-sLdEfLoYVK .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEfLoYVK .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEfLoYVK .menu-logo {
    display: none;
  }
  .cid-sLdEfLoYVK .navbar {
    padding: 0;
  }
  .cid-sLdEfLoYVK .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEfLoYVK button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEfLoYVK .menu-logo {
    display: none;
  }
  .cid-sLdEfLoYVK .navbar {
    padding: 0;
  }
  .cid-sLdEfLoYVK .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEfLoYVK button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZFwWrppQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFwWrppQ .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFwWrppQ .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZFwWrppQ .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZFwWrppQ .img {
  margin: auto;
}
.cid-sKZFwWrppQ .card-box {
  width: 100%;
}
.cid-sKZFwWrppQ p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFwWrppQ .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZFwWrppQ .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFwWrppQ .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZFwWrppQ img {
  width: 100%;
}
.cid-sKZFwWrppQ .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFwWrppQ .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFwWrppQ .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFwWrppQ .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFwWrppQ .card-title,
.cid-sKZFwWrppQ .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZFwWrppQ .mbr-section-title {
  text-align: center;
}
.cid-sKZFwWrppQ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFwWrppQ .mbr-section-title,
.cid-sKZFwWrppQ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFwWrppQ .mbr-text,
.cid-sKZFwWrppQ .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sKZFwXmEo9 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFwXmEo9 .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sKZFwXmEo9 .mbr-text,
.cid-sKZFwXmEo9 .mbr-section-btn {
  text-align: center;
}
.cid-sKZFwXPB8z {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFwXPB8z .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFwXPB8z .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwXPB8z .mbr-text,
.cid-sKZFwXPB8z .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwYltRY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFwYltRY .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFwYltRY .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwYltRY .mbr-text,
.cid-sKZFwYltRY .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwYOi2t {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKZFwYOi2t .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFwYOi2t .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwYOi2t .mbr-text,
.cid-sKZFwYOi2t .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwZnIaU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFwZnIaU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFwZnIaU .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwZnIaU .mbr-text,
.cid-sKZFwZnIaU .mbr-section-btn {
  color: #000000;
}
.cid-sKZFwZnIaU P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKZFx01oXg {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKZFx01oXg .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx01oXg .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx01oXg .mbr-text,
.cid-sKZFx01oXg .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx0x2vb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFx0x2vb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx0x2vb .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx0x2vb .mbr-text,
.cid-sKZFx0x2vb .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx5WJ80 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFx5WJ80 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx5WJ80 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx6t1e3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFx6t1e3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx6t1e3 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx6YEFP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFx6YEFP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx6YEFP .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx7wIsh {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFx7wIsh .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx7wIsh .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx7wIsh .mbr-text,
.cid-sKZFx7wIsh .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx818p1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFx818p1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFx818p1 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFx8xR6w {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFx8xR6w .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFx8xR6w p {
  margin: 0;
}
.cid-sKZFx8WOBz {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZFx8WOBz .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFx8WOBz p {
  margin: 0;
}
.cid-sKZFxaOvdk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFxaOvdk .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZFxaOvdk .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZFxaOvdk .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFxaOvdk .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZFxaOvdk .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZFxaOvdk .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZFxaOvdk .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZFxaOvdk .logo-title {
  text-align: center;
}
.cid-sKZFxaOvdk .logo-sub-title {
  text-align: center;
}
.cid-sKZFxaOvdk .links {
  text-align: center;
  color: #656565;
}
.cid-sKZFxaOvdk .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZFHVI2lB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFHVI2lB .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFHVI2lB .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZFHVI2lB .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZFHVI2lB p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFHVI2lB img {
  width: 169px;
}
.cid-sKZFHVI2lB .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFHVI2lB .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFHVI2lB .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFHVI2lB .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFHVI2lB .card-title,
.cid-sKZFHVI2lB .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZFHVI2lB .mbr-section-title {
  text-align: center;
}
.cid-sKZFHVI2lB .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFHVI2lB .mbr-section-title,
.cid-sKZFHVI2lB .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFHVI2lB .mbr-text,
.cid-sKZFHVI2lB .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEiQspAz .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEiQspAz .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEiQspAz .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEiQspAz .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEiQspAz .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEiQspAz .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEiQspAz .dropdown-item {
  padding: 0;
}
.cid-sLdEiQspAz .dropdown-item,
.cid-sLdEiQspAz .nav-link,
.cid-sLdEiQspAz .brand-name {
  font-style: normal;
}
.cid-sLdEiQspAz .dropdown-item:hover,
.cid-sLdEiQspAz .nav-link:hover,
.cid-sLdEiQspAz .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEiQspAz .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEiQspAz .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEiQspAz .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEiQspAz .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEiQspAz .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEiQspAz .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEiQspAz .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEiQspAz .content-text {
  margin-bottom: 0;
}
.cid-sLdEiQspAz .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEiQspAz .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEiQspAz .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEiQspAz .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEiQspAz .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEiQspAz .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEiQspAz .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEiQspAz .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEiQspAz .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEiQspAz .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEiQspAz .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEiQspAz .content-right-side {
  text-align: center;
}
.cid-sLdEiQspAz .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEiQspAz .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEiQspAz .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEiQspAz .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEiQspAz .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEiQspAz .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEiQspAz .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEiQspAz .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEiQspAz .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEiQspAz .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEiQspAz .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEiQspAz .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEiQspAz .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEiQspAz .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEiQspAz .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEiQspAz .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEiQspAz .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEiQspAz .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEiQspAz .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEiQspAz .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEiQspAz .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEiQspAz .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEiQspAz .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEiQspAz .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEiQspAz .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEiQspAz .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEiQspAz .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEiQspAz .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-sLdEiQspAz .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEiQspAz .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEiQspAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEiQspAz .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEiQspAz .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEiQspAz .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEiQspAz .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEiQspAz .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEiQspAz .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEiQspAz .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEiQspAz .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEiQspAz .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEiQspAz button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEiQspAz button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEiQspAz button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEiQspAz button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEiQspAz button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEiQspAz button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEiQspAz button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEiQspAz nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEiQspAz nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEiQspAz nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEiQspAz nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEiQspAz .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEiQspAz .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEiQspAz .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse.collapsing,
.cid-sLdEiQspAz .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEiQspAz .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEiQspAz .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEiQspAz .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEiQspAz .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEiQspAz .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEiQspAz .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEiQspAz .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEiQspAz .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEiQspAz .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEiQspAz .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEiQspAz .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEiQspAz .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEiQspAz .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEiQspAz .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEiQspAz .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEiQspAz .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEiQspAz .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEiQspAz .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEiQspAz .navbar-collapse.collapsing,
  .cid-sLdEiQspAz .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEiQspAz .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEiQspAz .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEiQspAz .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEiQspAz .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEiQspAz .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEiQspAz .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEiQspAz .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEiQspAz .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEiQspAz img {
    height: 3.8rem !important;
  }
  .cid-sLdEiQspAz .btn {
    display: -webkit-flex;
  }
  .cid-sLdEiQspAz button.navbar-toggler {
    display: block;
  }
  .cid-sLdEiQspAz .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEiQspAz .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEiQspAz .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEiQspAz .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEiQspAz .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEiQspAz .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEiQspAz .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEiQspAz .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEiQspAz .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEiQspAz .nav-link:focus {
  outline: none;
}
.cid-sLdEiQspAz .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEiQspAz .dropdown-item.active,
.cid-sLdEiQspAz .dropdown-item:active {
  color: initial;
}
.cid-sLdEiQspAz .widget-title,
.cid-sLdEiQspAz .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEiQspAz .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEiQspAz .menu-logo {
    display: none;
  }
  .cid-sLdEiQspAz .navbar {
    padding: 0;
  }
  .cid-sLdEiQspAz .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEiQspAz button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEiQspAz .menu-logo {
    display: none;
  }
  .cid-sLdEiQspAz .navbar {
    padding: 0;
  }
  .cid-sLdEiQspAz .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEiQspAz button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZFHWOUEz {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFHWOUEz .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFHWOUEz .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZFHWOUEz .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZFHWOUEz .img {
  margin: auto;
}
.cid-sKZFHWOUEz .card-box {
  width: 100%;
}
.cid-sKZFHWOUEz p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFHWOUEz .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZFHWOUEz .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFHWOUEz .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZFHWOUEz img {
  width: 100%;
}
.cid-sKZFHWOUEz .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFHWOUEz .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFHWOUEz .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFHWOUEz .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFHWOUEz .card-title,
.cid-sKZFHWOUEz .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZFHWOUEz .mbr-section-title {
  text-align: center;
}
.cid-sKZFHWOUEz .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFHWOUEz .mbr-section-title,
.cid-sKZFHWOUEz .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFHWOUEz .mbr-text,
.cid-sKZFHWOUEz .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sKZFHXraKZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFHXraKZ .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sKZFHXraKZ .mbr-text,
.cid-sKZFHXraKZ .mbr-section-btn {
  text-align: center;
}
.cid-sKZFHXTUvy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFHXTUvy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFHXTUvy .mbr-section-btn {
  color: #000000;
}
.cid-sKZFHYm0HP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFHYm0HP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFHYm0HP .mbr-section-btn {
  color: #000000;
}
.cid-sKZFHYPDsb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFHYPDsb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFHYPDsb .mbr-section-btn {
  color: #000000;
}
.cid-sKZFHZif5M {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFHZif5M .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFHZif5M .mbr-section-btn {
  color: #000000;
}
.cid-sKZFHZLLw3 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKZFHZLLw3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFHZLLw3 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFI0FkrM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFI0FkrM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFI0FkrM .mbr-section-btn {
  color: #000000;
}
.cid-sKZFI1bAjJ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFI1bAjJ .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFI1bAjJ p {
  margin: 0;
}
.cid-sKZFI1zUUS {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZFI1zUUS .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFI1zUUS p {
  margin: 0;
}
.cid-sKZFI1WjNh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFI1WjNh .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZFI1WjNh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZFI1WjNh .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFI1WjNh .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZFI1WjNh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZFI1WjNh .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZFI1WjNh .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZFI1WjNh .logo-title {
  text-align: center;
}
.cid-sKZFI1WjNh .logo-sub-title {
  text-align: center;
}
.cid-sKZFI1WjNh .links {
  text-align: center;
  color: #656565;
}
.cid-sKZFI1WjNh .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZFUGul1X {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFUGul1X .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFUGul1X .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZFUGul1X .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZFUGul1X p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFUGul1X img {
  width: 169px;
}
.cid-sKZFUGul1X .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFUGul1X .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFUGul1X .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFUGul1X .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFUGul1X .card-title,
.cid-sKZFUGul1X .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZFUGul1X .mbr-section-title {
  text-align: center;
}
.cid-sKZFUGul1X .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFUGul1X .mbr-section-title,
.cid-sKZFUGul1X .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFUGul1X .mbr-text,
.cid-sKZFUGul1X .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEpibMdG .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEpibMdG .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEpibMdG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEpibMdG .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEpibMdG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEpibMdG .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEpibMdG .dropdown-item {
  padding: 0;
}
.cid-sLdEpibMdG .dropdown-item,
.cid-sLdEpibMdG .nav-link,
.cid-sLdEpibMdG .brand-name {
  font-style: normal;
}
.cid-sLdEpibMdG .dropdown-item:hover,
.cid-sLdEpibMdG .nav-link:hover,
.cid-sLdEpibMdG .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEpibMdG .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEpibMdG .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEpibMdG .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEpibMdG .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEpibMdG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEpibMdG .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEpibMdG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEpibMdG .content-text {
  margin-bottom: 0;
}
.cid-sLdEpibMdG .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEpibMdG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEpibMdG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEpibMdG .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEpibMdG .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEpibMdG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEpibMdG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEpibMdG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEpibMdG .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEpibMdG .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEpibMdG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEpibMdG .content-right-side {
  text-align: center;
}
.cid-sLdEpibMdG .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEpibMdG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEpibMdG .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEpibMdG .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEpibMdG .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEpibMdG .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEpibMdG .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEpibMdG .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEpibMdG .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEpibMdG .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEpibMdG .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEpibMdG .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEpibMdG .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEpibMdG .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEpibMdG .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEpibMdG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEpibMdG .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEpibMdG .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEpibMdG .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEpibMdG .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEpibMdG .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEpibMdG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEpibMdG .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEpibMdG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEpibMdG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEpibMdG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEpibMdG .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEpibMdG .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-sLdEpibMdG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEpibMdG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEpibMdG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEpibMdG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEpibMdG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEpibMdG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEpibMdG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEpibMdG .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEpibMdG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEpibMdG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEpibMdG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEpibMdG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEpibMdG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEpibMdG button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEpibMdG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEpibMdG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEpibMdG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEpibMdG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEpibMdG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEpibMdG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEpibMdG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEpibMdG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEpibMdG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEpibMdG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEpibMdG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEpibMdG .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse.collapsing,
.cid-sLdEpibMdG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEpibMdG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEpibMdG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEpibMdG .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEpibMdG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEpibMdG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEpibMdG .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEpibMdG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEpibMdG .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEpibMdG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEpibMdG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEpibMdG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEpibMdG .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEpibMdG .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEpibMdG .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEpibMdG .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEpibMdG .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEpibMdG .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEpibMdG .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEpibMdG .navbar-collapse.collapsing,
  .cid-sLdEpibMdG .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEpibMdG .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEpibMdG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEpibMdG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEpibMdG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEpibMdG .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEpibMdG .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEpibMdG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEpibMdG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEpibMdG img {
    height: 3.8rem !important;
  }
  .cid-sLdEpibMdG .btn {
    display: -webkit-flex;
  }
  .cid-sLdEpibMdG button.navbar-toggler {
    display: block;
  }
  .cid-sLdEpibMdG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEpibMdG .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEpibMdG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEpibMdG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEpibMdG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEpibMdG .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEpibMdG .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEpibMdG .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEpibMdG .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEpibMdG .nav-link:focus {
  outline: none;
}
.cid-sLdEpibMdG .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEpibMdG .dropdown-item.active,
.cid-sLdEpibMdG .dropdown-item:active {
  color: initial;
}
.cid-sLdEpibMdG .widget-title,
.cid-sLdEpibMdG .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEpibMdG .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEpibMdG .menu-logo {
    display: none;
  }
  .cid-sLdEpibMdG .navbar {
    padding: 0;
  }
  .cid-sLdEpibMdG .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEpibMdG button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEpibMdG .menu-logo {
    display: none;
  }
  .cid-sLdEpibMdG .navbar {
    padding: 0;
  }
  .cid-sLdEpibMdG .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEpibMdG button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZFUHhkPp {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFUHhkPp .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFUHhkPp .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZFUHhkPp .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZFUHhkPp .img {
  margin: auto;
}
.cid-sKZFUHhkPp .card-box {
  width: 100%;
}
.cid-sKZFUHhkPp p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFUHhkPp .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZFUHhkPp .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFUHhkPp .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZFUHhkPp img {
  width: 100%;
}
.cid-sKZFUHhkPp .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFUHhkPp .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFUHhkPp .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFUHhkPp .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFUHhkPp .card-title,
.cid-sKZFUHhkPp .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZFUHhkPp .mbr-section-title {
  text-align: center;
}
.cid-sKZFUHhkPp .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFUHhkPp .mbr-section-title,
.cid-sKZFUHhkPp .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFUHhkPp .mbr-text,
.cid-sKZFUHhkPp .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKZFUHhkPp .mbr-text,
.cid-sKZFUHhkPp .line-wrap2 B {
  color: #f8c301;
}
.cid-sKZFUHYtGr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKZFUHYtGr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUHYtGr .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUILHmw {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f8c301;
}
.cid-sKZFUILHmw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUILHmw .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUILHmw .mbr-text,
.cid-sKZFUILHmw .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUJgv5F {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKZFUJgv5F .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUJgv5F .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUJgv5F .mbr-text,
.cid-sKZFUJgv5F .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUJKtds {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-sKZFUJKtds .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUJKtds .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUJKtds .mbr-text,
.cid-sKZFUJKtds .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUKfTqs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFUKfTqs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUKfTqs .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUKfTqs .mbr-text,
.cid-sKZFUKfTqs .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUKLC4W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFUKLC4W .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUKLC4W .mbr-section-btn {
  color: #000000;
}
.cid-sKZFULfOOf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKZFULfOOf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFULfOOf .mbr-section-btn {
  color: #000000;
}
.cid-sKZFULfOOf .mbr-text,
.cid-sKZFULfOOf .mbr-section-btn {
  color: #000000;
}
.cid-sKZFULMhfE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFULMhfE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFULMhfE .mbr-section-btn {
  color: #000000;
}
.cid-sKZFULMhfE .mbr-text,
.cid-sKZFULMhfE .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUMC5zH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFUMC5zH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUMC5zH .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUN8SQa {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFUN8SQa .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUN8SQa .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUN8SQa .mbr-text,
.cid-sKZFUN8SQa .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUNFwvc {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFUNFwvc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUNFwvc .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUOcD0V {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFUOcD0V .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUOcD0V .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUOcD0V .mbr-text,
.cid-sKZFUOcD0V .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUONhHs {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFUONhHs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFUONhHs .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUONhHs .mbr-text,
.cid-sKZFUONhHs .mbr-section-btn {
  color: #000000;
}
.cid-sKZFUPUmen {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFUPUmen .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFUPUmen p {
  margin: 0;
}
.cid-sKZFUQESH2 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZFUQESH2 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFUQESH2 p {
  margin: 0;
}
.cid-sKZFUR5EkI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFUR5EkI .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZFUR5EkI .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZFUR5EkI .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFUR5EkI .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZFUR5EkI .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZFUR5EkI .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZFUR5EkI .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZFUR5EkI .logo-title {
  text-align: center;
}
.cid-sKZFUR5EkI .logo-sub-title {
  text-align: center;
}
.cid-sKZFUR5EkI .links {
  text-align: center;
  color: #656565;
}
.cid-sKZFUR5EkI .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZFURAwR8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFURAwR8 .container-fluid {
  padding: 0;
}
.cid-sKZFURAwR8 img {
  width: 100%;
}
.cid-sKZFURAwR8 .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-sKZFURAwR8 .content {
    padding: 3rem;
  }
}
.cid-sKZFURAwR8 .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-sKZFURAwR8 .img-col {
  padding: 0;
  margin: auto;
}
.cid-sKZFURAwR8 .mbr-section-title {
  text-align: left;
}
.cid-sKZFZulVcr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZulVcr .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFZulVcr .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZFZulVcr .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZFZulVcr p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFZulVcr img {
  width: 169px;
}
.cid-sKZFZulVcr .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFZulVcr .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFZulVcr .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFZulVcr .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFZulVcr .card-title,
.cid-sKZFZulVcr .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZFZulVcr .mbr-section-title {
  text-align: center;
}
.cid-sKZFZulVcr .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFZulVcr .mbr-section-title,
.cid-sKZFZulVcr .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFZulVcr .mbr-text,
.cid-sKZFZulVcr .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEsICXH6 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEsICXH6 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEsICXH6 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEsICXH6 .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEsICXH6 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEsICXH6 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEsICXH6 .dropdown-item {
  padding: 0;
}
.cid-sLdEsICXH6 .dropdown-item,
.cid-sLdEsICXH6 .nav-link,
.cid-sLdEsICXH6 .brand-name {
  font-style: normal;
}
.cid-sLdEsICXH6 .dropdown-item:hover,
.cid-sLdEsICXH6 .nav-link:hover,
.cid-sLdEsICXH6 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEsICXH6 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEsICXH6 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEsICXH6 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEsICXH6 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEsICXH6 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEsICXH6 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEsICXH6 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEsICXH6 .content-text {
  margin-bottom: 0;
}
.cid-sLdEsICXH6 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEsICXH6 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEsICXH6 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEsICXH6 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEsICXH6 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEsICXH6 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEsICXH6 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEsICXH6 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEsICXH6 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEsICXH6 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEsICXH6 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEsICXH6 .content-right-side {
  text-align: center;
}
.cid-sLdEsICXH6 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEsICXH6 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEsICXH6 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEsICXH6 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEsICXH6 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEsICXH6 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEsICXH6 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEsICXH6 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEsICXH6 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEsICXH6 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEsICXH6 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEsICXH6 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEsICXH6 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEsICXH6 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEsICXH6 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEsICXH6 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEsICXH6 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEsICXH6 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEsICXH6 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEsICXH6 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEsICXH6 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEsICXH6 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEsICXH6 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEsICXH6 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEsICXH6 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEsICXH6 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEsICXH6 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEsICXH6 .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-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEsICXH6 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEsICXH6 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEsICXH6 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEsICXH6 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEsICXH6 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEsICXH6 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEsICXH6 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEsICXH6 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEsICXH6 button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEsICXH6 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEsICXH6 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEsICXH6 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEsICXH6 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEsICXH6 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEsICXH6 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEsICXH6 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEsICXH6 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEsICXH6 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEsICXH6 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEsICXH6 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEsICXH6 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse.collapsing,
.cid-sLdEsICXH6 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEsICXH6 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEsICXH6 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEsICXH6 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEsICXH6 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEsICXH6 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEsICXH6 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEsICXH6 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEsICXH6 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEsICXH6 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEsICXH6 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEsICXH6 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEsICXH6 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEsICXH6 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEsICXH6 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEsICXH6 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEsICXH6 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEsICXH6 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEsICXH6 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEsICXH6 .navbar-collapse.collapsing,
  .cid-sLdEsICXH6 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEsICXH6 .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEsICXH6 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEsICXH6 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEsICXH6 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEsICXH6 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEsICXH6 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEsICXH6 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEsICXH6 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEsICXH6 img {
    height: 3.8rem !important;
  }
  .cid-sLdEsICXH6 .btn {
    display: -webkit-flex;
  }
  .cid-sLdEsICXH6 button.navbar-toggler {
    display: block;
  }
  .cid-sLdEsICXH6 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEsICXH6 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEsICXH6 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEsICXH6 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEsICXH6 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEsICXH6 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEsICXH6 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEsICXH6 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEsICXH6 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEsICXH6 .nav-link:focus {
  outline: none;
}
.cid-sLdEsICXH6 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEsICXH6 .dropdown-item.active,
.cid-sLdEsICXH6 .dropdown-item:active {
  color: initial;
}
.cid-sLdEsICXH6 .widget-title,
.cid-sLdEsICXH6 .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEsICXH6 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEsICXH6 .menu-logo {
    display: none;
  }
  .cid-sLdEsICXH6 .navbar {
    padding: 0;
  }
  .cid-sLdEsICXH6 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEsICXH6 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEsICXH6 .menu-logo {
    display: none;
  }
  .cid-sLdEsICXH6 .navbar {
    padding: 0;
  }
  .cid-sLdEsICXH6 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEsICXH6 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZFZvvHQu {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFZvvHQu .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZFZvvHQu .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZFZvvHQu .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZFZvvHQu .img {
  margin: auto;
}
.cid-sKZFZvvHQu .card-box {
  width: 100%;
}
.cid-sKZFZvvHQu p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZFZvvHQu .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZFZvvHQu .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZFZvvHQu .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZFZvvHQu img {
  width: 100%;
}
.cid-sKZFZvvHQu .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZFZvvHQu .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZFZvvHQu .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZFZvvHQu .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZFZvvHQu .card-title,
.cid-sKZFZvvHQu .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZFZvvHQu .mbr-section-title {
  text-align: center;
}
.cid-sKZFZvvHQu .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZFZvvHQu .mbr-section-title,
.cid-sKZFZvvHQu .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZFZvvHQu .mbr-text,
.cid-sKZFZvvHQu .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKZFZvvHQu .mbr-text,
.cid-sKZFZvvHQu .line-wrap2 B {
  color: #3f671b;
}
.cid-sKZFZwav34 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZwav34 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZwav34 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZwGDAf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFZwGDAf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZwGDAf .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZwGDAf .mbr-text,
.cid-sKZFZwGDAf .mbr-section-btn {
  color: #ffffff;
}
.cid-sKZFZxcIuS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sKZFZxcIuS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZxcIuS .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZxcIuS .mbr-text,
.cid-sKZFZxcIuS .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZxHG1U {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZxHG1U .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZxHG1U .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZyeh1y {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sKZFZyeh1y .mbr-section-subtitle {
  color: #767676;
}
.cid-sKZFZyeh1y .container-table {
  margin: 0 auto;
}
.cid-sKZFZyeh1y table.dataTable thead .sorting:before,
.cid-sKZFZyeh1y table.dataTable thead .sorting:after,
.cid-sKZFZyeh1y table.dataTable thead .sorting_asc:before,
.cid-sKZFZyeh1y table.dataTable thead .sorting_asc:after,
.cid-sKZFZyeh1y table.dataTable thead .sorting_desc:before,
.cid-sKZFZyeh1y table.dataTable thead .sorting_desc:after,
.cid-sKZFZyeh1y table.dataTable thead .sorting_asc_disabled:before,
.cid-sKZFZyeh1y table.dataTable thead .sorting_asc_disabled:after,
.cid-sKZFZyeh1y table.dataTable thead .sorting_desc_disabled:before,
.cid-sKZFZyeh1y table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKZFZyeh1y .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKZFZyeh1y .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKZFZyeh1y .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKZFZyeh1y .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKZFZyeh1y .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sKZFZyeh1y .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKZFZyeh1y .table-heads {
  color: #ffffff;
}
.cid-sKZFZyeh1y .dataTables_wrapper {
  display: block;
}
.cid-sKZFZyeh1y .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKZFZyeh1y .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKZFZyeh1y table {
  width: auto !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKZFZyeh1y table td,
.cid-sKZFZyeh1y table th {
  white-space: nowrap;
}
.cid-sKZFZyeh1y table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKZFZyeh1y table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKZFZyeh1y table td {
  border-top: 1px solid #ffffff;
}
.cid-sKZFZyeh1y table.table {
  background: #ececec;
}
.cid-sKZFZyeh1y .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKZFZyeh1y .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKZFZyeh1y .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKZFZyeh1y .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKZFZyeh1y .dataTables_filter {
    text-align: center;
  }
  .cid-sKZFZyeh1y .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKZFZyeh1y .mbr-section-title,
.cid-sKZFZyeh1y .line-wrap {
  text-align: center;
}
.cid-sKZFZyeh1y .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKZFZzOytQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFZzOytQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZzOytQ .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZAnw2m {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZAnw2m .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZAnw2m .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZAV6K5 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFZAV6K5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZAV6K5 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZBwAhC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZBwAhC .mbr-section-subtitle {
  color: #767676;
}
.cid-sKZFZBwAhC .container-table {
  margin: 0 auto;
}
.cid-sKZFZBwAhC table.dataTable thead .sorting:before,
.cid-sKZFZBwAhC table.dataTable thead .sorting:after,
.cid-sKZFZBwAhC table.dataTable thead .sorting_asc:before,
.cid-sKZFZBwAhC table.dataTable thead .sorting_asc:after,
.cid-sKZFZBwAhC table.dataTable thead .sorting_desc:before,
.cid-sKZFZBwAhC table.dataTable thead .sorting_desc:after,
.cid-sKZFZBwAhC table.dataTable thead .sorting_asc_disabled:before,
.cid-sKZFZBwAhC table.dataTable thead .sorting_asc_disabled:after,
.cid-sKZFZBwAhC table.dataTable thead .sorting_desc_disabled:before,
.cid-sKZFZBwAhC table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKZFZBwAhC .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKZFZBwAhC .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKZFZBwAhC .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #3f671b;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKZFZBwAhC .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKZFZBwAhC .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #0a1c44;
}
.cid-sKZFZBwAhC .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKZFZBwAhC .table-heads {
  color: #ffffff;
}
.cid-sKZFZBwAhC .dataTables_wrapper {
  display: block;
}
.cid-sKZFZBwAhC .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKZFZBwAhC .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKZFZBwAhC table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKZFZBwAhC table td,
.cid-sKZFZBwAhC table th {
  white-space: nowrap;
}
.cid-sKZFZBwAhC table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKZFZBwAhC table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKZFZBwAhC table td {
  border-top: 1px solid #ffffff;
}
.cid-sKZFZBwAhC table.table {
  background: #ececec;
}
.cid-sKZFZBwAhC .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKZFZBwAhC .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKZFZBwAhC .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKZFZBwAhC .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKZFZBwAhC .dataTables_filter {
    text-align: center;
  }
  .cid-sKZFZBwAhC .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKZFZBwAhC .mbr-section-title,
.cid-sKZFZBwAhC .line-wrap {
  text-align: center;
}
.cid-sKZFZBwAhC .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKZFZCtnIk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZCtnIk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZCtnIk .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZDoh8O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZDoh8O .mbr-section-subtitle {
  color: #767676;
}
.cid-sKZFZDoh8O .container-table {
  margin: 0 auto;
}
.cid-sKZFZDoh8O table.dataTable thead .sorting:before,
.cid-sKZFZDoh8O table.dataTable thead .sorting:after,
.cid-sKZFZDoh8O table.dataTable thead .sorting_asc:before,
.cid-sKZFZDoh8O table.dataTable thead .sorting_asc:after,
.cid-sKZFZDoh8O table.dataTable thead .sorting_desc:before,
.cid-sKZFZDoh8O table.dataTable thead .sorting_desc:after,
.cid-sKZFZDoh8O table.dataTable thead .sorting_asc_disabled:before,
.cid-sKZFZDoh8O table.dataTable thead .sorting_asc_disabled:after,
.cid-sKZFZDoh8O table.dataTable thead .sorting_desc_disabled:before,
.cid-sKZFZDoh8O table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKZFZDoh8O .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKZFZDoh8O .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKZFZDoh8O .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKZFZDoh8O .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKZFZDoh8O .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  color: #0a1c44;
}
.cid-sKZFZDoh8O .head-item:hover {
  background: #ffffff;
  color: inherit;
}
.cid-sKZFZDoh8O .table-heads {
  color: #ffffff;
}
.cid-sKZFZDoh8O .dataTables_wrapper {
  display: block;
}
.cid-sKZFZDoh8O .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKZFZDoh8O .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKZFZDoh8O table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKZFZDoh8O table td,
.cid-sKZFZDoh8O table th {
  white-space: nowrap;
}
.cid-sKZFZDoh8O table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKZFZDoh8O table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKZFZDoh8O table td {
  border-top: 1px solid #ffffff;
}
.cid-sKZFZDoh8O table.table {
  background: #ececec;
}
.cid-sKZFZDoh8O .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKZFZDoh8O .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKZFZDoh8O .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKZFZDoh8O .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKZFZDoh8O .dataTables_filter {
    text-align: center;
  }
  .cid-sKZFZDoh8O .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKZFZDoh8O .mbr-section-title,
.cid-sKZFZDoh8O .line-wrap {
  text-align: center;
}
.cid-sKZFZDoh8O .mbr-section-sub-title {
  text-align: center;
  color: #0a1c44;
}
.cid-sKZFZEm44g {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZEm44g .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZEm44g .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZEYmhR {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFZEYmhR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZEYmhR .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZFAcU7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFZFAcU7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZFAcU7 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZGdEmk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFZGdEmk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZGdEmk .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZHdx2s {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKZFZHdx2s .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZHdx2s .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZHdx2s .mbr-text,
.cid-sKZFZHdx2s .mbr-section-btn {
  color: #ffffff;
}
.cid-sKZFZHRZsZ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFZHRZsZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZHRZsZ .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZIvy1M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZIvy1M .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZIvy1M .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZJbsYn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFZJbsYn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZJbsYn .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZJSSyn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZJSSyn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZJSSyn .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZKPN5c {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZKPN5c .mbr-section-subtitle {
  color: #767676;
}
.cid-sKZFZKPN5c .container-table {
  margin: 0 auto;
}
.cid-sKZFZKPN5c table.dataTable thead .sorting:before,
.cid-sKZFZKPN5c table.dataTable thead .sorting:after,
.cid-sKZFZKPN5c table.dataTable thead .sorting_asc:before,
.cid-sKZFZKPN5c table.dataTable thead .sorting_asc:after,
.cid-sKZFZKPN5c table.dataTable thead .sorting_desc:before,
.cid-sKZFZKPN5c table.dataTable thead .sorting_desc:after,
.cid-sKZFZKPN5c table.dataTable thead .sorting_asc_disabled:before,
.cid-sKZFZKPN5c table.dataTable thead .sorting_asc_disabled:after,
.cid-sKZFZKPN5c table.dataTable thead .sorting_desc_disabled:before,
.cid-sKZFZKPN5c table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sKZFZKPN5c .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKZFZKPN5c .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sKZFZKPN5c .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sKZFZKPN5c .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sKZFZKPN5c .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sKZFZKPN5c .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sKZFZKPN5c .table-heads {
  color: #ffffff;
}
.cid-sKZFZKPN5c .dataTables_wrapper {
  display: block;
}
.cid-sKZFZKPN5c .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sKZFZKPN5c .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sKZFZKPN5c table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sKZFZKPN5c table td,
.cid-sKZFZKPN5c table th {
  white-space: nowrap;
}
.cid-sKZFZKPN5c table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sKZFZKPN5c table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sKZFZKPN5c table td {
  border-top: 1px solid #ffffff;
}
.cid-sKZFZKPN5c table.table {
  background: #ececec;
}
.cid-sKZFZKPN5c .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sKZFZKPN5c .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sKZFZKPN5c .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sKZFZKPN5c .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sKZFZKPN5c .dataTables_filter {
    text-align: center;
  }
  .cid-sKZFZKPN5c .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sKZFZKPN5c .mbr-section-title,
.cid-sKZFZKPN5c .line-wrap {
  text-align: center;
}
.cid-sKZFZKPN5c .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sKZFZLPav1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZLPav1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZLPav1 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZMvW9w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFZMvW9w .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZMvW9w .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZMvW9w .mbr-text,
.cid-sKZFZMvW9w .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZNcXhr {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZNcXhr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZNcXhr .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZNcXhr .mbr-text,
.cid-sKZFZNcXhr .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZNXVsb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFZNXVsb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZNXVsb .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZOYZq3 {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZOYZq3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZOYZq3 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZPHDP4 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZFZPHDP4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZPHDP4 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZQpxI1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFZQpxI1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZQpxI1 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZQpxI1 .mbr-text,
.cid-sKZFZQpxI1 .mbr-section-btn {
  color: #ececec;
}
.cid-sKZFZR7duk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZR7duk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZR7duk .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZR7duk .mbr-text,
.cid-sKZFZR7duk .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZRS24q {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFZRS24q .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZRS24q .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZRS24q .mbr-text,
.cid-sKZFZRS24q .mbr-section-btn {
  color: #ececec;
}
.cid-sKZFZSZGZ9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZSZGZ9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZSZGZ9 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZSZGZ9 .mbr-text,
.cid-sKZFZSZGZ9 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZTK4Wc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZFZTK4Wc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZTK4Wc .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZTK4Wc .mbr-text,
.cid-sKZFZTK4Wc .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZUu3d2 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZFZUu3d2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZUu3d2 .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZUu3d2 .mbr-text,
.cid-sKZFZUu3d2 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZFZVe4cD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZFZVe4cD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZVe4cD .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZVZbmf {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZVZbmf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZVZbmf .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZXfgDI {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ececec;
}
.cid-sKZFZXfgDI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZXfgDI .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZXfgDI P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKZFZY4ncz {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZFZY4ncz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZFZY4ncz .mbr-section-btn {
  color: #000000;
}
.cid-sKZFZYQ7yS {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ececec;
}
.cid-sKZFZYQ7yS .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sKZFZYQ7yS img {
  width: 100%;
}
.cid-sKZFZYQ7yS p {
  line-height: 1.6;
}
.cid-sKZFZYQ7yS .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sKZFZYQ7yS .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sKZFZYQ7yS .mbr-text,
.cid-sKZFZYQ7yS .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-sKZFZYQ7yS .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sKZFZYQ7yS .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sKZFZYQ7yS .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sKZFZYQ7yS .mbr-section-title,
.cid-sKZFZYQ7yS .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-sKZFZYQ7yS .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sKZFZZDNBw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZFZZDNBw .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZFZZDNBw p {
  margin: 0;
}
.cid-sKZG00mSDZ {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZG00mSDZ .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZG00mSDZ p {
  margin: 0;
}
.cid-sKZG01vMQl {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG01vMQl .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZG01vMQl .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZG01vMQl .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZG01vMQl .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZG01vMQl .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZG01vMQl .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZG01vMQl .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZG01vMQl .logo-title {
  text-align: center;
}
.cid-sKZG01vMQl .logo-sub-title {
  text-align: center;
}
.cid-sKZG01vMQl .links {
  text-align: center;
  color: #656565;
}
.cid-sKZG01vMQl .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZG4ghd42 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4ghd42 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZG4ghd42 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZG4ghd42 .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZG4ghd42 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZG4ghd42 img {
  width: 169px;
}
.cid-sKZG4ghd42 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZG4ghd42 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZG4ghd42 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZG4ghd42 .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZG4ghd42 .card-title,
.cid-sKZG4ghd42 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZG4ghd42 .mbr-section-title {
  text-align: center;
}
.cid-sKZG4ghd42 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZG4ghd42 .mbr-section-title,
.cid-sKZG4ghd42 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZG4ghd42 .mbr-text,
.cid-sKZG4ghd42 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEviZAx2 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEviZAx2 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEviZAx2 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEviZAx2 .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEviZAx2 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEviZAx2 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEviZAx2 .dropdown-item {
  padding: 0;
}
.cid-sLdEviZAx2 .dropdown-item,
.cid-sLdEviZAx2 .nav-link,
.cid-sLdEviZAx2 .brand-name {
  font-style: normal;
}
.cid-sLdEviZAx2 .dropdown-item:hover,
.cid-sLdEviZAx2 .nav-link:hover,
.cid-sLdEviZAx2 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEviZAx2 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEviZAx2 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEviZAx2 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEviZAx2 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEviZAx2 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEviZAx2 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEviZAx2 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEviZAx2 .content-text {
  margin-bottom: 0;
}
.cid-sLdEviZAx2 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEviZAx2 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEviZAx2 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEviZAx2 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEviZAx2 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEviZAx2 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEviZAx2 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEviZAx2 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEviZAx2 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEviZAx2 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEviZAx2 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEviZAx2 .content-right-side {
  text-align: center;
}
.cid-sLdEviZAx2 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEviZAx2 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEviZAx2 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEviZAx2 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEviZAx2 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEviZAx2 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEviZAx2 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEviZAx2 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEviZAx2 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEviZAx2 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEviZAx2 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEviZAx2 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEviZAx2 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEviZAx2 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEviZAx2 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEviZAx2 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEviZAx2 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEviZAx2 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEviZAx2 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEviZAx2 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEviZAx2 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEviZAx2 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEviZAx2 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEviZAx2 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEviZAx2 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEviZAx2 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEviZAx2 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEviZAx2 .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-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEviZAx2 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEviZAx2 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEviZAx2 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEviZAx2 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEviZAx2 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEviZAx2 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEviZAx2 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEviZAx2 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEviZAx2 button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEviZAx2 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEviZAx2 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEviZAx2 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEviZAx2 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEviZAx2 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEviZAx2 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEviZAx2 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEviZAx2 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEviZAx2 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEviZAx2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEviZAx2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEviZAx2 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse.collapsing,
.cid-sLdEviZAx2 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEviZAx2 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEviZAx2 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEviZAx2 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEviZAx2 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEviZAx2 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEviZAx2 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEviZAx2 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEviZAx2 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEviZAx2 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEviZAx2 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEviZAx2 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEviZAx2 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEviZAx2 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEviZAx2 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEviZAx2 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEviZAx2 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEviZAx2 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEviZAx2 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEviZAx2 .navbar-collapse.collapsing,
  .cid-sLdEviZAx2 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEviZAx2 .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEviZAx2 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEviZAx2 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEviZAx2 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEviZAx2 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEviZAx2 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEviZAx2 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEviZAx2 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEviZAx2 img {
    height: 3.8rem !important;
  }
  .cid-sLdEviZAx2 .btn {
    display: -webkit-flex;
  }
  .cid-sLdEviZAx2 button.navbar-toggler {
    display: block;
  }
  .cid-sLdEviZAx2 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEviZAx2 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEviZAx2 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEviZAx2 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEviZAx2 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEviZAx2 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEviZAx2 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEviZAx2 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEviZAx2 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEviZAx2 .nav-link:focus {
  outline: none;
}
.cid-sLdEviZAx2 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEviZAx2 .dropdown-item.active,
.cid-sLdEviZAx2 .dropdown-item:active {
  color: initial;
}
.cid-sLdEviZAx2 .widget-title,
.cid-sLdEviZAx2 .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEviZAx2 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEviZAx2 .menu-logo {
    display: none;
  }
  .cid-sLdEviZAx2 .navbar {
    padding: 0;
  }
  .cid-sLdEviZAx2 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEviZAx2 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEviZAx2 .menu-logo {
    display: none;
  }
  .cid-sLdEviZAx2 .navbar {
    padding: 0;
  }
  .cid-sLdEviZAx2 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEviZAx2 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZG4h5Yd9 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZG4h5Yd9 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZG4h5Yd9 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZG4h5Yd9 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZG4h5Yd9 .img {
  margin: auto;
}
.cid-sKZG4h5Yd9 .card-box {
  width: 100%;
}
.cid-sKZG4h5Yd9 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZG4h5Yd9 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZG4h5Yd9 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZG4h5Yd9 .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sKZG4h5Yd9 img {
  width: 100%;
}
.cid-sKZG4h5Yd9 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZG4h5Yd9 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZG4h5Yd9 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZG4h5Yd9 .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZG4h5Yd9 .card-title,
.cid-sKZG4h5Yd9 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZG4h5Yd9 .mbr-section-title {
  text-align: center;
}
.cid-sKZG4h5Yd9 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZG4h5Yd9 .mbr-section-title,
.cid-sKZG4h5Yd9 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZG4h5Yd9 .mbr-text,
.cid-sKZG4h5Yd9 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sKZG4h5Yd9 .mbr-text,
.cid-sKZG4h5Yd9 .line-wrap2 B {
  color: #42929d;
}
.cid-sKZG4hJ33u {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZG4hJ33u .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4hJ33u .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4idYD6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4idYD6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4idYD6 .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4iHFeT {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZG4iHFeT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4iHFeT .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4iHFeT .mbr-text,
.cid-sKZG4iHFeT .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4jbfix {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4jbfix .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4jbfix .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4jbfix .mbr-text,
.cid-sKZG4jbfix .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4jZUJc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4jZUJc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4jZUJc .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4ku1sp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZG4ku1sp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4ku1sp .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4ku1sp .mbr-text,
.cid-sKZG4ku1sp .mbr-section-btn {
  color: #ffffff;
}
.cid-sKZG4kZ7SP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4kZ7SP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4kZ7SP .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4kZ7SP .mbr-text,
.cid-sKZG4kZ7SP .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4lxjaX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZG4lxjaX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4lxjaX .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4m4WC1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4m4WC1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4m4WC1 .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4mBICt {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZG4mBICt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4mBICt .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4mBICt .mbr-text,
.cid-sKZG4mBICt .mbr-section-btn {
  color: #ececec;
}
.cid-sKZG4n8EDH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZG4n8EDH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4n8EDH .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4nYgDU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4nYgDU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4nYgDU .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4oxArv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZG4oxArv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4oxArv .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4p5iFV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4p5iFV .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4p5iFV .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4p5iFV .mbr-text,
.cid-sKZG4p5iFV .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4pEwGG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4pEwGG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4pEwGG .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4pEwGG .mbr-text,
.cid-sKZG4pEwGG .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4qeqVO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZG4qeqVO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4qeqVO .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4qeqVO .mbr-text,
.cid-sKZG4qeqVO .mbr-section-btn {
  color: #ececec;
}
.cid-sKZG4qPdge {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4qPdge .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4qPdge .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4qPdge P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKZG4rLG9p {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZG4rLG9p .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4rLG9p .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4rLG9p P {
  text-align: left;
  color: #0a1c44;
}
.cid-sKZG4slgVK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4slgVK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4slgVK .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4slgVK P {
  color: #0a1c44;
  text-align: left;
}
.cid-sKZG4sY8MV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sKZG4sY8MV .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4sY8MV .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4tA1oi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZG4tA1oi .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4tA1oi .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4tA1oi .mbr-text,
.cid-sKZG4tA1oi .mbr-section-btn {
  color: #0a1c44;
}
.cid-sKZG4ubDdX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZG4ubDdX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4ubDdX .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4uNBmP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKZG4uNBmP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4uNBmP .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4uNBmP .mbr-text,
.cid-sKZG4uNBmP .mbr-section-btn {
  color: #ececec;
}
.cid-sKZG4vLKbs {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZG4vLKbs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZG4vLKbs .mbr-section-btn {
  color: #000000;
}
.cid-sKZG4x5rb4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZG4x5rb4 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZG4x5rb4 p {
  margin: 0;
}
.cid-sKZG4xCopd {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZG4xCopd .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZG4xCopd p {
  margin: 0;
}
.cid-sKZG4y9D00 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZG4y9D00 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZG4y9D00 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZG4y9D00 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZG4y9D00 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZG4y9D00 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZG4y9D00 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZG4y9D00 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZG4y9D00 .logo-title {
  text-align: center;
}
.cid-sKZG4y9D00 .logo-sub-title {
  text-align: center;
}
.cid-sKZG4y9D00 .links {
  text-align: center;
  color: #656565;
}
.cid-sKZG4y9D00 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sKZGb0xtwL {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZGb0xtwL .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZGb0xtwL .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sKZGb0xtwL .img {
  margin: auto;
  max-height: 40px;
}
.cid-sKZGb0xtwL p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZGb0xtwL img {
  width: 169px;
}
.cid-sKZGb0xtwL .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZGb0xtwL .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZGb0xtwL .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZGb0xtwL .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZGb0xtwL .card-title,
.cid-sKZGb0xtwL .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sKZGb0xtwL .mbr-section-title {
  text-align: center;
}
.cid-sKZGb0xtwL .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZGb0xtwL .mbr-section-title,
.cid-sKZGb0xtwL .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZGb0xtwL .mbr-text,
.cid-sKZGb0xtwL .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLdEy65dZK .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLdEy65dZK .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLdEy65dZK .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLdEy65dZK .menu-logo {
  margin: 0 auto !important;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLdEy65dZK .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLdEy65dZK .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLdEy65dZK .dropdown-item {
  padding: 0;
}
.cid-sLdEy65dZK .dropdown-item,
.cid-sLdEy65dZK .nav-link,
.cid-sLdEy65dZK .brand-name {
  font-style: normal;
}
.cid-sLdEy65dZK .dropdown-item:hover,
.cid-sLdEy65dZK .nav-link:hover,
.cid-sLdEy65dZK .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLdEy65dZK .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLdEy65dZK .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLdEy65dZK .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLdEy65dZK .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLdEy65dZK .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLdEy65dZK .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLdEy65dZK .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLdEy65dZK .content-text {
  margin-bottom: 0;
}
.cid-sLdEy65dZK .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLdEy65dZK .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLdEy65dZK .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLdEy65dZK .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLdEy65dZK .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLdEy65dZK .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEy65dZK .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLdEy65dZK .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLdEy65dZK .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLdEy65dZK .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLdEy65dZK .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLdEy65dZK .content-right-side {
  text-align: center;
}
.cid-sLdEy65dZK .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLdEy65dZK .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLdEy65dZK .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLdEy65dZK .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLdEy65dZK .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEy65dZK .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLdEy65dZK .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLdEy65dZK .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLdEy65dZK .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLdEy65dZK .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLdEy65dZK .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLdEy65dZK .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLdEy65dZK .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLdEy65dZK .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLdEy65dZK .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLdEy65dZK .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLdEy65dZK .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLdEy65dZK .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLdEy65dZK .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLdEy65dZK .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLdEy65dZK .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLdEy65dZK .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLdEy65dZK .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLdEy65dZK .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLdEy65dZK .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLdEy65dZK .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLdEy65dZK .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLdEy65dZK .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-sLdEy65dZK .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLdEy65dZK .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLdEy65dZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLdEy65dZK .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLdEy65dZK .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLdEy65dZK .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLdEy65dZK .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLdEy65dZK .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLdEy65dZK .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLdEy65dZK .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLdEy65dZK .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLdEy65dZK .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLdEy65dZK button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLdEy65dZK button.navbar-toggler:focus {
  outline: none;
}
.cid-sLdEy65dZK button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLdEy65dZK button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLdEy65dZK button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEy65dZK button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLdEy65dZK button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLdEy65dZK nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEy65dZK nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLdEy65dZK nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLdEy65dZK nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLdEy65dZK .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLdEy65dZK .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLdEy65dZK .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse.collapsing,
.cid-sLdEy65dZK .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLdEy65dZK .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLdEy65dZK .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLdEy65dZK .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLdEy65dZK .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLdEy65dZK .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLdEy65dZK .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLdEy65dZK .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLdEy65dZK .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLdEy65dZK .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLdEy65dZK .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLdEy65dZK .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLdEy65dZK .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLdEy65dZK .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLdEy65dZK .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLdEy65dZK .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLdEy65dZK .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLdEy65dZK .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLdEy65dZK .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLdEy65dZK .navbar-collapse.collapsing,
  .cid-sLdEy65dZK .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLdEy65dZK .navbar-collapse.collapsing .navbar-nav,
  .cid-sLdEy65dZK .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLdEy65dZK .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLdEy65dZK .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLdEy65dZK .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLdEy65dZK .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLdEy65dZK .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLdEy65dZK .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLdEy65dZK img {
    height: 3.8rem !important;
  }
  .cid-sLdEy65dZK .btn {
    display: -webkit-flex;
  }
  .cid-sLdEy65dZK button.navbar-toggler {
    display: block;
  }
  .cid-sLdEy65dZK .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLdEy65dZK .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEy65dZK .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLdEy65dZK .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLdEy65dZK .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLdEy65dZK .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLdEy65dZK .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLdEy65dZK .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLdEy65dZK .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLdEy65dZK .nav-link:focus {
  outline: none;
}
.cid-sLdEy65dZK .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLdEy65dZK .dropdown-item.active,
.cid-sLdEy65dZK .dropdown-item:active {
  color: initial;
}
.cid-sLdEy65dZK .widget-title,
.cid-sLdEy65dZK .widget-icon {
  color: #e9e9e9;
}
.cid-sLdEy65dZK .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLdEy65dZK .menu-logo {
    display: none;
  }
  .cid-sLdEy65dZK .navbar {
    padding: 0;
  }
  .cid-sLdEy65dZK .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEy65dZK button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLdEy65dZK .menu-logo {
    display: none;
  }
  .cid-sLdEy65dZK .navbar {
    padding: 0;
  }
  .cid-sLdEy65dZK .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLdEy65dZK button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sKZGb1M5SG {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sKZGb1M5SG .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sKZGb1M5SG .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sKZGb1M5SG .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sKZGb1M5SG .img {
  margin: auto;
}
.cid-sKZGb1M5SG .card-box {
  width: 100%;
}
.cid-sKZGb1M5SG p {
  line-height: 1.5;
  margin: 0;
}
.cid-sKZGb1M5SG .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sKZGb1M5SG .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZGb1M5SG .card-img span {
  color: #000000;
  font-size: 3.2rem;
}
.cid-sKZGb1M5SG img {
  width: 100%;
}
.cid-sKZGb1M5SG .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sKZGb1M5SG .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sKZGb1M5SG .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sKZGb1M5SG .box {
    padding: 2rem 3rem;
  }
}
.cid-sKZGb1M5SG .card-title,
.cid-sKZGb1M5SG .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sKZGb1M5SG .mbr-section-title {
  text-align: center;
}
.cid-sKZGb1M5SG .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sKZGb1M5SG .mbr-section-title,
.cid-sKZGb1M5SG .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sKZGb1M5SG .mbr-text,
.cid-sKZGb1M5SG .line-wrap2 {
  text-align: center;
  color: #3f671b;
}
.cid-sKZGb1M5SG .mbr-text,
.cid-sKZGb1M5SG .line-wrap2 B {
  color: #ee9521;
}
.cid-sKZGb2q8lJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZGb2q8lJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZGb2q8lJ .mbr-section-btn {
  color: #000000;
}
.cid-sKZGb2q8lJ .mbr-section-title {
  color: #3f671b;
}
.cid-sKZGb2q8lJ .mbr-section-title DIV {
  text-align: center;
}
.cid-sKZGb2q8lJ P {
  color: #000000;
  text-align: left;
}
.cid-sKZGb2Xtu0 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZGb2Xtu0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZGb2Xtu0 .mbr-section-btn {
  color: #000000;
}
.cid-sKZGb3E0xd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sKZGb3E0xd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZGb3E0xd .mbr-section-btn {
  color: #000000;
}
.cid-sKZGb3E0xd .mbr-text,
.cid-sKZGb3E0xd .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sKZGb4eVyd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sKZGb4eVyd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZGb4eVyd .mbr-section-btn {
  color: #000000;
}
.cid-sKZGb4Y4iE {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sKZGb4Y4iE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sKZGb4Y4iE .mbr-section-btn {
  color: #000000;
}
.cid-sKZGb5JtsP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sKZGb5JtsP .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZGb5JtsP p {
  margin: 0;
}
.cid-sKZGb6GZ66 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sKZGb6GZ66 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sKZGb6GZ66 p {
  margin: 0;
}
.cid-sKZGb7cfOR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sKZGb7cfOR .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sKZGb7cfOR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sKZGb7cfOR .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sKZGb7cfOR .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sKZGb7cfOR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sKZGb7cfOR .text2 {
  color: #000000;
  text-align: left;
}
.cid-sKZGb7cfOR .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sKZGb7cfOR .logo-title {
  text-align: center;
}
.cid-sKZGb7cfOR .logo-sub-title {
  text-align: center;
}
.cid-sKZGb7cfOR .links {
  text-align: center;
  color: #656565;
}
.cid-sKZGb7cfOR .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaRBI5kYH {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRBI5kYH .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRBI5kYH .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaRBI5kYH .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaRBI5kYH p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRBI5kYH img {
  width: 169px;
}
.cid-sLaRBI5kYH .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRBI5kYH .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRBI5kYH .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRBI5kYH .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRBI5kYH .card-title,
.cid-sLaRBI5kYH .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaRBI5kYH .mbr-section-title {
  text-align: center;
}
.cid-sLaRBI5kYH .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRBI5kYH .mbr-section-title,
.cid-sLaRBI5kYH .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRBI5kYH .mbr-text,
.cid-sLaRBI5kYH .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaRBJ21TN .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaRBJ21TN .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaRBJ21TN .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaRBJ21TN .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaRBJ21TN .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaRBJ21TN .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaRBJ21TN .dropdown-item {
  padding: 0;
}
.cid-sLaRBJ21TN .dropdown-item,
.cid-sLaRBJ21TN .nav-link,
.cid-sLaRBJ21TN .brand-name {
  font-style: normal;
}
.cid-sLaRBJ21TN .dropdown-item:hover,
.cid-sLaRBJ21TN .nav-link:hover,
.cid-sLaRBJ21TN .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaRBJ21TN .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaRBJ21TN .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaRBJ21TN .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaRBJ21TN .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaRBJ21TN .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaRBJ21TN .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaRBJ21TN .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaRBJ21TN .content-text {
  margin-bottom: 0;
}
.cid-sLaRBJ21TN .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaRBJ21TN .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaRBJ21TN .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaRBJ21TN .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaRBJ21TN .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaRBJ21TN .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRBJ21TN .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRBJ21TN .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaRBJ21TN .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRBJ21TN .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaRBJ21TN .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaRBJ21TN .content-right-side {
  text-align: center;
}
.cid-sLaRBJ21TN .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaRBJ21TN .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaRBJ21TN .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaRBJ21TN .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaRBJ21TN .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRBJ21TN .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaRBJ21TN .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaRBJ21TN .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaRBJ21TN .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaRBJ21TN .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaRBJ21TN .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaRBJ21TN .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaRBJ21TN .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaRBJ21TN .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaRBJ21TN .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaRBJ21TN .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaRBJ21TN .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaRBJ21TN .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaRBJ21TN .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaRBJ21TN .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaRBJ21TN .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRBJ21TN .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaRBJ21TN .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaRBJ21TN .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaRBJ21TN .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaRBJ21TN .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaRBJ21TN .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaRBJ21TN .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-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaRBJ21TN .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaRBJ21TN .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaRBJ21TN .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaRBJ21TN .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaRBJ21TN .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaRBJ21TN .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaRBJ21TN .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaRBJ21TN button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaRBJ21TN button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaRBJ21TN button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaRBJ21TN button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaRBJ21TN button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRBJ21TN button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRBJ21TN button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaRBJ21TN nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRBJ21TN nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaRBJ21TN nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaRBJ21TN nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRBJ21TN .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaRBJ21TN .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaRBJ21TN .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse.collapsing,
.cid-sLaRBJ21TN .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaRBJ21TN .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaRBJ21TN .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaRBJ21TN .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaRBJ21TN .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaRBJ21TN .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaRBJ21TN .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaRBJ21TN .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaRBJ21TN .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaRBJ21TN .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaRBJ21TN .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaRBJ21TN .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaRBJ21TN .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaRBJ21TN .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaRBJ21TN .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaRBJ21TN .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaRBJ21TN .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaRBJ21TN .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaRBJ21TN .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaRBJ21TN .navbar-collapse.collapsing,
  .cid-sLaRBJ21TN .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaRBJ21TN .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaRBJ21TN .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaRBJ21TN .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaRBJ21TN .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaRBJ21TN .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaRBJ21TN .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaRBJ21TN .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaRBJ21TN .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaRBJ21TN img {
    height: 3.8rem !important;
  }
  .cid-sLaRBJ21TN .btn {
    display: -webkit-flex;
  }
  .cid-sLaRBJ21TN button.navbar-toggler {
    display: block;
  }
  .cid-sLaRBJ21TN .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaRBJ21TN .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRBJ21TN .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaRBJ21TN .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaRBJ21TN .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaRBJ21TN .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaRBJ21TN .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaRBJ21TN .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaRBJ21TN .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaRBJ21TN .nav-link:focus {
  outline: none;
}
.cid-sLaRBJ21TN .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaRBJ21TN .dropdown-item.active,
.cid-sLaRBJ21TN .dropdown-item:active {
  color: initial;
}
.cid-sLaRBJ21TN .widget-title,
.cid-sLaRBJ21TN .widget-icon {
  color: #e9e9e9;
}
.cid-sLaRBJ21TN .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaRBJ21TN .menu-logo {
    display: none;
  }
  .cid-sLaRBJ21TN .navbar {
    padding: 0;
  }
  .cid-sLaRBJ21TN .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRBJ21TN button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaRBJ21TN .menu-logo {
    display: none;
  }
  .cid-sLaRBJ21TN .navbar {
    padding: 0;
  }
  .cid-sLaRBJ21TN .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRBJ21TN button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaRBJMfEJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaRBJMfEJ .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRBJMfEJ .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaRBJMfEJ .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaRBJMfEJ .img {
  margin: auto;
}
.cid-sLaRBJMfEJ .card-box {
  width: 100%;
}
.cid-sLaRBJMfEJ p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRBJMfEJ .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaRBJMfEJ .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRBJMfEJ .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaRBJMfEJ img {
  width: 100%;
}
.cid-sLaRBJMfEJ .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRBJMfEJ .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRBJMfEJ .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRBJMfEJ .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRBJMfEJ .card-title,
.cid-sLaRBJMfEJ .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaRBJMfEJ .mbr-section-title {
  text-align: center;
}
.cid-sLaRBJMfEJ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRBJMfEJ .mbr-section-title,
.cid-sLaRBJMfEJ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRBJMfEJ .mbr-text,
.cid-sLaRBJMfEJ .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaRBJMfEJ .mbr-text,
.cid-sLaRBJMfEJ .line-wrap2 B {
  color: #ee9521;
}
.cid-sLaRBL6Vqy {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRBL6Vqy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRBL6Vqy .mbr-section-btn {
  color: #000000;
}
.cid-sLaRBMoAMi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaRBMoAMi .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRBMoAMi p {
  margin: 0;
}
.cid-sLaRBNcepX {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaRBNcepX .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRBNcepX p {
  margin: 0;
}
.cid-sLaRBNOJDw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRBNOJDw .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaRBNOJDw .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaRBNOJDw .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRBNOJDw .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaRBNOJDw .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaRBNOJDw .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaRBNOJDw .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaRBNOJDw .logo-title {
  text-align: center;
}
.cid-sLaRBNOJDw .logo-sub-title {
  text-align: center;
}
.cid-sLaRBNOJDw .links {
  text-align: center;
  color: #656565;
}
.cid-sLaRBNOJDw .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaRJKxDgI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJKxDgI .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRJKxDgI .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaRJKxDgI .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaRJKxDgI p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRJKxDgI img {
  width: 169px;
}
.cid-sLaRJKxDgI .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRJKxDgI .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRJKxDgI .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRJKxDgI .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRJKxDgI .card-title,
.cid-sLaRJKxDgI .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaRJKxDgI .mbr-section-title {
  text-align: center;
}
.cid-sLaRJKxDgI .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRJKxDgI .mbr-section-title,
.cid-sLaRJKxDgI .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRJKxDgI .mbr-text,
.cid-sLaRJKxDgI .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaRJKYxp8 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaRJKYxp8 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaRJKYxp8 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaRJKYxp8 .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaRJKYxp8 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaRJKYxp8 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaRJKYxp8 .dropdown-item {
  padding: 0;
}
.cid-sLaRJKYxp8 .dropdown-item,
.cid-sLaRJKYxp8 .nav-link,
.cid-sLaRJKYxp8 .brand-name {
  font-style: normal;
}
.cid-sLaRJKYxp8 .dropdown-item:hover,
.cid-sLaRJKYxp8 .nav-link:hover,
.cid-sLaRJKYxp8 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaRJKYxp8 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaRJKYxp8 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaRJKYxp8 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaRJKYxp8 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaRJKYxp8 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaRJKYxp8 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaRJKYxp8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaRJKYxp8 .content-text {
  margin-bottom: 0;
}
.cid-sLaRJKYxp8 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaRJKYxp8 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaRJKYxp8 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaRJKYxp8 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaRJKYxp8 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaRJKYxp8 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRJKYxp8 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRJKYxp8 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaRJKYxp8 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRJKYxp8 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaRJKYxp8 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaRJKYxp8 .content-right-side {
  text-align: center;
}
.cid-sLaRJKYxp8 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaRJKYxp8 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaRJKYxp8 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaRJKYxp8 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaRJKYxp8 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRJKYxp8 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaRJKYxp8 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaRJKYxp8 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaRJKYxp8 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaRJKYxp8 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaRJKYxp8 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaRJKYxp8 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaRJKYxp8 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaRJKYxp8 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaRJKYxp8 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaRJKYxp8 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaRJKYxp8 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaRJKYxp8 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaRJKYxp8 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaRJKYxp8 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaRJKYxp8 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRJKYxp8 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaRJKYxp8 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaRJKYxp8 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaRJKYxp8 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaRJKYxp8 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaRJKYxp8 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaRJKYxp8 .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-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaRJKYxp8 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaRJKYxp8 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaRJKYxp8 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaRJKYxp8 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaRJKYxp8 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaRJKYxp8 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaRJKYxp8 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaRJKYxp8 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaRJKYxp8 button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaRJKYxp8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaRJKYxp8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaRJKYxp8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRJKYxp8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRJKYxp8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaRJKYxp8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRJKYxp8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaRJKYxp8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaRJKYxp8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRJKYxp8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaRJKYxp8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaRJKYxp8 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.collapsing,
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaRJKYxp8 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaRJKYxp8 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaRJKYxp8 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaRJKYxp8 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaRJKYxp8 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaRJKYxp8 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaRJKYxp8 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaRJKYxp8 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaRJKYxp8 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaRJKYxp8 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaRJKYxp8 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaRJKYxp8 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaRJKYxp8 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaRJKYxp8 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaRJKYxp8 .navbar-collapse.collapsing,
  .cid-sLaRJKYxp8 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaRJKYxp8 .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaRJKYxp8 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaRJKYxp8 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaRJKYxp8 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaRJKYxp8 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaRJKYxp8 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaRJKYxp8 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaRJKYxp8 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaRJKYxp8 img {
    height: 3.8rem !important;
  }
  .cid-sLaRJKYxp8 .btn {
    display: -webkit-flex;
  }
  .cid-sLaRJKYxp8 button.navbar-toggler {
    display: block;
  }
  .cid-sLaRJKYxp8 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaRJKYxp8 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRJKYxp8 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaRJKYxp8 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaRJKYxp8 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaRJKYxp8 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaRJKYxp8 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaRJKYxp8 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaRJKYxp8 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaRJKYxp8 .nav-link:focus {
  outline: none;
}
.cid-sLaRJKYxp8 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaRJKYxp8 .dropdown-item.active,
.cid-sLaRJKYxp8 .dropdown-item:active {
  color: initial;
}
.cid-sLaRJKYxp8 .widget-title,
.cid-sLaRJKYxp8 .widget-icon {
  color: #e9e9e9;
}
.cid-sLaRJKYxp8 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaRJKYxp8 .menu-logo {
    display: none;
  }
  .cid-sLaRJKYxp8 .navbar {
    padding: 0;
  }
  .cid-sLaRJKYxp8 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRJKYxp8 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaRJKYxp8 .menu-logo {
    display: none;
  }
  .cid-sLaRJKYxp8 .navbar {
    padding: 0;
  }
  .cid-sLaRJKYxp8 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRJKYxp8 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaRJLofN3 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaRJLofN3 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRJLofN3 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaRJLofN3 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaRJLofN3 .img {
  margin: auto;
}
.cid-sLaRJLofN3 .card-box {
  width: 100%;
}
.cid-sLaRJLofN3 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRJLofN3 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaRJLofN3 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRJLofN3 .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaRJLofN3 img {
  width: 100%;
}
.cid-sLaRJLofN3 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRJLofN3 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRJLofN3 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRJLofN3 .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRJLofN3 .card-title,
.cid-sLaRJLofN3 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaRJLofN3 .mbr-section-title {
  text-align: center;
}
.cid-sLaRJLofN3 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRJLofN3 .mbr-section-title,
.cid-sLaRJLofN3 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRJLofN3 .mbr-text,
.cid-sLaRJLofN3 .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sLaRJMgWfn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJMgWfn .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sLaRJMgWfn .mbr-text,
.cid-sLaRJMgWfn .mbr-section-btn {
  text-align: center;
}
.cid-sLaRJMJ16H {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJMJ16H .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJMJ16H .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJMJ16H .mbr-text,
.cid-sLaRJMJ16H .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJNjQ3W {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaRJNjQ3W .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJNjQ3W .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJNjQ3W .mbr-text,
.cid-sLaRJNjQ3W .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJNP6DD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sLaRJNP6DD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJNP6DD .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJNP6DD .mbr-text,
.cid-sLaRJNP6DD .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJOqZaw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJOqZaw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJOqZaw .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJOqZaw .mbr-text,
.cid-sLaRJOqZaw .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJOqZaw P {
  color: #0a1c44;
  text-align: left;
}
.cid-sLaRJPe0zM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sLaRJPe0zM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJPe0zM .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJPe0zM .mbr-text,
.cid-sLaRJPe0zM .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJPLNuy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaRJPLNuy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJPLNuy .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJPLNuy .mbr-text,
.cid-sLaRJPLNuy .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJQheRK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJQheRK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJQheRK .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJQOMci {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaRJQOMci .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJQOMci .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJRkL1s {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRJRkL1s .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJRkL1s .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJRVkxz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaRJRVkxz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJRVkxz .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJRVkxz .mbr-text,
.cid-sLaRJRVkxz .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJStn7Q {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRJStn7Q .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRJStn7Q .mbr-section-btn {
  color: #000000;
}
.cid-sLaRJTbLH6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaRJTbLH6 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRJTbLH6 p {
  margin: 0;
}
.cid-sLaRJTBgAV {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaRJTBgAV .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRJTBgAV p {
  margin: 0;
}
.cid-sLaRJU1mrA {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRJU1mrA .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaRJU1mrA .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaRJU1mrA .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRJU1mrA .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaRJU1mrA .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaRJU1mrA .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaRJU1mrA .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaRJU1mrA .logo-title {
  text-align: center;
}
.cid-sLaRJU1mrA .logo-sub-title {
  text-align: center;
}
.cid-sLaRJU1mrA .links {
  text-align: center;
  color: #656565;
}
.cid-sLaRJU1mrA .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaRQYG9GN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRQYG9GN .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRQYG9GN .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaRQYG9GN .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaRQYG9GN p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRQYG9GN img {
  width: 169px;
}
.cid-sLaRQYG9GN .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRQYG9GN .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRQYG9GN .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRQYG9GN .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRQYG9GN .card-title,
.cid-sLaRQYG9GN .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaRQYG9GN .mbr-section-title {
  text-align: center;
}
.cid-sLaRQYG9GN .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRQYG9GN .mbr-section-title,
.cid-sLaRQYG9GN .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRQYG9GN .mbr-text,
.cid-sLaRQYG9GN .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaRQZ7jDn .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaRQZ7jDn .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaRQZ7jDn .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaRQZ7jDn .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaRQZ7jDn .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaRQZ7jDn .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaRQZ7jDn .dropdown-item {
  padding: 0;
}
.cid-sLaRQZ7jDn .dropdown-item,
.cid-sLaRQZ7jDn .nav-link,
.cid-sLaRQZ7jDn .brand-name {
  font-style: normal;
}
.cid-sLaRQZ7jDn .dropdown-item:hover,
.cid-sLaRQZ7jDn .nav-link:hover,
.cid-sLaRQZ7jDn .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaRQZ7jDn .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaRQZ7jDn .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaRQZ7jDn .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaRQZ7jDn .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaRQZ7jDn .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaRQZ7jDn .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaRQZ7jDn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaRQZ7jDn .content-text {
  margin-bottom: 0;
}
.cid-sLaRQZ7jDn .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaRQZ7jDn .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaRQZ7jDn .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaRQZ7jDn .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaRQZ7jDn .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaRQZ7jDn .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRQZ7jDn .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaRQZ7jDn .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaRQZ7jDn .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRQZ7jDn .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaRQZ7jDn .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaRQZ7jDn .content-right-side {
  text-align: center;
}
.cid-sLaRQZ7jDn .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaRQZ7jDn .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaRQZ7jDn .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaRQZ7jDn .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaRQZ7jDn .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRQZ7jDn .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaRQZ7jDn .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaRQZ7jDn .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaRQZ7jDn .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaRQZ7jDn .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaRQZ7jDn .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaRQZ7jDn .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaRQZ7jDn .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaRQZ7jDn .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaRQZ7jDn .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaRQZ7jDn .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaRQZ7jDn .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaRQZ7jDn .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaRQZ7jDn .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaRQZ7jDn .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaRQZ7jDn .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaRQZ7jDn .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaRQZ7jDn .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaRQZ7jDn .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaRQZ7jDn .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaRQZ7jDn .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaRQZ7jDn .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaRQZ7jDn .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-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaRQZ7jDn .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaRQZ7jDn .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaRQZ7jDn .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaRQZ7jDn .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaRQZ7jDn .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaRQZ7jDn .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaRQZ7jDn .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaRQZ7jDn button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaRQZ7jDn button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaRQZ7jDn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaRQZ7jDn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaRQZ7jDn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRQZ7jDn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaRQZ7jDn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaRQZ7jDn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRQZ7jDn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaRQZ7jDn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaRQZ7jDn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaRQZ7jDn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaRQZ7jDn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaRQZ7jDn .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.collapsing,
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaRQZ7jDn .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaRQZ7jDn .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaRQZ7jDn .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaRQZ7jDn .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaRQZ7jDn .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaRQZ7jDn .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaRQZ7jDn .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaRQZ7jDn .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaRQZ7jDn .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaRQZ7jDn .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaRQZ7jDn .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaRQZ7jDn .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaRQZ7jDn .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaRQZ7jDn .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaRQZ7jDn .navbar-collapse.collapsing,
  .cid-sLaRQZ7jDn .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaRQZ7jDn .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaRQZ7jDn .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaRQZ7jDn .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaRQZ7jDn .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaRQZ7jDn .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaRQZ7jDn .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaRQZ7jDn .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaRQZ7jDn .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaRQZ7jDn img {
    height: 3.8rem !important;
  }
  .cid-sLaRQZ7jDn .btn {
    display: -webkit-flex;
  }
  .cid-sLaRQZ7jDn button.navbar-toggler {
    display: block;
  }
  .cid-sLaRQZ7jDn .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaRQZ7jDn .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRQZ7jDn .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaRQZ7jDn .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaRQZ7jDn .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaRQZ7jDn .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaRQZ7jDn .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaRQZ7jDn .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaRQZ7jDn .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaRQZ7jDn .nav-link:focus {
  outline: none;
}
.cid-sLaRQZ7jDn .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaRQZ7jDn .dropdown-item.active,
.cid-sLaRQZ7jDn .dropdown-item:active {
  color: initial;
}
.cid-sLaRQZ7jDn .widget-title,
.cid-sLaRQZ7jDn .widget-icon {
  color: #e9e9e9;
}
.cid-sLaRQZ7jDn .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaRQZ7jDn .menu-logo {
    display: none;
  }
  .cid-sLaRQZ7jDn .navbar {
    padding: 0;
  }
  .cid-sLaRQZ7jDn .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRQZ7jDn button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaRQZ7jDn .menu-logo {
    display: none;
  }
  .cid-sLaRQZ7jDn .navbar {
    padding: 0;
  }
  .cid-sLaRQZ7jDn .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaRQZ7jDn button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaRQZwllQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaRQZwllQ .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaRQZwllQ .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaRQZwllQ .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaRQZwllQ .img {
  margin: auto;
}
.cid-sLaRQZwllQ .card-box {
  width: 100%;
}
.cid-sLaRQZwllQ p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaRQZwllQ .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaRQZwllQ .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRQZwllQ .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaRQZwllQ img {
  width: 100%;
}
.cid-sLaRQZwllQ .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaRQZwllQ .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaRQZwllQ .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaRQZwllQ .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaRQZwllQ .card-title,
.cid-sLaRQZwllQ .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaRQZwllQ .mbr-section-title {
  text-align: center;
}
.cid-sLaRQZwllQ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaRQZwllQ .mbr-section-title,
.cid-sLaRQZwllQ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaRQZwllQ .mbr-text,
.cid-sLaRQZwllQ .line-wrap2 {
  text-align: left;
  color: #ee9521;
}
.cid-sLaRR09foo {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRR09foo .mbr-section-title {
  text-align: center;
  color: #3f671b;
}
.cid-sLaRR09foo .mbr-text,
.cid-sLaRR09foo .mbr-section-btn {
  text-align: center;
}
.cid-sLaRR0RuI4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRR0RuI4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR0RuI4 .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR1oG4P {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaRR1oG4P .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR1oG4P .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR1Tnym {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRR1Tnym .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR1Tnym .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR2soEL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRR2soEL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR2soEL .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR2Zfmm {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sLaRR2Zfmm .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR2Zfmm .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR3wLXf {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaRR3wLXf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaRR3wLXf .mbr-section-btn {
  color: #000000;
}
.cid-sLaRR4feTI {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaRR4feTI .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRR4feTI p {
  margin: 0;
}
.cid-sLaRR4GgO2 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaRR4GgO2 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaRR4GgO2 p {
  margin: 0;
}
.cid-sLaRR56MXD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaRR56MXD .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaRR56MXD .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaRR56MXD .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaRR56MXD .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaRR56MXD .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaRR56MXD .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaRR56MXD .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaRR56MXD .logo-title {
  text-align: center;
}
.cid-sLaRR56MXD .logo-sub-title {
  text-align: center;
}
.cid-sLaRR56MXD .links {
  text-align: center;
  color: #656565;
}
.cid-sLaRR56MXD .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaS0X8bMV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS0X8bMV .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaS0X8bMV .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaS0X8bMV .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaS0X8bMV p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaS0X8bMV img {
  width: 169px;
}
.cid-sLaS0X8bMV .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaS0X8bMV .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaS0X8bMV .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaS0X8bMV .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaS0X8bMV .card-title,
.cid-sLaS0X8bMV .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaS0X8bMV .mbr-section-title {
  text-align: center;
}
.cid-sLaS0X8bMV .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaS0X8bMV .mbr-section-title,
.cid-sLaS0X8bMV .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaS0X8bMV .mbr-text,
.cid-sLaS0X8bMV .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaS0XzfZj .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaS0XzfZj .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaS0XzfZj .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaS0XzfZj .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaS0XzfZj .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaS0XzfZj .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaS0XzfZj .dropdown-item {
  padding: 0;
}
.cid-sLaS0XzfZj .dropdown-item,
.cid-sLaS0XzfZj .nav-link,
.cid-sLaS0XzfZj .brand-name {
  font-style: normal;
}
.cid-sLaS0XzfZj .dropdown-item:hover,
.cid-sLaS0XzfZj .nav-link:hover,
.cid-sLaS0XzfZj .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaS0XzfZj .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaS0XzfZj .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaS0XzfZj .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaS0XzfZj .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaS0XzfZj .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaS0XzfZj .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaS0XzfZj .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaS0XzfZj .content-text {
  margin-bottom: 0;
}
.cid-sLaS0XzfZj .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaS0XzfZj .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaS0XzfZj .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaS0XzfZj .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaS0XzfZj .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaS0XzfZj .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaS0XzfZj .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaS0XzfZj .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaS0XzfZj .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS0XzfZj .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaS0XzfZj .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaS0XzfZj .content-right-side {
  text-align: center;
}
.cid-sLaS0XzfZj .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaS0XzfZj .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaS0XzfZj .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaS0XzfZj .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaS0XzfZj .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS0XzfZj .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaS0XzfZj .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaS0XzfZj .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaS0XzfZj .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaS0XzfZj .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaS0XzfZj .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaS0XzfZj .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaS0XzfZj .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaS0XzfZj .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaS0XzfZj .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaS0XzfZj .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaS0XzfZj .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaS0XzfZj .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaS0XzfZj .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaS0XzfZj .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaS0XzfZj .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS0XzfZj .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaS0XzfZj .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaS0XzfZj .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaS0XzfZj .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaS0XzfZj .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaS0XzfZj .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaS0XzfZj .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-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaS0XzfZj .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaS0XzfZj .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaS0XzfZj .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaS0XzfZj .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaS0XzfZj .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaS0XzfZj .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaS0XzfZj .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaS0XzfZj button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaS0XzfZj button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaS0XzfZj button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaS0XzfZj button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaS0XzfZj button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaS0XzfZj button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaS0XzfZj button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaS0XzfZj nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaS0XzfZj nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaS0XzfZj nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaS0XzfZj nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaS0XzfZj .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaS0XzfZj .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaS0XzfZj .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse.collapsing,
.cid-sLaS0XzfZj .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaS0XzfZj .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaS0XzfZj .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaS0XzfZj .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaS0XzfZj .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaS0XzfZj .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaS0XzfZj .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaS0XzfZj .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaS0XzfZj .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaS0XzfZj .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaS0XzfZj .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaS0XzfZj .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaS0XzfZj .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaS0XzfZj .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaS0XzfZj .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaS0XzfZj .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaS0XzfZj .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaS0XzfZj .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaS0XzfZj .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaS0XzfZj .navbar-collapse.collapsing,
  .cid-sLaS0XzfZj .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaS0XzfZj .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaS0XzfZj .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaS0XzfZj .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaS0XzfZj .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaS0XzfZj .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaS0XzfZj .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaS0XzfZj .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaS0XzfZj .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaS0XzfZj img {
    height: 3.8rem !important;
  }
  .cid-sLaS0XzfZj .btn {
    display: -webkit-flex;
  }
  .cid-sLaS0XzfZj button.navbar-toggler {
    display: block;
  }
  .cid-sLaS0XzfZj .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaS0XzfZj .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS0XzfZj .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaS0XzfZj .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaS0XzfZj .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaS0XzfZj .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaS0XzfZj .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaS0XzfZj .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaS0XzfZj .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaS0XzfZj .nav-link:focus {
  outline: none;
}
.cid-sLaS0XzfZj .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaS0XzfZj .dropdown-item.active,
.cid-sLaS0XzfZj .dropdown-item:active {
  color: initial;
}
.cid-sLaS0XzfZj .widget-title,
.cid-sLaS0XzfZj .widget-icon {
  color: #e9e9e9;
}
.cid-sLaS0XzfZj .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaS0XzfZj .menu-logo {
    display: none;
  }
  .cid-sLaS0XzfZj .navbar {
    padding: 0;
  }
  .cid-sLaS0XzfZj .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS0XzfZj button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaS0XzfZj .menu-logo {
    display: none;
  }
  .cid-sLaS0XzfZj .navbar {
    padding: 0;
  }
  .cid-sLaS0XzfZj .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS0XzfZj button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaS0Y0zad {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS0Y0zad .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaS0Y0zad .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaS0Y0zad .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaS0Y0zad .img {
  margin: auto;
}
.cid-sLaS0Y0zad .card-box {
  width: 100%;
}
.cid-sLaS0Y0zad p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaS0Y0zad .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaS0Y0zad .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS0Y0zad .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaS0Y0zad img {
  width: 100%;
}
.cid-sLaS0Y0zad .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaS0Y0zad .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaS0Y0zad .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaS0Y0zad .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaS0Y0zad .card-title,
.cid-sLaS0Y0zad .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaS0Y0zad .mbr-section-title {
  text-align: center;
}
.cid-sLaS0Y0zad .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaS0Y0zad .mbr-section-title,
.cid-sLaS0Y0zad .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaS0Y0zad .mbr-text,
.cid-sLaS0Y0zad .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaS0Y0zad .mbr-text,
.cid-sLaS0Y0zad .line-wrap2 B {
  color: #f8c301;
}
.cid-sLaS0YIL4S {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sLaS0YIL4S .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS0YIL4S .mbr-section-btn {
  color: #000000;
}
.cid-sLaS0ZfbSn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f8c301;
}
.cid-sLaS0ZfbSn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS0ZfbSn .mbr-section-btn {
  color: #000000;
}
.cid-sLaS0ZfbSn .mbr-text,
.cid-sLaS0ZfbSn .mbr-section-btn {
  color: #000000;
}
.cid-sLaS0ZLQSS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sLaS0ZLQSS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS0ZLQSS .mbr-section-btn {
  color: #000000;
}
.cid-sLaS0ZLQSS .mbr-text,
.cid-sLaS0ZLQSS .mbr-section-btn {
  color: #000000;
}
.cid-sLaS10usQo {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-sLaS10usQo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS10usQo .mbr-section-btn {
  color: #000000;
}
.cid-sLaS10usQo .mbr-text,
.cid-sLaS10usQo .mbr-section-btn {
  color: #000000;
}
.cid-sLaS112XSv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS112XSv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS112XSv .mbr-section-btn {
  color: #000000;
}
.cid-sLaS112XSv .mbr-text,
.cid-sLaS112XSv .mbr-section-btn {
  color: #000000;
}
.cid-sLaS11D4gp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS11D4gp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS11D4gp .mbr-section-btn {
  color: #000000;
}
.cid-sLaS12asUD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sLaS12asUD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS12asUD .mbr-section-btn {
  color: #000000;
}
.cid-sLaS12asUD .mbr-text,
.cid-sLaS12asUD .mbr-section-btn {
  color: #000000;
}
.cid-sLaS12Nq1X {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS12Nq1X .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS12Nq1X .mbr-section-btn {
  color: #000000;
}
.cid-sLaS12Nq1X .mbr-text,
.cid-sLaS12Nq1X .mbr-section-btn {
  color: #000000;
}
.cid-sLaS13ogUW {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS13ogUW .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS13ogUW .mbr-section-btn {
  color: #000000;
}
.cid-sLaS140ab1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS140ab1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS140ab1 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS140ab1 .mbr-text,
.cid-sLaS140ab1 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS14NIzo {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS14NIzo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS14NIzo .mbr-section-btn {
  color: #000000;
}
.cid-sLaS15pZey {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS15pZey .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS15pZey .mbr-section-btn {
  color: #000000;
}
.cid-sLaS15pZey .mbr-text,
.cid-sLaS15pZey .mbr-section-btn {
  color: #000000;
}
.cid-sLaS1671ei {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS1671ei .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS1671ei .mbr-section-btn {
  color: #000000;
}
.cid-sLaS1671ei .mbr-text,
.cid-sLaS1671ei .mbr-section-btn {
  color: #000000;
}
.cid-sLaS17rxJQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaS17rxJQ .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaS17rxJQ p {
  margin: 0;
}
.cid-sLaS17X5OC {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaS17X5OC .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaS17X5OC p {
  margin: 0;
}
.cid-sLaS18Cae1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS18Cae1 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaS18Cae1 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaS18Cae1 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS18Cae1 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaS18Cae1 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaS18Cae1 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaS18Cae1 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaS18Cae1 .logo-title {
  text-align: center;
}
.cid-sLaS18Cae1 .logo-sub-title {
  text-align: center;
}
.cid-sLaS18Cae1 .links {
  text-align: center;
  color: #656565;
}
.cid-sLaS18Cae1 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaS19aXVZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS19aXVZ .container-fluid {
  padding: 0;
}
.cid-sLaS19aXVZ img {
  width: 100%;
}
.cid-sLaS19aXVZ .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-sLaS19aXVZ .content {
    padding: 3rem;
  }
}
.cid-sLaS19aXVZ .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-sLaS19aXVZ .img-col {
  padding: 0;
  margin: auto;
}
.cid-sLaS19aXVZ .mbr-section-title {
  text-align: left;
}
.cid-sLaS5RTZD2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS5RTZD2 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaS5RTZD2 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaS5RTZD2 .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaS5RTZD2 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaS5RTZD2 img {
  width: 169px;
}
.cid-sLaS5RTZD2 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaS5RTZD2 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaS5RTZD2 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaS5RTZD2 .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaS5RTZD2 .card-title,
.cid-sLaS5RTZD2 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaS5RTZD2 .mbr-section-title {
  text-align: center;
}
.cid-sLaS5RTZD2 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaS5RTZD2 .mbr-section-title,
.cid-sLaS5RTZD2 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaS5RTZD2 .mbr-text,
.cid-sLaS5RTZD2 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaS5SpySS .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaS5SpySS .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaS5SpySS .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaS5SpySS .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaS5SpySS .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaS5SpySS .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaS5SpySS .dropdown-item {
  padding: 0;
}
.cid-sLaS5SpySS .dropdown-item,
.cid-sLaS5SpySS .nav-link,
.cid-sLaS5SpySS .brand-name {
  font-style: normal;
}
.cid-sLaS5SpySS .dropdown-item:hover,
.cid-sLaS5SpySS .nav-link:hover,
.cid-sLaS5SpySS .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaS5SpySS .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaS5SpySS .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaS5SpySS .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaS5SpySS .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaS5SpySS .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaS5SpySS .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaS5SpySS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaS5SpySS .content-text {
  margin-bottom: 0;
}
.cid-sLaS5SpySS .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaS5SpySS .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaS5SpySS .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaS5SpySS .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaS5SpySS .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaS5SpySS .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaS5SpySS .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaS5SpySS .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaS5SpySS .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS5SpySS .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaS5SpySS .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaS5SpySS .content-right-side {
  text-align: center;
}
.cid-sLaS5SpySS .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaS5SpySS .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaS5SpySS .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaS5SpySS .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaS5SpySS .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS5SpySS .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaS5SpySS .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaS5SpySS .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaS5SpySS .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaS5SpySS .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaS5SpySS .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaS5SpySS .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaS5SpySS .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaS5SpySS .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaS5SpySS .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaS5SpySS .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaS5SpySS .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaS5SpySS .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaS5SpySS .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaS5SpySS .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaS5SpySS .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaS5SpySS .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaS5SpySS .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaS5SpySS .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaS5SpySS .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaS5SpySS .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaS5SpySS .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaS5SpySS .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-sLaS5SpySS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaS5SpySS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaS5SpySS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaS5SpySS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaS5SpySS .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaS5SpySS .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaS5SpySS .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaS5SpySS .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaS5SpySS .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaS5SpySS .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaS5SpySS .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaS5SpySS .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaS5SpySS button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaS5SpySS button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaS5SpySS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaS5SpySS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaS5SpySS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaS5SpySS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaS5SpySS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaS5SpySS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaS5SpySS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaS5SpySS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaS5SpySS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaS5SpySS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaS5SpySS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaS5SpySS .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse.collapsing,
.cid-sLaS5SpySS .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaS5SpySS .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaS5SpySS .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaS5SpySS .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaS5SpySS .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaS5SpySS .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaS5SpySS .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaS5SpySS .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaS5SpySS .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaS5SpySS .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaS5SpySS .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaS5SpySS .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaS5SpySS .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaS5SpySS .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaS5SpySS .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaS5SpySS .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaS5SpySS .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaS5SpySS .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaS5SpySS .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaS5SpySS .navbar-collapse.collapsing,
  .cid-sLaS5SpySS .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaS5SpySS .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaS5SpySS .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaS5SpySS .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaS5SpySS .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaS5SpySS .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaS5SpySS .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaS5SpySS .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaS5SpySS .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaS5SpySS img {
    height: 3.8rem !important;
  }
  .cid-sLaS5SpySS .btn {
    display: -webkit-flex;
  }
  .cid-sLaS5SpySS button.navbar-toggler {
    display: block;
  }
  .cid-sLaS5SpySS .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaS5SpySS .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS5SpySS .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaS5SpySS .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaS5SpySS .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaS5SpySS .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaS5SpySS .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaS5SpySS .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaS5SpySS .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaS5SpySS .nav-link:focus {
  outline: none;
}
.cid-sLaS5SpySS .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaS5SpySS .dropdown-item.active,
.cid-sLaS5SpySS .dropdown-item:active {
  color: initial;
}
.cid-sLaS5SpySS .widget-title,
.cid-sLaS5SpySS .widget-icon {
  color: #e9e9e9;
}
.cid-sLaS5SpySS .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaS5SpySS .menu-logo {
    display: none;
  }
  .cid-sLaS5SpySS .navbar {
    padding: 0;
  }
  .cid-sLaS5SpySS .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS5SpySS button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaS5SpySS .menu-logo {
    display: none;
  }
  .cid-sLaS5SpySS .navbar {
    padding: 0;
  }
  .cid-sLaS5SpySS .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaS5SpySS button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaS5STMjl {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS5STMjl .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaS5STMjl .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaS5STMjl .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaS5STMjl .img {
  margin: auto;
}
.cid-sLaS5STMjl .card-box {
  width: 100%;
}
.cid-sLaS5STMjl p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaS5STMjl .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaS5STMjl .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS5STMjl .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaS5STMjl img {
  width: 100%;
}
.cid-sLaS5STMjl .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaS5STMjl .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaS5STMjl .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaS5STMjl .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaS5STMjl .card-title,
.cid-sLaS5STMjl .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaS5STMjl .mbr-section-title {
  text-align: center;
}
.cid-sLaS5STMjl .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaS5STMjl .mbr-section-title,
.cid-sLaS5STMjl .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaS5STMjl .mbr-text,
.cid-sLaS5STMjl .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaS5STMjl .mbr-text,
.cid-sLaS5STMjl .line-wrap2 B {
  color: #3f671b;
}
.cid-sLaS5TN9do {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS5TN9do .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5TN9do .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5UkBds {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaS5UkBds .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5UkBds .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5UkBds .mbr-text,
.cid-sLaS5UkBds .mbr-section-btn {
  color: #ffffff;
}
.cid-sLaS5UUdM8 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sLaS5UUdM8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5UUdM8 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5UUdM8 .mbr-text,
.cid-sLaS5UUdM8 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS5VsUQs {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS5VsUQs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5VsUQs .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5W1en9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sLaS5W1en9 .mbr-section-subtitle {
  color: #767676;
}
.cid-sLaS5W1en9 .container-table {
  margin: 0 auto;
}
.cid-sLaS5W1en9 table.dataTable thead .sorting:before,
.cid-sLaS5W1en9 table.dataTable thead .sorting:after,
.cid-sLaS5W1en9 table.dataTable thead .sorting_asc:before,
.cid-sLaS5W1en9 table.dataTable thead .sorting_asc:after,
.cid-sLaS5W1en9 table.dataTable thead .sorting_desc:before,
.cid-sLaS5W1en9 table.dataTable thead .sorting_desc:after,
.cid-sLaS5W1en9 table.dataTable thead .sorting_asc_disabled:before,
.cid-sLaS5W1en9 table.dataTable thead .sorting_asc_disabled:after,
.cid-sLaS5W1en9 table.dataTable thead .sorting_desc_disabled:before,
.cid-sLaS5W1en9 table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sLaS5W1en9 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sLaS5W1en9 .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sLaS5W1en9 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sLaS5W1en9 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sLaS5W1en9 .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sLaS5W1en9 .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sLaS5W1en9 .table-heads {
  color: #ffffff;
}
.cid-sLaS5W1en9 .dataTables_wrapper {
  display: block;
}
.cid-sLaS5W1en9 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sLaS5W1en9 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sLaS5W1en9 table {
  width: auto !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sLaS5W1en9 table td,
.cid-sLaS5W1en9 table th {
  white-space: nowrap;
}
.cid-sLaS5W1en9 table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sLaS5W1en9 table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sLaS5W1en9 table td {
  border-top: 1px solid #ffffff;
}
.cid-sLaS5W1en9 table.table {
  background: #ececec;
}
.cid-sLaS5W1en9 .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sLaS5W1en9 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sLaS5W1en9 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sLaS5W1en9 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sLaS5W1en9 .dataTables_filter {
    text-align: center;
  }
  .cid-sLaS5W1en9 .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sLaS5W1en9 .mbr-section-title,
.cid-sLaS5W1en9 .line-wrap {
  text-align: center;
}
.cid-sLaS5W1en9 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sLaS5W1en9 .body-item {
  text-align: left;
}
.cid-sLaS5XpP3M {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS5XpP3M .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5XpP3M .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5XYtu4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS5XYtu4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5XYtu4 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5YxBQz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS5YxBQz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS5YxBQz .mbr-section-btn {
  color: #000000;
}
.cid-sLaS5ZbcqJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS5ZbcqJ .mbr-section-subtitle {
  color: #767676;
}
.cid-sLaS5ZbcqJ .container-table {
  margin: 0 auto;
}
.cid-sLaS5ZbcqJ table.dataTable thead .sorting:before,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting:after,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_asc:before,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_asc:after,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_desc:before,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_desc:after,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_asc_disabled:before,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_asc_disabled:after,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_desc_disabled:before,
.cid-sLaS5ZbcqJ table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sLaS5ZbcqJ .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sLaS5ZbcqJ .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sLaS5ZbcqJ .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #3f671b;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sLaS5ZbcqJ .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sLaS5ZbcqJ .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #0a1c44;
}
.cid-sLaS5ZbcqJ .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sLaS5ZbcqJ .table-heads {
  color: #ffffff;
}
.cid-sLaS5ZbcqJ .dataTables_wrapper {
  display: block;
}
.cid-sLaS5ZbcqJ .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sLaS5ZbcqJ .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sLaS5ZbcqJ table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sLaS5ZbcqJ table td,
.cid-sLaS5ZbcqJ table th {
  white-space: nowrap;
}
.cid-sLaS5ZbcqJ table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sLaS5ZbcqJ table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sLaS5ZbcqJ table td {
  border-top: 1px solid #ffffff;
}
.cid-sLaS5ZbcqJ table.table {
  background: #ececec;
}
.cid-sLaS5ZbcqJ .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sLaS5ZbcqJ .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sLaS5ZbcqJ .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sLaS5ZbcqJ .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sLaS5ZbcqJ .dataTables_filter {
    text-align: center;
  }
  .cid-sLaS5ZbcqJ .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sLaS5ZbcqJ .mbr-section-title,
.cid-sLaS5ZbcqJ .line-wrap {
  text-align: center;
}
.cid-sLaS5ZbcqJ .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sLaS609dpc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS609dpc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS609dpc .mbr-section-btn {
  color: #000000;
}
.cid-sLaS60MuPG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS60MuPG .mbr-section-subtitle {
  color: #767676;
}
.cid-sLaS60MuPG .container-table {
  margin: 0 auto;
}
.cid-sLaS60MuPG table.dataTable thead .sorting:before,
.cid-sLaS60MuPG table.dataTable thead .sorting:after,
.cid-sLaS60MuPG table.dataTable thead .sorting_asc:before,
.cid-sLaS60MuPG table.dataTable thead .sorting_asc:after,
.cid-sLaS60MuPG table.dataTable thead .sorting_desc:before,
.cid-sLaS60MuPG table.dataTable thead .sorting_desc:after,
.cid-sLaS60MuPG table.dataTable thead .sorting_asc_disabled:before,
.cid-sLaS60MuPG table.dataTable thead .sorting_asc_disabled:after,
.cid-sLaS60MuPG table.dataTable thead .sorting_desc_disabled:before,
.cid-sLaS60MuPG table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sLaS60MuPG .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sLaS60MuPG .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sLaS60MuPG .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sLaS60MuPG .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sLaS60MuPG .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  color: #0a1c44;
}
.cid-sLaS60MuPG .head-item:hover {
  background: #ffffff;
  color: inherit;
}
.cid-sLaS60MuPG .table-heads {
  color: #ffffff;
}
.cid-sLaS60MuPG .dataTables_wrapper {
  display: block;
}
.cid-sLaS60MuPG .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sLaS60MuPG .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sLaS60MuPG table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sLaS60MuPG table td,
.cid-sLaS60MuPG table th {
  white-space: nowrap;
}
.cid-sLaS60MuPG table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sLaS60MuPG table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sLaS60MuPG table td {
  border-top: 1px solid #ffffff;
}
.cid-sLaS60MuPG table.table {
  background: #ececec;
}
.cid-sLaS60MuPG .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sLaS60MuPG .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sLaS60MuPG .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sLaS60MuPG .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sLaS60MuPG .dataTables_filter {
    text-align: center;
  }
  .cid-sLaS60MuPG .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sLaS60MuPG .mbr-section-title,
.cid-sLaS60MuPG .line-wrap {
  text-align: center;
}
.cid-sLaS60MuPG .mbr-section-sub-title {
  text-align: center;
  color: #0a1c44;
}
.cid-sLaS61ZZKa {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS61ZZKa .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS61ZZKa .mbr-section-btn {
  color: #000000;
}
.cid-sLaS62DnX6 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS62DnX6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS62DnX6 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS63i1KO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS63i1KO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS63i1KO .mbr-section-btn {
  color: #000000;
}
.cid-sLaS63YtYI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaS63YtYI .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS63YtYI .mbr-section-btn {
  color: #000000;
}
.cid-sLaS64DuE4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sLaS64DuE4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS64DuE4 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS64DuE4 .mbr-text,
.cid-sLaS64DuE4 .mbr-section-btn {
  color: #ffffff;
}
.cid-sLaS65v460 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaS65v460 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS65v460 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS66bMe6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS66bMe6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS66bMe6 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS66TopO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS66TopO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS66TopO .mbr-section-btn {
  color: #000000;
}
.cid-sLaS67z3Pe {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS67z3Pe .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS67z3Pe .mbr-section-btn {
  color: #000000;
}
.cid-sLaS68fr5V {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS68fr5V .mbr-section-subtitle {
  color: #767676;
}
.cid-sLaS68fr5V .container-table {
  margin: 0 auto;
}
.cid-sLaS68fr5V table.dataTable thead .sorting:before,
.cid-sLaS68fr5V table.dataTable thead .sorting:after,
.cid-sLaS68fr5V table.dataTable thead .sorting_asc:before,
.cid-sLaS68fr5V table.dataTable thead .sorting_asc:after,
.cid-sLaS68fr5V table.dataTable thead .sorting_desc:before,
.cid-sLaS68fr5V table.dataTable thead .sorting_desc:after,
.cid-sLaS68fr5V table.dataTable thead .sorting_asc_disabled:before,
.cid-sLaS68fr5V table.dataTable thead .sorting_asc_disabled:after,
.cid-sLaS68fr5V table.dataTable thead .sorting_desc_disabled:before,
.cid-sLaS68fr5V table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sLaS68fr5V .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sLaS68fr5V .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sLaS68fr5V .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sLaS68fr5V .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sLaS68fr5V .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
}
.cid-sLaS68fr5V .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sLaS68fr5V .table-heads {
  color: #ffffff;
}
.cid-sLaS68fr5V .dataTables_wrapper {
  display: block;
}
.cid-sLaS68fr5V .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sLaS68fr5V .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sLaS68fr5V table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sLaS68fr5V table td,
.cid-sLaS68fr5V table th {
  white-space: nowrap;
}
.cid-sLaS68fr5V table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sLaS68fr5V table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sLaS68fr5V table td {
  border-top: 1px solid #ffffff;
}
.cid-sLaS68fr5V table.table {
  background: #ececec;
}
.cid-sLaS68fr5V .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sLaS68fr5V .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sLaS68fr5V .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sLaS68fr5V .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sLaS68fr5V .dataTables_filter {
    text-align: center;
  }
  .cid-sLaS68fr5V .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sLaS68fr5V .mbr-section-title,
.cid-sLaS68fr5V .line-wrap {
  text-align: center;
}
.cid-sLaS68fr5V .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sLaS69tGmw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS69tGmw .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS69tGmw .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6abZmo {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS6abZmo .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6abZmo .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6abZmo .mbr-text,
.cid-sLaS6abZmo .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6aUpQG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS6aUpQG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6aUpQG .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6aUpQG .mbr-text,
.cid-sLaS6aUpQG .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6bFc2I {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS6bFc2I .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6bFc2I .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6cpv5g {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS6cpv5g .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6cpv5g .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6dm246 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaS6dm246 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6dm246 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6e5SO4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaS6e5SO4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6e5SO4 .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6e5SO4 .mbr-text,
.cid-sLaS6e5SO4 .mbr-section-btn {
  color: #ececec;
}
.cid-sLaS6ePAiR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS6ePAiR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6ePAiR .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6ePAiR .mbr-text,
.cid-sLaS6ePAiR .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6fANrm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaS6fANrm .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6fANrm .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6fANrm .mbr-text,
.cid-sLaS6fANrm .mbr-section-btn {
  color: #ececec;
}
.cid-sLaS6glATU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS6glATU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6glATU .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6glATU .mbr-text,
.cid-sLaS6glATU .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6hlThE {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaS6hlThE .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6hlThE .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6hlThE .mbr-text,
.cid-sLaS6hlThE .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6i7LuL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS6i7LuL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6i7LuL .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6i7LuL .mbr-text,
.cid-sLaS6i7LuL .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaS6iTiOr {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS6iTiOr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6iTiOr .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6jErMH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS6jErMH .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6jErMH .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6kDfaQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaS6kDfaQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6kDfaQ .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6kDfaQ P {
  color: #0a1c44;
  text-align: left;
}
.cid-sLaS6ltBrT {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaS6ltBrT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaS6ltBrT .mbr-section-btn {
  color: #000000;
}
.cid-sLaS6mjC5s {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ececec;
}
.cid-sLaS6mjC5s .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sLaS6mjC5s img {
  width: 100%;
}
.cid-sLaS6mjC5s p {
  line-height: 1.6;
}
.cid-sLaS6mjC5s .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sLaS6mjC5s .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sLaS6mjC5s .mbr-text,
.cid-sLaS6mjC5s .mbr-section-btn {
  color: #656565;
  text-align: left;
}
.cid-sLaS6mjC5s .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sLaS6mjC5s .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sLaS6mjC5s .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sLaS6mjC5s .mbr-section-title,
.cid-sLaS6mjC5s .line-wrap {
  text-align: left;
}
@media (max-width: 992px) {
  .cid-sLaS6mjC5s .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sLaS6n7Qxd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaS6n7Qxd .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaS6n7Qxd p {
  margin: 0;
}
.cid-sLaS6nQzfm {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaS6nQzfm .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaS6nQzfm p {
  margin: 0;
}
.cid-sLaS6owmI7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaS6owmI7 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaS6owmI7 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaS6owmI7 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaS6owmI7 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaS6owmI7 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaS6owmI7 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaS6owmI7 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaS6owmI7 .logo-title {
  text-align: center;
}
.cid-sLaS6owmI7 .logo-sub-title {
  text-align: center;
}
.cid-sLaS6owmI7 .links {
  text-align: center;
  color: #656565;
}
.cid-sLaS6owmI7 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaScclIjq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaScclIjq .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaScclIjq .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaScclIjq .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaScclIjq p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaScclIjq img {
  width: 169px;
}
.cid-sLaScclIjq .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaScclIjq .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaScclIjq .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaScclIjq .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaScclIjq .card-title,
.cid-sLaScclIjq .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaScclIjq .mbr-section-title {
  text-align: center;
}
.cid-sLaScclIjq .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaScclIjq .mbr-section-title,
.cid-sLaScclIjq .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaScclIjq .mbr-text,
.cid-sLaScclIjq .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaSccPguZ .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaSccPguZ .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaSccPguZ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaSccPguZ .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaSccPguZ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaSccPguZ .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaSccPguZ .dropdown-item {
  padding: 0;
}
.cid-sLaSccPguZ .dropdown-item,
.cid-sLaSccPguZ .nav-link,
.cid-sLaSccPguZ .brand-name {
  font-style: normal;
}
.cid-sLaSccPguZ .dropdown-item:hover,
.cid-sLaSccPguZ .nav-link:hover,
.cid-sLaSccPguZ .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaSccPguZ .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaSccPguZ .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaSccPguZ .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaSccPguZ .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaSccPguZ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaSccPguZ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaSccPguZ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaSccPguZ .content-text {
  margin-bottom: 0;
}
.cid-sLaSccPguZ .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaSccPguZ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaSccPguZ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaSccPguZ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaSccPguZ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaSccPguZ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaSccPguZ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaSccPguZ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaSccPguZ .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaSccPguZ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaSccPguZ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaSccPguZ .content-right-side {
  text-align: center;
}
.cid-sLaSccPguZ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaSccPguZ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaSccPguZ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaSccPguZ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaSccPguZ .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSccPguZ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaSccPguZ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaSccPguZ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaSccPguZ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaSccPguZ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaSccPguZ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaSccPguZ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaSccPguZ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaSccPguZ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaSccPguZ .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaSccPguZ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaSccPguZ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaSccPguZ .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaSccPguZ .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaSccPguZ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaSccPguZ .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSccPguZ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaSccPguZ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaSccPguZ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaSccPguZ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaSccPguZ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaSccPguZ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaSccPguZ .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-sLaSccPguZ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaSccPguZ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaSccPguZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaSccPguZ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaSccPguZ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaSccPguZ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaSccPguZ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaSccPguZ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaSccPguZ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaSccPguZ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaSccPguZ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaSccPguZ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaSccPguZ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaSccPguZ button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaSccPguZ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaSccPguZ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaSccPguZ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaSccPguZ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaSccPguZ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaSccPguZ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaSccPguZ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaSccPguZ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaSccPguZ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaSccPguZ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaSccPguZ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaSccPguZ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse.collapsing,
.cid-sLaSccPguZ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaSccPguZ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaSccPguZ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaSccPguZ .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaSccPguZ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaSccPguZ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaSccPguZ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaSccPguZ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaSccPguZ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaSccPguZ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaSccPguZ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaSccPguZ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaSccPguZ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaSccPguZ .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaSccPguZ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaSccPguZ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaSccPguZ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaSccPguZ .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaSccPguZ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaSccPguZ .navbar-collapse.collapsing,
  .cid-sLaSccPguZ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaSccPguZ .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaSccPguZ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaSccPguZ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaSccPguZ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaSccPguZ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaSccPguZ .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaSccPguZ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaSccPguZ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaSccPguZ img {
    height: 3.8rem !important;
  }
  .cid-sLaSccPguZ .btn {
    display: -webkit-flex;
  }
  .cid-sLaSccPguZ button.navbar-toggler {
    display: block;
  }
  .cid-sLaSccPguZ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaSccPguZ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSccPguZ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaSccPguZ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaSccPguZ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaSccPguZ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaSccPguZ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaSccPguZ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaSccPguZ .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaSccPguZ .nav-link:focus {
  outline: none;
}
.cid-sLaSccPguZ .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaSccPguZ .dropdown-item.active,
.cid-sLaSccPguZ .dropdown-item:active {
  color: initial;
}
.cid-sLaSccPguZ .widget-title,
.cid-sLaSccPguZ .widget-icon {
  color: #e9e9e9;
}
.cid-sLaSccPguZ .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaSccPguZ .menu-logo {
    display: none;
  }
  .cid-sLaSccPguZ .navbar {
    padding: 0;
  }
  .cid-sLaSccPguZ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSccPguZ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaSccPguZ .menu-logo {
    display: none;
  }
  .cid-sLaSccPguZ .navbar {
    padding: 0;
  }
  .cid-sLaSccPguZ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSccPguZ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaScdk9qJ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaScdk9qJ .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaScdk9qJ .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaScdk9qJ .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaScdk9qJ .img {
  margin: auto;
}
.cid-sLaScdk9qJ .card-box {
  width: 100%;
}
.cid-sLaScdk9qJ p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaScdk9qJ .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaScdk9qJ .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaScdk9qJ .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sLaScdk9qJ img {
  width: 100%;
}
.cid-sLaScdk9qJ .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaScdk9qJ .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaScdk9qJ .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaScdk9qJ .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaScdk9qJ .card-title,
.cid-sLaScdk9qJ .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaScdk9qJ .mbr-section-title {
  text-align: center;
}
.cid-sLaScdk9qJ .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaScdk9qJ .mbr-section-title,
.cid-sLaScdk9qJ .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaScdk9qJ .mbr-text,
.cid-sLaScdk9qJ .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaScdk9qJ .mbr-text,
.cid-sLaScdk9qJ .line-wrap2 B {
  color: #42929d;
}
.cid-sLaSced9Tj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaSced9Tj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSced9Tj .mbr-section-btn {
  color: #000000;
}
.cid-sLaSceQnuy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaSceQnuy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSceQnuy .mbr-section-btn {
  color: #000000;
}
.cid-sLaScfvPlp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaScfvPlp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScfvPlp .mbr-section-btn {
  color: #000000;
}
.cid-sLaScfvPlp .mbr-text,
.cid-sLaScfvPlp .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaScgnZn7 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaScgnZn7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScgnZn7 .mbr-section-btn {
  color: #000000;
}
.cid-sLaScgnZn7 .mbr-text,
.cid-sLaScgnZn7 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaScgYu4L {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaScgYu4L .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScgYu4L .mbr-section-btn {
  color: #000000;
}
.cid-sLaSchwZ1y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaSchwZ1y .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSchwZ1y .mbr-section-btn {
  color: #000000;
}
.cid-sLaSchwZ1y .mbr-text,
.cid-sLaSchwZ1y .mbr-section-btn {
  color: #ffffff;
}
.cid-sLaSci6haN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaSci6haN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSci6haN .mbr-section-btn {
  color: #000000;
}
.cid-sLaSci6haN .mbr-text,
.cid-sLaSci6haN .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaSciEosS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaSciEosS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSciEosS .mbr-section-btn {
  color: #000000;
}
.cid-sLaScjenJO {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaScjenJO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScjenJO .mbr-section-btn {
  color: #000000;
}
.cid-sLaScjPl4Y {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaScjPl4Y .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScjPl4Y .mbr-section-btn {
  color: #000000;
}
.cid-sLaScjPl4Y .mbr-text,
.cid-sLaScjPl4Y .mbr-section-btn {
  color: #ececec;
}
.cid-sLaSckBoeJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaSckBoeJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSckBoeJ .mbr-section-btn {
  color: #000000;
}
.cid-sLaSclaxHS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaSclaxHS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSclaxHS .mbr-section-btn {
  color: #000000;
}
.cid-sLaSclKPHj {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaSclKPHj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSclKPHj .mbr-section-btn {
  color: #000000;
}
.cid-sLaScmlKiP {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaScmlKiP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScmlKiP .mbr-section-btn {
  color: #000000;
}
.cid-sLaScmlKiP .mbr-text,
.cid-sLaScmlKiP .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaScmWo69 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaScmWo69 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScmWo69 .mbr-section-btn {
  color: #000000;
}
.cid-sLaScmWo69 .mbr-text,
.cid-sLaScmWo69 .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaScnypwN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaScnypwN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScnypwN .mbr-section-btn {
  color: #000000;
}
.cid-sLaScnypwN .mbr-text,
.cid-sLaScnypwN .mbr-section-btn {
  color: #ececec;
}
.cid-sLaScolAef {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaScolAef .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScolAef .mbr-section-btn {
  color: #000000;
}
.cid-sLaScolAef P {
  color: #0a1c44;
  text-align: left;
}
.cid-sLaScoZlpJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaScoZlpJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScoZlpJ .mbr-section-btn {
  color: #000000;
}
.cid-sLaScoZlpJ P {
  text-align: left;
  color: #0a1c44;
}
.cid-sLaScpA4Dn {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaScpA4Dn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScpA4Dn .mbr-section-btn {
  color: #000000;
}
.cid-sLaScpA4Dn P {
  color: #0a1c44;
  text-align: left;
}
.cid-sLaScqfMnk {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sLaScqfMnk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScqfMnk .mbr-section-btn {
  color: #000000;
}
.cid-sLaScqUDvS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaScqUDvS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScqUDvS .mbr-section-btn {
  color: #000000;
}
.cid-sLaScqUDvS .mbr-text,
.cid-sLaScqUDvS .mbr-section-btn {
  color: #0a1c44;
}
.cid-sLaScrCqDd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaScrCqDd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScrCqDd .mbr-section-btn {
  color: #000000;
}
.cid-sLaScsuWnX {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sLaScsuWnX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaScsuWnX .mbr-section-btn {
  color: #000000;
}
.cid-sLaScsuWnX .mbr-text,
.cid-sLaScsuWnX .mbr-section-btn {
  color: #ececec;
}
.cid-sLaSctcaLu {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaSctcaLu .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSctcaLu .mbr-section-btn {
  color: #000000;
}
.cid-sLaScuzJ9x {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaScuzJ9x .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaScuzJ9x p {
  margin: 0;
}
.cid-sLaScvaYkP {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaScvaYkP .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaScvaYkP p {
  margin: 0;
}
.cid-sLaScvLbbT {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaScvLbbT .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaScvLbbT .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaScvLbbT .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaScvLbbT .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaScvLbbT .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaScvLbbT .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaScvLbbT .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaScvLbbT .logo-title {
  text-align: center;
}
.cid-sLaScvLbbT .logo-sub-title {
  text-align: center;
}
.cid-sLaScvLbbT .links {
  text-align: center;
  color: #656565;
}
.cid-sLaScvLbbT .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sLaSoEjbZY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaSoEjbZY .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaSoEjbZY .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sLaSoEjbZY .img {
  margin: auto;
  max-height: 40px;
}
.cid-sLaSoEjbZY p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaSoEjbZY img {
  width: 169px;
}
.cid-sLaSoEjbZY .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaSoEjbZY .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaSoEjbZY .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaSoEjbZY .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaSoEjbZY .card-title,
.cid-sLaSoEjbZY .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sLaSoEjbZY .mbr-section-title {
  text-align: center;
}
.cid-sLaSoEjbZY .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaSoEjbZY .mbr-section-title,
.cid-sLaSoEjbZY .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaSoEjbZY .mbr-text,
.cid-sLaSoEjbZY .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLaSoEO3vO .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLaSoEO3vO .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLaSoEO3vO .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLaSoEO3vO .menu-logo {
  margin: 0 auto !important;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLaSoEO3vO .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLaSoEO3vO .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLaSoEO3vO .dropdown-item {
  padding: 0;
}
.cid-sLaSoEO3vO .dropdown-item,
.cid-sLaSoEO3vO .nav-link,
.cid-sLaSoEO3vO .brand-name {
  font-style: normal;
}
.cid-sLaSoEO3vO .dropdown-item:hover,
.cid-sLaSoEO3vO .nav-link:hover,
.cid-sLaSoEO3vO .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLaSoEO3vO .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLaSoEO3vO .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLaSoEO3vO .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLaSoEO3vO .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLaSoEO3vO .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLaSoEO3vO .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLaSoEO3vO .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLaSoEO3vO .content-text {
  margin-bottom: 0;
}
.cid-sLaSoEO3vO .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLaSoEO3vO .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLaSoEO3vO .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLaSoEO3vO .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLaSoEO3vO .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLaSoEO3vO .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaSoEO3vO .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLaSoEO3vO .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLaSoEO3vO .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaSoEO3vO .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLaSoEO3vO .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLaSoEO3vO .content-right-side {
  text-align: center;
}
.cid-sLaSoEO3vO .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLaSoEO3vO .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLaSoEO3vO .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLaSoEO3vO .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLaSoEO3vO .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSoEO3vO .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLaSoEO3vO .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLaSoEO3vO .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLaSoEO3vO .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLaSoEO3vO .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLaSoEO3vO .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLaSoEO3vO .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLaSoEO3vO .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLaSoEO3vO .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLaSoEO3vO .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLaSoEO3vO .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLaSoEO3vO .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLaSoEO3vO .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLaSoEO3vO .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLaSoEO3vO .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLaSoEO3vO .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLaSoEO3vO .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLaSoEO3vO .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLaSoEO3vO .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLaSoEO3vO .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLaSoEO3vO .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLaSoEO3vO .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLaSoEO3vO .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-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLaSoEO3vO .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLaSoEO3vO .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLaSoEO3vO .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLaSoEO3vO .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLaSoEO3vO .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLaSoEO3vO .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLaSoEO3vO .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLaSoEO3vO button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLaSoEO3vO button.navbar-toggler:focus {
  outline: none;
}
.cid-sLaSoEO3vO button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLaSoEO3vO button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLaSoEO3vO button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaSoEO3vO button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLaSoEO3vO button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLaSoEO3vO nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaSoEO3vO nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLaSoEO3vO nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLaSoEO3vO nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLaSoEO3vO .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLaSoEO3vO .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLaSoEO3vO .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse.collapsing,
.cid-sLaSoEO3vO .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLaSoEO3vO .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLaSoEO3vO .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLaSoEO3vO .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLaSoEO3vO .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLaSoEO3vO .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLaSoEO3vO .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLaSoEO3vO .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLaSoEO3vO .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLaSoEO3vO .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLaSoEO3vO .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLaSoEO3vO .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLaSoEO3vO .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLaSoEO3vO .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLaSoEO3vO .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLaSoEO3vO .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLaSoEO3vO .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLaSoEO3vO .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLaSoEO3vO .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLaSoEO3vO .navbar-collapse.collapsing,
  .cid-sLaSoEO3vO .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLaSoEO3vO .navbar-collapse.collapsing .navbar-nav,
  .cid-sLaSoEO3vO .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLaSoEO3vO .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLaSoEO3vO .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLaSoEO3vO .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLaSoEO3vO .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLaSoEO3vO .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLaSoEO3vO .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLaSoEO3vO img {
    height: 3.8rem !important;
  }
  .cid-sLaSoEO3vO .btn {
    display: -webkit-flex;
  }
  .cid-sLaSoEO3vO button.navbar-toggler {
    display: block;
  }
  .cid-sLaSoEO3vO .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLaSoEO3vO .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSoEO3vO .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLaSoEO3vO .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLaSoEO3vO .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLaSoEO3vO .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLaSoEO3vO .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLaSoEO3vO .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLaSoEO3vO .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLaSoEO3vO .nav-link:focus {
  outline: none;
}
.cid-sLaSoEO3vO .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLaSoEO3vO .dropdown-item.active,
.cid-sLaSoEO3vO .dropdown-item:active {
  color: initial;
}
.cid-sLaSoEO3vO .widget-title,
.cid-sLaSoEO3vO .widget-icon {
  color: #e9e9e9;
}
.cid-sLaSoEO3vO .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLaSoEO3vO .menu-logo {
    display: none;
  }
  .cid-sLaSoEO3vO .navbar {
    padding: 0;
  }
  .cid-sLaSoEO3vO .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSoEO3vO button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLaSoEO3vO .menu-logo {
    display: none;
  }
  .cid-sLaSoEO3vO .navbar {
    padding: 0;
  }
  .cid-sLaSoEO3vO .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLaSoEO3vO button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sLaSoFdBld {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sLaSoFdBld .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sLaSoFdBld .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sLaSoFdBld .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sLaSoFdBld .img {
  margin: auto;
}
.cid-sLaSoFdBld .card-box {
  width: 100%;
}
.cid-sLaSoFdBld p {
  line-height: 1.5;
  margin: 0;
}
.cid-sLaSoFdBld .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sLaSoFdBld .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaSoFdBld .card-img span {
  color: #000000;
  font-size: 3.2rem;
}
.cid-sLaSoFdBld img {
  width: 100%;
}
.cid-sLaSoFdBld .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sLaSoFdBld .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sLaSoFdBld .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sLaSoFdBld .box {
    padding: 2rem 3rem;
  }
}
.cid-sLaSoFdBld .card-title,
.cid-sLaSoFdBld .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sLaSoFdBld .mbr-section-title {
  text-align: center;
}
.cid-sLaSoFdBld .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sLaSoFdBld .mbr-section-title,
.cid-sLaSoFdBld .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sLaSoFdBld .mbr-text,
.cid-sLaSoFdBld .line-wrap2 {
  text-align: left;
  color: #3f671b;
}
.cid-sLaSoFdBld .mbr-text,
.cid-sLaSoFdBld .line-wrap2 B {
  color: #ee9521;
}
.cid-sLaSoFVIqJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaSoFVIqJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSoFVIqJ .mbr-section-btn {
  color: #000000;
}
.cid-sLaSoFVIqJ .mbr-section-title {
  color: #3f671b;
}
.cid-sLaSoFVIqJ .mbr-section-title DIV {
  text-align: center;
}
.cid-sLaSoFVIqJ P {
  color: #000000;
  text-align: left;
}
.cid-sLaSoGH5Tl {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaSoGH5Tl .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSoGH5Tl .mbr-section-btn {
  color: #000000;
}
.cid-sLaSoGH5Tl P {
  text-align: left;
  color: #000000;
}
.cid-sLaSoHrOnG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sLaSoHrOnG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSoHrOnG .mbr-section-btn {
  color: #000000;
}
.cid-sLaSoHrOnG .mbr-text,
.cid-sLaSoHrOnG .mbr-section-btn {
  color: #f5f7fa;
}
.cid-sLaSoI1glt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sLaSoI1glt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSoI1glt .mbr-section-btn {
  color: #000000;
}
.cid-sLaSoIMCe1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sLaSoIMCe1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sLaSoIMCe1 .mbr-section-btn {
  color: #000000;
}
.cid-sLaSoJyH3Z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sLaSoJyH3Z .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaSoJyH3Z p {
  margin: 0;
}
.cid-sLaSoK4jHy {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sLaSoK4jHy .links {
  text-align: center;
  color: #ffffff;
}
.cid-sLaSoK4jHy p {
  margin: 0;
}
.cid-sLaSoKNulR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sLaSoKNulR .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sLaSoKNulR .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sLaSoKNulR .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLaSoKNulR .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sLaSoKNulR .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sLaSoKNulR .text2 {
  color: #000000;
  text-align: left;
}
.cid-sLaSoKNulR .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sLaSoKNulR .logo-title {
  text-align: center;
}
.cid-sLaSoKNulR .logo-sub-title {
  text-align: center;
}
.cid-sLaSoKNulR .links {
  text-align: center;
  color: #656565;
}
.cid-sLaSoKNulR .logo-sub-title i {
  color: #9e9e9e;
}
.cid-stapa4Ewq5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stapa4Ewq5 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-stapa4Ewq5 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-stapa4Ewq5 .img {
  margin: auto;
  max-height: 40px;
}
.cid-stapa4Ewq5 p {
  line-height: 1.5;
  margin: 0;
}
.cid-stapa4Ewq5 img {
  width: 169px;
}
.cid-stapa4Ewq5 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-stapa4Ewq5 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-stapa4Ewq5 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-stapa4Ewq5 .box {
    padding: 2rem 0rem;
  }
}
.cid-stapa4Ewq5 .card-title,
.cid-stapa4Ewq5 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-stapa4Ewq5 .mbr-section-title {
  text-align: center;
}
.cid-stapa4Ewq5 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-stapa4Ewq5 .mbr-section-title,
.cid-stapa4Ewq5 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-stapa4Ewq5 .mbr-text,
.cid-stapa4Ewq5 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sLbJyJLor5 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sLbJyJLor5 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sLbJyJLor5 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sLbJyJLor5 .menu-logo {
  margin: 0 auto !important;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sLbJyJLor5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sLbJyJLor5 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sLbJyJLor5 .dropdown-item {
  padding: 0;
}
.cid-sLbJyJLor5 .dropdown-item,
.cid-sLbJyJLor5 .nav-link,
.cid-sLbJyJLor5 .brand-name {
  font-style: normal;
}
.cid-sLbJyJLor5 .dropdown-item:hover,
.cid-sLbJyJLor5 .nav-link:hover,
.cid-sLbJyJLor5 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sLbJyJLor5 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sLbJyJLor5 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sLbJyJLor5 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sLbJyJLor5 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sLbJyJLor5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sLbJyJLor5 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sLbJyJLor5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sLbJyJLor5 .content-text {
  margin-bottom: 0;
}
.cid-sLbJyJLor5 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sLbJyJLor5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sLbJyJLor5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sLbJyJLor5 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sLbJyJLor5 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sLbJyJLor5 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLbJyJLor5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sLbJyJLor5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sLbJyJLor5 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLbJyJLor5 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sLbJyJLor5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sLbJyJLor5 .content-right-side {
  text-align: center;
}
.cid-sLbJyJLor5 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sLbJyJLor5 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sLbJyJLor5 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sLbJyJLor5 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sLbJyJLor5 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLbJyJLor5 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sLbJyJLor5 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sLbJyJLor5 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sLbJyJLor5 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sLbJyJLor5 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sLbJyJLor5 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sLbJyJLor5 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sLbJyJLor5 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sLbJyJLor5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sLbJyJLor5 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sLbJyJLor5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sLbJyJLor5 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sLbJyJLor5 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sLbJyJLor5 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sLbJyJLor5 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sLbJyJLor5 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLbJyJLor5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sLbJyJLor5 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sLbJyJLor5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sLbJyJLor5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sLbJyJLor5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sLbJyJLor5 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sLbJyJLor5 .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-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sLbJyJLor5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sLbJyJLor5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sLbJyJLor5 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sLbJyJLor5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sLbJyJLor5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sLbJyJLor5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sLbJyJLor5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sLbJyJLor5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sLbJyJLor5 button.navbar-toggler:focus {
  outline: none;
}
.cid-sLbJyJLor5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sLbJyJLor5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sLbJyJLor5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLbJyJLor5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sLbJyJLor5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sLbJyJLor5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLbJyJLor5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sLbJyJLor5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sLbJyJLor5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sLbJyJLor5 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sLbJyJLor5 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sLbJyJLor5 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse.collapsing,
.cid-sLbJyJLor5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sLbJyJLor5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sLbJyJLor5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sLbJyJLor5 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sLbJyJLor5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sLbJyJLor5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sLbJyJLor5 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sLbJyJLor5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sLbJyJLor5 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sLbJyJLor5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sLbJyJLor5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sLbJyJLor5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sLbJyJLor5 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sLbJyJLor5 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sLbJyJLor5 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sLbJyJLor5 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sLbJyJLor5 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sLbJyJLor5 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sLbJyJLor5 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sLbJyJLor5 .navbar-collapse.collapsing,
  .cid-sLbJyJLor5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sLbJyJLor5 .navbar-collapse.collapsing .navbar-nav,
  .cid-sLbJyJLor5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sLbJyJLor5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sLbJyJLor5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sLbJyJLor5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sLbJyJLor5 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sLbJyJLor5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sLbJyJLor5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sLbJyJLor5 img {
    height: 3.8rem !important;
  }
  .cid-sLbJyJLor5 .btn {
    display: -webkit-flex;
  }
  .cid-sLbJyJLor5 button.navbar-toggler {
    display: block;
  }
  .cid-sLbJyJLor5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sLbJyJLor5 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLbJyJLor5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sLbJyJLor5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sLbJyJLor5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sLbJyJLor5 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sLbJyJLor5 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sLbJyJLor5 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sLbJyJLor5 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sLbJyJLor5 .nav-link:focus {
  outline: none;
}
.cid-sLbJyJLor5 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sLbJyJLor5 .dropdown-item.active,
.cid-sLbJyJLor5 .dropdown-item:active {
  color: initial;
}
.cid-sLbJyJLor5 .widget-title,
.cid-sLbJyJLor5 .widget-icon {
  color: #e9e9e9;
}
.cid-sLbJyJLor5 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sLbJyJLor5 .menu-logo {
    display: none;
  }
  .cid-sLbJyJLor5 .navbar {
    padding: 0;
  }
  .cid-sLbJyJLor5 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLbJyJLor5 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sLbJyJLor5 .menu-logo {
    display: none;
  }
  .cid-sLbJyJLor5 .navbar {
    padding: 0;
  }
  .cid-sLbJyJLor5 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sLbJyJLor5 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sOoDec9GxS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sOoDec9GxS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sOoDec9GxS .mbr-section-btn {
  color: #000000;
}
.cid-sOoDec9GxS .mbr-text,
.cid-sOoDec9GxS .mbr-section-btn {
  text-align: center;
}
.cid-sLbJGmrIsc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sLbJGmrIsc .card {
  align-items: center;
  -webkit-align-items: center;
}
.cid-sLbJGmrIsc .card-box {
  width: 50%;
}
.cid-sLbJGmrIsc .card-img {
  padding: 5rem;
  border: 0px solid #e9e9e9;
  border-radius: 50%;
  height: 100px;
  width: 50%;
  align-items: center;
  justify-content: left;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sLbJGmrIsc .card-img span {
  color: #0a1c44;
  font-size: 3rem;
}
.cid-sLbJGmrIsc .mbr-text {
  color: #656565;
}
.cid-sLbJGmrIsc p {
  margin: 0;
}
@media (max-width: 576px) {
  .cid-sLbJGmrIsc .card {
    margin-bottom: -3.5rem;
  }
}
.cid-sLbJGmrIsc .card-title,
.cid-sLbJGmrIsc .card-img {
  color: #0087ab;
  text-align: center;
  width: 50%;
}
.cid-sLbJGmrIsc .mbr-section-title {
  text-align: center;
  width: 50%;
}
.cid-sLbJGmrIsc .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
  width: 50%;
}
.cid-sLbJGmrIsc .line-wrap {
  display: inline-block;
  width: 50%;
}
.cid-sLbJGmrIsc .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sLbJGmrIsc .line-wrap2 {
  display: inline-block;
}
.cid-sLbJGmrIsc .line2 {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #e9e9e9;
  margin-top: 1rem;
  margin-bottom: 2rem;
}
.cid-sLbJGmrIsc .mbr-section-title,
.cid-sLbJGmrIsc .line-wrap {
  text-align: center;
}
.cid-sLbJGmrIsc .mbr-text,
.cid-sLbJGmrIsc .line-wrap2 {
  text-align: center;
  color: #000000;
}
.cid-sLbJGmrIsc .mbr-text,
.cid-sLbJGmrIsc .line-wrap2 B {
  color: #000000;
}
.cid-stapa61ww6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-stapa61ww6 .links {
  text-align: center;
  color: #ffffff;
}
.cid-stapa61ww6 p {
  margin: 0;
}
.cid-stapa6mi8M {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-stapa6mi8M .links {
  text-align: center;
  color: #ffffff;
}
.cid-stapa6mi8M p {
  margin: 0;
}
.cid-stapa6Htxh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-stapa6Htxh .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-stapa6Htxh .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-stapa6Htxh .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-stapa6Htxh .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-stapa6Htxh .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-stapa6Htxh .text2 {
  color: #000000;
  text-align: left;
}
.cid-stapa6Htxh .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-stapa6Htxh .logo-title {
  text-align: center;
}
.cid-stapa6Htxh .logo-sub-title {
  text-align: center;
}
.cid-stapa6Htxh .links {
  text-align: center;
  color: #656565;
}
.cid-stapa6Htxh .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNvicktyjD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvicktyjD .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvicktyjD .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNvicktyjD .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNvicktyjD p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvicktyjD img {
  width: 169px;
}
.cid-sNvicktyjD .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvicktyjD .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvicktyjD .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvicktyjD .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvicktyjD .card-title,
.cid-sNvicktyjD .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNvicktyjD .mbr-section-title {
  text-align: center;
}
.cid-sNvicktyjD .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvicktyjD .mbr-section-title,
.cid-sNvicktyjD .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvicktyjD .mbr-text,
.cid-sNvicktyjD .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvicl0LNb .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNvicl0LNb .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNvicl0LNb .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNvicl0LNb .menu-logo {
  margin: 0 auto !important;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNvicl0LNb .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNvicl0LNb .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNvicl0LNb .dropdown-item {
  padding: 0;
}
.cid-sNvicl0LNb .dropdown-item,
.cid-sNvicl0LNb .nav-link,
.cid-sNvicl0LNb .brand-name {
  font-style: normal;
}
.cid-sNvicl0LNb .dropdown-item:hover,
.cid-sNvicl0LNb .nav-link:hover,
.cid-sNvicl0LNb .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNvicl0LNb .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNvicl0LNb .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNvicl0LNb .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNvicl0LNb .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNvicl0LNb .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNvicl0LNb .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNvicl0LNb .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNvicl0LNb .content-text {
  margin-bottom: 0;
}
.cid-sNvicl0LNb .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNvicl0LNb .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNvicl0LNb .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNvicl0LNb .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNvicl0LNb .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNvicl0LNb .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvicl0LNb .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvicl0LNb .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNvicl0LNb .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvicl0LNb .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNvicl0LNb .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNvicl0LNb .content-right-side {
  text-align: center;
}
.cid-sNvicl0LNb .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNvicl0LNb .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNvicl0LNb .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNvicl0LNb .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNvicl0LNb .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvicl0LNb .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNvicl0LNb .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNvicl0LNb .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNvicl0LNb .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNvicl0LNb .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNvicl0LNb .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNvicl0LNb .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNvicl0LNb .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNvicl0LNb .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNvicl0LNb .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNvicl0LNb .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNvicl0LNb .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNvicl0LNb .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNvicl0LNb .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNvicl0LNb .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNvicl0LNb .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvicl0LNb .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNvicl0LNb .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNvicl0LNb .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNvicl0LNb .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNvicl0LNb .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNvicl0LNb .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNvicl0LNb .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-sNvicl0LNb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNvicl0LNb .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNvicl0LNb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNvicl0LNb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNvicl0LNb .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNvicl0LNb .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNvicl0LNb .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNvicl0LNb .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNvicl0LNb .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNvicl0LNb .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNvicl0LNb .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNvicl0LNb .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNvicl0LNb button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNvicl0LNb button.navbar-toggler:focus {
  outline: none;
}
.cid-sNvicl0LNb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNvicl0LNb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNvicl0LNb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvicl0LNb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvicl0LNb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNvicl0LNb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvicl0LNb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNvicl0LNb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNvicl0LNb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvicl0LNb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNvicl0LNb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNvicl0LNb .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse.collapsing,
.cid-sNvicl0LNb .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNvicl0LNb .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNvicl0LNb .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNvicl0LNb .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNvicl0LNb .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNvicl0LNb .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNvicl0LNb .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNvicl0LNb .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNvicl0LNb .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNvicl0LNb .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNvicl0LNb .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNvicl0LNb .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNvicl0LNb .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNvicl0LNb .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNvicl0LNb .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNvicl0LNb .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNvicl0LNb .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNvicl0LNb .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNvicl0LNb .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNvicl0LNb .navbar-collapse.collapsing,
  .cid-sNvicl0LNb .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNvicl0LNb .navbar-collapse.collapsing .navbar-nav,
  .cid-sNvicl0LNb .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNvicl0LNb .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNvicl0LNb .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNvicl0LNb .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNvicl0LNb .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNvicl0LNb .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNvicl0LNb .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNvicl0LNb img {
    height: 3.8rem !important;
  }
  .cid-sNvicl0LNb .btn {
    display: -webkit-flex;
  }
  .cid-sNvicl0LNb button.navbar-toggler {
    display: block;
  }
  .cid-sNvicl0LNb .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNvicl0LNb .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvicl0LNb .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNvicl0LNb .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNvicl0LNb .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNvicl0LNb .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNvicl0LNb .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNvicl0LNb .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNvicl0LNb .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNvicl0LNb .nav-link:focus {
  outline: none;
}
.cid-sNvicl0LNb .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNvicl0LNb .dropdown-item.active,
.cid-sNvicl0LNb .dropdown-item:active {
  color: initial;
}
.cid-sNvicl0LNb .widget-title,
.cid-sNvicl0LNb .widget-icon {
  color: #e9e9e9;
}
.cid-sNvicl0LNb .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNvicl0LNb .menu-logo {
    display: none;
  }
  .cid-sNvicl0LNb .navbar {
    padding: 0;
  }
  .cid-sNvicl0LNb .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvicl0LNb button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNvicl0LNb .menu-logo {
    display: none;
  }
  .cid-sNvicl0LNb .navbar {
    padding: 0;
  }
  .cid-sNvicl0LNb .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvicl0LNb button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNviclwawG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviclwawG .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviclwawG .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNviclwawG .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNviclwawG .img {
  margin: auto;
}
.cid-sNviclwawG .card-box {
  width: 100%;
}
.cid-sNviclwawG p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviclwawG .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNviclwawG .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviclwawG .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNviclwawG img {
  width: 100%;
}
.cid-sNviclwawG .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviclwawG .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviclwawG .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviclwawG .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviclwawG .card-title,
.cid-sNviclwawG .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNviclwawG .mbr-section-title {
  text-align: center;
}
.cid-sNviclwawG .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviclwawG .mbr-section-title,
.cid-sNviclwawG .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviclwawG .mbr-text,
.cid-sNviclwawG .line-wrap2 {
  text-align: right;
  color: #ee9521;
}
.cid-sNvicmi5Mc {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvicmi5Mc .mbr-section-title {
  text-align: right;
  color: #3f671b;
}
.cid-sNvicmi5Mc .mbr-text,
.cid-sNvicmi5Mc .mbr-section-btn {
  text-align: center;
}
.cid-sNvicmXg9U {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvicmXg9U .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicmXg9U .mbr-section-btn {
  color: #000000;
}
.cid-sNvicmXg9U .mbr-text,
.cid-sNvicmXg9U .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicnvyTm {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNvicnvyTm .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicnvyTm .mbr-section-btn {
  color: #000000;
}
.cid-sNvicnvyTm .mbr-text,
.cid-sNvicnvyTm .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicnY5Rd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sNvicnY5Rd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicnY5Rd .mbr-section-btn {
  color: #000000;
}
.cid-sNvicnY5Rd .mbr-text,
.cid-sNvicnY5Rd .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicouMaW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvicouMaW .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicouMaW .mbr-section-btn {
  color: #000000;
}
.cid-sNvicouMaW .mbr-text,
.cid-sNvicouMaW .mbr-section-btn {
  color: #000000;
}
.cid-sNvicouMaW P {
  color: #0a1c44;
  text-align: right;
}
.cid-sNvicp3qVJ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sNvicp3qVJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicp3qVJ .mbr-section-btn {
  color: #000000;
}
.cid-sNvicp3qVJ .mbr-text,
.cid-sNvicp3qVJ .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicpzS5l {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNvicpzS5l .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicpzS5l .mbr-section-btn {
  color: #000000;
}
.cid-sNvicpzS5l .mbr-text,
.cid-sNvicpzS5l .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicq5EaN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvicq5EaN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicq5EaN .mbr-section-btn {
  color: #000000;
}
.cid-sNvicq5EaN .mbr-text,
.cid-sNvicq5EaN .mbr-section-btn {
  text-align: right;
}
.cid-sNvicqGe60 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNvicqGe60 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicqGe60 .mbr-section-btn {
  color: #000000;
}
.cid-sNvicqGe60 .mbr-text,
.cid-sNvicqGe60 .mbr-section-btn {
  text-align: right;
}
.cid-sNvicrcMC2 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvicrcMC2 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicrcMC2 .mbr-section-btn {
  color: #000000;
}
.cid-sNvicrcMC2 .mbr-text,
.cid-sNvicrcMC2 .mbr-section-btn {
  text-align: right;
}
.cid-sNvicrIh1w {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNvicrIh1w .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicrIh1w .mbr-section-btn {
  color: #000000;
}
.cid-sNvicrIh1w .mbr-text,
.cid-sNvicrIh1w .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-sNvicsknwY {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvicsknwY .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvicsknwY .mbr-section-btn {
  color: #000000;
}
.cid-sNvicsknwY .mbr-text,
.cid-sNvicsknwY .mbr-section-btn {
  text-align: right;
}
.cid-sNvicsTUif {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNvicsTUif .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvicsTUif p {
  margin: 0;
}
.cid-sNvictmoj8 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNvictmoj8 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvictmoj8 p {
  margin: 0;
}
.cid-sNvictMpxc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvictMpxc .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNvictMpxc .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNvictMpxc .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvictMpxc .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNvictMpxc .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNvictMpxc .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNvictMpxc .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNvictMpxc .logo-title {
  text-align: center;
}
.cid-sNvictMpxc .logo-sub-title {
  text-align: center;
}
.cid-sNvictMpxc .links {
  text-align: center;
  color: #656565;
}
.cid-sNvictMpxc .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNvilDont9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvilDont9 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvilDont9 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNvilDont9 .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNvilDont9 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvilDont9 img {
  width: 169px;
}
.cid-sNvilDont9 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvilDont9 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvilDont9 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvilDont9 .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvilDont9 .card-title,
.cid-sNvilDont9 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNvilDont9 .mbr-section-title {
  text-align: center;
}
.cid-sNvilDont9 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvilDont9 .mbr-section-title,
.cid-sNvilDont9 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvilDont9 .mbr-text,
.cid-sNvilDont9 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvilDPHoD .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNvilDPHoD .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNvilDPHoD .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNvilDPHoD .menu-logo {
  margin: 0 auto !important;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNvilDPHoD .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNvilDPHoD .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNvilDPHoD .dropdown-item {
  padding: 0;
}
.cid-sNvilDPHoD .dropdown-item,
.cid-sNvilDPHoD .nav-link,
.cid-sNvilDPHoD .brand-name {
  font-style: normal;
}
.cid-sNvilDPHoD .dropdown-item:hover,
.cid-sNvilDPHoD .nav-link:hover,
.cid-sNvilDPHoD .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNvilDPHoD .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNvilDPHoD .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNvilDPHoD .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNvilDPHoD .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNvilDPHoD .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNvilDPHoD .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNvilDPHoD .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNvilDPHoD .content-text {
  margin-bottom: 0;
}
.cid-sNvilDPHoD .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNvilDPHoD .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNvilDPHoD .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNvilDPHoD .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNvilDPHoD .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNvilDPHoD .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvilDPHoD .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvilDPHoD .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNvilDPHoD .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvilDPHoD .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNvilDPHoD .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNvilDPHoD .content-right-side {
  text-align: center;
}
.cid-sNvilDPHoD .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNvilDPHoD .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNvilDPHoD .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNvilDPHoD .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNvilDPHoD .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvilDPHoD .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNvilDPHoD .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNvilDPHoD .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNvilDPHoD .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNvilDPHoD .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNvilDPHoD .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNvilDPHoD .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNvilDPHoD .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNvilDPHoD .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNvilDPHoD .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNvilDPHoD .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNvilDPHoD .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNvilDPHoD .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNvilDPHoD .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNvilDPHoD .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNvilDPHoD .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvilDPHoD .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNvilDPHoD .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNvilDPHoD .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNvilDPHoD .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNvilDPHoD .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNvilDPHoD .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNvilDPHoD .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-sNvilDPHoD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNvilDPHoD .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNvilDPHoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNvilDPHoD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNvilDPHoD .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNvilDPHoD .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNvilDPHoD .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNvilDPHoD .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNvilDPHoD .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNvilDPHoD .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNvilDPHoD .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNvilDPHoD .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNvilDPHoD button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNvilDPHoD button.navbar-toggler:focus {
  outline: none;
}
.cid-sNvilDPHoD button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNvilDPHoD button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNvilDPHoD button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvilDPHoD button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvilDPHoD button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNvilDPHoD nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvilDPHoD nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNvilDPHoD nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNvilDPHoD nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvilDPHoD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNvilDPHoD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNvilDPHoD .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse.collapsing,
.cid-sNvilDPHoD .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNvilDPHoD .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNvilDPHoD .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNvilDPHoD .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNvilDPHoD .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNvilDPHoD .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNvilDPHoD .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNvilDPHoD .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNvilDPHoD .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNvilDPHoD .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNvilDPHoD .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNvilDPHoD .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNvilDPHoD .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNvilDPHoD .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNvilDPHoD .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNvilDPHoD .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNvilDPHoD .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNvilDPHoD .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNvilDPHoD .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNvilDPHoD .navbar-collapse.collapsing,
  .cid-sNvilDPHoD .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNvilDPHoD .navbar-collapse.collapsing .navbar-nav,
  .cid-sNvilDPHoD .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNvilDPHoD .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNvilDPHoD .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNvilDPHoD .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNvilDPHoD .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNvilDPHoD .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNvilDPHoD .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNvilDPHoD img {
    height: 3.8rem !important;
  }
  .cid-sNvilDPHoD .btn {
    display: -webkit-flex;
  }
  .cid-sNvilDPHoD button.navbar-toggler {
    display: block;
  }
  .cid-sNvilDPHoD .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNvilDPHoD .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvilDPHoD .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNvilDPHoD .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNvilDPHoD .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNvilDPHoD .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNvilDPHoD .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNvilDPHoD .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNvilDPHoD .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNvilDPHoD .nav-link:focus {
  outline: none;
}
.cid-sNvilDPHoD .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNvilDPHoD .dropdown-item.active,
.cid-sNvilDPHoD .dropdown-item:active {
  color: initial;
}
.cid-sNvilDPHoD .widget-title,
.cid-sNvilDPHoD .widget-icon {
  color: #e9e9e9;
}
.cid-sNvilDPHoD .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNvilDPHoD .menu-logo {
    display: none;
  }
  .cid-sNvilDPHoD .navbar {
    padding: 0;
  }
  .cid-sNvilDPHoD .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvilDPHoD button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNvilDPHoD .menu-logo {
    display: none;
  }
  .cid-sNvilDPHoD .navbar {
    padding: 0;
  }
  .cid-sNvilDPHoD .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvilDPHoD button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNvilEc6Dy {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNvilEc6Dy .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvilEc6Dy .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNvilEc6Dy .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNvilEc6Dy .img {
  margin: auto;
}
.cid-sNvilEc6Dy .card-box {
  width: 100%;
}
.cid-sNvilEc6Dy p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvilEc6Dy .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNvilEc6Dy .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvilEc6Dy .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNvilEc6Dy img {
  width: 100%;
}
.cid-sNvilEc6Dy .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvilEc6Dy .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvilEc6Dy .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvilEc6Dy .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvilEc6Dy .card-title,
.cid-sNvilEc6Dy .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNvilEc6Dy .mbr-section-title {
  text-align: center;
}
.cid-sNvilEc6Dy .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvilEc6Dy .mbr-section-title,
.cid-sNvilEc6Dy .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvilEc6Dy .mbr-text,
.cid-sNvilEc6Dy .line-wrap2 {
  text-align: right;
  color: #ee9521;
}
.cid-sNvilF01oR {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvilF01oR .mbr-section-title {
  text-align: right;
  color: #3f671b;
}
.cid-sNvilF01oR .mbr-text,
.cid-sNvilF01oR .mbr-section-btn {
  text-align: center;
}
.cid-sNvilF01oR .mbr-section-title DIV {
  text-align: right;
}
.cid-sNvilFudT3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvilFudT3 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilFudT3 .mbr-section-btn {
  color: #000000;
}
.cid-sNvilFudT3 .mbr-text,
.cid-sNvilFudT3 .mbr-section-btn {
  text-align: right;
}
.cid-sNvilFWrGN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNvilFWrGN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilFWrGN .mbr-section-btn {
  color: #000000;
}
.cid-sNvilFWrGN .mbr-text,
.cid-sNvilFWrGN .mbr-section-btn {
  text-align: right;
}
.cid-sNvilGqqxd {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvilGqqxd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilGqqxd .mbr-section-btn {
  color: #000000;
}
.cid-sNvilGqqxd .mbr-text,
.cid-sNvilGqqxd .mbr-section-btn {
  text-align: right;
}
.cid-sNvilGVqWD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvilGVqWD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilGVqWD .mbr-section-btn {
  color: #000000;
}
.cid-sNvilGVqWD .mbr-text,
.cid-sNvilGVqWD .mbr-section-btn {
  text-align: right;
}
.cid-sNvilHpKim {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sNvilHpKim .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilHpKim .mbr-section-btn {
  color: #000000;
}
.cid-sNvilHpKim .mbr-text,
.cid-sNvilHpKim .mbr-section-btn {
  text-align: right;
}
.cid-sNvilI2qvM {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvilI2qvM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvilI2qvM .mbr-section-btn {
  color: #000000;
}
.cid-sNvilI2qvM .mbr-text,
.cid-sNvilI2qvM .mbr-section-btn {
  text-align: right;
}
.cid-sNvilIxgWh {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNvilIxgWh .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvilIxgWh p {
  margin: 0;
}
.cid-sNvilIU6UK {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNvilIU6UK .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvilIU6UK p {
  margin: 0;
}
.cid-sNvilJiM77 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvilJiM77 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNvilJiM77 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNvilJiM77 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvilJiM77 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNvilJiM77 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNvilJiM77 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNvilJiM77 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNvilJiM77 .logo-title {
  text-align: center;
}
.cid-sNvilJiM77 .logo-sub-title {
  text-align: center;
}
.cid-sNvilJiM77 .links {
  text-align: center;
  color: #656565;
}
.cid-sNvilJiM77 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNviuurKZ0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuurKZ0 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviuurKZ0 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNviuurKZ0 .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNviuurKZ0 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviuurKZ0 img {
  width: 169px;
}
.cid-sNviuurKZ0 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviuurKZ0 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviuurKZ0 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviuurKZ0 .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviuurKZ0 .card-title,
.cid-sNviuurKZ0 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNviuurKZ0 .mbr-section-title {
  text-align: center;
}
.cid-sNviuurKZ0 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviuurKZ0 .mbr-section-title,
.cid-sNviuurKZ0 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviuurKZ0 .mbr-text,
.cid-sNviuurKZ0 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNviuv2fWx .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNviuv2fWx .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNviuv2fWx .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNviuv2fWx .menu-logo {
  margin: 0 auto !important;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNviuv2fWx .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNviuv2fWx .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNviuv2fWx .dropdown-item {
  padding: 0;
}
.cid-sNviuv2fWx .dropdown-item,
.cid-sNviuv2fWx .nav-link,
.cid-sNviuv2fWx .brand-name {
  font-style: normal;
}
.cid-sNviuv2fWx .dropdown-item:hover,
.cid-sNviuv2fWx .nav-link:hover,
.cid-sNviuv2fWx .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNviuv2fWx .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNviuv2fWx .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNviuv2fWx .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNviuv2fWx .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNviuv2fWx .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNviuv2fWx .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNviuv2fWx .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNviuv2fWx .content-text {
  margin-bottom: 0;
}
.cid-sNviuv2fWx .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNviuv2fWx .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNviuv2fWx .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNviuv2fWx .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNviuv2fWx .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNviuv2fWx .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviuv2fWx .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviuv2fWx .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNviuv2fWx .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviuv2fWx .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNviuv2fWx .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNviuv2fWx .content-right-side {
  text-align: center;
}
.cid-sNviuv2fWx .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNviuv2fWx .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNviuv2fWx .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNviuv2fWx .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNviuv2fWx .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviuv2fWx .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNviuv2fWx .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNviuv2fWx .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNviuv2fWx .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNviuv2fWx .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNviuv2fWx .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNviuv2fWx .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNviuv2fWx .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNviuv2fWx .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNviuv2fWx .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNviuv2fWx .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNviuv2fWx .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNviuv2fWx .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNviuv2fWx .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNviuv2fWx .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNviuv2fWx .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviuv2fWx .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNviuv2fWx .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNviuv2fWx .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNviuv2fWx .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNviuv2fWx .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNviuv2fWx .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNviuv2fWx .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-sNviuv2fWx .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNviuv2fWx .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNviuv2fWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNviuv2fWx .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNviuv2fWx .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNviuv2fWx .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNviuv2fWx .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNviuv2fWx .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNviuv2fWx .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNviuv2fWx .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNviuv2fWx .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNviuv2fWx .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNviuv2fWx button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNviuv2fWx button.navbar-toggler:focus {
  outline: none;
}
.cid-sNviuv2fWx button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNviuv2fWx button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNviuv2fWx button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviuv2fWx button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviuv2fWx button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNviuv2fWx nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviuv2fWx nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNviuv2fWx nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNviuv2fWx nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviuv2fWx .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNviuv2fWx .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNviuv2fWx .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse.collapsing,
.cid-sNviuv2fWx .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNviuv2fWx .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNviuv2fWx .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNviuv2fWx .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNviuv2fWx .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNviuv2fWx .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNviuv2fWx .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNviuv2fWx .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNviuv2fWx .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNviuv2fWx .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNviuv2fWx .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNviuv2fWx .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNviuv2fWx .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNviuv2fWx .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNviuv2fWx .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNviuv2fWx .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNviuv2fWx .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNviuv2fWx .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNviuv2fWx .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNviuv2fWx .navbar-collapse.collapsing,
  .cid-sNviuv2fWx .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNviuv2fWx .navbar-collapse.collapsing .navbar-nav,
  .cid-sNviuv2fWx .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNviuv2fWx .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNviuv2fWx .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNviuv2fWx .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNviuv2fWx .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNviuv2fWx .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNviuv2fWx .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNviuv2fWx img {
    height: 3.8rem !important;
  }
  .cid-sNviuv2fWx .btn {
    display: -webkit-flex;
  }
  .cid-sNviuv2fWx button.navbar-toggler {
    display: block;
  }
  .cid-sNviuv2fWx .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNviuv2fWx .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviuv2fWx .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNviuv2fWx .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNviuv2fWx .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNviuv2fWx .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNviuv2fWx .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNviuv2fWx .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNviuv2fWx .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNviuv2fWx .nav-link:focus {
  outline: none;
}
.cid-sNviuv2fWx .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNviuv2fWx .dropdown-item.active,
.cid-sNviuv2fWx .dropdown-item:active {
  color: initial;
}
.cid-sNviuv2fWx .widget-title,
.cid-sNviuv2fWx .widget-icon {
  color: #e9e9e9;
}
.cid-sNviuv2fWx .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNviuv2fWx .menu-logo {
    display: none;
  }
  .cid-sNviuv2fWx .navbar {
    padding: 0;
  }
  .cid-sNviuv2fWx .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviuv2fWx button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNviuv2fWx .menu-logo {
    display: none;
  }
  .cid-sNviuv2fWx .navbar {
    padding: 0;
  }
  .cid-sNviuv2fWx .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviuv2fWx button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNviuvsiW2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviuvsiW2 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviuvsiW2 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNviuvsiW2 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNviuvsiW2 .img {
  margin: auto;
}
.cid-sNviuvsiW2 .card-box {
  width: 100%;
}
.cid-sNviuvsiW2 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviuvsiW2 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNviuvsiW2 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviuvsiW2 .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNviuvsiW2 img {
  width: 100%;
}
.cid-sNviuvsiW2 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviuvsiW2 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviuvsiW2 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviuvsiW2 .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviuvsiW2 .card-title,
.cid-sNviuvsiW2 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNviuvsiW2 .mbr-section-title {
  text-align: center;
}
.cid-sNviuvsiW2 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviuvsiW2 .mbr-section-title,
.cid-sNviuvsiW2 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviuvsiW2 .mbr-text,
.cid-sNviuvsiW2 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNviuvsiW2 .mbr-text,
.cid-sNviuvsiW2 .line-wrap2 B {
  color: #3f671b;
}
.cid-sNviuw8BMQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuw8BMQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuw8BMQ .mbr-section-btn {
  color: #000000;
}
.cid-sNviuw8BMQ .mbr-text,
.cid-sNviuw8BMQ .mbr-section-btn {
  text-align: right;
}
.cid-sNviuwE7Ss {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviuwE7Ss .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuwE7Ss .mbr-section-btn {
  color: #000000;
}
.cid-sNviuwE7Ss .mbr-text,
.cid-sNviuwE7Ss .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-sNviuxcOmW {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #f8c301;
}
.cid-sNviuxcOmW .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuxcOmW .mbr-section-btn {
  color: #000000;
}
.cid-sNviuxcOmW .mbr-text,
.cid-sNviuxcOmW .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuxLomr {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuxLomr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuxLomr .mbr-section-btn {
  color: #000000;
}
.cid-sNviuxLomr .mbr-text,
.cid-sNviuxLomr .mbr-section-btn {
  text-align: right;
}
.cid-sNviuysRGw {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sNviuysRGw .mbr-section-subtitle {
  color: #767676;
}
.cid-sNviuysRGw .container-table {
  margin: 0 auto;
}
.cid-sNviuysRGw table.dataTable thead .sorting:before,
.cid-sNviuysRGw table.dataTable thead .sorting:after,
.cid-sNviuysRGw table.dataTable thead .sorting_asc:before,
.cid-sNviuysRGw table.dataTable thead .sorting_asc:after,
.cid-sNviuysRGw table.dataTable thead .sorting_desc:before,
.cid-sNviuysRGw table.dataTable thead .sorting_desc:after,
.cid-sNviuysRGw table.dataTable thead .sorting_asc_disabled:before,
.cid-sNviuysRGw table.dataTable thead .sorting_asc_disabled:after,
.cid-sNviuysRGw table.dataTable thead .sorting_desc_disabled:before,
.cid-sNviuysRGw table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sNviuysRGw .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sNviuysRGw .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sNviuysRGw .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sNviuysRGw .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNviuysRGw .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
  text-align: right;
}
.cid-sNviuysRGw .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sNviuysRGw .table-heads {
  color: #ffffff;
}
.cid-sNviuysRGw .dataTables_wrapper {
  display: block;
}
.cid-sNviuysRGw .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNviuysRGw .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNviuysRGw table {
  width: auto !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sNviuysRGw table td,
.cid-sNviuysRGw table th {
  white-space: nowrap;
}
.cid-sNviuysRGw table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sNviuysRGw table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sNviuysRGw table td {
  border-top: 1px solid #ffffff;
}
.cid-sNviuysRGw table.table {
  background: #ececec;
}
.cid-sNviuysRGw .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNviuysRGw .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNviuysRGw .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sNviuysRGw .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sNviuysRGw .dataTables_filter {
    text-align: center;
  }
  .cid-sNviuysRGw .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sNviuysRGw .mbr-section-title,
.cid-sNviuysRGw .line-wrap {
  text-align: center;
}
.cid-sNviuysRGw .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sNviuysRGw .body-item {
  text-align: right;
}
.cid-sNviuzAUzg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviuzAUzg .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuzAUzg .mbr-section-btn {
  color: #000000;
}
.cid-sNviuzAUzg .mbr-text,
.cid-sNviuzAUzg .mbr-section-btn {
  text-align: right;
}
.cid-sNviuA8ScP {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuA8ScP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuA8ScP .mbr-section-btn {
  color: #000000;
}
.cid-sNviuA8ScP .mbr-text,
.cid-sNviuA8ScP .mbr-section-btn {
  text-align: right;
}
.cid-sNviuAIdb4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviuAIdb4 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuAIdb4 .mbr-section-btn {
  color: #000000;
}
.cid-sNviuAIdb4 .mbr-text,
.cid-sNviuAIdb4 .mbr-section-btn {
  text-align: right;
}
.cid-sNviuBjl90 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuBjl90 .mbr-section-subtitle {
  color: #767676;
}
.cid-sNviuBjl90 .container-table {
  margin: 0 auto;
}
.cid-sNviuBjl90 table.dataTable thead .sorting:before,
.cid-sNviuBjl90 table.dataTable thead .sorting:after,
.cid-sNviuBjl90 table.dataTable thead .sorting_asc:before,
.cid-sNviuBjl90 table.dataTable thead .sorting_asc:after,
.cid-sNviuBjl90 table.dataTable thead .sorting_desc:before,
.cid-sNviuBjl90 table.dataTable thead .sorting_desc:after,
.cid-sNviuBjl90 table.dataTable thead .sorting_asc_disabled:before,
.cid-sNviuBjl90 table.dataTable thead .sorting_asc_disabled:after,
.cid-sNviuBjl90 table.dataTable thead .sorting_desc_disabled:before,
.cid-sNviuBjl90 table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sNviuBjl90 .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sNviuBjl90 .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sNviuBjl90 .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #3f671b;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sNviuBjl90 .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNviuBjl90 .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #0a1c44;
  text-align: right;
}
.cid-sNviuBjl90 .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sNviuBjl90 .table-heads {
  color: #ffffff;
}
.cid-sNviuBjl90 .dataTables_wrapper {
  display: block;
}
.cid-sNviuBjl90 .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNviuBjl90 .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNviuBjl90 table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sNviuBjl90 table td,
.cid-sNviuBjl90 table th {
  white-space: nowrap;
}
.cid-sNviuBjl90 table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sNviuBjl90 table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sNviuBjl90 table td {
  border-top: 1px solid #ffffff;
}
.cid-sNviuBjl90 table.table {
  background: #ececec;
}
.cid-sNviuBjl90 .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNviuBjl90 .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNviuBjl90 .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sNviuBjl90 .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sNviuBjl90 .dataTables_filter {
    text-align: center;
  }
  .cid-sNviuBjl90 .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sNviuBjl90 .mbr-section-title,
.cid-sNviuBjl90 .line-wrap {
  text-align: center;
}
.cid-sNviuBjl90 .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sNviuBjl90 .body-item {
  text-align: right;
}
.cid-sNviuCuQiO {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuCuQiO .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuCuQiO .mbr-section-btn {
  color: #000000;
}
.cid-sNviuCuQiO .mbr-text,
.cid-sNviuCuQiO .mbr-section-btn {
  text-align: right;
}
.cid-sNviuD5fLr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuD5fLr .mbr-section-subtitle {
  color: #767676;
}
.cid-sNviuD5fLr .container-table {
  margin: 0 auto;
}
.cid-sNviuD5fLr table.dataTable thead .sorting:before,
.cid-sNviuD5fLr table.dataTable thead .sorting:after,
.cid-sNviuD5fLr table.dataTable thead .sorting_asc:before,
.cid-sNviuD5fLr table.dataTable thead .sorting_asc:after,
.cid-sNviuD5fLr table.dataTable thead .sorting_desc:before,
.cid-sNviuD5fLr table.dataTable thead .sorting_desc:after,
.cid-sNviuD5fLr table.dataTable thead .sorting_asc_disabled:before,
.cid-sNviuD5fLr table.dataTable thead .sorting_asc_disabled:after,
.cid-sNviuD5fLr table.dataTable thead .sorting_desc_disabled:before,
.cid-sNviuD5fLr table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sNviuD5fLr .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sNviuD5fLr .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sNviuD5fLr .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sNviuD5fLr .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNviuD5fLr .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #ffffff;
  border-bottom: 1px solid #e9e9e9;
  color: #0a1c44;
}
.cid-sNviuD5fLr .head-item:hover {
  background: #ffffff;
  color: inherit;
}
.cid-sNviuD5fLr .table-heads {
  color: #ffffff;
}
.cid-sNviuD5fLr .dataTables_wrapper {
  display: block;
}
.cid-sNviuD5fLr .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNviuD5fLr .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNviuD5fLr table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sNviuD5fLr table td,
.cid-sNviuD5fLr table th {
  white-space: nowrap;
}
.cid-sNviuD5fLr table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sNviuD5fLr table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sNviuD5fLr table td {
  border-top: 1px solid #ffffff;
}
.cid-sNviuD5fLr table.table {
  background: #ececec;
}
.cid-sNviuD5fLr .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNviuD5fLr .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNviuD5fLr .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sNviuD5fLr .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sNviuD5fLr .dataTables_filter {
    text-align: center;
  }
  .cid-sNviuD5fLr .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sNviuD5fLr .mbr-section-title,
.cid-sNviuD5fLr .line-wrap {
  text-align: center;
}
.cid-sNviuD5fLr .mbr-section-sub-title {
  text-align: center;
  color: #0a1c44;
}
.cid-sNviuD5fLr .body-item {
  text-align: right;
}
.cid-sNviuE1Pzt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuE1Pzt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuE1Pzt .mbr-section-btn {
  color: #000000;
}
.cid-sNviuE1Pzt .mbr-text,
.cid-sNviuE1Pzt .mbr-section-btn {
  text-align: right;
}
.cid-sNviuEDNGC {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviuEDNGC .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuEDNGC .mbr-section-btn {
  color: #000000;
}
.cid-sNviuEDNGC .mbr-text,
.cid-sNviuEDNGC .mbr-section-btn {
  text-align: right;
}
.cid-sNviuFr3Oz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviuFr3Oz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuFr3Oz .mbr-section-btn {
  color: #000000;
}
.cid-sNviuFr3Oz .mbr-text,
.cid-sNviuFr3Oz .mbr-section-btn {
  text-align: right;
}
.cid-sNviuG4Ok6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviuG4Ok6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuG4Ok6 .mbr-section-btn {
  color: #000000;
}
.cid-sNviuG4Ok6 .mbr-text,
.cid-sNviuG4Ok6 .mbr-section-btn {
  text-align: right;
}
.cid-sNviuGHqTt {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sNviuGHqTt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuGHqTt .mbr-section-btn {
  color: #000000;
}
.cid-sNviuGHqTt .mbr-text,
.cid-sNviuGHqTt .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-sNviuHlGCJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviuHlGCJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuHlGCJ .mbr-section-btn {
  color: #000000;
}
.cid-sNviuHlGCJ .mbr-text,
.cid-sNviuHlGCJ .mbr-section-btn {
  text-align: right;
}
.cid-sNviuI0f9S {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuI0f9S .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuI0f9S .mbr-section-btn {
  color: #000000;
}
.cid-sNviuI0f9S .mbr-text,
.cid-sNviuI0f9S .mbr-section-btn {
  text-align: right;
}
.cid-sNviuIF4dv {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviuIF4dv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuIF4dv .mbr-section-btn {
  color: #000000;
}
.cid-sNviuIF4dv .mbr-text,
.cid-sNviuIF4dv .mbr-section-btn {
  text-align: right;
}
.cid-sNviuJukjW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuJukjW .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuJukjW .mbr-section-btn {
  color: #000000;
}
.cid-sNviuJukjW .mbr-text,
.cid-sNviuJukjW .mbr-section-btn {
  text-align: right;
}
.cid-sNviuKaerj {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuKaerj .mbr-section-subtitle {
  color: #767676;
}
.cid-sNviuKaerj .container-table {
  margin: 0 auto;
}
.cid-sNviuKaerj table.dataTable thead .sorting:before,
.cid-sNviuKaerj table.dataTable thead .sorting:after,
.cid-sNviuKaerj table.dataTable thead .sorting_asc:before,
.cid-sNviuKaerj table.dataTable thead .sorting_asc:after,
.cid-sNviuKaerj table.dataTable thead .sorting_desc:before,
.cid-sNviuKaerj table.dataTable thead .sorting_desc:after,
.cid-sNviuKaerj table.dataTable thead .sorting_asc_disabled:before,
.cid-sNviuKaerj table.dataTable thead .sorting_asc_disabled:after,
.cid-sNviuKaerj table.dataTable thead .sorting_desc_disabled:before,
.cid-sNviuKaerj table.dataTable thead .sorting_desc_disabled:after {
  bottom: 20px !important;
}
.cid-sNviuKaerj .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sNviuKaerj .form-control {
  min-height: 2.5em;
  padding: 0.5em 0.5em;
}
.cid-sNviuKaerj .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 2rem;
}
.cid-sNviuKaerj .scroll {
  overflow-x: auto;
  padding: 0;
}
.cid-sNviuKaerj .head-item {
  padding-top: 1.2rem;
  padding-bottom: 1.2rem;
  background: #3f671b;
  border-bottom: 1px solid #ffffff;
  text-align: right;
}
.cid-sNviuKaerj .head-item:hover {
  background: #3f671b;
  color: inherit;
}
.cid-sNviuKaerj .table-heads {
  color: #ffffff;
}
.cid-sNviuKaerj .dataTables_wrapper {
  display: block;
}
.cid-sNviuKaerj .dataTables_wrapper .search {
  margin-bottom: 0.5rem;
}
.cid-sNviuKaerj .dataTables_wrapper .table {
  overflow-x: auto;
}
.cid-sNviuKaerj table {
  width: 90% !important;
  margin-top: 6px;
  border-bottom: 1px solid #ffffff;
  margin-bottom: 0;
}
.cid-sNviuKaerj table td,
.cid-sNviuKaerj table th {
  white-space: nowrap;
}
.cid-sNviuKaerj table th {
  border-top: none;
  transition: all 0.2s;
  border-bottom: none;
}
.cid-sNviuKaerj table th:hover {
  background: #ffffff;
  color: #000000;
}
.cid-sNviuKaerj table td {
  border-top: 1px solid #ffffff;
}
.cid-sNviuKaerj table.table {
  background: #ececec;
}
.cid-sNviuKaerj .dataTables_filter {
  text-align: right;
  margin-bottom: 0.5rem;
}
.cid-sNviuKaerj .dataTables_filter label {
  display: inline;
  white-space: normal !important;
}
.cid-sNviuKaerj .dataTables_filter input {
  display: inline;
  width: auto;
  margin-left: 0.5rem;
  border-radius: 100px;
  padding-left: 1rem;
}
.cid-sNviuKaerj .dataTables_info {
  padding-bottom: 1rem;
  padding-top: 1rem;
  white-space: normal !important;
}
@media (max-width: 992px) {
  .cid-sNviuKaerj .dataTables_filter {
    text-align: center;
  }
  .cid-sNviuKaerj .dataTables_filter input {
    width: 350px !important;
    margin-center: 0 !important;
  }
}
.cid-sNviuKaerj .mbr-section-title,
.cid-sNviuKaerj .line-wrap {
  text-align: center;
}
.cid-sNviuKaerj .mbr-section-sub-title {
  text-align: center;
  color: #656565;
}
.cid-sNviuKaerj .body-item {
  text-align: right;
}
.cid-sNviuLfsuy {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuLfsuy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuLfsuy .mbr-section-btn {
  color: #000000;
}
.cid-sNviuLfsuy .mbr-text,
.cid-sNviuLfsuy .mbr-section-btn {
  text-align: right;
}
.cid-sNviuLXybs {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviuLXybs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuLXybs .mbr-section-btn {
  color: #000000;
}
.cid-sNviuLXybs .mbr-text,
.cid-sNviuLXybs .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuMEJnz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuMEJnz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuMEJnz .mbr-section-btn {
  color: #000000;
}
.cid-sNviuMEJnz .mbr-text,
.cid-sNviuMEJnz .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuNzsJL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviuNzsJL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuNzsJL .mbr-section-btn {
  color: #000000;
}
.cid-sNviuNzsJL .mbr-text,
.cid-sNviuNzsJL .mbr-section-btn {
  text-align: right;
}
.cid-sNviuOpuNd {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuOpuNd .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuOpuNd .mbr-section-btn {
  color: #000000;
}
.cid-sNviuOpuNd .mbr-text,
.cid-sNviuOpuNd .mbr-section-btn {
  text-align: right;
}
.cid-sNviuP77m5 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviuP77m5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuP77m5 .mbr-section-btn {
  color: #000000;
}
.cid-sNviuP77m5 .mbr-text,
.cid-sNviuP77m5 .mbr-section-btn {
  text-align: right;
}
.cid-sNviuPQBXS {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviuPQBXS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuPQBXS .mbr-section-btn {
  color: #000000;
}
.cid-sNviuPQBXS .mbr-text,
.cid-sNviuPQBXS .mbr-section-btn {
  color: #ececec;
  text-align: right;
}
.cid-sNviuQHuUi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuQHuUi .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuQHuUi .mbr-section-btn {
  color: #000000;
}
.cid-sNviuQHuUi .mbr-text,
.cid-sNviuQHuUi .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuRq7bG {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviuRq7bG .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuRq7bG .mbr-section-btn {
  color: #000000;
}
.cid-sNviuRq7bG .mbr-text,
.cid-sNviuRq7bG .mbr-section-btn {
  color: #ececec;
  text-align: right;
}
.cid-sNviuSaB70 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuSaB70 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuSaB70 .mbr-section-btn {
  color: #000000;
}
.cid-sNviuSaB70 .mbr-text,
.cid-sNviuSaB70 .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuSUOIR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviuSUOIR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuSUOIR .mbr-section-btn {
  color: #000000;
}
.cid-sNviuSUOIR .mbr-text,
.cid-sNviuSUOIR .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuTEo3r {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviuTEo3r .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuTEo3r .mbr-section-btn {
  color: #000000;
}
.cid-sNviuTEo3r .mbr-text,
.cid-sNviuTEo3r .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuUyGBy {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviuUyGBy .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuUyGBy .mbr-section-btn {
  color: #000000;
}
.cid-sNviuUyGBy .mbr-text,
.cid-sNviuUyGBy .mbr-section-btn {
  text-align: right;
}
.cid-sNviuVidPJ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuVidPJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuVidPJ .mbr-section-btn {
  color: #000000;
}
.cid-sNviuVidPJ .mbr-text,
.cid-sNviuVidPJ .mbr-section-btn {
  text-align: right;
}
.cid-sNviuW4tWQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviuW4tWQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuW4tWQ .mbr-section-btn {
  color: #000000;
}
.cid-sNviuW4tWQ P {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviuWR9RJ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviuWR9RJ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviuWR9RJ .mbr-section-btn {
  color: #000000;
}
.cid-sNviuWR9RJ .mbr-text,
.cid-sNviuWR9RJ .mbr-section-btn {
  text-align: right;
}
.cid-sNviuXI8vF {
  padding-top: 105px;
  padding-bottom: 45px;
  background-color: #ececec;
}
.cid-sNviuXI8vF .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sNviuXI8vF img {
  width: 100%;
}
.cid-sNviuXI8vF p {
  line-height: 1.6;
}
.cid-sNviuXI8vF .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sNviuXI8vF .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-sNviuXI8vF .mbr-text,
.cid-sNviuXI8vF .mbr-section-btn {
  color: #656565;
  text-align: right;
}
.cid-sNviuXI8vF .line-wrap {
  display: inline-block;
  width: 100%;
}
.cid-sNviuXI8vF .line {
  display: inline-block;
  width: 80px;
  height: 4px;
  background-color: #0a1c44;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}
.cid-sNviuXI8vF .mbr-section-title .line-wrap {
  text-align: center;
}
.cid-sNviuXI8vF .mbr-section-title,
.cid-sNviuXI8vF .line-wrap {
  text-align: right;
}
@media (max-width: 992px) {
  .cid-sNviuXI8vF .mbr-section-btn {
    margin-bottom: 3rem;
  }
}
.cid-sNviuYEpmV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviuYEpmV .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviuYEpmV p {
  margin: 0;
}
.cid-sNviuZlaho {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNviuZlaho .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviuZlaho p {
  margin: 0;
}
.cid-sNviv03wk0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviv03wk0 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNviv03wk0 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNviv03wk0 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviv03wk0 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNviv03wk0 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNviv03wk0 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNviv03wk0 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNviv03wk0 .logo-title {
  text-align: center;
}
.cid-sNviv03wk0 .logo-sub-title {
  text-align: center;
}
.cid-sNviv03wk0 .links {
  text-align: center;
  color: #656565;
}
.cid-sNviv03wk0 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNviAHsJAs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviAHsJAs .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviAHsJAs .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNviAHsJAs .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNviAHsJAs p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviAHsJAs img {
  width: 169px;
}
.cid-sNviAHsJAs .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviAHsJAs .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviAHsJAs .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviAHsJAs .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviAHsJAs .card-title,
.cid-sNviAHsJAs .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNviAHsJAs .mbr-section-title {
  text-align: center;
}
.cid-sNviAHsJAs .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviAHsJAs .mbr-section-title,
.cid-sNviAHsJAs .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviAHsJAs .mbr-text,
.cid-sNviAHsJAs .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNviAHTSVl .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNviAHTSVl .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNviAHTSVl .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNviAHTSVl .menu-logo {
  margin: 0 auto !important;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNviAHTSVl .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNviAHTSVl .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNviAHTSVl .dropdown-item {
  padding: 0;
}
.cid-sNviAHTSVl .dropdown-item,
.cid-sNviAHTSVl .nav-link,
.cid-sNviAHTSVl .brand-name {
  font-style: normal;
}
.cid-sNviAHTSVl .dropdown-item:hover,
.cid-sNviAHTSVl .nav-link:hover,
.cid-sNviAHTSVl .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNviAHTSVl .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNviAHTSVl .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNviAHTSVl .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNviAHTSVl .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNviAHTSVl .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNviAHTSVl .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNviAHTSVl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNviAHTSVl .content-text {
  margin-bottom: 0;
}
.cid-sNviAHTSVl .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNviAHTSVl .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNviAHTSVl .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNviAHTSVl .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNviAHTSVl .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNviAHTSVl .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviAHTSVl .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviAHTSVl .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNviAHTSVl .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviAHTSVl .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNviAHTSVl .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNviAHTSVl .content-right-side {
  text-align: center;
}
.cid-sNviAHTSVl .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNviAHTSVl .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNviAHTSVl .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNviAHTSVl .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNviAHTSVl .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviAHTSVl .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNviAHTSVl .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNviAHTSVl .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNviAHTSVl .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNviAHTSVl .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNviAHTSVl .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNviAHTSVl .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNviAHTSVl .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNviAHTSVl .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNviAHTSVl .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNviAHTSVl .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNviAHTSVl .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNviAHTSVl .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNviAHTSVl .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNviAHTSVl .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNviAHTSVl .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviAHTSVl .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNviAHTSVl .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNviAHTSVl .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNviAHTSVl .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNviAHTSVl .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNviAHTSVl .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNviAHTSVl .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-sNviAHTSVl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNviAHTSVl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNviAHTSVl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNviAHTSVl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNviAHTSVl .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNviAHTSVl .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNviAHTSVl .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNviAHTSVl .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNviAHTSVl .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNviAHTSVl .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNviAHTSVl .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNviAHTSVl .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNviAHTSVl button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNviAHTSVl button.navbar-toggler:focus {
  outline: none;
}
.cid-sNviAHTSVl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNviAHTSVl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNviAHTSVl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviAHTSVl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviAHTSVl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNviAHTSVl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviAHTSVl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNviAHTSVl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNviAHTSVl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviAHTSVl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNviAHTSVl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNviAHTSVl .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse.collapsing,
.cid-sNviAHTSVl .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNviAHTSVl .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNviAHTSVl .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNviAHTSVl .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNviAHTSVl .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNviAHTSVl .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNviAHTSVl .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNviAHTSVl .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNviAHTSVl .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNviAHTSVl .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNviAHTSVl .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNviAHTSVl .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNviAHTSVl .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNviAHTSVl .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNviAHTSVl .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNviAHTSVl .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNviAHTSVl .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNviAHTSVl .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNviAHTSVl .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNviAHTSVl .navbar-collapse.collapsing,
  .cid-sNviAHTSVl .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNviAHTSVl .navbar-collapse.collapsing .navbar-nav,
  .cid-sNviAHTSVl .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNviAHTSVl .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNviAHTSVl .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNviAHTSVl .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNviAHTSVl .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNviAHTSVl .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNviAHTSVl .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNviAHTSVl img {
    height: 3.8rem !important;
  }
  .cid-sNviAHTSVl .btn {
    display: -webkit-flex;
  }
  .cid-sNviAHTSVl button.navbar-toggler {
    display: block;
  }
  .cid-sNviAHTSVl .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNviAHTSVl .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviAHTSVl .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNviAHTSVl .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNviAHTSVl .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNviAHTSVl .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNviAHTSVl .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNviAHTSVl .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNviAHTSVl .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNviAHTSVl .nav-link:focus {
  outline: none;
}
.cid-sNviAHTSVl .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNviAHTSVl .dropdown-item.active,
.cid-sNviAHTSVl .dropdown-item:active {
  color: initial;
}
.cid-sNviAHTSVl .widget-title,
.cid-sNviAHTSVl .widget-icon {
  color: #e9e9e9;
}
.cid-sNviAHTSVl .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNviAHTSVl .menu-logo {
    display: none;
  }
  .cid-sNviAHTSVl .navbar {
    padding: 0;
  }
  .cid-sNviAHTSVl .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviAHTSVl button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNviAHTSVl .menu-logo {
    display: none;
  }
  .cid-sNviAHTSVl .navbar {
    padding: 0;
  }
  .cid-sNviAHTSVl .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviAHTSVl button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNviAIiNat {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviAIiNat .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviAIiNat .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNviAIiNat .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNviAIiNat .img {
  margin: auto;
}
.cid-sNviAIiNat .card-box {
  width: 100%;
}
.cid-sNviAIiNat p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviAIiNat .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNviAIiNat .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviAIiNat .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNviAIiNat img {
  width: 100%;
}
.cid-sNviAIiNat .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviAIiNat .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviAIiNat .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviAIiNat .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviAIiNat .card-title,
.cid-sNviAIiNat .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNviAIiNat .mbr-section-title {
  text-align: center;
}
.cid-sNviAIiNat .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviAIiNat .mbr-section-title,
.cid-sNviAIiNat .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviAIiNat .mbr-text,
.cid-sNviAIiNat .line-wrap2 {
  text-align: right;
  color: #000000;
}
.cid-sNviAIiNat .mbr-text,
.cid-sNviAIiNat .line-wrap2 B {
  color: #42929d;
}
.cid-sNviAIWebp {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviAIWebp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAIWebp .mbr-section-btn {
  color: #000000;
}
.cid-sNviAIWebp .mbr-text,
.cid-sNviAIWebp .mbr-section-btn {
  text-align: right;
}
.cid-sNviAJs6cc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviAJs6cc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAJs6cc .mbr-section-btn {
  color: #000000;
}
.cid-sNviAJs6cc .mbr-text,
.cid-sNviAJs6cc .mbr-section-btn {
  text-align: right;
}
.cid-sNviAK1aux {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviAK1aux .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAK1aux .mbr-section-btn {
  color: #000000;
}
.cid-sNviAK1aux .mbr-text,
.cid-sNviAK1aux .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviAKGDLp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviAKGDLp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAKGDLp .mbr-section-btn {
  color: #000000;
}
.cid-sNviAKGDLp .mbr-text,
.cid-sNviAKGDLp .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviALc670 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviALc670 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviALc670 .mbr-section-btn {
  color: #000000;
}
.cid-sNviALc670 .mbr-text,
.cid-sNviALc670 .mbr-section-btn {
  text-align: right;
}
.cid-sNviALIxPf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviALIxPf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviALIxPf .mbr-section-btn {
  color: #000000;
}
.cid-sNviALIxPf .mbr-text,
.cid-sNviALIxPf .mbr-section-btn {
  color: #ffffff;
  text-align: right;
}
.cid-sNviAMe5Ww {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviAMe5Ww .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAMe5Ww .mbr-section-btn {
  color: #000000;
}
.cid-sNviAMe5Ww .mbr-text,
.cid-sNviAMe5Ww .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviAMM9Oj {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviAMM9Oj .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAMM9Oj .mbr-section-btn {
  color: #000000;
}
.cid-sNviAMM9Oj .mbr-text,
.cid-sNviAMM9Oj .mbr-section-btn {
  text-align: right;
}
.cid-sNviANm5yP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviANm5yP .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviANm5yP .mbr-section-btn {
  color: #000000;
}
.cid-sNviANm5yP .mbr-text,
.cid-sNviANm5yP .mbr-section-btn {
  text-align: right;
}
.cid-sNviANVQmL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviANVQmL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviANVQmL .mbr-section-btn {
  color: #000000;
}
.cid-sNviANVQmL .mbr-text,
.cid-sNviANVQmL .mbr-section-btn {
  color: #ececec;
  text-align: right;
}
.cid-sNviAOCNEM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviAOCNEM .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAOCNEM .mbr-section-btn {
  color: #000000;
}
.cid-sNviAOCNEM .mbr-text,
.cid-sNviAOCNEM .mbr-section-btn {
  text-align: right;
}
.cid-sNviAPaLg6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviAPaLg6 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAPaLg6 .mbr-section-btn {
  color: #000000;
}
.cid-sNviAPaLg6 .mbr-text,
.cid-sNviAPaLg6 .mbr-section-btn {
  text-align: right;
}
.cid-sNviAPK6pc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviAPK6pc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAPK6pc .mbr-section-btn {
  color: #000000;
}
.cid-sNviAPK6pc .mbr-text,
.cid-sNviAPK6pc .mbr-section-btn {
  text-align: right;
}
.cid-sNviAQjZA5 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviAQjZA5 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAQjZA5 .mbr-section-btn {
  color: #000000;
}
.cid-sNviAQjZA5 .mbr-text,
.cid-sNviAQjZA5 .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviAQRo0V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviAQRo0V .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAQRo0V .mbr-section-btn {
  color: #000000;
}
.cid-sNviAQRo0V .mbr-text,
.cid-sNviAQRo0V .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviARsKkz {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviARsKkz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviARsKkz .mbr-section-btn {
  color: #000000;
}
.cid-sNviARsKkz .mbr-text,
.cid-sNviARsKkz .mbr-section-btn {
  color: #ececec;
  text-align: right;
}
.cid-sNviAScMJp {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviAScMJp .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAScMJp .mbr-section-btn {
  color: #000000;
}
.cid-sNviAScMJp P {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviASOYdR {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviASOYdR .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviASOYdR .mbr-section-btn {
  color: #000000;
}
.cid-sNviASOYdR P {
  text-align: right;
  color: #0a1c44;
}
.cid-sNviATooCT {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviATooCT .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviATooCT .mbr-section-btn {
  color: #000000;
}
.cid-sNviATooCT P {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviAU2Gr9 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviAU2Gr9 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAU2Gr9 .mbr-section-btn {
  color: #000000;
}
.cid-sNviAU2Gr9 .mbr-text,
.cid-sNviAU2Gr9 .mbr-section-btn {
  text-align: right;
}
.cid-sNviAUG7sn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviAUG7sn .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAUG7sn .mbr-section-btn {
  color: #000000;
}
.cid-sNviAUG7sn .mbr-text,
.cid-sNviAUG7sn .mbr-section-btn {
  color: #0a1c44;
  text-align: right;
}
.cid-sNviAVwRJS {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviAVwRJS .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAVwRJS .mbr-section-btn {
  color: #000000;
}
.cid-sNviAVwRJS .mbr-text,
.cid-sNviAVwRJS .mbr-section-btn {
  text-align: right;
}
.cid-sNviAWcB9f {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sNviAWcB9f .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAWcB9f .mbr-section-btn {
  color: #000000;
}
.cid-sNviAWcB9f .mbr-text,
.cid-sNviAWcB9f .mbr-section-btn {
  color: #ececec;
  text-align: right;
}
.cid-sNviAWRDLq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviAWRDLq .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviAWRDLq .mbr-section-btn {
  color: #000000;
}
.cid-sNviAWRDLq .mbr-text,
.cid-sNviAWRDLq .mbr-section-btn {
  text-align: right;
}
.cid-sNviAY7UN7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviAY7UN7 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviAY7UN7 p {
  margin: 0;
}
.cid-sNviAYDXnE {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNviAYDXnE .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviAYDXnE p {
  margin: 0;
}
.cid-sNviAZjHJx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviAZjHJx .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNviAZjHJx .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNviAZjHJx .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviAZjHJx .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNviAZjHJx .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNviAZjHJx .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNviAZjHJx .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNviAZjHJx .logo-title {
  text-align: center;
}
.cid-sNviAZjHJx .logo-sub-title {
  text-align: center;
}
.cid-sNviAZjHJx .links {
  text-align: center;
  color: #656565;
}
.cid-sNviAZjHJx .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNviGfXdwO {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviGfXdwO .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviGfXdwO .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNviGfXdwO .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNviGfXdwO p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviGfXdwO img {
  width: 169px;
}
.cid-sNviGfXdwO .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviGfXdwO .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviGfXdwO .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviGfXdwO .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviGfXdwO .card-title,
.cid-sNviGfXdwO .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNviGfXdwO .mbr-section-title {
  text-align: center;
}
.cid-sNviGfXdwO .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviGfXdwO .mbr-section-title,
.cid-sNviGfXdwO .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviGfXdwO .mbr-text,
.cid-sNviGfXdwO .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNviGgmkEJ .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNviGgmkEJ .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNviGgmkEJ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNviGgmkEJ .menu-logo {
  margin: 0 auto !important;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNviGgmkEJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNviGgmkEJ .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNviGgmkEJ .dropdown-item {
  padding: 0;
}
.cid-sNviGgmkEJ .dropdown-item,
.cid-sNviGgmkEJ .nav-link,
.cid-sNviGgmkEJ .brand-name {
  font-style: normal;
}
.cid-sNviGgmkEJ .dropdown-item:hover,
.cid-sNviGgmkEJ .nav-link:hover,
.cid-sNviGgmkEJ .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNviGgmkEJ .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNviGgmkEJ .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNviGgmkEJ .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNviGgmkEJ .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNviGgmkEJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNviGgmkEJ .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNviGgmkEJ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNviGgmkEJ .content-text {
  margin-bottom: 0;
}
.cid-sNviGgmkEJ .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNviGgmkEJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNviGgmkEJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNviGgmkEJ .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNviGgmkEJ .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNviGgmkEJ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviGgmkEJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNviGgmkEJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNviGgmkEJ .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviGgmkEJ .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNviGgmkEJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNviGgmkEJ .content-right-side {
  text-align: center;
}
.cid-sNviGgmkEJ .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNviGgmkEJ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNviGgmkEJ .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNviGgmkEJ .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNviGgmkEJ .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviGgmkEJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNviGgmkEJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNviGgmkEJ .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNviGgmkEJ .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNviGgmkEJ .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNviGgmkEJ .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNviGgmkEJ .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNviGgmkEJ .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNviGgmkEJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNviGgmkEJ .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNviGgmkEJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNviGgmkEJ .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNviGgmkEJ .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNviGgmkEJ .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNviGgmkEJ .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNviGgmkEJ .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNviGgmkEJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNviGgmkEJ .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNviGgmkEJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNviGgmkEJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNviGgmkEJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNviGgmkEJ .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNviGgmkEJ .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-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNviGgmkEJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNviGgmkEJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNviGgmkEJ .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNviGgmkEJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNviGgmkEJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNviGgmkEJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNviGgmkEJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNviGgmkEJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNviGgmkEJ button.navbar-toggler:focus {
  outline: none;
}
.cid-sNviGgmkEJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNviGgmkEJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNviGgmkEJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviGgmkEJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNviGgmkEJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNviGgmkEJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviGgmkEJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNviGgmkEJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNviGgmkEJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNviGgmkEJ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNviGgmkEJ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNviGgmkEJ .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse.collapsing,
.cid-sNviGgmkEJ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNviGgmkEJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNviGgmkEJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNviGgmkEJ .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNviGgmkEJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNviGgmkEJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNviGgmkEJ .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNviGgmkEJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNviGgmkEJ .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNviGgmkEJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNviGgmkEJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNviGgmkEJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNviGgmkEJ .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNviGgmkEJ .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNviGgmkEJ .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNviGgmkEJ .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNviGgmkEJ .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNviGgmkEJ .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNviGgmkEJ .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNviGgmkEJ .navbar-collapse.collapsing,
  .cid-sNviGgmkEJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNviGgmkEJ .navbar-collapse.collapsing .navbar-nav,
  .cid-sNviGgmkEJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNviGgmkEJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNviGgmkEJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNviGgmkEJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNviGgmkEJ .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNviGgmkEJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNviGgmkEJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNviGgmkEJ img {
    height: 3.8rem !important;
  }
  .cid-sNviGgmkEJ .btn {
    display: -webkit-flex;
  }
  .cid-sNviGgmkEJ button.navbar-toggler {
    display: block;
  }
  .cid-sNviGgmkEJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNviGgmkEJ .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviGgmkEJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNviGgmkEJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNviGgmkEJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNviGgmkEJ .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNviGgmkEJ .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNviGgmkEJ .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNviGgmkEJ .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNviGgmkEJ .nav-link:focus {
  outline: none;
}
.cid-sNviGgmkEJ .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNviGgmkEJ .dropdown-item.active,
.cid-sNviGgmkEJ .dropdown-item:active {
  color: initial;
}
.cid-sNviGgmkEJ .widget-title,
.cid-sNviGgmkEJ .widget-icon {
  color: #e9e9e9;
}
.cid-sNviGgmkEJ .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNviGgmkEJ .menu-logo {
    display: none;
  }
  .cid-sNviGgmkEJ .navbar {
    padding: 0;
  }
  .cid-sNviGgmkEJ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviGgmkEJ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNviGgmkEJ .menu-logo {
    display: none;
  }
  .cid-sNviGgmkEJ .navbar {
    padding: 0;
  }
  .cid-sNviGgmkEJ .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNviGgmkEJ button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNviGgLls2 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ececec;
}
.cid-sNviGgLls2 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNviGgLls2 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNviGgLls2 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNviGgLls2 .img {
  margin: auto;
}
.cid-sNviGgLls2 .card-box {
  width: 100%;
}
.cid-sNviGgLls2 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNviGgLls2 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNviGgLls2 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviGgLls2 .card-img span {
  color: #000000;
  font-size: 3.2rem;
}
.cid-sNviGgLls2 img {
  width: 100%;
}
.cid-sNviGgLls2 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNviGgLls2 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNviGgLls2 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNviGgLls2 .box {
    padding: 2rem 3rem;
  }
}
.cid-sNviGgLls2 .card-title,
.cid-sNviGgLls2 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNviGgLls2 .mbr-section-title {
  text-align: center;
}
.cid-sNviGgLls2 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNviGgLls2 .mbr-section-title,
.cid-sNviGgLls2 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNviGgLls2 .mbr-text,
.cid-sNviGgLls2 .line-wrap2 {
  text-align: right;
  color: #3f671b;
}
.cid-sNviGgLls2 .mbr-text,
.cid-sNviGgLls2 .line-wrap2 B {
  color: #ee9521;
}
.cid-sNviGhoftk {
  padding-top: 45px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviGhoftk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviGhoftk .mbr-section-btn {
  color: #000000;
}
.cid-sNviGhoftk .mbr-section-title {
  color: #3f671b;
}
.cid-sNviGhoftk .mbr-section-title DIV {
  text-align: center;
}
.cid-sNviGhoftk P {
  color: #000000;
  text-align: right;
}
.cid-sNviGhoftk .mbr-text,
.cid-sNviGhoftk .mbr-section-btn {
  text-align: right;
}
.cid-sNviGi6IOL {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviGi6IOL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviGi6IOL .mbr-section-btn {
  color: #000000;
}
.cid-sNviGi6IOL .mbr-text,
.cid-sNviGi6IOL .mbr-section-btn {
  text-align: right;
}
.cid-sNviGiNKSi {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #3f671b;
}
.cid-sNviGiNKSi .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviGiNKSi .mbr-section-btn {
  color: #000000;
}
.cid-sNviGiNKSi .mbr-text,
.cid-sNviGiNKSi .mbr-section-btn {
  text-align: right;
  color: #f5f7fa;
}
.cid-sNviGjmqwQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNviGjmqwQ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviGjmqwQ .mbr-section-btn {
  color: #000000;
}
.cid-sNviGjmqwQ .mbr-text,
.cid-sNviGjmqwQ .mbr-section-btn {
  text-align: right;
}
.cid-sNviGk5S0x {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNviGk5S0x .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNviGk5S0x .mbr-section-btn {
  color: #000000;
}
.cid-sNviGk5S0x .mbr-text,
.cid-sNviGk5S0x .mbr-section-btn {
  text-align: right;
}
.cid-sNviGkPTfg {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNviGkPTfg .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviGkPTfg p {
  margin: 0;
}
.cid-sNviGlkcAb {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNviGlkcAb .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviGlkcAb p {
  margin: 0;
}
.cid-sNviGlPWeD {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviGlPWeD .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNviGlPWeD .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNviGlPWeD .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviGlPWeD .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNviGlPWeD .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNviGlPWeD .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNviGlPWeD .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNviGlPWeD .logo-title {
  text-align: center;
}
.cid-sNviGlPWeD .logo-sub-title {
  text-align: center;
}
.cid-sNviGlPWeD .links {
  text-align: center;
  color: #656565;
}
.cid-sNviGlPWeD .logo-sub-title i {
  color: #9e9e9e;
}
.cid-ra8jb4Ez84 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra8jb4Ez84 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra8jb4Ez84 .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-ra8jb4Ez84 .img {
  margin: auto;
  max-height: 40px;
}
.cid-ra8jb4Ez84 p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra8jb4Ez84 img {
  width: 169px;
}
.cid-ra8jb4Ez84 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra8jb4Ez84 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra8jb4Ez84 .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra8jb4Ez84 .box {
    padding: 2rem 3rem;
  }
}
.cid-ra8jb4Ez84 .card-title,
.cid-ra8jb4Ez84 .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-ra8jb4Ez84 .mbr-section-title {
  text-align: center;
}
.cid-ra8jb4Ez84 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra8jb4Ez84 .mbr-section-title,
.cid-ra8jb4Ez84 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra8jb4Ez84 .mbr-text,
.cid-ra8jb4Ez84 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sL4gN46qGw .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sL4gN46qGw .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sL4gN46qGw .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sL4gN46qGw .menu-logo {
  margin: 0 auto !important;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sL4gN46qGw .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sL4gN46qGw .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sL4gN46qGw .dropdown-item {
  padding: 0;
}
.cid-sL4gN46qGw .dropdown-item,
.cid-sL4gN46qGw .nav-link,
.cid-sL4gN46qGw .brand-name {
  font-style: normal;
}
.cid-sL4gN46qGw .dropdown-item:hover,
.cid-sL4gN46qGw .nav-link:hover,
.cid-sL4gN46qGw .brand-name:hover {
  color: #ffffff !important;
}
.cid-sL4gN46qGw .dropdown-menu {
  background-color: #3f671b;
}
.cid-sL4gN46qGw .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sL4gN46qGw .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sL4gN46qGw .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sL4gN46qGw .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sL4gN46qGw .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sL4gN46qGw .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sL4gN46qGw .content-text {
  margin-bottom: 0;
}
.cid-sL4gN46qGw .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sL4gN46qGw .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sL4gN46qGw .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sL4gN46qGw .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sL4gN46qGw .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sL4gN46qGw .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gN46qGw .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sL4gN46qGw .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sL4gN46qGw .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sL4gN46qGw .nav-dropdown .link {
  font-weight: 400;
}
.cid-sL4gN46qGw .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sL4gN46qGw .content-right-side {
  text-align: center;
}
.cid-sL4gN46qGw .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sL4gN46qGw .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sL4gN46qGw .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sL4gN46qGw .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sL4gN46qGw .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gN46qGw .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sL4gN46qGw .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sL4gN46qGw .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sL4gN46qGw .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sL4gN46qGw .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sL4gN46qGw .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sL4gN46qGw .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sL4gN46qGw .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sL4gN46qGw .navbar {
    display: block;
    padding: 0;
  }
  .cid-sL4gN46qGw .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sL4gN46qGw .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sL4gN46qGw .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sL4gN46qGw .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sL4gN46qGw .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sL4gN46qGw .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sL4gN46qGw .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sL4gN46qGw .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sL4gN46qGw .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sL4gN46qGw .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sL4gN46qGw .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sL4gN46qGw .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sL4gN46qGw .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sL4gN46qGw .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-sL4gN46qGw .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sL4gN46qGw .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sL4gN46qGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sL4gN46qGw .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sL4gN46qGw .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sL4gN46qGw .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sL4gN46qGw .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sL4gN46qGw .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sL4gN46qGw .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sL4gN46qGw .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sL4gN46qGw .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sL4gN46qGw .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sL4gN46qGw button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sL4gN46qGw button.navbar-toggler:focus {
  outline: none;
}
.cid-sL4gN46qGw button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sL4gN46qGw button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sL4gN46qGw button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gN46qGw button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sL4gN46qGw button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sL4gN46qGw nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gN46qGw nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sL4gN46qGw nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sL4gN46qGw nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sL4gN46qGw .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sL4gN46qGw .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sL4gN46qGw .collapsed .btn {
  display: -webkit-flex;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse.collapsing,
.cid-sL4gN46qGw .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sL4gN46qGw .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sL4gN46qGw .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sL4gN46qGw .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sL4gN46qGw .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sL4gN46qGw .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sL4gN46qGw .collapsed button.navbar-toggler {
  display: block;
}
.cid-sL4gN46qGw .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sL4gN46qGw .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sL4gN46qGw .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sL4gN46qGw .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sL4gN46qGw .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sL4gN46qGw .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sL4gN46qGw .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sL4gN46qGw .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sL4gN46qGw .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sL4gN46qGw .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sL4gN46qGw .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sL4gN46qGw .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sL4gN46qGw .navbar-collapse.collapsing,
  .cid-sL4gN46qGw .navbar-collapse.show {
    display: block !important;
  }
  .cid-sL4gN46qGw .navbar-collapse.collapsing .navbar-nav,
  .cid-sL4gN46qGw .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sL4gN46qGw .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sL4gN46qGw .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sL4gN46qGw .navbar-collapse.collapsing .navbar-buttons,
  .cid-sL4gN46qGw .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sL4gN46qGw .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sL4gN46qGw .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sL4gN46qGw img {
    height: 3.8rem !important;
  }
  .cid-sL4gN46qGw .btn {
    display: -webkit-flex;
  }
  .cid-sL4gN46qGw button.navbar-toggler {
    display: block;
  }
  .cid-sL4gN46qGw .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sL4gN46qGw .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gN46qGw .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sL4gN46qGw .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sL4gN46qGw .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sL4gN46qGw .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sL4gN46qGw .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sL4gN46qGw .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sL4gN46qGw .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sL4gN46qGw .nav-link:focus {
  outline: none;
}
.cid-sL4gN46qGw .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sL4gN46qGw .dropdown-item.active,
.cid-sL4gN46qGw .dropdown-item:active {
  color: initial;
}
.cid-sL4gN46qGw .widget-title,
.cid-sL4gN46qGw .widget-icon {
  color: #e9e9e9;
}
.cid-sL4gN46qGw .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sL4gN46qGw .menu-logo {
    display: none;
  }
  .cid-sL4gN46qGw .navbar {
    padding: 0;
  }
  .cid-sL4gN46qGw .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gN46qGw button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sL4gN46qGw .menu-logo {
    display: none;
  }
  .cid-sL4gN46qGw .navbar {
    padding: 0;
  }
  .cid-sL4gN46qGw .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sL4gN46qGw button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-ra8jb5MuIB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-ra8jb5MuIB .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-ra8jb5MuIB .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-ra8jb5MuIB .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-ra8jb5MuIB .img {
  margin: auto;
}
.cid-ra8jb5MuIB .card-box {
  width: 100%;
}
.cid-ra8jb5MuIB p {
  line-height: 1.5;
  margin: 0;
}
.cid-ra8jb5MuIB .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-ra8jb5MuIB .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra8jb5MuIB .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-ra8jb5MuIB img {
  width: 100%;
}
.cid-ra8jb5MuIB .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-ra8jb5MuIB .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ra8jb5MuIB .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-ra8jb5MuIB .box {
    padding: 2rem 3rem;
  }
}
.cid-ra8jb5MuIB .card-title,
.cid-ra8jb5MuIB .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-ra8jb5MuIB .mbr-section-title {
  text-align: center;
}
.cid-ra8jb5MuIB .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-ra8jb5MuIB .mbr-section-title,
.cid-ra8jb5MuIB .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-ra8jb5MuIB .mbr-text,
.cid-ra8jb5MuIB .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-ra8jb5MuIB .mbr-text,
.cid-ra8jb5MuIB .line-wrap2 B {
  color: #f8c301;
}
.cid-ra8jb6tdTL {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ra8jb6tdTL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-ra8jb6tdTL .mbr-section-btn {
  color: #000000;
}
.cid-ra8jb6tdTL .mbr-text,
.cid-ra8jb6tdTL .mbr-section-btn {
  text-align: right;
}
.cid-st4JmhZCn7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f8c301;
}
.cid-st4JmhZCn7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st4JmhZCn7 .mbr-section-btn {
  color: #000000;
}
.cid-st4JmhZCn7 .mbr-text,
.cid-st4JmhZCn7 .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-st4JPa841D {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-st4JPa841D .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st4JPa841D .mbr-section-btn {
  color: #000000;
}
.cid-st4JPa841D .mbr-text,
.cid-st4JPa841D .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-st4Kf6LzUX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-st4Kf6LzUX .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st4Kf6LzUX .mbr-section-btn {
  color: #000000;
}
.cid-st4Kf6LzUX .mbr-text,
.cid-st4Kf6LzUX .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-st4Yj1e3wK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-st4Yj1e3wK .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st4Yj1e3wK .mbr-section-btn {
  color: #000000;
}
.cid-st4Yj1e3wK .mbr-text,
.cid-st4Yj1e3wK .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-svHTAM3LiL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-svHTAM3LiL .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHTAM3LiL .mbr-section-btn {
  color: #000000;
}
.cid-svHTAM3LiL .mbr-text,
.cid-svHTAM3LiL .mbr-section-btn {
  text-align: right;
}
.cid-st7gf1tTjt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-st7gf1tTjt .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st7gf1tTjt .mbr-section-btn {
  color: #000000;
}
.cid-st7gf1tTjt .mbr-text,
.cid-st7gf1tTjt .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-svHWVA57yN {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-svHWVA57yN .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHWVA57yN .mbr-section-btn {
  color: #000000;
}
.cid-svHWVA57yN .mbr-text,
.cid-svHWVA57yN .mbr-section-btn {
  text-align: right;
}
.cid-st8HIlfybs {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st8HIlfybs .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st8HIlfybs .mbr-section-btn {
  color: #000000;
}
.cid-st8HIlfybs .mbr-text,
.cid-st8HIlfybs .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-svHY5HzUjU {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-svHY5HzUjU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-svHY5HzUjU .mbr-section-btn {
  color: #000000;
}
.cid-svHY5HzUjU .mbr-text,
.cid-svHY5HzUjU .mbr-section-btn {
  text-align: right;
}
.cid-st8I9EhHRc {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st8I9EhHRc .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st8I9EhHRc .mbr-section-btn {
  color: #000000;
}
.cid-st8I9EhHRc .mbr-text,
.cid-st8I9EhHRc .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-st8IPwMgN1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-st8IPwMgN1 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-st8IPwMgN1 .mbr-section-btn {
  color: #000000;
}
.cid-st8IPwMgN1 .mbr-text,
.cid-st8IPwMgN1 .mbr-section-btn {
  color: #000000;
  text-align: right;
}
.cid-ra8jb70qKz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-ra8jb70qKz .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra8jb70qKz p {
  margin: 0;
}
.cid-ra8jb7no61 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-ra8jb7no61 .links {
  text-align: center;
  color: #ffffff;
}
.cid-ra8jb7no61 p {
  margin: 0;
}
.cid-ra8jb7NBdN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ra8jb7NBdN .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-ra8jb7NBdN .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-ra8jb7NBdN .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-ra8jb7NBdN .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-ra8jb7NBdN .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-ra8jb7NBdN .text2 {
  color: #000000;
  text-align: left;
}
.cid-ra8jb7NBdN .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-ra8jb7NBdN .logo-title {
  text-align: center;
}
.cid-ra8jb7NBdN .logo-sub-title {
  text-align: center;
}
.cid-ra8jb7NBdN .links {
  text-align: center;
  color: #656565;
}
.cid-ra8jb7NBdN .logo-sub-title i {
  color: #9e9e9e;
}
.cid-st4zTBgQiM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-st4zTBgQiM .container-fluid {
  padding: 0;
}
.cid-st4zTBgQiM img {
  width: 100%;
}
.cid-st4zTBgQiM .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-st4zTBgQiM .content {
    padding: 3rem;
  }
}
.cid-st4zTBgQiM .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-st4zTBgQiM .img-col {
  padding: 0;
  margin: auto;
}
.cid-st4zTBgQiM .mbr-section-title {
  text-align: left;
}
.cid-sNvi59HA2e {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvi59HA2e .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvi59HA2e .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNvi59HA2e .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNvi59HA2e p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvi59HA2e img {
  width: 169px;
}
.cid-sNvi59HA2e .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvi59HA2e .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvi59HA2e .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvi59HA2e .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvi59HA2e .card-title,
.cid-sNvi59HA2e .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNvi59HA2e .mbr-section-title {
  text-align: center;
}
.cid-sNvi59HA2e .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvi59HA2e .mbr-section-title,
.cid-sNvi59HA2e .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvi59HA2e .mbr-text,
.cid-sNvi59HA2e .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvi5a9ri4 .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNvi5a9ri4 .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNvi5a9ri4 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNvi5a9ri4 .menu-logo {
  margin: 0 auto !important;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNvi5a9ri4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNvi5a9ri4 .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNvi5a9ri4 .dropdown-item {
  padding: 0;
}
.cid-sNvi5a9ri4 .dropdown-item,
.cid-sNvi5a9ri4 .nav-link,
.cid-sNvi5a9ri4 .brand-name {
  font-style: normal;
}
.cid-sNvi5a9ri4 .dropdown-item:hover,
.cid-sNvi5a9ri4 .nav-link:hover,
.cid-sNvi5a9ri4 .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNvi5a9ri4 .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNvi5a9ri4 .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNvi5a9ri4 .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNvi5a9ri4 .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNvi5a9ri4 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNvi5a9ri4 .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNvi5a9ri4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNvi5a9ri4 .content-text {
  margin-bottom: 0;
}
.cid-sNvi5a9ri4 .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNvi5a9ri4 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNvi5a9ri4 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNvi5a9ri4 .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNvi5a9ri4 .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNvi5a9ri4 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvi5a9ri4 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvi5a9ri4 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNvi5a9ri4 .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvi5a9ri4 .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNvi5a9ri4 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNvi5a9ri4 .content-right-side {
  text-align: center;
}
.cid-sNvi5a9ri4 .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNvi5a9ri4 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNvi5a9ri4 .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNvi5a9ri4 .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNvi5a9ri4 .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvi5a9ri4 .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNvi5a9ri4 .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNvi5a9ri4 .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNvi5a9ri4 .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNvi5a9ri4 .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNvi5a9ri4 .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNvi5a9ri4 .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNvi5a9ri4 .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNvi5a9ri4 .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNvi5a9ri4 .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNvi5a9ri4 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNvi5a9ri4 .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNvi5a9ri4 .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNvi5a9ri4 .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNvi5a9ri4 .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNvi5a9ri4 .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvi5a9ri4 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNvi5a9ri4 .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNvi5a9ri4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNvi5a9ri4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNvi5a9ri4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNvi5a9ri4 .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNvi5a9ri4 .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-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNvi5a9ri4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNvi5a9ri4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNvi5a9ri4 .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNvi5a9ri4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNvi5a9ri4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNvi5a9ri4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNvi5a9ri4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNvi5a9ri4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNvi5a9ri4 button.navbar-toggler:focus {
  outline: none;
}
.cid-sNvi5a9ri4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNvi5a9ri4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNvi5a9ri4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvi5a9ri4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvi5a9ri4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNvi5a9ri4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvi5a9ri4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNvi5a9ri4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNvi5a9ri4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvi5a9ri4 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNvi5a9ri4 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNvi5a9ri4 .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.collapsing,
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNvi5a9ri4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNvi5a9ri4 .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNvi5a9ri4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNvi5a9ri4 .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNvi5a9ri4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNvi5a9ri4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNvi5a9ri4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNvi5a9ri4 .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNvi5a9ri4 .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNvi5a9ri4 .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNvi5a9ri4 .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNvi5a9ri4 .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNvi5a9ri4 .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNvi5a9ri4 .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNvi5a9ri4 .navbar-collapse.collapsing,
  .cid-sNvi5a9ri4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNvi5a9ri4 .navbar-collapse.collapsing .navbar-nav,
  .cid-sNvi5a9ri4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNvi5a9ri4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNvi5a9ri4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNvi5a9ri4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNvi5a9ri4 .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNvi5a9ri4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNvi5a9ri4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNvi5a9ri4 img {
    height: 3.8rem !important;
  }
  .cid-sNvi5a9ri4 .btn {
    display: -webkit-flex;
  }
  .cid-sNvi5a9ri4 button.navbar-toggler {
    display: block;
  }
  .cid-sNvi5a9ri4 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNvi5a9ri4 .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvi5a9ri4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNvi5a9ri4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNvi5a9ri4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNvi5a9ri4 .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNvi5a9ri4 .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNvi5a9ri4 .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNvi5a9ri4 .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNvi5a9ri4 .nav-link:focus {
  outline: none;
}
.cid-sNvi5a9ri4 .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNvi5a9ri4 .dropdown-item.active,
.cid-sNvi5a9ri4 .dropdown-item:active {
  color: initial;
}
.cid-sNvi5a9ri4 .widget-title,
.cid-sNvi5a9ri4 .widget-icon {
  color: #e9e9e9;
}
.cid-sNvi5a9ri4 .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNvi5a9ri4 .menu-logo {
    display: none;
  }
  .cid-sNvi5a9ri4 .navbar {
    padding: 0;
  }
  .cid-sNvi5a9ri4 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvi5a9ri4 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNvi5a9ri4 .menu-logo {
    display: none;
  }
  .cid-sNvi5a9ri4 .navbar {
    padding: 0;
  }
  .cid-sNvi5a9ri4 .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvi5a9ri4 button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNvi5axtWE {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNvi5axtWE .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvi5axtWE .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNvi5axtWE .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNvi5axtWE .img {
  margin: auto;
}
.cid-sNvi5axtWE .card-box {
  width: 100%;
}
.cid-sNvi5axtWE p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvi5axtWE .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNvi5axtWE .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvi5axtWE .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNvi5axtWE img {
  width: 100%;
}
.cid-sNvi5axtWE .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvi5axtWE .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvi5axtWE .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvi5axtWE .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvi5axtWE .card-title,
.cid-sNvi5axtWE .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNvi5axtWE .mbr-section-title {
  text-align: center;
}
.cid-sNvi5axtWE .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvi5axtWE .mbr-section-title,
.cid-sNvi5axtWE .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvi5axtWE .mbr-text,
.cid-sNvi5axtWE .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvi5axtWE .mbr-text,
.cid-sNvi5axtWE .line-wrap2 B {
  color: #ee9521;
}
.cid-sNvi5bpvH7 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvi5bpvH7 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvi5bpvH7 .mbr-section-btn {
  color: #000000;
}
.cid-sNvi5bpvH7 .mbr-text,
.cid-sNvi5bpvH7 .mbr-section-btn {
  text-align: right;
}
.cid-sNvi5bS5g4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNvi5bS5g4 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvi5bS5g4 p {
  margin: 0;
}
.cid-sNvi5cfCa2 {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNvi5cfCa2 .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvi5cfCa2 p {
  margin: 0;
}
.cid-sNvi5cB7W8 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvi5cB7W8 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNvi5cB7W8 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNvi5cB7W8 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvi5cB7W8 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNvi5cB7W8 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNvi5cB7W8 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNvi5cB7W8 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNvi5cB7W8 .logo-title {
  text-align: center;
}
.cid-sNvi5cB7W8 .logo-sub-title {
  text-align: center;
}
.cid-sNvi5cB7W8 .links {
  text-align: center;
  color: #656565;
}
.cid-sNvi5cB7W8 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNvipQ8QoN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvipQ8QoN .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvipQ8QoN .container-fluid {
  padding: 0.5rem;
  overflow: hidden;
  min-height: 95px;
}
.cid-sNvipQ8QoN .img {
  margin: auto;
  max-height: 40px;
}
.cid-sNvipQ8QoN p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvipQ8QoN img {
  width: 169px;
}
.cid-sNvipQ8QoN .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvipQ8QoN .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvipQ8QoN .box {
    padding: 2rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvipQ8QoN .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvipQ8QoN .card-title,
.cid-sNvipQ8QoN .card-img {
  color: #0087ab;
  text-align: center;
}
.cid-sNvipQ8QoN .mbr-section-title {
  text-align: center;
}
.cid-sNvipQ8QoN .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvipQ8QoN .mbr-section-title,
.cid-sNvipQ8QoN .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvipQ8QoN .mbr-text,
.cid-sNvipQ8QoN .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvipQAtKB .navbar {
  padding: 0.5rem 0;
  background: #3f671b;
  transition: none;
  min-height: 35px;
}
.cid-sNvipQAtKB .navbar-fixed-top {
  padding-top: 0;
  justify-content: center;
}
.cid-sNvipQAtKB .navbar-collapse {
  -ms-flex-preferred-size: auto;
  flex-basis: auto;
  -webkit-flex-basis: auto;
}
.cid-sNvipQAtKB .menu-logo {
  margin: 0 auto !important;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand {
  display: -webkit-flex;
  margin-left: 1.5rem;
  padding: 0.5rem 4rem;
  transition: padding 0.2s;
  min-height: 2.5rem;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand .navbar-logo img {
  display: -webkit-flex;
}
.cid-sNvipQAtKB .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-sNvipQAtKB .menu-content-top {
  background: #3f671b;
  max-width: 100%;
  max-height: 65px;
  display: none;
  justify-content: center;
  padding: 0 2rem;
  margin: auto;
  align-items: center;
  overflow: hidden;
  transition: min-height 0.25s ease-in-out;
  -webkit-justify-content: left;
  -webkit-align-items: center;
}
.cid-sNvipQAtKB .dropdown-item {
  padding: 0;
}
.cid-sNvipQAtKB .dropdown-item,
.cid-sNvipQAtKB .nav-link,
.cid-sNvipQAtKB .brand-name {
  font-style: normal;
}
.cid-sNvipQAtKB .dropdown-item:hover,
.cid-sNvipQAtKB .nav-link:hover,
.cid-sNvipQAtKB .brand-name:hover {
  color: #ffffff !important;
}
.cid-sNvipQAtKB .dropdown-menu {
  background-color: #3f671b;
}
.cid-sNvipQAtKB .dropdown-item:active {
  background-color: #3f671b;
}
.cid-sNvipQAtKB .menu-bottom {
  margin: auto;
  width: 50%;
  display: -webkit-flex;
  padding: 0rem 2rem;
  position: relative;
  justify-content: center;
  -webkit-justify-content: center;
}
.cid-sNvipQAtKB .navbar-dropdown.bg-color.transparent.opened {
  background: #3f671b;
}
.cid-sNvipQAtKB .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-sNvipQAtKB .nav-item a {
  padding: 0.5rem 0 !important;
  margin: 0 0.5rem !important;
}
.cid-sNvipQAtKB .dropdown-item:before {
  font-family: MobiriseIcons !important;
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-transform: scale(0, 1);
}
.cid-sNvipQAtKB .content-text {
  margin-bottom: 0;
}
.cid-sNvipQAtKB .navbar-nav {
  position: center;
  min-height: 50px;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-direction: row;
}
@media (min-width: 992px) {
  .cid-sNvipQAtKB .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    -moz-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-sNvipQAtKB .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
}
.cid-sNvipQAtKB .navbar-nav .nav-item span {
  padding-right: 0;
}
.cid-sNvipQAtKB .navbar-nav .nav-item a {
  margin: 0 1.3rem !important;
}
.cid-sNvipQAtKB .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvipQAtKB .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-sNvipQAtKB .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-sNvipQAtKB .navbar-buttons.mbr-section-btn {
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvipQAtKB .nav-dropdown .link {
  font-weight: 400;
}
.cid-sNvipQAtKB .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-sNvipQAtKB .content-right-side {
  text-align: center;
}
.cid-sNvipQAtKB .content-right-side .content-link {
  margin-left: 2rem;
}
.cid-sNvipQAtKB .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
.cid-sNvipQAtKB .widget-icon {
  display: inline-block;
  padding-right: 1rem;
  font-size: 1.65rem;
}
.cid-sNvipQAtKB .info-widget {
  padding-left: 2rem;
  padding-right: 3rem;
  margin: 0;
  display: -webkit-flex;
  justify-content: center;
  align-items: center;
  -webkit-justify-content: center;
  -webkit-align-items: center;
}
.cid-sNvipQAtKB .menu-content-right {
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvipQAtKB .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-sNvipQAtKB .menu-content-right .info-widget:first-child {
  padding-left: 0;
  border-left: none;
}
.cid-sNvipQAtKB .widget-content {
  display: inline-block;
  vertical-align: top;
  text-align: left;
}
.cid-sNvipQAtKB .widget-content .widget-title {
  font-weight: 400;
  margin-bottom: 3px;
}
.cid-sNvipQAtKB .widget-content .widget-text {
  margin-bottom: 0;
}
@media (min-width: 992px) {
  .cid-sNvipQAtKB .navbar .menu-content-top {
    display: -webkit-flex;
    min-height: 60px;
    height: 100%;
  }
  .cid-sNvipQAtKB .content-right-side {
    text-align: right;
    flex-wrap: nowrap;
    display: -webkit-flex;
    align-items: center;
    -webkit-flex-wrap: nowrap;
    -webkit-align-items: center;
  }
  .cid-sNvipQAtKB .menu-content-top {
    border-bottom: 0px solid #e0e0e0;
  }
  .cid-sNvipQAtKB .navbar {
    display: block;
    padding: 0;
  }
  .cid-sNvipQAtKB .navbar .menu-logo {
    margin: auto;
    display: -webkit-flex;
    align-items: center;
    -webkit-align-items: center;
  }
  .cid-sNvipQAtKB .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: -webkit-flex;
    align-items: center;
    z-index: 101;
    min-height: 49px;
    -webkit-align-items: center;
  }
  .cid-sNvipQAtKB .dropdown-item:hover:before {
    transform: scale(1, 1);
    width: 16px;
    -webkit-transform: scale(1, 1);
  }
  .cid-sNvipQAtKB .navbar-toggler {
    display: none;
    position: center;
  }
  .cid-sNvipQAtKB .navbar-collapse {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-sNvipQAtKB .navbar-short .menu-content-top {
  height: 0;
  min-height: 0;
  border: none;
}
.cid-sNvipQAtKB .btn {
  display: -webkit-inline-flex;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sNvipQAtKB .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-sNvipQAtKB .navbar-toggleable-sm .navbar-collapse {
  width: auto;
}
.cid-sNvipQAtKB .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-sNvipQAtKB .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-sNvipQAtKB .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-sNvipQAtKB .dropdown .dropdown-menu {
  display: none;
  position: absolute;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: left;
}
.cid-sNvipQAtKB .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-sNvipQAtKB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sNvipQAtKB .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  transform: scale(0, 1);
  -webkit-transform: scale(0, 1);
}
.cid-sNvipQAtKB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sNvipQAtKB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  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;
  -webkit-transform: scale(1, 1);
}
.cid-sNvipQAtKB .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-sNvipQAtKB .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sNvipQAtKB .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-sNvipQAtKB .navbar.navbar-short {
  min-height: 50px;
  transition: all 0.2s;
}
.cid-sNvipQAtKB .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-sNvipQAtKB .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-sNvipQAtKB .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-sNvipQAtKB .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-sNvipQAtKB button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all 0.2s;
  margin: 1rem 0.8rem;
  align-self: start;
  -webkit-align-self: start;
}
.cid-sNvipQAtKB button.navbar-toggler:focus {
  outline: none;
}
.cid-sNvipQAtKB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sNvipQAtKB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sNvipQAtKB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvipQAtKB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sNvipQAtKB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sNvipQAtKB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvipQAtKB nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sNvipQAtKB nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sNvipQAtKB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sNvipQAtKB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sNvipQAtKB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sNvipQAtKB .collapsed .btn {
  display: -webkit-flex;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse.collapsing,
.cid-sNvipQAtKB .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-sNvipQAtKB .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-sNvipQAtKB .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-sNvipQAtKB .collapsed .navbar-collapse.show .navbar-buttons {
  display: -webkit-flex;
  justify-content: center;
  text-align: center;
  -webkit-justify-content: center;
}
.cid-sNvipQAtKB .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-sNvipQAtKB .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-sNvipQAtKB .collapsed button.navbar-toggler {
  display: block;
}
.cid-sNvipQAtKB .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-sNvipQAtKB .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-sNvipQAtKB .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: 0.5s;
  transition-property: opacity, padding, height;
}
.cid-sNvipQAtKB .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-sNvipQAtKB .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-sNvipQAtKB .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-sNvipQAtKB .collapsed .menu-bottom {
  justify-content: center;
  -webkit-justify-content: center;
}
@media (min-width: 991px) {
  .cid-sNvipQAtKB .dropdown-item {
    color: white !important;
    border-bottom: 0px solid #ececec;
  }
  .cid-sNvipQAtKB .dropdown-item:not(:last-child) {
    border-bottom: 1px solid #ececec;
  }
}
@media (max-width: 991px) {
  .cid-sNvipQAtKB .dropdown-menu {
    margin-top: 0px;
    background-color: transparent;
    color: black !important;
  }
  .cid-sNvipQAtKB .menu-bottom {
    display: -webkit-flex;
    flex-direction: row;
    justify-content: center;
    -webkit-flex-direction: row;
    -webkit-justify-content: center;
  }
  .cid-sNvipQAtKB .navbar-collapse {
    padding-bottom: 1rem;
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-sNvipQAtKB .navbar-collapse.collapsing,
  .cid-sNvipQAtKB .navbar-collapse.show {
    display: block !important;
  }
  .cid-sNvipQAtKB .navbar-collapse.collapsing .navbar-nav,
  .cid-sNvipQAtKB .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-sNvipQAtKB .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-sNvipQAtKB .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-sNvipQAtKB .navbar-collapse.collapsing .navbar-buttons,
  .cid-sNvipQAtKB .navbar-collapse.show .navbar-buttons {
    display: -webkit-flex;
    justify-content: center;
    text-align: center;
    -webkit-justify-content: center;
  }
  .cid-sNvipQAtKB .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-sNvipQAtKB .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-sNvipQAtKB img {
    height: 3.8rem !important;
  }
  .cid-sNvipQAtKB .btn {
    display: -webkit-flex;
  }
  .cid-sNvipQAtKB button.navbar-toggler {
    display: block;
  }
  .cid-sNvipQAtKB .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-sNvipQAtKB .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvipQAtKB .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: 0.5s;
    transition-property: opacity, padding, height;
  }
  .cid-sNvipQAtKB .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-sNvipQAtKB .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-sNvipQAtKB .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-sNvipQAtKB .navbar-buttons.mbr-section-btn {
    width: 100%;
  }
  .cid-sNvipQAtKB .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
  }
}
.cid-sNvipQAtKB .navbar-dropdown {
  flex-wrap: nowrap;
  -webkit-flex-wrap: nowrap;
}
.cid-sNvipQAtKB .nav-link:focus {
  outline: none;
}
.cid-sNvipQAtKB .navbar-toggler {
  position: relative;
  align-self: center;
}
.cid-sNvipQAtKB .dropdown-item.active,
.cid-sNvipQAtKB .dropdown-item:active {
  color: initial;
}
.cid-sNvipQAtKB .widget-title,
.cid-sNvipQAtKB .widget-icon {
  color: #e9e9e9;
}
.cid-sNvipQAtKB .widget-text {
  color: #656565;
}
@media (max-width: 997px) {
  .cid-sNvipQAtKB .menu-logo {
    display: none;
  }
  .cid-sNvipQAtKB .navbar {
    padding: 0;
  }
  .cid-sNvipQAtKB .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvipQAtKB button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
@media (max-width: 576px) {
  .cid-sNvipQAtKB .menu-logo {
    display: none;
  }
  .cid-sNvipQAtKB .navbar {
    padding: 0;
  }
  .cid-sNvipQAtKB .menu-bottom {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-sNvipQAtKB button.navbar-toggler {
    align-self: center;
    -webkit-align-self: center;
  }
}
.cid-sNvipR28X2 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNvipR28X2 .row-main {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-sNvipR28X2 .card {
  align-items: center;
  display: -webkit-flex;
  flex-direction: row;
  padding-bottom: 0rem;
  -webkit-align-items: center;
  -webkit-flex-direction: row;
}
.cid-sNvipR28X2 .container-fluid {
  padding: 0;
  overflow: hidden;
}
.cid-sNvipR28X2 .img {
  margin: auto;
}
.cid-sNvipR28X2 .card-box {
  width: 100%;
}
.cid-sNvipR28X2 p {
  line-height: 1.5;
  margin: 0;
}
.cid-sNvipR28X2 .box {
  padding: 2rem 13rem;
  margin: auto;
  max-height: 120px;
}
.cid-sNvipR28X2 .card-img {
  padding: 0rem;
  border-radius: 100%;
  height: 120px;
  width: 120px;
  align-items: center;
  justify-content: center;
  display: -webkit-flex;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNvipR28X2 .card-img span {
  color: #0a1c44;
  font-size: 3.2rem;
}
.cid-sNvipR28X2 img {
  width: 100%;
}
.cid-sNvipR28X2 .mbr-text {
  color: #656565;
}
@media (max-width: 1500px) {
  .cid-sNvipR28X2 .box {
    padding: 3rem 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sNvipR28X2 .box {
    padding: 2.5rem 6rem;
  }
}
@media (max-width: 576px) {
  .cid-sNvipR28X2 .box {
    padding: 2rem 3rem;
  }
}
.cid-sNvipR28X2 .card-title,
.cid-sNvipR28X2 .card-img {
  color: #0087ab;
  text-align: left;
}
.cid-sNvipR28X2 .mbr-section-title {
  text-align: center;
}
.cid-sNvipR28X2 .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-sNvipR28X2 .mbr-section-title,
.cid-sNvipR28X2 .line-wrap {
  text-align: center;
  color: #000000;
}
.cid-sNvipR28X2 .mbr-text,
.cid-sNvipR28X2 .line-wrap2 {
  text-align: left;
  color: #000000;
}
.cid-sNvipR28X2 .mbr-text,
.cid-sNvipR28X2 .line-wrap2 B {
  color: #f8c301;
}
.cid-sNvipRV2Xf {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sNvipRV2Xf .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipRV2Xf .mbr-section-btn {
  color: #000000;
}
.cid-sNvipStRvk {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f8c301;
}
.cid-sNvipStRvk .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipStRvk .mbr-section-btn {
  color: #000000;
}
.cid-sNvipStRvk .mbr-text,
.cid-sNvipStRvk .mbr-section-btn {
  color: #000000;
}
.cid-sNvipSYXzr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sNvipSYXzr .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipSYXzr .mbr-section-btn {
  color: #000000;
}
.cid-sNvipSYXzr .mbr-text,
.cid-sNvipSYXzr .mbr-section-btn {
  color: #000000;
}
.cid-sNvipTu7dZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ececec;
}
.cid-sNvipTu7dZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipTu7dZ .mbr-section-btn {
  color: #000000;
}
.cid-sNvipTu7dZ .mbr-text,
.cid-sNvipTu7dZ .mbr-section-btn {
  color: #000000;
}
.cid-sNvipU04xZ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNvipU04xZ .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipU04xZ .mbr-section-btn {
  color: #000000;
}
.cid-sNvipU04xZ .mbr-text,
.cid-sNvipU04xZ .mbr-section-btn {
  color: #000000;
}
.cid-sNvipUx6jU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNvipUx6jU .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipUx6jU .mbr-section-btn {
  color: #000000;
}
.cid-sNvipV3ey0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-sNvipV3ey0 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipV3ey0 .mbr-section-btn {
  color: #000000;
}
.cid-sNvipV3ey0 .mbr-text,
.cid-sNvipV3ey0 .mbr-section-btn {
  color: #000000;
}
.cid-sNvipVBfv8 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvipVBfv8 .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipVBfv8 .mbr-section-btn {
  color: #000000;
}
.cid-sNvipVBfv8 .mbr-text,
.cid-sNvipVBfv8 .mbr-section-btn {
  color: #000000;
}
.cid-sNvipWgBkD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNvipWgBkD .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipWgBkD .mbr-section-btn {
  color: #000000;
}
.cid-sNvipWNqdz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvipWNqdz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipWNqdz .mbr-section-btn {
  color: #000000;
}
.cid-sNvipWNqdz .mbr-text,
.cid-sNvipWNqdz .mbr-section-btn {
  color: #000000;
}
.cid-sNvipXojOv {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ececec;
}
.cid-sNvipXojOv .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipXojOv .mbr-section-btn {
  color: #000000;
}
.cid-sNvipXXgjz {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvipXXgjz .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipXXgjz .mbr-section-btn {
  color: #000000;
}
.cid-sNvipXXgjz .mbr-text,
.cid-sNvipXXgjz .mbr-section-btn {
  color: #000000;
}
.cid-sNvipYCMUb {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sNvipYCMUb .mbr-text {
  color: #000000;
  text-align: left;
}
.cid-sNvipYCMUb .mbr-section-btn {
  color: #000000;
}
.cid-sNvipYCMUb .mbr-text,
.cid-sNvipYCMUb .mbr-section-btn {
  color: #000000;
}
.cid-sNvipZTQgc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #3f671b;
}
.cid-sNvipZTQgc .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNvipZTQgc p {
  margin: 0;
}
.cid-sNviq0mNYA {
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #3f671b;
}
.cid-sNviq0mNYA .links {
  text-align: center;
  color: #ffffff;
}
.cid-sNviq0mNYA p {
  margin: 0;
}
.cid-sNviq0OjZ4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sNviq0OjZ4 .navbar-logo {
  width: 100%;
  margin-bottom: 0px;
  margin: auto;
  align: center;
}
.cid-sNviq0OjZ4 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sNviq0OjZ4 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  display: -webkit-flex;
  align-items: center;
  justify-content: center;
  -webkit-align-items: center;
  -webkit-justify-content: center;
}
.cid-sNviq0OjZ4 .social-list {
  display: -webkit-flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sNviq0OjZ4 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sNviq0OjZ4 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sNviq0OjZ4 .group-title {
  text-align: left;
  color: #000000;
  padding-bottom: 0.2rem;
}
.cid-sNviq0OjZ4 .logo-title {
  text-align: center;
}
.cid-sNviq0OjZ4 .logo-sub-title {
  text-align: center;
}
.cid-sNviq0OjZ4 .links {
  text-align: center;
  color: #656565;
}
.cid-sNviq0OjZ4 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-sNviq1idsb {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #f8c301;
}
.cid-sNviq1idsb .container-fluid {
  padding: 0;
}
.cid-sNviq1idsb img {
  width: 100%;
}
.cid-sNviq1idsb .content {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 10rem;
  padding-right: 10rem;
}
@media (max-width: 1400px) {
  .cid-sNviq1idsb .content {
    padding: 3rem;
  }
}
.cid-sNviq1idsb .row {
  margin-right: 0;
  margin-left: 0;
}
.cid-sNviq1idsb .img-col {
  padding: 0;
  margin: auto;
}
.cid-sNviq1idsb .mbr-section-title {
  text-align: left;
}
