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





body {
  font-family: Poppins;
}
.display-1 {
  font-family: 'Poppins', sans-serif;
  font-size: 4.25rem;
}
.display-2 {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
}
.display-4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
}
.display-5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.5rem;
}
.display-7 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.06rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.7rem;
    font-size: calc( 0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.95625rem + (0.875 - 0.95625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #282d78 !important;
}
.bg-info {
  background-color: #282d78 !important;
}
.bg-warning {
  background-color: #f8f9c4 !important;
}
.bg-danger {
  background-color: #00a555 !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary:before {
  background-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: #282d78 !important;
  border-color: #282d78 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-secondary:before {
  background-color: #15173f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #15173f !important;
  border-color: #15173f !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #282d78 !important;
  border-color: #282d78 !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-info:before {
  background-color: #15173f !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #15173f !important;
  border-color: #15173f !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #282d78 !important;
  border-color: #282d78 !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-success:before {
  background-color: #15173f !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #15173f !important;
  border-color: #15173f !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
  color: #aaac12 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #aaac12 !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-warning:before {
  background-color: #f0f27f !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #aaac12 !important;
  background-color: #f0f27f !important;
  border-color: #f0f27f !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #00a555 !important;
  border-color: #00a555 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff !important;
  background-color: #00a555 !important;
  border-color: #00a555 !important;
}
.btn-danger:before {
  background-color: #00592e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #00592e !important;
  border-color: #00592e !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: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white:before {
  background-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: #333333 !important;
  border-color: #333333 !important;
}
.btn-black:before {
  background-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: #ffffff;
  color: #ffffff;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080;
  border-color: #ffffff;
}
.btn-primary-outline:before {
  background-color: #ffffff;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #0e102b;
  color: #0e102b;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  border-color: #282d78;
}
.btn-secondary-outline:before {
  background-color: #282d78;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #0e102b;
  color: #0e102b;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  border-color: #282d78;
}
.btn-info-outline:before {
  background-color: #282d78;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #0e102b;
  color: #0e102b;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  border-color: #282d78;
}
.btn-success-outline:before {
  background-color: #282d78;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #282d78 !important;
  border-color: #282d78 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #edf067;
  color: #edf067;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #aaac12;
  border-color: #f8f9c4;
}
.btn-warning-outline:before {
  background-color: #f8f9c4;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #f8f9c4 !important;
  border-color: #f8f9c4 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #003f20;
  color: #003f20;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  border-color: #00a555;
}
.btn-danger-outline:before {
  background-color: #00a555;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #00a555 !important;
  border-color: #00a555 !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;
  border-color: #333333;
}
.btn-black-outline:before {
  background-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;
  border-color: #ffffff;
}
.btn-white-outline:before {
  background-color: #ffffff;
}
.btn-bgr {
  position: relative;
  transition: border 0.3s ease-in-out, color 0.5s;
  -webkit-mask-image: -webkit-radial-gradient(circle, white, black);
}
.btn-bgr span {
  position: relative;
  z-index: 12;
}
.btn-bgr:before {
  content: ' ';
  position: absolute;
  top: -2px;
  left: -2px;
  right: 105%;
  bottom: -2px;
  transition: right 0.3s ease-in-out;
  z-index: -1;
}
.btn-bgr:hover:before {
  right: -2px;
}
.btn-underline {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: color 0.2s ease-out;
}
.btn-underline:before {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #ffffff;
  -webkit-transition: width 0.2s ease-out;
  -moz-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}
.btn-underline:hover:before {
  width: 100%;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #282d78 !important;
}
.text-success {
  color: #282d78 !important;
}
.text-info {
  color: #282d78 !important;
}
.text-warning {
  color: #f8f9c4 !important;
}
.text-danger {
  color: #00a555 !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: #0e102b !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #0e102b !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #0e102b !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #edf067 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #003f20 !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: #282d78;
}
.alert-warning {
  background-color: #f8f9c4;
}
.alert-danger {
  background-color: #00a555;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #585fc7;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #585fc7;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #25ff96;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
blockquote {
  border-color: #ffffff;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #ffffff;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #ffffff;
}
/*Menu*/
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.4rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.696rem;
}
.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: #282d78 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
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-vc2VogE30m {
  padding-top: 100px;
  padding-bottom: 0px;
  background-color: #282d78;
}
.cid-vc2VcGFku5 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc2VcGFku5 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc2VcGFku5 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc2VcGFku5 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc2VcGFku5 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc2VcGFku5 a {
  font-style: normal;
}
.cid-vc2VcGFku5 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc2VcGFku5 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc2VcGFku5 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc2VcGFku5 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc2VcGFku5 .content-text {
  margin-bottom: 0;
}
.cid-vc2VcGFku5 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc2VcGFku5 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc2VcGFku5 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc2VcGFku5 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc2VcGFku5 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc2VcGFku5 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc2VcGFku5 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc2VcGFku5 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc2VcGFku5 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc2VcGFku5 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc2VcGFku5 .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc2VcGFku5 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc2VcGFku5 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc2VcGFku5 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc2VcGFku5 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc2VcGFku5 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc2VcGFku5 .menu-content-top.show {
  display: block;
}
.cid-vc2VcGFku5 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc2VcGFku5 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc2VcGFku5 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc2VcGFku5 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc2VcGFku5 .dropdown-item:before {
    display: none;
  }
  .cid-vc2VcGFku5 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc2VcGFku5 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc2VcGFku5 img {
    height: 3.8rem !important;
  }
  .cid-vc2VcGFku5 .btn {
    display: flex;
  }
  .cid-vc2VcGFku5 button.navbar-toggler {
    display: block;
  }
  .cid-vc2VcGFku5 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc2VcGFku5 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc2VcGFku5 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc2VcGFku5 .navbar-collapse.collapsing,
  .cid-vc2VcGFku5 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc2VcGFku5 .navbar-collapse.collapsing .navbar-nav,
  .cid-vc2VcGFku5 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc2VcGFku5 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc2VcGFku5 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc2VcGFku5 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc2VcGFku5 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc2VcGFku5 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc2VcGFku5 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc2VcGFku5 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc2VcGFku5 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc2VcGFku5 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc2VcGFku5 .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc2VcGFku5 .navbar .menu-content-top {
    display: block;
  }
  .cid-vc2VcGFku5 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc2VcGFku5 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc2VcGFku5 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc2VcGFku5 .menu-bottom {
    display: flex;
  }
  .cid-vc2VcGFku5 .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc2VcGFku5 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc2VcGFku5 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc2VcGFku5 .navbar-toggler {
    display: none;
  }
}
.cid-vc2VcGFku5 .navbar-short .menu-content-top {
  border: none;
}
.cid-vc2VcGFku5 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc2VcGFku5 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc2VcGFku5 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc2VcGFku5 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc2VcGFku5 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc2VcGFku5 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc2VcGFku5 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc2VcGFku5 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc2VcGFku5 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc2VcGFku5 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc2VcGFku5 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc2VcGFku5 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc2VcGFku5 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc2VcGFku5 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc2VcGFku5 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc2VcGFku5 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc2VcGFku5 button.navbar-toggler:focus {
  outline: none;
}
.cid-vc2VcGFku5 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc2VcGFku5 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc2VcGFku5 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc2VcGFku5 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc2VcGFku5 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc2VcGFku5 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc2VcGFku5 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc2VcGFku5 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc2VcGFku5 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc2VcGFku5 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc2VcGFku5 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc2VcGFku5 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc2VcGFku5 .collapsed .btn {
  display: flex;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse.collapsing,
.cid-vc2VcGFku5 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc2VcGFku5 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc2VcGFku5 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc2VcGFku5 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc2VcGFku5 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc2VcGFku5 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc2VcGFku5 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc2VcGFku5 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc2VcGFku5 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc2VcGFku5 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc2VcGFku5 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc2VcGFku5 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc2VcGFku5 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc2VcGFku5 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc2VcGFku5 .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc2VcGFku5 .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc2VcGFku5 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc2VcGFku5 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc2VcGFku5 .nav-link:focus {
  outline: none;
}
.cid-vc2VcGFku5 .navbar-toggler {
  position: relative;
}
.cid-vc2VcGFku5 .dropdown-item.active,
.cid-vc2VcGFku5 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc2VcGFku5 .nav-link:hover,
.cid-vc2VcGFku5 .dropdown-item:hover {
  color: #4284df;
}
.cid-vc3xXvyLFa {
  padding-top: 60px;
  padding-bottom: 30px;
  background-color: #00a555;
}
.cid-vc4oozQ4Sb {
  padding-top: 80px;
  padding-bottom: 15px;
  background-image: url("../../../assets/images/background1.jpg");
}
.cid-vc4oozQ4Sb .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc4oozQ4Sb .mbr-overlay {
  background: #ffffff;
}
.cid-vc4oozQ4Sb .mbr-section-title {
  margin: 0;
}
.cid-vc4oozQ4Sb .separator {
  background-color: #282d78;
  color: #282d78;
  align: center;
  height: 2px;
  max-width: 125px;
  margin-left: auto;
  margin-right: auto;
}
.cid-vc4oozQ4Sb H1 {
  color: #282d78;
}
.cid-vc4oozQ4Sb H3 {
  color: #00a555;
}
.cid-vc4IAuevyi {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-vc4IAuevyi .mbr-text {
  color: #767676;
}
.cid-vc4IAuevyi .card-subtitle {
  margin: 0;
}
.cid-vc4IAuevyi .item-wrapper {
  background: #282d78;
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 9px;
  transition: all 0.6s;
}
.cid-vc4IAuevyi img {
  object-fit: cover;
  height: 100%;
  transition: all 0.6s;
  border-radius: 9px;
}
.cid-vc4IAuevyi .card-box {
  padding: 1rem;
}
.cid-vc4IAuevyi .link {
  transition: all 0.3s;
}
.cid-vc4IAuevyi .link-inline {
  display: inline-block;
  width: fit-content;
}
.cid-vc4IAuevyi .mbr-section-btn span {
  order: 2;
  padding: 0;
  margin-left: 1rem;
}
.cid-vc4IAuevyi .mbr-section-btn .btn {
  border: 0px;
}
.cid-vc4IAuevyi .mbr-section-btn .btn:hover {
  background: inherit!important;
  color: inherit!important;
}
.cid-vc4IAuevyi h4,
.cid-vc4IAuevyi h6,
.cid-vc4IAuevyi h5 {
  margin: 0;
}
.cid-vc4IAuevyi .link-wrap {
  display: flex;
  width: fit-content;
  align-items: center;
}
.cid-vc4IAuevyi .link-wrap span {
  margin-left: 0.6rem;
  transition: all 0.3s;
}
.cid-vc4IAuevyi .link-wrap:hover {
  color: #ffffff;
}
.cid-vc4IAuevyi .link-wrap:hover .link {
  color: #ffffff;
}
.cid-vc4IAuevyi .link-wrap:hover span {
  transform: translateX(5px);
}
.cid-vc4IAuevyi .wrapper {
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vc4IAuevyi .icon-wrap {
  display: flex;
  align-items: center;
}
.cid-vc4IAuevyi .icon-wrap span {
  margin-right: 8px;
}
.cid-vc4IAuevyi .icon-padding {
  padding-left: 2rem;
}
.cid-vc4IAuevyi .card {
  cursor: pointer;
  margin-bottom: 4rem;
}
.cid-vc4IAuevyi .card:hover .card-img:before {
  opacity: 0.3;
  width: 0;
}
.cid-vc4IAuevyi .card:hover .card-img:after {
  opacity: 0.3;
  height: 0;
}
.cid-vc4IAuevyi .card:hover .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}
.cid-vc4IAuevyi .card:hover img {
  transform: scale(1.1);
}
.cid-vc4IAuevyi .card-img {
  height: 220px;
  border-radius: 9px!important;
  margin-top: -3rem;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.cid-vc4IAuevyi .card-img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-vc4IAuevyi .card-img:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-vc4IAuevyi .row {
  justify-content: center;
}
.cid-vc4IAuevyi .location,
.cid-vc4IAuevyi .icon-wrap {
  color: #e7272d;
}
.cid-vc4IAuevyi .link,
.cid-vc4IAuevyi .link-wrap,
.cid-vc4IAuevyi .link-align {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vc4IAuevyi .wrapper {
    flex-direction: column;
  }
  .cid-vc4IAuevyi .icon-padding {
    padding-left: 0rem;
  }
  .cid-vc4IAuevyi .card-box {
    padding: 0;
  }
}
.cid-vc4IAuevyi H2 {
  color: #e7272d;
}
.cid-vc4IAuevyi .card-title,
.cid-vc4IAuevyi .card-img {
  color: #ffffff;
}
.cid-vc4IAagyyk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc4IAagyyk .mbr-text {
  color: #767676;
}
.cid-vc4IAagyyk .card-subtitle {
  margin: 0;
}
.cid-vc4IAagyyk .item-wrapper {
  background: #282d78;
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 9px;
  transition: all 0.6s;
}
.cid-vc4IAagyyk img {
  object-fit: cover;
  height: 100%;
  transition: all 0.6s;
  border-radius: 9px;
}
.cid-vc4IAagyyk .card-box {
  padding: 1rem;
}
.cid-vc4IAagyyk .link {
  transition: all 0.3s;
}
.cid-vc4IAagyyk .link-inline {
  display: inline-block;
  width: fit-content;
}
.cid-vc4IAagyyk .mbr-section-btn span {
  order: 2;
  padding: 0;
  margin-left: 1rem;
}
.cid-vc4IAagyyk .mbr-section-btn .btn {
  border: 0px;
}
.cid-vc4IAagyyk .mbr-section-btn .btn:hover {
  background: inherit!important;
  color: inherit!important;
}
.cid-vc4IAagyyk h4,
.cid-vc4IAagyyk h6,
.cid-vc4IAagyyk h5 {
  margin: 0;
}
.cid-vc4IAagyyk .link-wrap {
  display: flex;
  width: fit-content;
  align-items: center;
}
.cid-vc4IAagyyk .link-wrap span {
  margin-left: 0.6rem;
  transition: all 0.3s;
}
.cid-vc4IAagyyk .link-wrap:hover {
  color: #ffffff;
}
.cid-vc4IAagyyk .link-wrap:hover .link {
  color: #ffffff;
}
.cid-vc4IAagyyk .link-wrap:hover span {
  transform: translateX(5px);
}
.cid-vc4IAagyyk .wrapper {
  display: flex;
  margin-bottom: 0.8rem;
}
.cid-vc4IAagyyk .icon-wrap {
  display: flex;
  align-items: center;
}
.cid-vc4IAagyyk .icon-wrap span {
  margin-right: 8px;
}
.cid-vc4IAagyyk .icon-padding {
  padding-left: 2rem;
}
.cid-vc4IAagyyk .card {
  cursor: pointer;
  margin-bottom: 4rem;
}
.cid-vc4IAagyyk .card:hover .card-img:before {
  opacity: 0.3;
  width: 0;
}
.cid-vc4IAagyyk .card:hover .card-img:after {
  opacity: 0.3;
  height: 0;
}
.cid-vc4IAagyyk .card:hover .item-wrapper {
  box-shadow: 0 5px 35px 0 rgba(0, 0, 0, 0.1);
}
.cid-vc4IAagyyk .card:hover img {
  transform: scale(1.1);
}
.cid-vc4IAagyyk .card-img {
  height: 220px;
  border-radius: 9px!important;
  margin-top: -3rem;
  margin-bottom: 1rem;
  overflow: hidden;
  position: relative;
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.15);
  z-index: 10;
}
.cid-vc4IAagyyk .card-img:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-vc4IAagyyk .card-img:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: lightgray;
  transition: all 0.6s;
  opacity: 0;
  z-index: 9;
}
.cid-vc4IAagyyk .row {
  justify-content: center;
}
.cid-vc4IAagyyk .location,
.cid-vc4IAagyyk .icon-wrap {
  color: #e7272d;
}
.cid-vc4IAagyyk .link,
.cid-vc4IAagyyk .link-wrap,
.cid-vc4IAagyyk .link-align {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-vc4IAagyyk .wrapper {
    flex-direction: column;
  }
  .cid-vc4IAagyyk .icon-padding {
    padding-left: 0rem;
  }
  .cid-vc4IAagyyk .card-box {
    padding: 0;
  }
}
.cid-vc4IAagyyk H2 {
  color: #e7272d;
}
.cid-vc4IAagyyk .card-title,
.cid-vc4IAagyyk .card-img {
  color: #ffffff;
}
.cid-vc3Pbt9gzH {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vc3Pbt9gzH .media-content .btn-bgr {
  z-index: 0;
}
.cid-vc3Pbt9gzH .mbr-section-text {
  word-break: break-word;
}
.cid-vc3Pbt9gzH .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-vc3Pbt9gzH .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc3Pbt9gzH .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3Pbt9gzH .mbr-text {
    text-align: center;
  }
}
.cid-vc3Pbt9gzH H1 {
  color: #282d78;
}
.cid-vc3Pbt9gzH .mbr-text,
.cid-vc3Pbt9gzH .mbr-section-btn {
  color: #333333;
  text-align: left;
}
.cid-vc35DFxlRj {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc3zLorDBN {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc3zLorDBN .row-links {
  width: 100%;
}
.cid-vc3zLorDBN .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc3zLorDBN .col-lg-6 {
  height: fit-content;
}
.cid-vc3zLorDBN .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc3zLorDBN .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc3zLorDBN .row {
  align-items: center;
}
.cid-vc3zLorDBN .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc3zLorDBN .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc3zLorDBN .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc3zLorDBN .row .foot-menu li p {
  margin: 0;
}
.cid-vc3zLorDBN .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc3zLorDBN .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc3zLorDBN .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc3zLorDBN .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc3zLorDBN .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc3zLorDBN .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc3zLorDBN .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc3zLorDBN .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc3zLorDBN .row-links {
    justify-content: center;
  }
  .cid-vc3zLorDBN .foot-menu {
    justify-content: center;
  }
  .cid-vc3zLorDBN .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc3zLorDBN .social-row {
    justify-content: center;
  }
  .cid-vc3zLorDBN .mbr-text {
    text-align: center;
  }
  .cid-vc3zLorDBN li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3zLorDBN .foot-menu {
    flex-direction: column;
  }
}
.cid-vc3zLorDBN .foot-menu-item {
  color: #29361a;
}
.cid-vc3zLorDBN .mbr-text {
  color: #ffffff;
}
.cid-vc3AUiq0FX .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc3AUiq0FX .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc3AUiq0FX .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc3AUiq0FX .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc3AUiq0FX .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc3AUiq0FX a {
  font-style: normal;
}
.cid-vc3AUiq0FX .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc3AUiq0FX .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc3AUiq0FX .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3AUiq0FX .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc3AUiq0FX .content-text {
  margin-bottom: 0;
}
.cid-vc3AUiq0FX .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc3AUiq0FX .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc3AUiq0FX .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc3AUiq0FX .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc3AUiq0FX .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc3AUiq0FX .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc3AUiq0FX .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc3AUiq0FX .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc3AUiq0FX .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc3AUiq0FX .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc3AUiq0FX .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc3AUiq0FX .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc3AUiq0FX .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc3AUiq0FX .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc3AUiq0FX .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc3AUiq0FX .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc3AUiq0FX .menu-content-top.show {
  display: block;
}
.cid-vc3AUiq0FX .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc3AUiq0FX .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc3AUiq0FX .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc3AUiq0FX .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc3AUiq0FX .dropdown-item:before {
    display: none;
  }
  .cid-vc3AUiq0FX .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc3AUiq0FX .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc3AUiq0FX img {
    height: 3.8rem !important;
  }
  .cid-vc3AUiq0FX .btn {
    display: flex;
  }
  .cid-vc3AUiq0FX button.navbar-toggler {
    display: block;
  }
  .cid-vc3AUiq0FX .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc3AUiq0FX .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc3AUiq0FX .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc3AUiq0FX .navbar-collapse.collapsing,
  .cid-vc3AUiq0FX .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc3AUiq0FX .navbar-collapse.collapsing .navbar-nav,
  .cid-vc3AUiq0FX .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc3AUiq0FX .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc3AUiq0FX .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc3AUiq0FX .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc3AUiq0FX .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc3AUiq0FX .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc3AUiq0FX .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc3AUiq0FX .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc3AUiq0FX .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc3AUiq0FX .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc3AUiq0FX .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc3AUiq0FX .navbar .menu-content-top {
    display: block;
  }
  .cid-vc3AUiq0FX .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc3AUiq0FX .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc3AUiq0FX .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc3AUiq0FX .menu-bottom {
    display: flex;
  }
  .cid-vc3AUiq0FX .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc3AUiq0FX .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc3AUiq0FX .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc3AUiq0FX .navbar-toggler {
    display: none;
  }
}
.cid-vc3AUiq0FX .navbar-short .menu-content-top {
  border: none;
}
.cid-vc3AUiq0FX .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3AUiq0FX .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc3AUiq0FX .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc3AUiq0FX .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc3AUiq0FX .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc3AUiq0FX .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc3AUiq0FX .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3AUiq0FX .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc3AUiq0FX .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc3AUiq0FX .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc3AUiq0FX .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc3AUiq0FX .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc3AUiq0FX .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc3AUiq0FX .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc3AUiq0FX .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc3AUiq0FX button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc3AUiq0FX button.navbar-toggler:focus {
  outline: none;
}
.cid-vc3AUiq0FX button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc3AUiq0FX button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc3AUiq0FX button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc3AUiq0FX button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc3AUiq0FX button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc3AUiq0FX nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc3AUiq0FX nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc3AUiq0FX nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc3AUiq0FX nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc3AUiq0FX .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc3AUiq0FX .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3AUiq0FX .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc3AUiq0FX .collapsed .btn {
  display: flex;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse.collapsing,
.cid-vc3AUiq0FX .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc3AUiq0FX .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc3AUiq0FX .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc3AUiq0FX .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc3AUiq0FX .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc3AUiq0FX .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc3AUiq0FX .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc3AUiq0FX .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc3AUiq0FX .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc3AUiq0FX .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc3AUiq0FX .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc3AUiq0FX .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc3AUiq0FX .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc3AUiq0FX .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc3AUiq0FX .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc3AUiq0FX .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc3AUiq0FX .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc3AUiq0FX .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc3AUiq0FX .nav-link:focus {
  outline: none;
}
.cid-vc3AUiq0FX .navbar-toggler {
  position: relative;
}
.cid-vc3AUiq0FX .dropdown-item.active,
.cid-vc3AUiq0FX .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc3AUiq0FX .nav-link:hover,
.cid-vc3AUiq0FX .dropdown-item:hover {
  color: #4284df;
}
.cid-vc3AI7osDt {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/vecteezy-document-management-system-online-documentation-database-10813090-2000x723.jpg");
}
.cid-vc3AI7osDt .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc3AI7osDt .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc3B31KHy7 {
  padding-top: 120px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vc3B31KHy7 .media-content .btn-bgr {
  z-index: 0;
}
.cid-vc3B31KHy7 .mbr-section-text {
  word-break: break-word;
}
.cid-vc3B31KHy7 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-vc3B31KHy7 .mbr-figure {
    padding-left: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-vc3B31KHy7 .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3B31KHy7 .mbr-text {
    text-align: center;
  }
}
.cid-vc3B31KHy7 H1 {
  color: #282d78;
}
.cid-vc3B31KHy7 .mbr-text,
.cid-vc3B31KHy7 .mbr-section-btn {
  color: #2c1616;
  text-align: justify;
}
.cid-vc3BXdN6H8 {
  padding-top: 0px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-vc3BXdN6H8 .media-content .btn-bgr {
  z-index: 0;
}
.cid-vc3BXdN6H8 .mbr-section-text {
  word-break: break-word;
}
.cid-vc3BXdN6H8 .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-vc3BXdN6H8 .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vc3BXdN6H8 .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3BXdN6H8 .mbr-text {
    text-align: center;
  }
}
.cid-vc3BXdN6H8 .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-vc3BXdN6H8 H1 {
  color: #282d78;
}
.cid-vc3BXdN6H8 .mbr-text,
.cid-vc3BXdN6H8 .mbr-section-btn {
  color: #2c1616;
  text-align: justify;
}
.cid-vc3CiaS7GQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-vc3CiaS7GQ .media-content .btn-bgr {
  z-index: 0;
}
.cid-vc3CiaS7GQ .mbr-section-text {
  word-break: break-word;
}
.cid-vc3CiaS7GQ .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-vc3CiaS7GQ .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vc3CiaS7GQ .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3CiaS7GQ .mbr-text {
    text-align: center;
  }
}
.cid-vc3CiaS7GQ .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-vc3CiaS7GQ H1 {
  color: #282d78;
}
.cid-vc3CiaS7GQ .mbr-text,
.cid-vc3CiaS7GQ .mbr-section-btn {
  color: #2c1616;
  text-align: justify;
}
.cid-vc3Cm7Aeqi {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vc3Cm7Aeqi .media-content .btn-bgr {
  z-index: 0;
}
.cid-vc3Cm7Aeqi .mbr-section-text {
  word-break: break-word;
}
.cid-vc3Cm7Aeqi .mbr-overlay {
  background: linear-gradient(90deg, #21b968, #1ec5bf);
}
@media (min-width: 992px) {
  .cid-vc3Cm7Aeqi .mbr-figure {
    padding-left: 4rem;
    padding-right: 4rem;
    padding-left: 1rem;
  }
}
@media (max-width: 991px) {
  .cid-vc3Cm7Aeqi .mbr-figure {
    padding-top: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3Cm7Aeqi .mbr-text {
    text-align: center;
  }
}
.cid-vc3Cm7Aeqi .media-container-row {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
}
.cid-vc3Cm7Aeqi H1 {
  color: #282d78;
}
.cid-vc3Cm7Aeqi .mbr-text,
.cid-vc3Cm7Aeqi .mbr-section-btn {
  color: #2c1616;
}
.cid-vc3AuHzKcw {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc3AuIxiCD {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc3AuIxiCD .row-links {
  width: 100%;
}
.cid-vc3AuIxiCD .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc3AuIxiCD .col-lg-6 {
  height: fit-content;
}
.cid-vc3AuIxiCD .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc3AuIxiCD .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc3AuIxiCD .row {
  align-items: center;
}
.cid-vc3AuIxiCD .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc3AuIxiCD .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc3AuIxiCD .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc3AuIxiCD .row .foot-menu li p {
  margin: 0;
}
.cid-vc3AuIxiCD .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc3AuIxiCD .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc3AuIxiCD .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc3AuIxiCD .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc3AuIxiCD .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc3AuIxiCD .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc3AuIxiCD .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc3AuIxiCD .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc3AuIxiCD .row-links {
    justify-content: center;
  }
  .cid-vc3AuIxiCD .foot-menu {
    justify-content: center;
  }
  .cid-vc3AuIxiCD .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc3AuIxiCD .social-row {
    justify-content: center;
  }
  .cid-vc3AuIxiCD .mbr-text {
    text-align: center;
  }
  .cid-vc3AuIxiCD li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3AuIxiCD .foot-menu {
    flex-direction: column;
  }
}
.cid-vc3AuIxiCD .foot-menu-item {
  color: #29361a;
}
.cid-vc3AuIxiCD .mbr-text {
  color: #ffffff;
}
.cid-vc3RW7jT9i .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc3RW7jT9i .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc3RW7jT9i .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc3RW7jT9i .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc3RW7jT9i .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc3RW7jT9i a {
  font-style: normal;
}
.cid-vc3RW7jT9i .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc3RW7jT9i .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc3RW7jT9i .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3RW7jT9i .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc3RW7jT9i .content-text {
  margin-bottom: 0;
}
.cid-vc3RW7jT9i .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc3RW7jT9i .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc3RW7jT9i .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc3RW7jT9i .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc3RW7jT9i .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc3RW7jT9i .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc3RW7jT9i .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc3RW7jT9i .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc3RW7jT9i .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc3RW7jT9i .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc3RW7jT9i .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc3RW7jT9i .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc3RW7jT9i .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc3RW7jT9i .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc3RW7jT9i .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc3RW7jT9i .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc3RW7jT9i .menu-content-top.show {
  display: block;
}
.cid-vc3RW7jT9i .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc3RW7jT9i .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc3RW7jT9i .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc3RW7jT9i .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc3RW7jT9i .dropdown-item:before {
    display: none;
  }
  .cid-vc3RW7jT9i .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc3RW7jT9i .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc3RW7jT9i img {
    height: 3.8rem !important;
  }
  .cid-vc3RW7jT9i .btn {
    display: flex;
  }
  .cid-vc3RW7jT9i button.navbar-toggler {
    display: block;
  }
  .cid-vc3RW7jT9i .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc3RW7jT9i .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc3RW7jT9i .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc3RW7jT9i .navbar-collapse.collapsing,
  .cid-vc3RW7jT9i .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc3RW7jT9i .navbar-collapse.collapsing .navbar-nav,
  .cid-vc3RW7jT9i .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc3RW7jT9i .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc3RW7jT9i .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc3RW7jT9i .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc3RW7jT9i .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc3RW7jT9i .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc3RW7jT9i .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc3RW7jT9i .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc3RW7jT9i .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc3RW7jT9i .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc3RW7jT9i .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc3RW7jT9i .navbar .menu-content-top {
    display: block;
  }
  .cid-vc3RW7jT9i .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc3RW7jT9i .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc3RW7jT9i .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc3RW7jT9i .menu-bottom {
    display: flex;
  }
  .cid-vc3RW7jT9i .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc3RW7jT9i .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc3RW7jT9i .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc3RW7jT9i .navbar-toggler {
    display: none;
  }
}
.cid-vc3RW7jT9i .navbar-short .menu-content-top {
  border: none;
}
.cid-vc3RW7jT9i .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3RW7jT9i .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc3RW7jT9i .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc3RW7jT9i .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc3RW7jT9i .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc3RW7jT9i .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc3RW7jT9i .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc3RW7jT9i .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc3RW7jT9i .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc3RW7jT9i .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc3RW7jT9i .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc3RW7jT9i .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc3RW7jT9i .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc3RW7jT9i .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc3RW7jT9i .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc3RW7jT9i button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc3RW7jT9i button.navbar-toggler:focus {
  outline: none;
}
.cid-vc3RW7jT9i button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc3RW7jT9i button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc3RW7jT9i button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc3RW7jT9i button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc3RW7jT9i button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc3RW7jT9i nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc3RW7jT9i nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc3RW7jT9i nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc3RW7jT9i nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc3RW7jT9i .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc3RW7jT9i .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc3RW7jT9i .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc3RW7jT9i .collapsed .btn {
  display: flex;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse.collapsing,
.cid-vc3RW7jT9i .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc3RW7jT9i .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc3RW7jT9i .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc3RW7jT9i .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc3RW7jT9i .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc3RW7jT9i .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc3RW7jT9i .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc3RW7jT9i .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc3RW7jT9i .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc3RW7jT9i .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc3RW7jT9i .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc3RW7jT9i .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc3RW7jT9i .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc3RW7jT9i .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc3RW7jT9i .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc3RW7jT9i .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc3RW7jT9i .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc3RW7jT9i .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc3RW7jT9i .nav-link:focus {
  outline: none;
}
.cid-vc3RW7jT9i .navbar-toggler {
  position: relative;
}
.cid-vc3RW7jT9i .dropdown-item.active,
.cid-vc3RW7jT9i .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc3RW7jT9i .nav-link:hover,
.cid-vc3RW7jT9i .dropdown-item:hover {
  color: #4284df;
}
.cid-vc3RW8Tw1o {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/high-angle-business-man-working-office-2000x1334.jpg");
}
.cid-vc3RW8Tw1o .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc3RW8Tw1o .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc3USyCEJ4 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-vc3USyCEJ4 a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-vc3USyCEJ4 a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-vc3USyCEJ4 .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-vc3USyCEJ4 .input-group-btn .btn {
  border-radius: 0px !important;
}
.cid-vc3USyCEJ4 .form-control {
  background: none;
  border-radius: 0px;
}
.cid-vc3USyCEJ4 textarea.form-control {
  min-height: 214.5px;
}
.cid-vc3USyCEJ4 .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  height: 50px;
  margin-bottom: 2.5rem;
}
.cid-vc3USyCEJ4 h4,
.cid-vc3USyCEJ4 p {
  margin: 0;
}
.cid-vc3USyCEJ4 h2 {
  color: #333;
  margin-bottom: 2rem;
}
.cid-vc3USyCEJ4 h3 {
  color: #767676;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.cid-vc3USyCEJ4 .icon {
  color: #00a555;
  font-size: 3rem;
}
@media (max-width: 991px) {
  .cid-vc3USyCEJ4 h2 {
    text-align: center;
  }
  .cid-vc3USyCEJ4 h3 {
    text-align: center;
  }
  .cid-vc3USyCEJ4 .input-group-btn {
    text-align: center;
  }
  .cid-vc3USyCEJ4 .social-list {
    text-align: center;
  }
}
.cid-vc3USyCEJ4 H2 {
  color: #656565;
}
.cid-vc3USyCEJ4 .content {
  text-align: left;
  color: #656565;
}
.cid-vc3USyCEJ4 .type {
  text-align: left;
  padding-bottom: 8px;
  color: #00a555;
}
.cid-vc3USyCEJ4 .title1 {
  text-align: left;
  color: #00a555;
}
.cid-vc3USyCEJ4 .mbr-section-subtitle {
  text-align: left;
  color: #656565;
}
.cid-vc3USyCEJ4 .title2 {
  color: #232323;
}
.cid-vc4H3wD4UC .main_wrapper {
  position: relative;
  height: 25rem;
  width: 100%;
  background-color: #c0c0c0;
}
.cid-vc4H3wD4UC .main_wrapper .b_wrapper {
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
.cid-vc4H3wD4UC .main_wrapper .b_wrapper .block {
  height: 300px;
  background-color: #ffffff;
  pointer-events: fill;
}
.cid-vc4H3wD4UC .main_wrapper .b_wrapper .block .block_wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.cid-vc4H3wD4UC .google-map {
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.cid-vc4H3wD4UC .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-vc4H3wD4UC .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-vc4H3wD4UC .google-map[data-state] {
  background: #e9e5dc;
}
.cid-vc4H3wD4UC .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
@media (max-width: 767px) {
  .cid-vc4H3wD4UC .main_wrapper .b_wrapper {
    display: block;
    height: unset;
  }
  .cid-vc4H3wD4UC .google-map {
    position: relative;
  }
  .cid-vc4H3wD4UC .container {
    max-width: 100%;
    padding: 0;
  }
}
.cid-vc3RWbxrno {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc3RWcyUjo {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc3RWcyUjo .row-links {
  width: 100%;
}
.cid-vc3RWcyUjo .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc3RWcyUjo .col-lg-6 {
  height: fit-content;
}
.cid-vc3RWcyUjo .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc3RWcyUjo .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc3RWcyUjo .row {
  align-items: center;
}
.cid-vc3RWcyUjo .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc3RWcyUjo .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc3RWcyUjo .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc3RWcyUjo .row .foot-menu li p {
  margin: 0;
}
.cid-vc3RWcyUjo .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc3RWcyUjo .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc3RWcyUjo .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc3RWcyUjo .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc3RWcyUjo .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc3RWcyUjo .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc3RWcyUjo .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc3RWcyUjo .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc3RWcyUjo .row-links {
    justify-content: center;
  }
  .cid-vc3RWcyUjo .foot-menu {
    justify-content: center;
  }
  .cid-vc3RWcyUjo .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc3RWcyUjo .social-row {
    justify-content: center;
  }
  .cid-vc3RWcyUjo .mbr-text {
    text-align: center;
  }
  .cid-vc3RWcyUjo li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc3RWcyUjo .foot-menu {
    flex-direction: column;
  }
}
.cid-vc3RWcyUjo .foot-menu-item {
  color: #29361a;
}
.cid-vc3RWcyUjo .mbr-text {
  color: #ffffff;
}
.cid-vc4POtOc7M .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4POtOc7M .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4POtOc7M .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4POtOc7M .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4POtOc7M .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4POtOc7M a {
  font-style: normal;
}
.cid-vc4POtOc7M .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4POtOc7M .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4POtOc7M .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4POtOc7M .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4POtOc7M .content-text {
  margin-bottom: 0;
}
.cid-vc4POtOc7M .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4POtOc7M .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4POtOc7M .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4POtOc7M .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4POtOc7M .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4POtOc7M .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4POtOc7M .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4POtOc7M .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4POtOc7M .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4POtOc7M .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4POtOc7M .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4POtOc7M .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4POtOc7M .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4POtOc7M .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4POtOc7M .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4POtOc7M .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4POtOc7M .menu-content-top.show {
  display: block;
}
.cid-vc4POtOc7M .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4POtOc7M .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4POtOc7M .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4POtOc7M .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4POtOc7M .dropdown-item:before {
    display: none;
  }
  .cid-vc4POtOc7M .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4POtOc7M .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4POtOc7M img {
    height: 3.8rem !important;
  }
  .cid-vc4POtOc7M .btn {
    display: flex;
  }
  .cid-vc4POtOc7M button.navbar-toggler {
    display: block;
  }
  .cid-vc4POtOc7M .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4POtOc7M .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4POtOc7M .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4POtOc7M .navbar-collapse.collapsing,
  .cid-vc4POtOc7M .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4POtOc7M .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4POtOc7M .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4POtOc7M .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4POtOc7M .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4POtOc7M .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4POtOc7M .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4POtOc7M .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4POtOc7M .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4POtOc7M .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4POtOc7M .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4POtOc7M .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4POtOc7M .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4POtOc7M .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4POtOc7M .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4POtOc7M .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4POtOc7M .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4POtOc7M .menu-bottom {
    display: flex;
  }
  .cid-vc4POtOc7M .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4POtOc7M .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4POtOc7M .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4POtOc7M .navbar-toggler {
    display: none;
  }
}
.cid-vc4POtOc7M .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4POtOc7M .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4POtOc7M .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4POtOc7M .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4POtOc7M .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4POtOc7M .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4POtOc7M .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4POtOc7M .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4POtOc7M .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4POtOc7M .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4POtOc7M .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4POtOc7M .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4POtOc7M .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4POtOc7M .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4POtOc7M .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4POtOc7M .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4POtOc7M .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4POtOc7M button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4POtOc7M button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4POtOc7M button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4POtOc7M button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4POtOc7M button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4POtOc7M button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4POtOc7M button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4POtOc7M nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4POtOc7M nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4POtOc7M nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4POtOc7M nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4POtOc7M .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4POtOc7M .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4POtOc7M .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4POtOc7M .collapsed .btn {
  display: flex;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse.collapsing,
.cid-vc4POtOc7M .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4POtOc7M .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4POtOc7M .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4POtOc7M .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4POtOc7M .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4POtOc7M .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4POtOc7M .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4POtOc7M .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4POtOc7M .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4POtOc7M .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4POtOc7M .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4POtOc7M .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4POtOc7M .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4POtOc7M .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4POtOc7M .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4POtOc7M .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4POtOc7M .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4POtOc7M .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4POtOc7M .nav-link:focus {
  outline: none;
}
.cid-vc4POtOc7M .navbar-toggler {
  position: relative;
}
.cid-vc4POtOc7M .dropdown-item.active,
.cid-vc4POtOc7M .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4POtOc7M .nav-link:hover,
.cid-vc4POtOc7M .dropdown-item:hover {
  color: #4284df;
}
.cid-vc912Ssf0K {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc912Ssf0K .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc912Ssf0K .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8SLPVF5Y {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8SLPVF5Y .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8SLPVF5Y .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8SLPVF5Y .btn {
  margin: 0px !important;
}
.cid-vc8SLPVF5Y .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8SLPVF5Y .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8SLPVF5Y .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8SLPVF5Y .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8SLPVF5Y .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8SLPVF5Y .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8SLPVF5Y .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8SLPVF5Y .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8SLPVF5Y .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8SLPVF5Y .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Tw6kdNe {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8Tw6kdNe .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Tw6kdNe .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Tw6kdNe .btn {
  margin: 0px !important;
}
.cid-vc8Tw6kdNe .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Tw6kdNe .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Tw6kdNe .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Tw6kdNe .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Tw6kdNe .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Tw6kdNe .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Tw6kdNe .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Tw6kdNe .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Tw6kdNe .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Tw6kdNe .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4POB638O {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4POBVt5f {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4POBVt5f .row-links {
  width: 100%;
}
.cid-vc4POBVt5f .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4POBVt5f .col-lg-6 {
  height: fit-content;
}
.cid-vc4POBVt5f .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4POBVt5f .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4POBVt5f .row {
  align-items: center;
}
.cid-vc4POBVt5f .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4POBVt5f .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4POBVt5f .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4POBVt5f .row .foot-menu li p {
  margin: 0;
}
.cid-vc4POBVt5f .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4POBVt5f .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4POBVt5f .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4POBVt5f .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4POBVt5f .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4POBVt5f .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4POBVt5f .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4POBVt5f .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4POBVt5f .row-links {
    justify-content: center;
  }
  .cid-vc4POBVt5f .foot-menu {
    justify-content: center;
  }
  .cid-vc4POBVt5f .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4POBVt5f .social-row {
    justify-content: center;
  }
  .cid-vc4POBVt5f .mbr-text {
    text-align: center;
  }
  .cid-vc4POBVt5f li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4POBVt5f .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4POBVt5f .foot-menu-item {
  color: #29361a;
}
.cid-vc4POBVt5f .mbr-text {
  color: #ffffff;
}
.cid-vc4QbgHuFG .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4QbgHuFG .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4QbgHuFG .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4QbgHuFG .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4QbgHuFG .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4QbgHuFG a {
  font-style: normal;
}
.cid-vc4QbgHuFG .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4QbgHuFG .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4QbgHuFG .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QbgHuFG .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4QbgHuFG .content-text {
  margin-bottom: 0;
}
.cid-vc4QbgHuFG .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4QbgHuFG .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4QbgHuFG .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4QbgHuFG .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4QbgHuFG .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4QbgHuFG .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4QbgHuFG .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QbgHuFG .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QbgHuFG .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4QbgHuFG .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4QbgHuFG .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4QbgHuFG .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4QbgHuFG .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4QbgHuFG .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4QbgHuFG .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4QbgHuFG .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4QbgHuFG .menu-content-top.show {
  display: block;
}
.cid-vc4QbgHuFG .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4QbgHuFG .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4QbgHuFG .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4QbgHuFG .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4QbgHuFG .dropdown-item:before {
    display: none;
  }
  .cid-vc4QbgHuFG .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4QbgHuFG .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4QbgHuFG img {
    height: 3.8rem !important;
  }
  .cid-vc4QbgHuFG .btn {
    display: flex;
  }
  .cid-vc4QbgHuFG button.navbar-toggler {
    display: block;
  }
  .cid-vc4QbgHuFG .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4QbgHuFG .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4QbgHuFG .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4QbgHuFG .navbar-collapse.collapsing,
  .cid-vc4QbgHuFG .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4QbgHuFG .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4QbgHuFG .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4QbgHuFG .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4QbgHuFG .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4QbgHuFG .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4QbgHuFG .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4QbgHuFG .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4QbgHuFG .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4QbgHuFG .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4QbgHuFG .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4QbgHuFG .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4QbgHuFG .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4QbgHuFG .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4QbgHuFG .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4QbgHuFG .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4QbgHuFG .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4QbgHuFG .menu-bottom {
    display: flex;
  }
  .cid-vc4QbgHuFG .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4QbgHuFG .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4QbgHuFG .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4QbgHuFG .navbar-toggler {
    display: none;
  }
}
.cid-vc4QbgHuFG .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4QbgHuFG .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QbgHuFG .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4QbgHuFG .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4QbgHuFG .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4QbgHuFG .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QbgHuFG .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4QbgHuFG .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QbgHuFG .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4QbgHuFG .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4QbgHuFG .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4QbgHuFG .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4QbgHuFG .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4QbgHuFG .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4QbgHuFG .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4QbgHuFG .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4QbgHuFG button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4QbgHuFG button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4QbgHuFG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4QbgHuFG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4QbgHuFG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QbgHuFG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QbgHuFG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4QbgHuFG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QbgHuFG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4QbgHuFG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4QbgHuFG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QbgHuFG .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QbgHuFG .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QbgHuFG .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4QbgHuFG .collapsed .btn {
  display: flex;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse.collapsing,
.cid-vc4QbgHuFG .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4QbgHuFG .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4QbgHuFG .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4QbgHuFG .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4QbgHuFG .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4QbgHuFG .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4QbgHuFG .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4QbgHuFG .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QbgHuFG .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QbgHuFG .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4QbgHuFG .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QbgHuFG .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4QbgHuFG .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4QbgHuFG .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4QbgHuFG .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4QbgHuFG .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4QbgHuFG .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4QbgHuFG .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4QbgHuFG .nav-link:focus {
  outline: none;
}
.cid-vc4QbgHuFG .navbar-toggler {
  position: relative;
}
.cid-vc4QbgHuFG .dropdown-item.active,
.cid-vc4QbgHuFG .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4QbgHuFG .nav-link:hover,
.cid-vc4QbgHuFG .dropdown-item:hover {
  color: #4284df;
}
.cid-vc90XWj4Yu {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc90XWj4Yu .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc90XWj4Yu .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8U1K8bca {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8U1K8bca .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8U1K8bca .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8U1K8bca .btn {
  margin: 0px !important;
}
.cid-vc8U1K8bca .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8U1K8bca .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8U1K8bca .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8U1K8bca .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8U1K8bca .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8U1K8bca .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8U1K8bca .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8U1K8bca .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8U1K8bca .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8U1K8bca .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4QbnZsks {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4QboPFPr {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4QboPFPr .row-links {
  width: 100%;
}
.cid-vc4QboPFPr .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4QboPFPr .col-lg-6 {
  height: fit-content;
}
.cid-vc4QboPFPr .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4QboPFPr .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4QboPFPr .row {
  align-items: center;
}
.cid-vc4QboPFPr .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4QboPFPr .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4QboPFPr .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4QboPFPr .row .foot-menu li p {
  margin: 0;
}
.cid-vc4QboPFPr .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4QboPFPr .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4QboPFPr .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4QboPFPr .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4QboPFPr .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4QboPFPr .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4QboPFPr .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4QboPFPr .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4QboPFPr .row-links {
    justify-content: center;
  }
  .cid-vc4QboPFPr .foot-menu {
    justify-content: center;
  }
  .cid-vc4QboPFPr .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4QboPFPr .social-row {
    justify-content: center;
  }
  .cid-vc4QboPFPr .mbr-text {
    text-align: center;
  }
  .cid-vc4QboPFPr li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4QboPFPr .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4QboPFPr .foot-menu-item {
  color: #29361a;
}
.cid-vc4QboPFPr .mbr-text {
  color: #ffffff;
}
.cid-vc4QqBNvK3 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4QqBNvK3 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4QqBNvK3 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4QqBNvK3 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4QqBNvK3 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4QqBNvK3 a {
  font-style: normal;
}
.cid-vc4QqBNvK3 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4QqBNvK3 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4QqBNvK3 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QqBNvK3 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4QqBNvK3 .content-text {
  margin-bottom: 0;
}
.cid-vc4QqBNvK3 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4QqBNvK3 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4QqBNvK3 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4QqBNvK3 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4QqBNvK3 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4QqBNvK3 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4QqBNvK3 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QqBNvK3 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QqBNvK3 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4QqBNvK3 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4QqBNvK3 .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4QqBNvK3 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4QqBNvK3 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4QqBNvK3 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4QqBNvK3 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4QqBNvK3 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4QqBNvK3 .menu-content-top.show {
  display: block;
}
.cid-vc4QqBNvK3 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4QqBNvK3 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4QqBNvK3 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4QqBNvK3 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4QqBNvK3 .dropdown-item:before {
    display: none;
  }
  .cid-vc4QqBNvK3 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4QqBNvK3 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4QqBNvK3 img {
    height: 3.8rem !important;
  }
  .cid-vc4QqBNvK3 .btn {
    display: flex;
  }
  .cid-vc4QqBNvK3 button.navbar-toggler {
    display: block;
  }
  .cid-vc4QqBNvK3 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4QqBNvK3 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4QqBNvK3 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4QqBNvK3 .navbar-collapse.collapsing,
  .cid-vc4QqBNvK3 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4QqBNvK3 .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4QqBNvK3 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4QqBNvK3 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4QqBNvK3 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4QqBNvK3 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4QqBNvK3 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4QqBNvK3 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4QqBNvK3 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4QqBNvK3 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4QqBNvK3 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4QqBNvK3 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4QqBNvK3 .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4QqBNvK3 .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4QqBNvK3 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4QqBNvK3 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4QqBNvK3 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4QqBNvK3 .menu-bottom {
    display: flex;
  }
  .cid-vc4QqBNvK3 .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4QqBNvK3 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4QqBNvK3 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4QqBNvK3 .navbar-toggler {
    display: none;
  }
}
.cid-vc4QqBNvK3 .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4QqBNvK3 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QqBNvK3 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4QqBNvK3 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4QqBNvK3 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4QqBNvK3 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QqBNvK3 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4QqBNvK3 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QqBNvK3 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4QqBNvK3 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4QqBNvK3 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4QqBNvK3 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4QqBNvK3 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4QqBNvK3 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4QqBNvK3 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4QqBNvK3 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4QqBNvK3 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4QqBNvK3 button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4QqBNvK3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4QqBNvK3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4QqBNvK3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QqBNvK3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QqBNvK3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4QqBNvK3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QqBNvK3 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4QqBNvK3 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4QqBNvK3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QqBNvK3 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QqBNvK3 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QqBNvK3 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4QqBNvK3 .collapsed .btn {
  display: flex;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.collapsing,
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4QqBNvK3 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4QqBNvK3 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4QqBNvK3 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QqBNvK3 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QqBNvK3 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4QqBNvK3 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QqBNvK3 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4QqBNvK3 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4QqBNvK3 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4QqBNvK3 .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4QqBNvK3 .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4QqBNvK3 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4QqBNvK3 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4QqBNvK3 .nav-link:focus {
  outline: none;
}
.cid-vc4QqBNvK3 .navbar-toggler {
  position: relative;
}
.cid-vc4QqBNvK3 .dropdown-item.active,
.cid-vc4QqBNvK3 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4QqBNvK3 .nav-link:hover,
.cid-vc4QqBNvK3 .dropdown-item:hover {
  color: #4284df;
}
.cid-vc4QqDoDbV {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc4QqDoDbV .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc4QqDoDbV .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8XAreL1c {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8XAreL1c .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8XAreL1c .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8XAreL1c .btn {
  margin: 0px !important;
}
.cid-vc8XAreL1c .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8XAreL1c .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8XAreL1c .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8XAreL1c .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8XAreL1c .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8XAreL1c .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8XAreL1c .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8XAreL1c .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8XAreL1c .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8XAreL1c .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Y5Dd8FK {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8Y5Dd8FK .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Y5Dd8FK .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Y5Dd8FK .btn {
  margin: 0px !important;
}
.cid-vc8Y5Dd8FK .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Y5Dd8FK .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Y5Dd8FK .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Y5Dd8FK .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Y5Dd8FK .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Y5Dd8FK .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Y5Dd8FK .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Y5Dd8FK .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Y5Dd8FK .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Y5Dd8FK .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Yyd8lx5 {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8Yyd8lx5 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Yyd8lx5 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Yyd8lx5 .btn {
  margin: 0px !important;
}
.cid-vc8Yyd8lx5 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Yyd8lx5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Yyd8lx5 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Yyd8lx5 .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Yyd8lx5 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Yyd8lx5 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Yyd8lx5 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Yyd8lx5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Yyd8lx5 .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Yyd8lx5 .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4QqJcXXP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4QqK2Sb4 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4QqK2Sb4 .row-links {
  width: 100%;
}
.cid-vc4QqK2Sb4 .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4QqK2Sb4 .col-lg-6 {
  height: fit-content;
}
.cid-vc4QqK2Sb4 .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4QqK2Sb4 .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4QqK2Sb4 .row {
  align-items: center;
}
.cid-vc4QqK2Sb4 .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4QqK2Sb4 .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4QqK2Sb4 .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4QqK2Sb4 .row .foot-menu li p {
  margin: 0;
}
.cid-vc4QqK2Sb4 .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4QqK2Sb4 .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4QqK2Sb4 .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4QqK2Sb4 .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4QqK2Sb4 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4QqK2Sb4 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4QqK2Sb4 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4QqK2Sb4 .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4QqK2Sb4 .row-links {
    justify-content: center;
  }
  .cid-vc4QqK2Sb4 .foot-menu {
    justify-content: center;
  }
  .cid-vc4QqK2Sb4 .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4QqK2Sb4 .social-row {
    justify-content: center;
  }
  .cid-vc4QqK2Sb4 .mbr-text {
    text-align: center;
  }
  .cid-vc4QqK2Sb4 li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4QqK2Sb4 .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4QqK2Sb4 .foot-menu-item {
  color: #29361a;
}
.cid-vc4QqK2Sb4 .mbr-text {
  color: #ffffff;
}
.cid-vc4QJAVXeT .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4QJAVXeT .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4QJAVXeT .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4QJAVXeT .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4QJAVXeT .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4QJAVXeT a {
  font-style: normal;
}
.cid-vc4QJAVXeT .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4QJAVXeT .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4QJAVXeT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QJAVXeT .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4QJAVXeT .content-text {
  margin-bottom: 0;
}
.cid-vc4QJAVXeT .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4QJAVXeT .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4QJAVXeT .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4QJAVXeT .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4QJAVXeT .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4QJAVXeT .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4QJAVXeT .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QJAVXeT .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QJAVXeT .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4QJAVXeT .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4QJAVXeT .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4QJAVXeT .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4QJAVXeT .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4QJAVXeT .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4QJAVXeT .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4QJAVXeT .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4QJAVXeT .menu-content-top.show {
  display: block;
}
.cid-vc4QJAVXeT .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4QJAVXeT .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4QJAVXeT .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4QJAVXeT .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4QJAVXeT .dropdown-item:before {
    display: none;
  }
  .cid-vc4QJAVXeT .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4QJAVXeT .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4QJAVXeT img {
    height: 3.8rem !important;
  }
  .cid-vc4QJAVXeT .btn {
    display: flex;
  }
  .cid-vc4QJAVXeT button.navbar-toggler {
    display: block;
  }
  .cid-vc4QJAVXeT .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4QJAVXeT .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4QJAVXeT .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4QJAVXeT .navbar-collapse.collapsing,
  .cid-vc4QJAVXeT .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4QJAVXeT .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4QJAVXeT .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4QJAVXeT .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4QJAVXeT .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4QJAVXeT .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4QJAVXeT .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4QJAVXeT .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4QJAVXeT .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4QJAVXeT .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4QJAVXeT .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4QJAVXeT .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4QJAVXeT .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4QJAVXeT .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4QJAVXeT .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4QJAVXeT .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4QJAVXeT .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4QJAVXeT .menu-bottom {
    display: flex;
  }
  .cid-vc4QJAVXeT .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4QJAVXeT .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4QJAVXeT .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4QJAVXeT .navbar-toggler {
    display: none;
  }
}
.cid-vc4QJAVXeT .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4QJAVXeT .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QJAVXeT .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4QJAVXeT .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4QJAVXeT .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4QJAVXeT .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QJAVXeT .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4QJAVXeT .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QJAVXeT .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4QJAVXeT .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4QJAVXeT .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4QJAVXeT .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4QJAVXeT .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4QJAVXeT .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4QJAVXeT .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4QJAVXeT .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4QJAVXeT button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4QJAVXeT button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4QJAVXeT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4QJAVXeT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4QJAVXeT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QJAVXeT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QJAVXeT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4QJAVXeT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QJAVXeT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4QJAVXeT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4QJAVXeT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QJAVXeT .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QJAVXeT .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QJAVXeT .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4QJAVXeT .collapsed .btn {
  display: flex;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse.collapsing,
.cid-vc4QJAVXeT .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4QJAVXeT .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4QJAVXeT .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4QJAVXeT .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4QJAVXeT .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4QJAVXeT .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4QJAVXeT .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4QJAVXeT .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QJAVXeT .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QJAVXeT .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4QJAVXeT .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QJAVXeT .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4QJAVXeT .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4QJAVXeT .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4QJAVXeT .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4QJAVXeT .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4QJAVXeT .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4QJAVXeT .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4QJAVXeT .nav-link:focus {
  outline: none;
}
.cid-vc4QJAVXeT .navbar-toggler {
  position: relative;
}
.cid-vc4QJAVXeT .dropdown-item.active,
.cid-vc4QJAVXeT .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4QJAVXeT .nav-link:hover,
.cid-vc4QJAVXeT .dropdown-item:hover {
  color: #4284df;
}
.cid-vc90UQAeij {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc90UQAeij .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc90UQAeij .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8KUaO1UV {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8KUaO1UV .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8KUaO1UV .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8KUaO1UV .btn {
  margin: 0px !important;
}
.cid-vc8KUaO1UV .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8KUaO1UV .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8KUaO1UV .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8KUaO1UV .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8KUaO1UV .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8KUaO1UV .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8KUaO1UV .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8KUaO1UV .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8KUaO1UV .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8KUaO1UV .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Mlg4hd5 {
  padding-top: 0px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-vc8Mlg4hd5 .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Mlg4hd5 .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Mlg4hd5 .btn {
  margin: 0px !important;
}
.cid-vc8Mlg4hd5 .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Mlg4hd5 .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Mlg4hd5 .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Mlg4hd5 .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Mlg4hd5 .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Mlg4hd5 .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Mlg4hd5 .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Mlg4hd5 .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Mlg4hd5 .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Mlg4hd5 .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4QJIjUwE {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4QJJ8SSR {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4QJJ8SSR .row-links {
  width: 100%;
}
.cid-vc4QJJ8SSR .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4QJJ8SSR .col-lg-6 {
  height: fit-content;
}
.cid-vc4QJJ8SSR .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4QJJ8SSR .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4QJJ8SSR .row {
  align-items: center;
}
.cid-vc4QJJ8SSR .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4QJJ8SSR .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4QJJ8SSR .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4QJJ8SSR .row .foot-menu li p {
  margin: 0;
}
.cid-vc4QJJ8SSR .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4QJJ8SSR .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4QJJ8SSR .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4QJJ8SSR .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4QJJ8SSR .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4QJJ8SSR .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4QJJ8SSR .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4QJJ8SSR .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4QJJ8SSR .row-links {
    justify-content: center;
  }
  .cid-vc4QJJ8SSR .foot-menu {
    justify-content: center;
  }
  .cid-vc4QJJ8SSR .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4QJJ8SSR .social-row {
    justify-content: center;
  }
  .cid-vc4QJJ8SSR .mbr-text {
    text-align: center;
  }
  .cid-vc4QJJ8SSR li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4QJJ8SSR .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4QJJ8SSR .foot-menu-item {
  color: #29361a;
}
.cid-vc4QJJ8SSR .mbr-text {
  color: #ffffff;
}
.cid-vc4QTD6NJ4 .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4QTD6NJ4 .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4QTD6NJ4 .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4QTD6NJ4 .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4QTD6NJ4 .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4QTD6NJ4 a {
  font-style: normal;
}
.cid-vc4QTD6NJ4 .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4QTD6NJ4 .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4QTD6NJ4 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QTD6NJ4 .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4QTD6NJ4 .content-text {
  margin-bottom: 0;
}
.cid-vc4QTD6NJ4 .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4QTD6NJ4 .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4QTD6NJ4 .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4QTD6NJ4 .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4QTD6NJ4 .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4QTD6NJ4 .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4QTD6NJ4 .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QTD6NJ4 .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4QTD6NJ4 .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4QTD6NJ4 .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4QTD6NJ4 .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4QTD6NJ4 .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4QTD6NJ4 .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4QTD6NJ4 .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4QTD6NJ4 .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4QTD6NJ4 .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4QTD6NJ4 .menu-content-top.show {
  display: block;
}
.cid-vc4QTD6NJ4 .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4QTD6NJ4 .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4QTD6NJ4 .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4QTD6NJ4 .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4QTD6NJ4 .dropdown-item:before {
    display: none;
  }
  .cid-vc4QTD6NJ4 .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4QTD6NJ4 .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4QTD6NJ4 img {
    height: 3.8rem !important;
  }
  .cid-vc4QTD6NJ4 .btn {
    display: flex;
  }
  .cid-vc4QTD6NJ4 button.navbar-toggler {
    display: block;
  }
  .cid-vc4QTD6NJ4 .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4QTD6NJ4 .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse.collapsing,
  .cid-vc4QTD6NJ4 .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4QTD6NJ4 .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4QTD6NJ4 .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4QTD6NJ4 .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4QTD6NJ4 .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4QTD6NJ4 .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4QTD6NJ4 .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4QTD6NJ4 .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4QTD6NJ4 .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4QTD6NJ4 .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4QTD6NJ4 .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4QTD6NJ4 .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4QTD6NJ4 .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4QTD6NJ4 .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4QTD6NJ4 .menu-bottom {
    display: flex;
  }
  .cid-vc4QTD6NJ4 .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4QTD6NJ4 .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4QTD6NJ4 .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4QTD6NJ4 .navbar-toggler {
    display: none;
  }
}
.cid-vc4QTD6NJ4 .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4QTD6NJ4 .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QTD6NJ4 .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4QTD6NJ4 .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4QTD6NJ4 .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4QTD6NJ4 .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QTD6NJ4 .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4QTD6NJ4 .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4QTD6NJ4 .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4QTD6NJ4 .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4QTD6NJ4 .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4QTD6NJ4 .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4QTD6NJ4 .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4QTD6NJ4 .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4QTD6NJ4 .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4QTD6NJ4 button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4QTD6NJ4 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4QTD6NJ4 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QTD6NJ4 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4QTD6NJ4 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4QTD6NJ4 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4QTD6NJ4 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4QTD6NJ4 .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QTD6NJ4 .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4QTD6NJ4 .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4QTD6NJ4 .collapsed .btn {
  display: flex;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.collapsing,
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4QTD6NJ4 .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4QTD6NJ4 .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4QTD6NJ4 .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4QTD6NJ4 .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4QTD6NJ4 .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4QTD6NJ4 .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4QTD6NJ4 .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4QTD6NJ4 .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4QTD6NJ4 .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4QTD6NJ4 .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4QTD6NJ4 .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4QTD6NJ4 .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4QTD6NJ4 .nav-link:focus {
  outline: none;
}
.cid-vc4QTD6NJ4 .navbar-toggler {
  position: relative;
}
.cid-vc4QTD6NJ4 .dropdown-item.active,
.cid-vc4QTD6NJ4 .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4QTD6NJ4 .nav-link:hover,
.cid-vc4QTD6NJ4 .dropdown-item:hover {
  color: #4284df;
}
.cid-vc90S6zscG {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc90S6zscG .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc90S6zscG .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8NAteqNC {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8NAteqNC .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8NAteqNC .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8NAteqNC .btn {
  margin: 0px !important;
}
.cid-vc8NAteqNC .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8NAteqNC .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8NAteqNC .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8NAteqNC .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8NAteqNC .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8NAteqNC .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8NAteqNC .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8NAteqNC .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8NAteqNC .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8NAteqNC .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8O4zEidk {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8O4zEidk .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8O4zEidk .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8O4zEidk .btn {
  margin: 0px !important;
}
.cid-vc8O4zEidk .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8O4zEidk .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8O4zEidk .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8O4zEidk .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8O4zEidk .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8O4zEidk .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8O4zEidk .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8O4zEidk .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8O4zEidk .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8O4zEidk .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4QTKo5WK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4QTLdX46 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4QTLdX46 .row-links {
  width: 100%;
}
.cid-vc4QTLdX46 .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4QTLdX46 .col-lg-6 {
  height: fit-content;
}
.cid-vc4QTLdX46 .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4QTLdX46 .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4QTLdX46 .row {
  align-items: center;
}
.cid-vc4QTLdX46 .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4QTLdX46 .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4QTLdX46 .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4QTLdX46 .row .foot-menu li p {
  margin: 0;
}
.cid-vc4QTLdX46 .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4QTLdX46 .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4QTLdX46 .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4QTLdX46 .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4QTLdX46 .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4QTLdX46 .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4QTLdX46 .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4QTLdX46 .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4QTLdX46 .row-links {
    justify-content: center;
  }
  .cid-vc4QTLdX46 .foot-menu {
    justify-content: center;
  }
  .cid-vc4QTLdX46 .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4QTLdX46 .social-row {
    justify-content: center;
  }
  .cid-vc4QTLdX46 .mbr-text {
    text-align: center;
  }
  .cid-vc4QTLdX46 li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4QTLdX46 .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4QTLdX46 .foot-menu-item {
  color: #29361a;
}
.cid-vc4QTLdX46 .mbr-text {
  color: #ffffff;
}
.cid-vc4R1nFGkQ .navbar {
  padding: .5rem 0;
  background: #ffffff;
  transition: none;
  min-height: 77px;
}
@media (min-width: 992px) {
  .cid-vc4R1nFGkQ .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 2.5385em 0.235em 3.5385em !important;
    margin: 0 !important;
  }
}
.cid-vc4R1nFGkQ .menu-logo {
  display: flex;
  position: relative;
  -webkit-align-items: center;
  align-items: center;
  margin-right: auto;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0.5rem 0;
  transition: padding .2s;
  min-height: 3.8rem;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-vc4R1nFGkQ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-vc4R1nFGkQ .navbar-dropdown.bg-color.transparent.opened {
  background: #ffffff;
}
.cid-vc4R1nFGkQ a {
  font-style: normal;
}
.cid-vc4R1nFGkQ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-vc4R1nFGkQ .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-vc4R1nFGkQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4R1nFGkQ .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-vc4R1nFGkQ .content-text {
  margin-bottom: 0;
}
.cid-vc4R1nFGkQ .navbar-nav {
  position: relative;
  min-height: 60px;
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}
@media (min-width: 992px) {
  .cid-vc4R1nFGkQ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #ffffff;
    -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);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-vc4R1nFGkQ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-vc4R1nFGkQ .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 991px) {
  .cid-vc4R1nFGkQ .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-vc4R1nFGkQ .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-vc4R1nFGkQ .display-4 > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4R1nFGkQ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-vc4R1nFGkQ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-vc4R1nFGkQ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc4R1nFGkQ .nav-dropdown .link {
  font-weight: 400;
}
.cid-vc4R1nFGkQ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-vc4R1nFGkQ .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-vc4R1nFGkQ .content-right-side {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-vc4R1nFGkQ .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    justify-content: space-between;
  }
}
.cid-vc4R1nFGkQ .menu-content-top {
  display: none;
  padding: 1rem 0;
  transition: height 0.3s ease-in-out;
}
.cid-vc4R1nFGkQ .menu-content-top.show {
  display: block;
}
.cid-vc4R1nFGkQ .content-right-side .content-link {
  margin-left: 1rem;
}
.cid-vc4R1nFGkQ .content-right-side .content-link span {
  vertical-align: middle;
  padding-right: 1rem;
}
@media (max-width: 991px) {
  .cid-vc4R1nFGkQ .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-vc4R1nFGkQ .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-vc4R1nFGkQ .dropdown-item:before {
    display: none;
  }
  .cid-vc4R1nFGkQ .menu-logo {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .cid-vc4R1nFGkQ .menu-bottom {
    width: 100%;
    padding: 0 1rem;
    display: block;
  }
  .cid-vc4R1nFGkQ img {
    height: 3.8rem !important;
  }
  .cid-vc4R1nFGkQ .btn {
    display: flex;
  }
  .cid-vc4R1nFGkQ button.navbar-toggler {
    display: block;
  }
  .cid-vc4R1nFGkQ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: .5rem;
  }
  .cid-vc4R1nFGkQ .navbar-toggleable-sm {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-vc4R1nFGkQ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-vc4R1nFGkQ .navbar-collapse.collapsing,
  .cid-vc4R1nFGkQ .navbar-collapse.show {
    display: block !important;
  }
  .cid-vc4R1nFGkQ .navbar-collapse.collapsing .navbar-nav,
  .cid-vc4R1nFGkQ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-vc4R1nFGkQ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-vc4R1nFGkQ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-vc4R1nFGkQ .navbar-collapse.collapsing .navbar-buttons,
  .cid-vc4R1nFGkQ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-vc4R1nFGkQ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-vc4R1nFGkQ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-vc4R1nFGkQ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity, padding, height;
  }
  .cid-vc4R1nFGkQ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-vc4R1nFGkQ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-vc4R1nFGkQ .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: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 992px) {
  .cid-vc4R1nFGkQ .navbar .menu-content-top {
    display: block;
  }
  .cid-vc4R1nFGkQ .menu-content-top .row {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .cid-vc4R1nFGkQ .content-right-side {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-basis: 70%;
    flex-basis: 70%;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-vc4R1nFGkQ .menu-content-top {
    border-bottom: 1px solid #e0e0e0;
  }
  .cid-vc4R1nFGkQ .menu-bottom {
    display: flex;
  }
  .cid-vc4R1nFGkQ .navbar {
    display: block;
    padding: 0;
  }
  .cid-vc4R1nFGkQ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vc4R1nFGkQ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-vc4R1nFGkQ .navbar-toggler {
    display: none;
  }
}
.cid-vc4R1nFGkQ .navbar-short .menu-content-top {
  border: none;
}
.cid-vc4R1nFGkQ .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4R1nFGkQ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-vc4R1nFGkQ .navbar-toggleable-sm .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  padding-right: 5rem;
  width: 100%;
}
.cid-vc4R1nFGkQ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
}
.cid-vc4R1nFGkQ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4R1nFGkQ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu {
  background: #ffffff;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
@media (max-width: 991px) {
  .cid-vc4R1nFGkQ .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-vc4R1nFGkQ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-vc4R1nFGkQ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-vc4R1nFGkQ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
}
.cid-vc4R1nFGkQ .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-vc4R1nFGkQ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-vc4R1nFGkQ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-vc4R1nFGkQ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-vc4R1nFGkQ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-vc4R1nFGkQ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
}
.cid-vc4R1nFGkQ button.navbar-toggler:focus {
  outline: none;
}
.cid-vc4R1nFGkQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-vc4R1nFGkQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-vc4R1nFGkQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4R1nFGkQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-vc4R1nFGkQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-vc4R1nFGkQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4R1nFGkQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-vc4R1nFGkQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-vc4R1nFGkQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-vc4R1nFGkQ .collapsed.navbar {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4R1nFGkQ .collapsed .menu-bottom {
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-vc4R1nFGkQ .collapsed .menu-logo {
  margin-right: 0;
}
.cid-vc4R1nFGkQ .collapsed .btn {
  display: flex;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.collapsing,
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-vc4R1nFGkQ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-vc4R1nFGkQ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.9rem  - 1rem);
  }
  .cid-vc4R1nFGkQ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-vc4R1nFGkQ .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-vc4R1nFGkQ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: .5rem;
}
.cid-vc4R1nFGkQ .collapsed .navbar-toggleable-sm {
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-vc4R1nFGkQ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .25s;
  transition-property: opacity, padding, height;
}
.cid-vc4R1nFGkQ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-vc4R1nFGkQ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-vc4R1nFGkQ .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: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
.cid-vc4R1nFGkQ .collapsed .dropdown-item:before {
  display: none;
}
.cid-vc4R1nFGkQ .navbar-dropdown {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.cid-vc4R1nFGkQ .navbar-collapse {
  -ms-flex-preferred-size: auto;
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
.cid-vc4R1nFGkQ .nav-link:focus {
  outline: none;
}
.cid-vc4R1nFGkQ .navbar-toggler {
  position: relative;
}
.cid-vc4R1nFGkQ .dropdown-item.active,
.cid-vc4R1nFGkQ .dropdown-item:active {
  background-color: #ffffff;
  color: auto;
}
.cid-vc4R1nFGkQ .nav-link:hover,
.cid-vc4R1nFGkQ .dropdown-item:hover {
  color: #4284df;
}
.cid-vc90OzAneN {
  padding-top: 180px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/crop-hands-sealing-box-2000x1335.jpeg");
}
.cid-vc90OzAneN .media-container-column .btn-bgr {
  z-index: 0;
}
.cid-vc90OzAneN .mbr-overlay {
  background: linear-gradient(#d6173f -10%, #00113e 75%);
}
.cid-vc8RarUGSi {
  padding-top: 90px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8RarUGSi .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8RarUGSi .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8RarUGSi .btn {
  margin: 0px !important;
}
.cid-vc8RarUGSi .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8RarUGSi .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8RarUGSi .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8RarUGSi .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8RarUGSi .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8RarUGSi .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8RarUGSi .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8RarUGSi .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8RarUGSi .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8RarUGSi .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Qw1vNVc {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8Qw1vNVc .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Qw1vNVc .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Qw1vNVc .btn {
  margin: 0px !important;
}
.cid-vc8Qw1vNVc .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Qw1vNVc .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Qw1vNVc .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Qw1vNVc .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Qw1vNVc .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Qw1vNVc .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Qw1vNVc .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Qw1vNVc .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Qw1vNVc .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Qw1vNVc .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8RPsgDeh {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8RPsgDeh .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8RPsgDeh .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8RPsgDeh .btn {
  margin: 0px !important;
}
.cid-vc8RPsgDeh .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8RPsgDeh .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8RPsgDeh .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8RPsgDeh .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8RPsgDeh .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8RPsgDeh .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8RPsgDeh .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8RPsgDeh .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8RPsgDeh .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8RPsgDeh .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8Q53MtgG {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8Q53MtgG .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8Q53MtgG .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8Q53MtgG .btn {
  margin: 0px !important;
}
.cid-vc8Q53MtgG .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Q53MtgG .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8Q53MtgG .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8Q53MtgG .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8Q53MtgG .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8Q53MtgG .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8Q53MtgG .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8Q53MtgG .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8Q53MtgG .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8Q53MtgG .second-col {
    padding-top: 2rem;
  }
}
.cid-vc8PleKYOV {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-vc8PleKYOV .mbr-section-title {
  letter-spacing: 0.1em;
  color: #282d78;
  margin-bottom: 2rem;
}
.cid-vc8PleKYOV .mbr-section-subtitle {
  color: #444444;
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}
.cid-vc8PleKYOV .btn {
  margin: 0px !important;
}
.cid-vc8PleKYOV .second-col {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8PleKYOV .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-vc8PleKYOV .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-vc8PleKYOV .carousel-item .wrap-img {
  text-align: center;
}
.cid-vc8PleKYOV .carousel-item .wrap-img img {
  max-height: 250px;
  width: auto;
  max-width: 100%;
}
.cid-vc8PleKYOV .carousel {
  display: flex;
  -webkit-flex-direction: column-reverse;
  flex-direction: column-reverse;
  width: 100%;
}
.cid-vc8PleKYOV .carousel-indicators {
  display: block;
  position: relative;
  margin-top: 2rem;
  text-align: center;
}
.cid-vc8PleKYOV .carousel-indicators li {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #cccccc;
  display: inline-block;
  border: 4px solid #cccccc;
}
.cid-vc8PleKYOV .carousel-indicators li.active {
  border-color: #a3a3a3;
}
@media (max-width: 768px) {
  .cid-vc8PleKYOV .second-col {
    padding-top: 2rem;
  }
}
.cid-vc4R1uLoSF {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #00a555;
}
.cid-vc4R1vBD4c {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #282d78;
}
.cid-vc4R1vBD4c .row-links {
  width: 100%;
}
.cid-vc4R1vBD4c .social-row {
  width: 100%;
  justify-content: flex-end;
  margin: 0;
}
.cid-vc4R1vBD4c .col-lg-6 {
  height: fit-content;
}
.cid-vc4R1vBD4c .soc-item {
  background: #00a555;
  width: 44px;
  cursor: pointer;
  margin: auto;
  height: 44px;
  transition: all 0.3s;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
.cid-vc4R1vBD4c .soc-item:hover {
  transform: scale(1.1);
}
.cid-vc4R1vBD4c .row {
  align-items: center;
}
.cid-vc4R1vBD4c .row .foot-menu {
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
}
.cid-vc4R1vBD4c .row .foot-menu li {
  padding-right: 2rem;
  transition: all 0.3s;
  cursor: pointer;
}
.cid-vc4R1vBD4c .row .foot-menu li:hover {
  color: #ffffff;
}
.cid-vc4R1vBD4c .row .foot-menu li p {
  margin: 0;
}
.cid-vc4R1vBD4c .row .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-vc4R1vBD4c .row .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #ffffff;
}
.cid-vc4R1vBD4c .row .social-list .soc-item {
  margin: 0 .3rem;
}
.cid-vc4R1vBD4c .row .social-list a {
  margin: 0;
  opacity: 1;
  height: 30px;
  padding-right: 0px;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-vc4R1vBD4c .row .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-vc4R1vBD4c .row .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-vc4R1vBD4c .row .row-copirayt {
  word-break: break-word;
  width: 100%;
}
.cid-vc4R1vBD4c .row .row-copirayt p {
  width: 100%;
}
@media (max-width: 992px) {
  .cid-vc4R1vBD4c .row-links {
    justify-content: center;
  }
  .cid-vc4R1vBD4c .foot-menu {
    justify-content: center;
  }
  .cid-vc4R1vBD4c .row-copirayt {
    justify-content: center;
    margin: 0;
    margin-bottom: 2rem;
  }
  .cid-vc4R1vBD4c .social-row {
    justify-content: center;
  }
  .cid-vc4R1vBD4c .mbr-text {
    text-align: center;
  }
  .cid-vc4R1vBD4c li {
    padding-right: 1rem!important;
    padding-left: 1rem;
  }
}
@media (max-width: 767px) {
  .cid-vc4R1vBD4c .foot-menu {
    flex-direction: column;
  }
}
.cid-vc4R1vBD4c .foot-menu-item {
  color: #29361a;
}
.cid-vc4R1vBD4c .mbr-text {
  color: #ffffff;
}
