body {
  font-family: Montserrat;
}
.display-1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 3rem;
}
.display-1 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
}
.display-2 > .mbr-iconfont {
  font-size: 2.88rem;
}
.display-4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
}
.display-5 > .mbr-iconfont {
  font-size: 1.92rem;
}
.display-7 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.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-2 {
    font-size: 1.44rem;
    font-size: calc( 1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}
.btn-md {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.btn-lg {
  padding: 0.8rem 2rem;
  border-radius: 0.25rem;
}
.bg-primary {
  background-color: #ffffff !important;
}
.bg-success {
  background-color: #6b9b2d !important;
}
.bg-info {
  background-color: #f79608 !important;
}
.bg-warning {
  background-color: #c1c1c1 !important;
}
.bg-danger {
  background-color: #444444 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #1aa071 !important;
  border-color: #1aa071 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #f79608 !important;
  border-color: #f79608 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #ad6906 !important;
  border-color: #ad6906 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #ad6906 !important;
  border-color: #ad6906 !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #6b9b2d !important;
  border-color: #6b9b2d !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #42601c !important;
  border-color: #42601c !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #42601c !important;
  border-color: #42601c !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9b9b9b !important;
  border-color: #9b9b9b !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #444444 !important;
  border-color: #444444 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #1e1e1e !important;
  border-color: #1e1e1e !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  transition: all .5s;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  transition: all .5s;
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  transition: all .5s;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  transition: all .5s;
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none !important;
  border-color: #cccccc !important;
  color: #cccccc !important;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none !important;
  border-color: #178a61 !important;
  color: #178a61 !important;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #2bdc9d !important;
  border-color: #2bdc9d !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none !important;
  border-color: #945a05 !important;
  color: #945a05 !important;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff !important;
  background-color: #f79608 !important;
  border-color: #f79608 !important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #f79608 !important;
  border-color: #f79608 !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none !important;
  border-color: #344c16 !important;
  color: #344c16 !important;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff !important;
  background-color: #6b9b2d !important;
  border-color: #6b9b2d !important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #6b9b2d !important;
  border-color: #6b9b2d !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none !important;
  border-color: #8e8e8e !important;
  color: #8e8e8e !important;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #c1c1c1 !important;
  border-color: #c1c1c1 !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none !important;
  border-color: #111111 !important;
  color: #111111 !important;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #444444 !important;
  border-color: #444444 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none !important;
  border-color: #000000 !important;
  color: #000000 !important;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #ffffff !important;
}
.text-secondary {
  color: #2bdc9d !important;
}
.text-success {
  color: #6b9b2d !important;
}
.text-info {
  color: #f79608 !important;
}
.text-warning {
  color: #c1c1c1 !important;
}
.text-danger {
  color: #444444 !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: #178a61 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #344c16 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #945a05 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #8e8e8e !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #111111 !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: #6b9b2d;
}
.alert-info {
  background-color: #f79608;
}
.alert-warning {
  background-color: #c1c1c1;
}
.alert-danger {
  background-color: #444444;
}
.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #8c8c8c;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
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: #aad672;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #fdeace;
}
.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: #b7b7b7;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
.mbr-arrow-up a {
  width: 61px;
  height: 61px;
}
#scrollToTop a {
  background: #188ef4;
}
#scrollToTop a i:before {
  content: '';
  position: absolute;
  height: 40%;
  top: 25%;
  background: #ffffff;
  width: 3%;
  left: calc(50% - 1px);
}
#scrollToTop a i:after {
  content: '';
  position: absolute;
  display: block;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  width: 40%;
  height: 40%;
  left: 30%;
  bottom: 30%;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mbr-arrow i {
  color: #188ef4;
}
.form-control {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
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;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #ffffff;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #ffffff;
}
.btn-social + .btn {
  margin-left: .1rem;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ffffff;
  color: #000000;
}
.jq-number__spin {
  background-color: #ffffff;
}
.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: #000000 !important;
  background: #2bdc9d !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section) {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23ffffff' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLAt8Be14c {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-rLAt8Be14c .mbr-section-subtitle,
.cid-rLAt8Be14c .caption-text {
  color: #8d97ad;
}
.cid-rLAt8Be14c .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rLAt8Be14c .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: 0;
}
.cid-rLAt8Be14c .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-rLAt8Be14c .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rUa2qgVtjD {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #6b9b2d;
}
.cid-rUa2qgVtjD .mbr-iconfont {
  font-size: 34px;
  transition: color .3s;
  padding: 1.5rem;
  position: absolute;
  top: 0;
  color: #fff;
  margin-top: -2.5rem;
  border-radius: 50%;
}
.cid-rUa2qgVtjD .mbr-section-title {
  margin: 0;
}
.cid-rUa2qgVtjD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-rUa2qgVtjD .card-img {
  text-align: inherit;
}
.cid-rUa2qgVtjD .card-img span {
  background: linear-gradient(90deg, #f79608, #6b9b2d);
}
.cid-rUa2qgVtjD .mbr-text {
  color: #8d97ad;
}
.cid-rUa2qgVtjD .wrapper {
  border-radius: .25rem;
  padding: 2rem;
  background: #fff;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
@media (max-width: 991px) {
  .cid-rUa2qgVtjD .wrapper {
    margin-bottom: 5rem;
  }
}
.cid-rLAw9sC30D {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rLAw9sC30D .row {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-align-items: stretch;
  align-items: stretch;
}
.cid-rLAw9sC30D .content-panel {
  padding: 2rem;
  background-color: #f79608;
  border-radius: .25rem;
  overflow: hidden;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-rLAw9sC30D .content-block {
  color: #efefef;
}
@media (min-width: 992px) {
  .cid-rLAw9sC30D .form-group,
  .cid-rLAw9sC30D .input-group-btn {
    padding-left: .5rem;
    padding-right: .5rem;
  }
}
.cid-rLAw9sC30D .form-control {
  border-radius: .25rem !important;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  min-height: 40px;
}
.cid-rLAw9sC30D textarea.form-control {
  min-height: 170px;
}
@media (max-width: 768px) {
  .cid-rLAw9sC30D .main-row {
    -webkit-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .cid-rLAw9sC30D .text-block {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
.cid-sznOGVr193 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #6b9b2d;
}
.cid-sznOGVr193 .mbr-text {
  color: #ffffff;
}
.cid-s27fwNfce1 {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27fwNfce1 .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s26k41xSEq {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s26k41xSEq .p1 {
  text-align: center;
}
.cid-s26k41xSEq .p2 {
  text-align: left;
}
.cid-s26k41xSEq .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s26k41xSEq .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s26k41xSEq .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s26k41xSEq .price-term {
  margin-left: -5px;
}
.cid-s26k41xSEq .pt2 {
  padding-top: 2rem;
}
.cid-s26k41xSEq .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s26k41xSEq .plan-descr {
  color: #444444;
}
.cid-s26k41xSEq .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s26k41xSEq .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s26k41xSEq .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s26k41xSEq .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s26k41xSEq .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s26k41xSEq .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s26k41xSEq .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s26k41xSEq .plan-header,
.cid-s26k41xSEq .plan-body {
  background-color: #cccccc;
}
.cid-s26k41xSEq .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s26k41xSEq .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s26k41xSEq .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s26k41xSEq .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s26k41xSEq .plan-subtitle {
  color: #000000;
}
.cid-s26k41xSEq UL {
  color: #000000;
  text-align: center;
}
.cid-s26k41xSEq P {
  text-align: left;
}
.cid-rL8Bo0ro4t {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-rL8Bo0ro4t .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s276cVJcPE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s276cVJcPE .mbr-iconfont {
  color: #8d97ad;
}
.cid-s276cVJcPE .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s276cVJcPE .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s276cVJcPE .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s276cVJcPE .card-title {
  margin-bottom: 0.3rem;
}
.cid-s276cVJcPE .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s276cVJcPE .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s276cVJcPE .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s276cVJcPE .mbr-text,
.cid-s276cVJcPE .social-links {
  color: #000000;
}
.cid-rLj5ZlLguk {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLj5ZlLguk .content {
    text-align: center;
  }
  .cid-rLj5ZlLguk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLj5ZlLguk .logo-subtitle {
  color: #8d97ad;
}
.cid-rLj5ZlLguk .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLj5ZlLguk .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLj5ZlLguk .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLj5ZlLguk .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLj5ZlLguk .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLj5ZlLguk .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLj5ZlLguk .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLj5ZlLguk .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLj5ZlLguk .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLj5ZlLguk .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLj5ZlLguk .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLj5ZlLguk .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLj5ZlLguk .list-item {
  display: flex;
}
.cid-rLj5ZlLguk .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLj5ZlLguk ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLj5ZlLguk ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLj5ZlLguk ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLj5ZlLguk .copyright > p {
  text-align: left;
}
.cid-rLj5ZlLguk P {
  color: #ffffff;
}
.cid-rLj5ZlLguk .column-title {
  color: #ffffff;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27Au2hgEa {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27Au2hgEa .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s27HBgitle {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s27HBgitle .p1 {
  text-align: center;
}
.cid-s27HBgitle .p2 {
  text-align: left;
}
.cid-s27HBgitle .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27HBgitle .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s27HBgitle .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s27HBgitle .price-term {
  margin-left: -5px;
}
.cid-s27HBgitle .pt2 {
  padding-top: 2rem;
}
.cid-s27HBgitle .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s27HBgitle .plan-descr {
  color: #444444;
}
.cid-s27HBgitle .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s27HBgitle .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s27HBgitle .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s27HBgitle .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27HBgitle .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s27HBgitle .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s27HBgitle .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s27HBgitle .plan-header,
.cid-s27HBgitle .plan-body {
  background-color: #cccccc;
}
.cid-s27HBgitle .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s27HBgitle .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s27HBgitle .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s27HBgitle .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s27HBgitle .plan-subtitle {
  color: #000000;
}
.cid-s27HBgitle UL {
  color: #000000;
  text-align: center;
}
.cid-s27HBgitle P {
  text-align: left;
}
.cid-s27AjUC8N2 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27AjUC8N2 .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27AiWkxsf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27AiWkxsf .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27AiWkxsf .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27AiWkxsf .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27AiWkxsf .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27AiWkxsf .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27AiWkxsf .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27AiWkxsf .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27AiWkxsf .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27AiWkxsf .mbr-text,
.cid-s27AiWkxsf .social-links {
  color: #000000;
}
.cid-rLzIjcKobU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIjcKobU .content {
    text-align: center;
  }
  .cid-rLzIjcKobU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIjcKobU .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIjcKobU .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIjcKobU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIjcKobU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIjcKobU .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIjcKobU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIjcKobU .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIjcKobU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIjcKobU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIjcKobU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIjcKobU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIjcKobU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIjcKobU .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIjcKobU .list-item {
  display: flex;
}
.cid-rLzIjcKobU .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIjcKobU ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIjcKobU ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIjcKobU ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIjcKobU .copyright > p {
  text-align: left;
}
.cid-rLzIjcKobU P {
  color: #ffffff;
}
.cid-rLzIjcKobU .column-title {
  color: #ffffff;
}
.cid-rLzIjeoG3J .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIjeoG3J .nav-item,
.cid-rLzIjeoG3J .nav-link,
.cid-rLzIjeoG3J .navbar-caption {
  font-weight: normal;
}
.cid-rLzIjeoG3J .nav-item:focus,
.cid-rLzIjeoG3J .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIjeoG3J .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIjeoG3J .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIjeoG3J .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIjeoG3J .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIjeoG3J .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIjeoG3J .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIjeoG3J .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-rLzIjeoG3J .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIjeoG3J .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIjeoG3J .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIjeoG3J .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIjeoG3J .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIjeoG3J .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIjeoG3J .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIjeoG3J .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIjeoG3J .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIjeoG3J .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIjeoG3J .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIjeoG3J .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIjeoG3J .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIjeoG3J .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIjeoG3J .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIjeoG3J .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIjeoG3J .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIjeoG3J .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIjeoG3J .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIjeoG3J .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIjeoG3J .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIjeoG3J .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIjeoG3J .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIjeoG3J .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIjeoG3J .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIjeoG3J .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIjeoG3J .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIjeoG3J .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIjeoG3J .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIjeoG3J .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIjeoG3J .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIjeoG3J .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIjeoG3J .dropdown-item.active,
.cid-rLzIjeoG3J .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIjeoG3J .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIjeoG3J .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIjeoG3J .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIjeoG3J .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIjeoG3J .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIjeoG3J ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIjeoG3J .navbar-buttons {
  text-align: center;
}
.cid-rLzIjeoG3J button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIjeoG3J button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIjeoG3J button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIjeoG3J button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIjeoG3J button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIjeoG3J button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIjeoG3J nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIjeoG3J nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIjeoG3J nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIjeoG3J nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIjeoG3J .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIjeoG3J a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIjeoG3J .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIjeoG3J .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIjeoG3J .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIjeoG3J .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIjeoG3J .navbar {
    height: 77px;
  }
  .cid-rLzIjeoG3J .navbar.opened {
    height: auto;
  }
  .cid-rLzIjeoG3J .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27AMwhcdg {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27AMwhcdg .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oCXRNvnQ {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oCXRNvnQ .p1 {
  text-align: center;
}
.cid-s2oCXRNvnQ .p2 {
  text-align: left;
}
.cid-s2oCXRNvnQ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oCXRNvnQ .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oCXRNvnQ .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oCXRNvnQ .price-term {
  margin-left: -5px;
}
.cid-s2oCXRNvnQ .pt2 {
  padding-top: 2rem;
}
.cid-s2oCXRNvnQ .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oCXRNvnQ .plan-descr {
  color: #444444;
}
.cid-s2oCXRNvnQ .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oCXRNvnQ .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oCXRNvnQ .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oCXRNvnQ .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oCXRNvnQ .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oCXRNvnQ .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oCXRNvnQ .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oCXRNvnQ .plan-header,
.cid-s2oCXRNvnQ .plan-body {
  background-color: #cccccc;
}
.cid-s2oCXRNvnQ .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oCXRNvnQ .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oCXRNvnQ .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oCXRNvnQ .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oCXRNvnQ .plan-subtitle {
  color: #000000;
}
.cid-s2oCXRNvnQ UL {
  color: #000000;
  text-align: center;
}
.cid-s2oCXRNvnQ P {
  text-align: left;
}
.cid-s27APvMvZJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27APvMvZJ .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27AQenK3q {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27AQenK3q .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27AQenK3q .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27AQenK3q .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27AQenK3q .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27AQenK3q .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27AQenK3q .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27AQenK3q .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27AQenK3q .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27AQenK3q .mbr-text,
.cid-s27AQenK3q .social-links {
  color: #000000;
}
.cid-rLzIlvz9Mx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIlvz9Mx .content {
    text-align: center;
  }
  .cid-rLzIlvz9Mx .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIlvz9Mx .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIlvz9Mx .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIlvz9Mx .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIlvz9Mx .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIlvz9Mx .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIlvz9Mx .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIlvz9Mx .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIlvz9Mx .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIlvz9Mx .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIlvz9Mx .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIlvz9Mx .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIlvz9Mx .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIlvz9Mx .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIlvz9Mx .list-item {
  display: flex;
}
.cid-rLzIlvz9Mx .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIlvz9Mx ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIlvz9Mx ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIlvz9Mx ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIlvz9Mx .copyright > p {
  text-align: left;
}
.cid-rLzIlvz9Mx P {
  color: #ffffff;
}
.cid-rLzIlvz9Mx .column-title {
  color: #ffffff;
}
.cid-rLzIlyetLn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIlyetLn .nav-item,
.cid-rLzIlyetLn .nav-link,
.cid-rLzIlyetLn .navbar-caption {
  font-weight: normal;
}
.cid-rLzIlyetLn .nav-item:focus,
.cid-rLzIlyetLn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIlyetLn .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIlyetLn .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIlyetLn .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIlyetLn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIlyetLn .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIlyetLn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIlyetLn .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-rLzIlyetLn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIlyetLn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIlyetLn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIlyetLn .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIlyetLn .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIlyetLn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIlyetLn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIlyetLn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIlyetLn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIlyetLn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIlyetLn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIlyetLn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIlyetLn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIlyetLn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIlyetLn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIlyetLn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIlyetLn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIlyetLn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIlyetLn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIlyetLn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIlyetLn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIlyetLn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIlyetLn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIlyetLn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIlyetLn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIlyetLn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIlyetLn .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIlyetLn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIlyetLn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIlyetLn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIlyetLn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIlyetLn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIlyetLn .dropdown-item.active,
.cid-rLzIlyetLn .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIlyetLn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIlyetLn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIlyetLn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIlyetLn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIlyetLn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIlyetLn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIlyetLn .navbar-buttons {
  text-align: center;
}
.cid-rLzIlyetLn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIlyetLn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIlyetLn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIlyetLn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIlyetLn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIlyetLn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIlyetLn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIlyetLn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIlyetLn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIlyetLn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIlyetLn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIlyetLn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIlyetLn .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIlyetLn .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIlyetLn .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIlyetLn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIlyetLn .navbar {
    height: 77px;
  }
  .cid-rLzIlyetLn .navbar.opened {
    height: auto;
  }
  .cid-rLzIlyetLn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27CYfdthx {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27CYfdthx .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oD3ocxrS {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oD3ocxrS .p1 {
  text-align: center;
}
.cid-s2oD3ocxrS .p2 {
  text-align: left;
}
.cid-s2oD3ocxrS .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oD3ocxrS .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oD3ocxrS .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oD3ocxrS .price-term {
  margin-left: -5px;
}
.cid-s2oD3ocxrS .pt2 {
  padding-top: 2rem;
}
.cid-s2oD3ocxrS .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oD3ocxrS .plan-descr {
  color: #444444;
}
.cid-s2oD3ocxrS .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oD3ocxrS .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oD3ocxrS .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oD3ocxrS .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oD3ocxrS .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oD3ocxrS .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oD3ocxrS .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oD3ocxrS .plan-header,
.cid-s2oD3ocxrS .plan-body {
  background-color: #cccccc;
}
.cid-s2oD3ocxrS .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oD3ocxrS .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oD3ocxrS .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oD3ocxrS .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oD3ocxrS .plan-subtitle {
  color: #000000;
}
.cid-s2oD3ocxrS UL {
  color: #000000;
  text-align: center;
}
.cid-s2oD3ocxrS P {
  text-align: left;
}
.cid-s27D3IKgxV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27D3IKgxV .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27D4gb8hY {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27D4gb8hY .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27D4gb8hY .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27D4gb8hY .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27D4gb8hY .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27D4gb8hY .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27D4gb8hY .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27D4gb8hY .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27D4gb8hY .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27D4gb8hY .mbr-text,
.cid-s27D4gb8hY .social-links {
  color: #000000;
}
.cid-rLzIpGe3wT {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIpGe3wT .content {
    text-align: center;
  }
  .cid-rLzIpGe3wT .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIpGe3wT .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIpGe3wT .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIpGe3wT .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIpGe3wT .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIpGe3wT .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIpGe3wT .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIpGe3wT .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIpGe3wT .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIpGe3wT .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIpGe3wT .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIpGe3wT .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIpGe3wT .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIpGe3wT .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIpGe3wT .list-item {
  display: flex;
}
.cid-rLzIpGe3wT .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIpGe3wT ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIpGe3wT ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIpGe3wT ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIpGe3wT .copyright > p {
  text-align: left;
}
.cid-rLzIpGe3wT P {
  color: #ffffff;
}
.cid-rLzIpGe3wT .column-title {
  color: #ffffff;
}
.cid-rLzIpJ7KGI .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIpJ7KGI .nav-item,
.cid-rLzIpJ7KGI .nav-link,
.cid-rLzIpJ7KGI .navbar-caption {
  font-weight: normal;
}
.cid-rLzIpJ7KGI .nav-item:focus,
.cid-rLzIpJ7KGI .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIpJ7KGI .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIpJ7KGI .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIpJ7KGI .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIpJ7KGI .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIpJ7KGI .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIpJ7KGI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIpJ7KGI .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-rLzIpJ7KGI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIpJ7KGI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIpJ7KGI .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIpJ7KGI .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIpJ7KGI .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIpJ7KGI .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIpJ7KGI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIpJ7KGI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIpJ7KGI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIpJ7KGI .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIpJ7KGI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIpJ7KGI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIpJ7KGI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIpJ7KGI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIpJ7KGI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIpJ7KGI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIpJ7KGI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIpJ7KGI .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIpJ7KGI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIpJ7KGI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIpJ7KGI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIpJ7KGI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIpJ7KGI .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIpJ7KGI .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIpJ7KGI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIpJ7KGI .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIpJ7KGI .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIpJ7KGI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIpJ7KGI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIpJ7KGI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIpJ7KGI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIpJ7KGI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIpJ7KGI .dropdown-item.active,
.cid-rLzIpJ7KGI .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIpJ7KGI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIpJ7KGI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIpJ7KGI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIpJ7KGI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIpJ7KGI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIpJ7KGI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIpJ7KGI .navbar-buttons {
  text-align: center;
}
.cid-rLzIpJ7KGI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIpJ7KGI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIpJ7KGI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIpJ7KGI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIpJ7KGI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIpJ7KGI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIpJ7KGI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIpJ7KGI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIpJ7KGI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIpJ7KGI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIpJ7KGI .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIpJ7KGI a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIpJ7KGI .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIpJ7KGI .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIpJ7KGI .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIpJ7KGI .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIpJ7KGI .navbar {
    height: 77px;
  }
  .cid-rLzIpJ7KGI .navbar.opened {
    height: auto;
  }
  .cid-rLzIpJ7KGI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27BB74fgR {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27BB74fgR .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oAm4GYQs {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oAm4GYQs .p1 {
  text-align: center;
}
.cid-s2oAm4GYQs .p2 {
  text-align: left;
}
.cid-s2oAm4GYQs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oAm4GYQs .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oAm4GYQs .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oAm4GYQs .price-term {
  margin-left: -5px;
}
.cid-s2oAm4GYQs .pt2 {
  padding-top: 2rem;
}
.cid-s2oAm4GYQs .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oAm4GYQs .plan-descr {
  color: #444444;
}
.cid-s2oAm4GYQs .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oAm4GYQs .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oAm4GYQs .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oAm4GYQs .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oAm4GYQs .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oAm4GYQs .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oAm4GYQs .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oAm4GYQs .plan-header,
.cid-s2oAm4GYQs .plan-body {
  background-color: #cccccc;
}
.cid-s2oAm4GYQs .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oAm4GYQs .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oAm4GYQs .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oAm4GYQs .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oAm4GYQs .plan-subtitle {
  color: #000000;
}
.cid-s2oAm4GYQs UL {
  color: #000000;
  text-align: center;
}
.cid-s2oAm4GYQs P {
  text-align: left;
}
.cid-s27BzaQpQV {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27BzaQpQV .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27Bx8y5TZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27Bx8y5TZ .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27Bx8y5TZ .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27Bx8y5TZ .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27Bx8y5TZ .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27Bx8y5TZ .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27Bx8y5TZ .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27Bx8y5TZ .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27Bx8y5TZ .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27Bx8y5TZ .mbr-text,
.cid-s27Bx8y5TZ .social-links {
  color: #000000;
}
.cid-rLzIr8KlfE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIr8KlfE .content {
    text-align: center;
  }
  .cid-rLzIr8KlfE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIr8KlfE .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIr8KlfE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIr8KlfE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIr8KlfE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIr8KlfE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIr8KlfE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIr8KlfE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIr8KlfE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIr8KlfE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIr8KlfE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIr8KlfE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIr8KlfE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIr8KlfE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIr8KlfE .list-item {
  display: flex;
}
.cid-rLzIr8KlfE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIr8KlfE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIr8KlfE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIr8KlfE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIr8KlfE .copyright > p {
  text-align: left;
}
.cid-rLzIr8KlfE P {
  color: #ffffff;
}
.cid-rLzIr8KlfE .column-title {
  color: #ffffff;
}
.cid-rLzIraq3qL .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIraq3qL .nav-item,
.cid-rLzIraq3qL .nav-link,
.cid-rLzIraq3qL .navbar-caption {
  font-weight: normal;
}
.cid-rLzIraq3qL .nav-item:focus,
.cid-rLzIraq3qL .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIraq3qL .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIraq3qL .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIraq3qL .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIraq3qL .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIraq3qL .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIraq3qL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIraq3qL .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-rLzIraq3qL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIraq3qL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIraq3qL .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIraq3qL .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIraq3qL .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIraq3qL .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIraq3qL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIraq3qL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIraq3qL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIraq3qL .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIraq3qL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIraq3qL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIraq3qL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIraq3qL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIraq3qL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIraq3qL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIraq3qL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIraq3qL .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIraq3qL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIraq3qL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIraq3qL .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIraq3qL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIraq3qL .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIraq3qL .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIraq3qL .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIraq3qL .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIraq3qL .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIraq3qL .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIraq3qL .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIraq3qL .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIraq3qL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIraq3qL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIraq3qL .dropdown-item.active,
.cid-rLzIraq3qL .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIraq3qL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIraq3qL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIraq3qL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIraq3qL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIraq3qL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIraq3qL ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIraq3qL .navbar-buttons {
  text-align: center;
}
.cid-rLzIraq3qL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIraq3qL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIraq3qL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIraq3qL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIraq3qL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIraq3qL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIraq3qL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIraq3qL nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIraq3qL nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIraq3qL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIraq3qL .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIraq3qL a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIraq3qL .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIraq3qL .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIraq3qL .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIraq3qL .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIraq3qL .navbar {
    height: 77px;
  }
  .cid-rLzIraq3qL .navbar.opened {
    height: auto;
  }
  .cid-rLzIraq3qL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27DbabGMs {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27DbabGMs .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oDiFHHMx {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oDiFHHMx .p1 {
  text-align: center;
}
.cid-s2oDiFHHMx .p2 {
  text-align: left;
}
.cid-s2oDiFHHMx .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oDiFHHMx .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oDiFHHMx .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oDiFHHMx .price-term {
  margin-left: -5px;
}
.cid-s2oDiFHHMx .pt2 {
  padding-top: 2rem;
}
.cid-s2oDiFHHMx .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oDiFHHMx .plan-descr {
  color: #444444;
}
.cid-s2oDiFHHMx .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oDiFHHMx .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oDiFHHMx .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oDiFHHMx .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oDiFHHMx .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oDiFHHMx .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oDiFHHMx .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oDiFHHMx .plan-header,
.cid-s2oDiFHHMx .plan-body {
  background-color: #cccccc;
}
.cid-s2oDiFHHMx .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oDiFHHMx .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oDiFHHMx .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oDiFHHMx .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oDiFHHMx .plan-subtitle {
  color: #000000;
}
.cid-s2oDiFHHMx UL {
  color: #000000;
  text-align: center;
}
.cid-s2oDiFHHMx P {
  text-align: left;
}
.cid-s27DcFJnfM {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27DcFJnfM .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27DdaYDPC {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27DdaYDPC .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27DdaYDPC .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27DdaYDPC .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27DdaYDPC .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27DdaYDPC .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27DdaYDPC .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27DdaYDPC .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27DdaYDPC .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27DdaYDPC .mbr-text,
.cid-s27DdaYDPC .social-links {
  color: #000000;
}
.cid-rLzIsxKWBv {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIsxKWBv .content {
    text-align: center;
  }
  .cid-rLzIsxKWBv .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIsxKWBv .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIsxKWBv .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIsxKWBv .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIsxKWBv .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIsxKWBv .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIsxKWBv .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIsxKWBv .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIsxKWBv .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIsxKWBv .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIsxKWBv .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIsxKWBv .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIsxKWBv .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIsxKWBv .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIsxKWBv .list-item {
  display: flex;
}
.cid-rLzIsxKWBv .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIsxKWBv ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIsxKWBv ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIsxKWBv ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIsxKWBv .copyright > p {
  text-align: left;
}
.cid-rLzIsxKWBv P {
  color: #ffffff;
}
.cid-rLzIsxKWBv .column-title {
  color: #ffffff;
}
.cid-rLzIsziqc8 .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIsziqc8 .nav-item,
.cid-rLzIsziqc8 .nav-link,
.cid-rLzIsziqc8 .navbar-caption {
  font-weight: normal;
}
.cid-rLzIsziqc8 .nav-item:focus,
.cid-rLzIsziqc8 .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIsziqc8 .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIsziqc8 .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIsziqc8 .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIsziqc8 .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIsziqc8 .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIsziqc8 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIsziqc8 .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-rLzIsziqc8 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIsziqc8 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIsziqc8 .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIsziqc8 .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIsziqc8 .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIsziqc8 .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIsziqc8 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIsziqc8 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIsziqc8 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIsziqc8 .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIsziqc8 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIsziqc8 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIsziqc8 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIsziqc8 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIsziqc8 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIsziqc8 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIsziqc8 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIsziqc8 .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIsziqc8 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIsziqc8 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIsziqc8 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIsziqc8 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIsziqc8 .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIsziqc8 .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIsziqc8 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIsziqc8 .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIsziqc8 .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIsziqc8 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIsziqc8 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIsziqc8 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIsziqc8 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIsziqc8 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIsziqc8 .dropdown-item.active,
.cid-rLzIsziqc8 .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIsziqc8 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIsziqc8 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIsziqc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIsziqc8 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIsziqc8 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIsziqc8 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIsziqc8 .navbar-buttons {
  text-align: center;
}
.cid-rLzIsziqc8 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIsziqc8 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIsziqc8 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIsziqc8 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIsziqc8 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIsziqc8 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIsziqc8 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIsziqc8 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIsziqc8 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIsziqc8 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIsziqc8 .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIsziqc8 a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIsziqc8 .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIsziqc8 .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIsziqc8 .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIsziqc8 .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIsziqc8 .navbar {
    height: 77px;
  }
  .cid-rLzIsziqc8 .navbar.opened {
    height: auto;
  }
  .cid-rLzIsziqc8 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27DmmLCvd {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27DmmLCvd .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oDnU3DLD {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oDnU3DLD .p1 {
  text-align: center;
}
.cid-s2oDnU3DLD .p2 {
  text-align: left;
}
.cid-s2oDnU3DLD .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oDnU3DLD .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oDnU3DLD .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oDnU3DLD .price-term {
  margin-left: -5px;
}
.cid-s2oDnU3DLD .pt2 {
  padding-top: 2rem;
}
.cid-s2oDnU3DLD .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oDnU3DLD .plan-descr {
  color: #444444;
}
.cid-s2oDnU3DLD .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oDnU3DLD .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oDnU3DLD .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oDnU3DLD .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oDnU3DLD .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oDnU3DLD .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oDnU3DLD .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oDnU3DLD .plan-header,
.cid-s2oDnU3DLD .plan-body {
  background-color: #cccccc;
}
.cid-s2oDnU3DLD .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oDnU3DLD .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oDnU3DLD .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oDnU3DLD .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oDnU3DLD .plan-subtitle {
  color: #000000;
}
.cid-s2oDnU3DLD UL {
  color: #000000;
  text-align: center;
}
.cid-s2oDnU3DLD P {
  text-align: left;
}
.cid-s27DolVhOr {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27DolVhOr .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27DpcSMds {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27DpcSMds .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27DpcSMds .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27DpcSMds .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27DpcSMds .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27DpcSMds .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27DpcSMds .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27DpcSMds .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27DpcSMds .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27DpcSMds .mbr-text,
.cid-s27DpcSMds .social-links {
  color: #000000;
}
.cid-rLzIwlf1aa {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIwlf1aa .content {
    text-align: center;
  }
  .cid-rLzIwlf1aa .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIwlf1aa .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIwlf1aa .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIwlf1aa .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIwlf1aa .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIwlf1aa .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIwlf1aa .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIwlf1aa .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIwlf1aa .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIwlf1aa .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIwlf1aa .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIwlf1aa .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIwlf1aa .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIwlf1aa .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIwlf1aa .list-item {
  display: flex;
}
.cid-rLzIwlf1aa .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIwlf1aa ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIwlf1aa ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIwlf1aa ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIwlf1aa .copyright > p {
  text-align: left;
}
.cid-rLzIwlf1aa P {
  color: #ffffff;
}
.cid-rLzIwlf1aa .column-title {
  color: #ffffff;
}
.cid-rLzIwmRmtQ .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIwmRmtQ .nav-item,
.cid-rLzIwmRmtQ .nav-link,
.cid-rLzIwmRmtQ .navbar-caption {
  font-weight: normal;
}
.cid-rLzIwmRmtQ .nav-item:focus,
.cid-rLzIwmRmtQ .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIwmRmtQ .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIwmRmtQ .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIwmRmtQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIwmRmtQ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIwmRmtQ .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIwmRmtQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIwmRmtQ .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-rLzIwmRmtQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIwmRmtQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIwmRmtQ .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIwmRmtQ .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIwmRmtQ .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIwmRmtQ .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIwmRmtQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIwmRmtQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIwmRmtQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIwmRmtQ .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIwmRmtQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIwmRmtQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIwmRmtQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIwmRmtQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIwmRmtQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIwmRmtQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIwmRmtQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIwmRmtQ .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIwmRmtQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIwmRmtQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIwmRmtQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIwmRmtQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIwmRmtQ .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIwmRmtQ .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIwmRmtQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIwmRmtQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIwmRmtQ .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIwmRmtQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIwmRmtQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIwmRmtQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIwmRmtQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIwmRmtQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIwmRmtQ .dropdown-item.active,
.cid-rLzIwmRmtQ .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIwmRmtQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIwmRmtQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIwmRmtQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIwmRmtQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIwmRmtQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIwmRmtQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIwmRmtQ .navbar-buttons {
  text-align: center;
}
.cid-rLzIwmRmtQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIwmRmtQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIwmRmtQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIwmRmtQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIwmRmtQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIwmRmtQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIwmRmtQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIwmRmtQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIwmRmtQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIwmRmtQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIwmRmtQ .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIwmRmtQ a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIwmRmtQ .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIwmRmtQ .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIwmRmtQ .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIwmRmtQ .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIwmRmtQ .navbar {
    height: 77px;
  }
  .cid-rLzIwmRmtQ .navbar.opened {
    height: auto;
  }
  .cid-rLzIwmRmtQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27Dz7ywpD {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27Dz7ywpD .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s27DzA2Mg1 {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s27DzA2Mg1 .p1 {
  text-align: center;
}
.cid-s27DzA2Mg1 .p2 {
  text-align: left;
}
.cid-s27DzA2Mg1 .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27DzA2Mg1 .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s27DzA2Mg1 .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s27DzA2Mg1 .price-term {
  margin-left: -5px;
}
.cid-s27DzA2Mg1 .pt2 {
  padding-top: 2rem;
}
.cid-s27DzA2Mg1 .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s27DzA2Mg1 .plan-descr {
  color: #444444;
}
.cid-s27DzA2Mg1 .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s27DzA2Mg1 .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s27DzA2Mg1 .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s27DzA2Mg1 .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27DzA2Mg1 .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s27DzA2Mg1 .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s27DzA2Mg1 .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s27DzA2Mg1 .plan-header,
.cid-s27DzA2Mg1 .plan-body {
  background-color: #cccccc;
}
.cid-s27DzA2Mg1 .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s27DzA2Mg1 .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s27DzA2Mg1 .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s27DzA2Mg1 .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s27DzA2Mg1 .plan-subtitle {
  color: #000000;
}
.cid-s27DzA2Mg1 UL {
  color: #000000;
  text-align: center;
}
.cid-s27DzA2Mg1 P {
  text-align: left;
}
.cid-s27DAx278p {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27DAx278p .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27DBaCrcz {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27DBaCrcz .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27DBaCrcz .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27DBaCrcz .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27DBaCrcz .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27DBaCrcz .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27DBaCrcz .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27DBaCrcz .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27DBaCrcz .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27DBaCrcz .mbr-text,
.cid-s27DBaCrcz .social-links {
  color: #000000;
}
.cid-rLzIyHemKw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzIyHemKw .content {
    text-align: center;
  }
  .cid-rLzIyHemKw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzIyHemKw .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzIyHemKw .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzIyHemKw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzIyHemKw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzIyHemKw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzIyHemKw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzIyHemKw .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzIyHemKw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzIyHemKw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzIyHemKw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzIyHemKw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzIyHemKw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzIyHemKw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzIyHemKw .list-item {
  display: flex;
}
.cid-rLzIyHemKw .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzIyHemKw ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzIyHemKw ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzIyHemKw ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzIyHemKw .copyright > p {
  text-align: left;
}
.cid-rLzIyHemKw P {
  color: #ffffff;
}
.cid-rLzIyHemKw .column-title {
  color: #ffffff;
}
.cid-rLzIyIkL5p .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzIyIkL5p .nav-item,
.cid-rLzIyIkL5p .nav-link,
.cid-rLzIyIkL5p .navbar-caption {
  font-weight: normal;
}
.cid-rLzIyIkL5p .nav-item:focus,
.cid-rLzIyIkL5p .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzIyIkL5p .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzIyIkL5p .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzIyIkL5p .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzIyIkL5p .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzIyIkL5p .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzIyIkL5p .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzIyIkL5p .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-rLzIyIkL5p .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzIyIkL5p .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzIyIkL5p .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzIyIkL5p .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzIyIkL5p .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzIyIkL5p .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzIyIkL5p .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzIyIkL5p .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzIyIkL5p .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzIyIkL5p .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzIyIkL5p .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzIyIkL5p .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzIyIkL5p .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzIyIkL5p .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzIyIkL5p .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzIyIkL5p .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzIyIkL5p .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzIyIkL5p .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzIyIkL5p .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzIyIkL5p .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzIyIkL5p .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzIyIkL5p .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzIyIkL5p .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzIyIkL5p .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzIyIkL5p .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzIyIkL5p .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzIyIkL5p .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzIyIkL5p .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzIyIkL5p .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzIyIkL5p .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzIyIkL5p .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzIyIkL5p .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzIyIkL5p .dropdown-item.active,
.cid-rLzIyIkL5p .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzIyIkL5p .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzIyIkL5p .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzIyIkL5p .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzIyIkL5p .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzIyIkL5p .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzIyIkL5p ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzIyIkL5p .navbar-buttons {
  text-align: center;
}
.cid-rLzIyIkL5p button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzIyIkL5p button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzIyIkL5p button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzIyIkL5p button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIyIkL5p button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzIyIkL5p button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzIyIkL5p nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIyIkL5p nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzIyIkL5p nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzIyIkL5p nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzIyIkL5p .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzIyIkL5p a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzIyIkL5p .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzIyIkL5p .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzIyIkL5p .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzIyIkL5p .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzIyIkL5p .navbar {
    height: 77px;
  }
  .cid-rLzIyIkL5p .navbar.opened {
    height: auto;
  }
  .cid-rLzIyIkL5p .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s27BLIScVS {
  padding-top: 75px;
  padding-bottom: 75px;
  background: linear-gradient(90deg, #efefef, #efefef);
}
.cid-s27BLIScVS .mbr-overlay {
  background: #1dc8cc;
  background: linear-gradient(90deg, #1dc8cc, #188ef4);
}
.cid-s2oAuNFbGs {
  padding-top: 120px;
  padding-bottom: 45px;
  background: linear-gradient(45deg, #efefef, #efefef);
}
.cid-s2oAuNFbGs .p1 {
  text-align: center;
}
.cid-s2oAuNFbGs .p2 {
  text-align: left;
}
.cid-s2oAuNFbGs .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s2oAuNFbGs .plan-body .btn-bgr {
  z-index: 0;
}
.cid-s2oAuNFbGs .list-group-item {
  padding: .5rem 3.25rem;
  background: transparent;
}
.cid-s2oAuNFbGs .price-term {
  margin-left: -5px;
}
.cid-s2oAuNFbGs .pt2 {
  padding-top: 2rem;
}
.cid-s2oAuNFbGs .plan-favorite {
  background-color: #f79608;
  width: 40%;
  border-radius: .25rem;
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -26px;
  margin-left: -20%;
}
.cid-s2oAuNFbGs .plan-descr {
  color: #444444;
}
.cid-s2oAuNFbGs .plan-price {
  margin-top: 2rem;
  color: #000000;
}
.cid-s2oAuNFbGs .plan-header {
  border-radius: .25rem .25rem 0 0;
  overflow: hidden;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oAuNFbGs .plan-body {
  border-radius: 0 0 .25rem .25rem;
  padding-right: 2rem;
  padding-left: 2rem;
}
.cid-s2oAuNFbGs .plan-card {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s2oAuNFbGs .plan {
  position: relative;
  max-width: 330px;
  padding-right: 0;
  padding-left: 0;
  color: #8d97ad;
}
.cid-s2oAuNFbGs .plan .list-group-item {
  position: relative;
  -webkit-justify-content: center;
  justify-content: center;
  border: 0;
}
.cid-s2oAuNFbGs .plan .list-group-item:last-child {
  border-radius: 8px;
}
.cid-s2oAuNFbGs .plan-header,
.cid-s2oAuNFbGs .plan-body {
  background-color: #cccccc;
}
.cid-s2oAuNFbGs .price-figure {
  font-weight: 300;
  color: #232323;
}
.cid-s2oAuNFbGs .price-value {
  font-weight: 300;
  vertical-align: top;
  line-height: 1;
  margin-right: -5px;
}
@media (max-width: 992px) {
  .cid-s2oAuNFbGs .plan {
    margin-bottom: 3rem !important;
  }
}
@media (max-width: 550px) {
  .cid-s2oAuNFbGs .price-figure {
    font-size: 4.25rem;
  }
}
.cid-s2oAuNFbGs .plan-subtitle {
  color: #000000;
}
.cid-s2oAuNFbGs UL {
  color: #000000;
  text-align: center;
}
.cid-s2oAuNFbGs P {
  text-align: left;
}
.cid-s27BNehuPq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-s27BNehuPq .mbr-text {
  color: #000000;
  text-align: justify;
  font-size: 12px;
}
.cid-s27BNT3Asy {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-s27BNT3Asy .mbr-iconfont {
  color: #8d97ad;
}
.cid-s27BNT3Asy .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-s27BNT3Asy .mbr-text {
  margin: 1.5rem 0;
  color: #8d97ad;
}
.cid-s27BNT3Asy .mbr-section-subtitle {
  color: #8d97ad;
}
.cid-s27BNT3Asy .card-title {
  margin-bottom: 0.3rem;
}
.cid-s27BNT3Asy .card-img {
  margin: 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s27BNT3Asy .img-icon {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-s27BNT3Asy .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-s27BNT3Asy .mbr-text,
.cid-s27BNT3Asy .social-links {
  color: #000000;
}
.cid-rLzICCIW25 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rLzICCIW25 .content {
    text-align: center;
  }
  .cid-rLzICCIW25 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rLzICCIW25 .logo-subtitle {
  color: #8d97ad;
}
.cid-rLzICCIW25 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rLzICCIW25 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rLzICCIW25 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rLzICCIW25 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rLzICCIW25 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rLzICCIW25 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rLzICCIW25 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rLzICCIW25 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rLzICCIW25 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rLzICCIW25 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rLzICCIW25 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rLzICCIW25 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rLzICCIW25 .list-item {
  display: flex;
}
.cid-rLzICCIW25 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rLzICCIW25 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rLzICCIW25 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rLzICCIW25 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rLzICCIW25 .copyright > p {
  text-align: left;
}
.cid-rLzICCIW25 P {
  color: #ffffff;
}
.cid-rLzICCIW25 .column-title {
  color: #ffffff;
}
.cid-rLzICEfTjn .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLzICEfTjn .nav-item,
.cid-rLzICEfTjn .nav-link,
.cid-rLzICEfTjn .navbar-caption {
  font-weight: normal;
}
.cid-rLzICEfTjn .nav-item:focus,
.cid-rLzICEfTjn .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLzICEfTjn .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLzICEfTjn .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLzICEfTjn .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLzICEfTjn .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLzICEfTjn .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLzICEfTjn .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLzICEfTjn .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-rLzICEfTjn .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLzICEfTjn .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLzICEfTjn .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLzICEfTjn .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLzICEfTjn .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLzICEfTjn .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLzICEfTjn .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLzICEfTjn .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLzICEfTjn .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLzICEfTjn .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLzICEfTjn .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLzICEfTjn .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLzICEfTjn .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLzICEfTjn .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLzICEfTjn .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLzICEfTjn .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLzICEfTjn .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLzICEfTjn .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLzICEfTjn .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLzICEfTjn .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLzICEfTjn .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLzICEfTjn .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLzICEfTjn .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLzICEfTjn .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLzICEfTjn .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLzICEfTjn .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLzICEfTjn .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLzICEfTjn .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLzICEfTjn .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLzICEfTjn .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLzICEfTjn .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLzICEfTjn .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLzICEfTjn .dropdown-item.active,
.cid-rLzICEfTjn .dropdown-item:active {
  background-color: transparent;
}
.cid-rLzICEfTjn .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLzICEfTjn .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLzICEfTjn .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLzICEfTjn .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLzICEfTjn .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLzICEfTjn ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLzICEfTjn .navbar-buttons {
  text-align: center;
}
.cid-rLzICEfTjn button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLzICEfTjn button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLzICEfTjn button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLzICEfTjn button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzICEfTjn button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLzICEfTjn button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLzICEfTjn nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzICEfTjn nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLzICEfTjn nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLzICEfTjn nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLzICEfTjn .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLzICEfTjn a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLzICEfTjn .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLzICEfTjn .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLzICEfTjn .soc-item {
  margin: .5rem .3rem;
}
.cid-rLzICEfTjn .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLzICEfTjn .navbar {
    height: 77px;
  }
  .cid-rLzICEfTjn .navbar.opened {
    height: auto;
  }
  .cid-rLzICEfTjn .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rM9WZaLn0x {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-rM9WZaLn0x .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
.cid-rSLWhuLiYM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rSLWhuLiYM .nav-item,
.cid-rSLWhuLiYM .nav-link,
.cid-rSLWhuLiYM .navbar-caption {
  font-weight: normal;
}
.cid-rSLWhuLiYM .nav-item:focus,
.cid-rSLWhuLiYM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rSLWhuLiYM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rSLWhuLiYM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rSLWhuLiYM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rSLWhuLiYM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rSLWhuLiYM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rSLWhuLiYM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rSLWhuLiYM .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-rSLWhuLiYM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rSLWhuLiYM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rSLWhuLiYM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rSLWhuLiYM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rSLWhuLiYM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rSLWhuLiYM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rSLWhuLiYM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rSLWhuLiYM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rSLWhuLiYM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rSLWhuLiYM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rSLWhuLiYM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rSLWhuLiYM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rSLWhuLiYM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rSLWhuLiYM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rSLWhuLiYM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rSLWhuLiYM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rSLWhuLiYM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rSLWhuLiYM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rSLWhuLiYM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rSLWhuLiYM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rSLWhuLiYM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rSLWhuLiYM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rSLWhuLiYM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rSLWhuLiYM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rSLWhuLiYM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rSLWhuLiYM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rSLWhuLiYM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rSLWhuLiYM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rSLWhuLiYM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rSLWhuLiYM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rSLWhuLiYM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rSLWhuLiYM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rSLWhuLiYM .dropdown-item.active,
.cid-rSLWhuLiYM .dropdown-item:active {
  background-color: transparent;
}
.cid-rSLWhuLiYM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rSLWhuLiYM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rSLWhuLiYM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rSLWhuLiYM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rSLWhuLiYM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rSLWhuLiYM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rSLWhuLiYM .navbar-buttons {
  text-align: center;
}
.cid-rSLWhuLiYM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rSLWhuLiYM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rSLWhuLiYM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rSLWhuLiYM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rSLWhuLiYM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rSLWhuLiYM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rSLWhuLiYM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rSLWhuLiYM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rSLWhuLiYM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rSLWhuLiYM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rSLWhuLiYM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rSLWhuLiYM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rSLWhuLiYM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rSLWhuLiYM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rSLWhuLiYM .soc-item {
  margin: .5rem .3rem;
}
.cid-rSLWhuLiYM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rSLWhuLiYM .navbar {
    height: 77px;
  }
  .cid-rSLWhuLiYM .navbar.opened {
    height: auto;
  }
  .cid-rSLWhuLiYM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSLWhwT2Ns {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSLWhwT2Ns .mbr-figure img {
  border-radius: .25rem;
}
.cid-rSLWhwT2Ns .mbr-text {
  color: #8d97ad;
}
.cid-rSLWhwT2Ns .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rSLWhwT2Ns .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rSLWhwT2Ns .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rSLWhwT2Ns .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rSLWhwT2Ns .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rSLWhwT2Ns .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rSLWhwT2Ns .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rSLWhwT2Ns .icon-description {
  margin-left: 1rem;
}
.cid-rSLWhwT2Ns a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rSLWhwT2Ns a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rSLWhwT2Ns .mbr-section-title,
  .cid-rSLWhwT2Ns .mbr-text {
    text-align: center;
  }
  .cid-rSLWhwT2Ns .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rSLWhwT2Ns .mbr-text,
.cid-rSLWhwT2Ns .mbr-section-btn {
  color: #000000;
}
.cid-rSLWhxWMDg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSLWhxWMDg .mbr-section-subtitle {
  color: #000000;
}
.cid-rSLWhylYjq {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-rSLWhylYjq .mbr-section-subtitle,
.cid-rSLWhylYjq .caption-text {
  color: #8d97ad;
}
.cid-rSLWhylYjq .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rSLWhylYjq .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: 0;
}
.cid-rSLWhylYjq .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-rSLWhylYjq .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rSLWhyJ0Ke {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSLWhyJ0Ke .mbr-section-subtitle {
  color: #000000;
}
.cid-rSLWhzUjhn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rSLWhzUjhn .content {
    text-align: center;
  }
  .cid-rSLWhzUjhn .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rSLWhzUjhn .logo-subtitle {
  color: #8d97ad;
}
.cid-rSLWhzUjhn .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rSLWhzUjhn .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rSLWhzUjhn .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rSLWhzUjhn .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rSLWhzUjhn .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rSLWhzUjhn .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rSLWhzUjhn .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rSLWhzUjhn .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rSLWhzUjhn .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rSLWhzUjhn .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rSLWhzUjhn .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rSLWhzUjhn .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rSLWhzUjhn .list-item {
  display: flex;
}
.cid-rSLWhzUjhn .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rSLWhzUjhn ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rSLWhzUjhn ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rSLWhzUjhn ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rSLWhzUjhn .copyright > p {
  text-align: left;
}
.cid-rSLWhzUjhn P {
  color: #ffffff;
}
.cid-rSLWhzUjhn .column-title {
  color: #ffffff;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rSLU1tts9h {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSLU1tts9h .mbr-figure img {
  border-radius: .25rem;
}
.cid-rSLU1tts9h .mbr-text {
  color: #8d97ad;
}
.cid-rSLU1tts9h .mbr-media {
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-rSLU1tts9h .play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 15px;
  border-color: transparent transparent transparent #ffffff;
  margin-right: -3px;
}
.cid-rSLU1tts9h .btn-play {
  box-shadow: 2px 8px 20px rgba(115, 128, 157, 0.3);
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  position: relative;
  background: #ff4f7b;
  width: 60px;
  height: 60px;
  border: 1px solid #ff4f7b;
  -webkit-border-radius: 50px;
  border-radius: 50px;
  text-align: center;
  line-height: 60px;
  font-size: 27px;
  cursor: pointer;
  display: inline-flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-transition: 0.15s ease-in-out;
  transition: 0.15s ease-in-out;
  -webkit-transition-property: color, background, border-color;
  transition-property: color, background, border-color;
}
.cid-rSLU1tts9h .modalWindow {
  display: none;
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-rSLU1tts9h .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-rSLU1tts9h .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-rSLU1tts9h .wrapper-video {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rSLU1tts9h .icon-description {
  margin-left: 1rem;
}
.cid-rSLU1tts9h a.close {
  position: absolute;
  right: 4vw;
  top: 4vh;
  color: #ffffff;
  z-index: 5000000;
  font-size: 37px;
  background: #000;
  padding: 20px;
  border-radius: 50%;
}
.cid-rSLU1tts9h a.close:hover {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-rSLU1tts9h .mbr-section-title,
  .cid-rSLU1tts9h .mbr-text {
    text-align: center;
  }
  .cid-rSLU1tts9h .wrapper-video {
    -webkit-justify-content: center !important;
    justify-content: center !important;
  }
}
.cid-rSLU1tts9h .mbr-text,
.cid-rSLU1tts9h .mbr-section-btn {
  color: #000000;
}
.cid-rSLUVmGJQD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-rSLUVmGJQD .mbr-section-subtitle {
  color: #000000;
}
.cid-rSLVFl0Kn9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #f4f8fa;
}
.cid-rSLVFl0Kn9 .mbr-section-subtitle,
.cid-rSLVFl0Kn9 .caption-text {
  color: #8d97ad;
}
.cid-rSLVFl0Kn9 .image-block {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  position: relative;
  margin: auto;
  width: 100% !important;
}
.cid-rSLVFl0Kn9 .image-block img {
  width: 100%;
  border-radius: .25rem;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: 0;
}
.cid-rSLVFl0Kn9 .image-block .img-caption {
  background: transparent;
  width: 100%;
  padding: 1rem 1rem;
}
.cid-rSLVFl0Kn9 .image-block .img-caption p {
  margin-bottom: 0;
}
.cid-rSLVN4jQjz {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
}
.cid-rSLVN4jQjz .mbr-section-subtitle {
  color: #000000;
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s24wOoEqcR {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #6b9b2d;
}
.cid-s24wOoEqcR .mbr-iconfont {
  font-size: 50px;
  transition: color .3s;
  padding: 1.5rem;
}
.cid-s24wOoEqcR .mbr-section-title {
  margin: 0;
  color: #000000;
}
.cid-s24wOoEqcR .mbr-section-subtitle {
  color: #000000;
}
.cid-s24wOoEqcR .card-img span {
  color: #000000;
}
.cid-s24wOoEqcR .row-item {
  margin-bottom: 2rem;
}
.cid-s24wOoEqcR .row-item:hover .wrapper {
  background: linear-gradient(90deg, #fa0505, #f79608);
  cursor: pointer;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  transition: all 0.3s;
}
.cid-s24wOoEqcR .row-item:hover .card-img span {
  color: #ffffff !important;
}
.cid-s24wOoEqcR .row-item:hover .mbr-card-title {
  color: #ffffff !important;
}
.cid-s24wOoEqcR .wrapper {
  padding: 1.5rem 1rem;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-s24wOoEqcR .mbr-card-title,
.cid-s24wOoEqcR .card-img {
  text-align: center;
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
#custom-html-9k {
  /* CONFIG STYLES Please do not delete and edit CSS styles below */
  /* IMPORTANT THIS STYLES MUST BE ON FINAL EMAIL */
  /*
END OF IMPORTANT
*/
  /* END CONFIG STYLES */
  /* RESPONSIVE STYLES Please do not delete and edit CSS styles below. If you don't need responsive layout, please delete this section. */
  /* END RESPONSIVE STYLES */
}
#custom-html-9k #outlook a {
  padding: 0;
}
#custom-html-9k .ExternalClass {
  width: 100%;
}
#custom-html-9k .ExternalClass,
#custom-html-9k .ExternalClass p,
#custom-html-9k .ExternalClass span,
#custom-html-9k .ExternalClass font,
#custom-html-9k .ExternalClass td,
#custom-html-9k .ExternalClass div {
  line-height: 100%;
}
#custom-html-9k .es-button {
  mso-style-priority: 100 !important;
  text-decoration: none !important;
}
#custom-html-9k a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
#custom-html-9k .es-desk-hidden {
  display: none;
  float: left;
  overflow: hidden;
  width: 0;
  max-height: 0;
  line-height: 0;
  mso-hide: all;
}
#custom-html-9k s {
  text-decoration: line-through;
}
#custom-html-9k html,
#custom-html-9k body {
  width: 100%;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
#custom-html-9k table {
  mso-table-lspace: 0pt;
  mso-table-rspace: 0pt;
  border-collapse: collapse;
  border-spacing: 0px;
}
#custom-html-9k table td,
#custom-html-9k html,
#custom-html-9k body,
#custom-html-9k .es-wrapper {
  padding: 0;
  Margin: 0;
}
#custom-html-9k .es-content,
#custom-html-9k .es-header,
#custom-html-9k .es-footer {
  table-layout: fixed !important;
  width: 100%;
}
#custom-html-9k img {
  display: block;
  border: 0;
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
}
#custom-html-9k table tr {
  border-collapse: collapse;
}
#custom-html-9k p,
#custom-html-9k hr {
  Margin: 0;
}
#custom-html-9k h1,
#custom-html-9k h2,
#custom-html-9k h3,
#custom-html-9k h4,
#custom-html-9k h5 {
  Margin: 0;
  line-height: 120%;
  mso-line-height-rule: exactly;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
}
#custom-html-9k p,
#custom-html-9k ul li,
#custom-html-9k ol li,
#custom-html-9k a {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  mso-line-height-rule: exactly;
}
#custom-html-9k .es-left {
  float: left;
}
#custom-html-9k .es-right {
  float: right;
}
#custom-html-9k .es-p5 {
  padding: 5px;
}
#custom-html-9k .es-p5t {
  padding-top: 5px;
}
#custom-html-9k .es-p5b {
  padding-bottom: 5px;
}
#custom-html-9k .es-p5l {
  padding-left: 5px;
}
#custom-html-9k .es-p5r {
  padding-right: 5px;
}
#custom-html-9k .es-p10 {
  padding: 10px;
}
#custom-html-9k .es-p10t {
  padding-top: 10px;
}
#custom-html-9k .es-p10b {
  padding-bottom: 10px;
}
#custom-html-9k .es-p10l {
  padding-left: 10px;
}
#custom-html-9k .es-p10r {
  padding-right: 10px;
}
#custom-html-9k .es-p15 {
  padding: 15px;
}
#custom-html-9k .es-p15t {
  padding-top: 15px;
}
#custom-html-9k .es-p15b {
  padding-bottom: 15px;
}
#custom-html-9k .es-p15l {
  padding-left: 15px;
}
#custom-html-9k .es-p15r {
  padding-right: 15px;
}
#custom-html-9k .es-p20 {
  padding: 20px;
}
#custom-html-9k .es-p20t {
  padding-top: 20px;
}
#custom-html-9k .es-p20b {
  padding-bottom: 20px;
}
#custom-html-9k .es-p20l {
  padding-left: 20px;
}
#custom-html-9k .es-p20r {
  padding-right: 20px;
}
#custom-html-9k .es-p25 {
  padding: 25px;
}
#custom-html-9k .es-p25t {
  padding-top: 25px;
}
#custom-html-9k .es-p25b {
  padding-bottom: 25px;
}
#custom-html-9k .es-p25l {
  padding-left: 25px;
}
#custom-html-9k .es-p25r {
  padding-right: 25px;
}
#custom-html-9k .es-p30 {
  padding: 30px;
}
#custom-html-9k .es-p30t {
  padding-top: 30px;
}
#custom-html-9k .es-p30b {
  padding-bottom: 30px;
}
#custom-html-9k .es-p30l {
  padding-left: 30px;
}
#custom-html-9k .es-p30r {
  padding-right: 30px;
}
#custom-html-9k .es-p35 {
  padding: 35px;
}
#custom-html-9k .es-p35t {
  padding-top: 35px;
}
#custom-html-9k .es-p35b {
  padding-bottom: 35px;
}
#custom-html-9k .es-p35l {
  padding-left: 35px;
}
#custom-html-9k .es-p35r {
  padding-right: 35px;
}
#custom-html-9k .es-p40 {
  padding: 40px;
}
#custom-html-9k .es-p40t {
  padding-top: 40px;
}
#custom-html-9k .es-p40b {
  padding-bottom: 40px;
}
#custom-html-9k .es-p40l {
  padding-left: 40px;
}
#custom-html-9k .es-p40r {
  padding-right: 40px;
}
#custom-html-9k .es-menu td {
  border: 0;
}
#custom-html-9k .es-menu td a img {
  display: inline-block !important;
}
#custom-html-9k a {
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
#custom-html-9k h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9k h1 a {
  font-size: 30px;
}
#custom-html-9k h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9k h2 a {
  font-size: 24px;
}
#custom-html-9k h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9k h3 a {
  font-size: 20px;
}
#custom-html-9k p,
#custom-html-9k ul li,
#custom-html-9k ol li {
  font-size: 14px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  line-height: 150%;
}
#custom-html-9k ul li,
#custom-html-9k ol li {
  Margin-bottom: 15px;
}
#custom-html-9k .es-menu td a {
  text-decoration: none;
  display: block;
}
#custom-html-9k .es-wrapper {
  width: 100%;
  height: 100%;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9k .es-wrapper-color {
  background-color: #f6f6f6;
}
#custom-html-9k .es-content-body {
  background-color: #ffffff;
}
#custom-html-9k .es-content-body p,
#custom-html-9k .es-content-body ul li,
#custom-html-9k .es-content-body ol li {
  color: #333333;
}
#custom-html-9k .es-content-body a {
  color: #2cb543;
}
#custom-html-9k .es-header {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9k .es-header-body {
  background-color: #ffffff;
}
#custom-html-9k .es-header-body p,
#custom-html-9k .es-header-body ul li,
#custom-html-9k .es-header-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9k .es-header-body a {
  color: #1376c8;
  font-size: 14px;
}
#custom-html-9k .es-footer {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9k .es-footer-body {
  background-color: #ffffff;
}
#custom-html-9k .es-footer-body p,
#custom-html-9k .es-footer-body ul li,
#custom-html-9k .es-footer-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9k .es-footer-body a {
  color: #ffffff;
  font-size: 14px;
}
#custom-html-9k .es-infoblock,
#custom-html-9k .es-infoblock p,
#custom-html-9k .es-infoblock ul li,
#custom-html-9k .es-infoblock ol li {
  line-height: 120%;
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9k .es-infoblock a {
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9k a.es-button {
  border-style: solid;
  border-color: #31cb4b;
  border-width: 10px 20px 10px 20px;
  display: inline-block;
  background: #31cb4b;
  border-radius: 30px;
  font-size: 18px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
  width: auto;
  text-align: center;
}
#custom-html-9k .es-button-border {
  border-style: solid solid solid solid;
  border-color: #2cb543 #2cb543 #2cb543 #2cb543;
  background: #2cb543;
  border-width: 0px 0px 2px 0px;
  display: inline-block;
  border-radius: 30px;
  width: auto;
}
#custom-html-9k .es-button img {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  #custom-html-9k p,
  #custom-html-9k ul li,
  #custom-html-9k ol li,
  #custom-html-9k a {
    font-size: 16px !important;
    line-height: 150% !important;
  }
  #custom-html-9k h1 {
    font-size: 30px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9k h2 {
    font-size: 26px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9k h3 {
    font-size: 20px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9k h1 a {
    font-size: 30px !important;
  }
  #custom-html-9k h2 a {
    font-size: 26px !important;
  }
  #custom-html-9k h3 a {
    font-size: 20px !important;
  }
  #custom-html-9k .es-menu td a {
    font-size: 16px !important;
  }
  #custom-html-9k .es-header-body p,
  #custom-html-9k .es-header-body ul li,
  #custom-html-9k .es-header-body ol li,
  #custom-html-9k .es-header-body a {
    font-size: 16px !important;
  }
  #custom-html-9k .es-footer-body p,
  #custom-html-9k .es-footer-body ul li,
  #custom-html-9k .es-footer-body ol li,
  #custom-html-9k .es-footer-body a {
    font-size: 16px !important;
  }
  #custom-html-9k .es-infoblock p,
  #custom-html-9k .es-infoblock ul li,
  #custom-html-9k .es-infoblock ol li,
  #custom-html-9k .es-infoblock a {
    font-size: 12px !important;
  }
  #custom-html-9k *[class="gmail-fix"] {
    display: none !important;
  }
  #custom-html-9k .es-m-txt-c,
  #custom-html-9k .es-m-txt-c h1,
  #custom-html-9k .es-m-txt-c h2,
  #custom-html-9k .es-m-txt-c h3 {
    text-align: center !important;
  }
  #custom-html-9k .es-m-txt-r,
  #custom-html-9k .es-m-txt-r h1,
  #custom-html-9k .es-m-txt-r h2,
  #custom-html-9k .es-m-txt-r h3 {
    text-align: right !important;
  }
  #custom-html-9k .es-m-txt-l,
  #custom-html-9k .es-m-txt-l h1,
  #custom-html-9k .es-m-txt-l h2,
  #custom-html-9k .es-m-txt-l h3 {
    text-align: left !important;
  }
  #custom-html-9k .es-m-txt-r img,
  #custom-html-9k .es-m-txt-c img,
  #custom-html-9k .es-m-txt-l img {
    display: inline !important;
  }
  #custom-html-9k .es-button-border {
    display: block !important;
  }
  #custom-html-9k a.es-button {
    font-size: 20px !important;
    display: block !important;
    border-width: 10px 0px 10px 0px !important;
  }
  #custom-html-9k .es-btn-fw {
    border-width: 10px 0px !important;
    text-align: center !important;
  }
  #custom-html-9k .es-adaptive table,
  #custom-html-9k .es-btn-fw,
  #custom-html-9k .es-btn-fw-brdr,
  #custom-html-9k .es-left,
  #custom-html-9k .es-right {
    width: 100% !important;
  }
  #custom-html-9k .es-content table,
  #custom-html-9k .es-header table,
  #custom-html-9k .es-footer table,
  #custom-html-9k .es-content,
  #custom-html-9k .es-footer,
  #custom-html-9k .es-header {
    width: 100% !important;
    max-width: 600px !important;
  }
  #custom-html-9k .es-adapt-td {
    display: block !important;
    width: 100% !important;
  }
  #custom-html-9k .adapt-img {
    width: 100% !important;
    height: auto !important;
  }
  #custom-html-9k .es-m-p0 {
    padding: 0px !important;
  }
  #custom-html-9k .es-m-p0r {
    padding-right: 0px !important;
  }
  #custom-html-9k .es-m-p0l {
    padding-left: 0px !important;
  }
  #custom-html-9k .es-m-p0t {
    padding-top: 0px !important;
  }
  #custom-html-9k .es-m-p0b {
    padding-bottom: 0 !important;
  }
  #custom-html-9k .es-m-p20b {
    padding-bottom: 20px !important;
  }
  #custom-html-9k .es-mobile-hidden,
  #custom-html-9k .es-hidden {
    display: none !important;
  }
  #custom-html-9k .es-desk-hidden {
    display: table-row !important;
    width: auto !important;
    overflow: visible !important;
    float: none !important;
    max-height: inherit !important;
    line-height: inherit !important;
  }
  #custom-html-9k .es-desk-menu-hidden {
    display: table-cell !important;
  }
  #custom-html-9k table.es-table-not-adapt,
  #custom-html-9k .esd-block-html table {
    width: auto !important;
  }
  #custom-html-9k table.es-social {
    display: inline-block !important;
  }
  #custom-html-9k table.es-social td {
    display: inline-block !important;
  }
}
#custom-html-9j {
  /* CONFIG STYLES Please do not delete and edit CSS styles below */
  /* IMPORTANT THIS STYLES MUST BE ON FINAL EMAIL */
  /*
END OF IMPORTANT
*/
  /* END CONFIG STYLES */
  /* RESPONSIVE STYLES Please do not delete and edit CSS styles below. If you don't need responsive layout, please delete this section. */
  /* END RESPONSIVE STYLES */
}
#custom-html-9j #outlook a {
  padding: 0;
}
#custom-html-9j .ExternalClass {
  width: 100%;
}
#custom-html-9j .ExternalClass,
#custom-html-9j .ExternalClass p,
#custom-html-9j .ExternalClass span,
#custom-html-9j .ExternalClass font,
#custom-html-9j .ExternalClass td,
#custom-html-9j .ExternalClass div {
  line-height: 100%;
}
#custom-html-9j .es-button {
  mso-style-priority: 100 !important;
  text-decoration: none !important;
}
#custom-html-9j a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
#custom-html-9j .es-desk-hidden {
  display: none;
  float: left;
  overflow: hidden;
  width: 0;
  max-height: 0;
  line-height: 0;
  mso-hide: all;
}
#custom-html-9j s {
  text-decoration: line-through;
}
#custom-html-9j html,
#custom-html-9j body {
  width: 100%;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
#custom-html-9j table {
  mso-table-lspace: 0pt;
  mso-table-rspace: 0pt;
  border-collapse: collapse;
  border-spacing: 0px;
}
#custom-html-9j table td,
#custom-html-9j html,
#custom-html-9j body,
#custom-html-9j .es-wrapper {
  padding: 0;
  Margin: 0;
}
#custom-html-9j .es-content,
#custom-html-9j .es-header,
#custom-html-9j .es-footer {
  table-layout: fixed !important;
  width: 100%;
}
#custom-html-9j img {
  display: block;
  border: 0;
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
}
#custom-html-9j table tr {
  border-collapse: collapse;
}
#custom-html-9j p,
#custom-html-9j hr {
  Margin: 0;
}
#custom-html-9j h1,
#custom-html-9j h2,
#custom-html-9j h3,
#custom-html-9j h4,
#custom-html-9j h5 {
  Margin: 0;
  line-height: 120%;
  mso-line-height-rule: exactly;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
}
#custom-html-9j p,
#custom-html-9j ul li,
#custom-html-9j ol li,
#custom-html-9j a {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  mso-line-height-rule: exactly;
}
#custom-html-9j .es-left {
  float: left;
}
#custom-html-9j .es-right {
  float: right;
}
#custom-html-9j .es-p5 {
  padding: 5px;
}
#custom-html-9j .es-p5t {
  padding-top: 5px;
}
#custom-html-9j .es-p5b {
  padding-bottom: 5px;
}
#custom-html-9j .es-p5l {
  padding-left: 5px;
}
#custom-html-9j .es-p5r {
  padding-right: 5px;
}
#custom-html-9j .es-p10 {
  padding: 10px;
}
#custom-html-9j .es-p10t {
  padding-top: 10px;
}
#custom-html-9j .es-p10b {
  padding-bottom: 10px;
}
#custom-html-9j .es-p10l {
  padding-left: 10px;
}
#custom-html-9j .es-p10r {
  padding-right: 10px;
}
#custom-html-9j .es-p15 {
  padding: 15px;
}
#custom-html-9j .es-p15t {
  padding-top: 15px;
}
#custom-html-9j .es-p15b {
  padding-bottom: 15px;
}
#custom-html-9j .es-p15l {
  padding-left: 15px;
}
#custom-html-9j .es-p15r {
  padding-right: 15px;
}
#custom-html-9j .es-p20 {
  padding: 20px;
}
#custom-html-9j .es-p20t {
  padding-top: 20px;
}
#custom-html-9j .es-p20b {
  padding-bottom: 20px;
}
#custom-html-9j .es-p20l {
  padding-left: 20px;
}
#custom-html-9j .es-p20r {
  padding-right: 20px;
}
#custom-html-9j .es-p25 {
  padding: 25px;
}
#custom-html-9j .es-p25t {
  padding-top: 25px;
}
#custom-html-9j .es-p25b {
  padding-bottom: 25px;
}
#custom-html-9j .es-p25l {
  padding-left: 25px;
}
#custom-html-9j .es-p25r {
  padding-right: 25px;
}
#custom-html-9j .es-p30 {
  padding: 30px;
}
#custom-html-9j .es-p30t {
  padding-top: 30px;
}
#custom-html-9j .es-p30b {
  padding-bottom: 30px;
}
#custom-html-9j .es-p30l {
  padding-left: 30px;
}
#custom-html-9j .es-p30r {
  padding-right: 30px;
}
#custom-html-9j .es-p35 {
  padding: 35px;
}
#custom-html-9j .es-p35t {
  padding-top: 35px;
}
#custom-html-9j .es-p35b {
  padding-bottom: 35px;
}
#custom-html-9j .es-p35l {
  padding-left: 35px;
}
#custom-html-9j .es-p35r {
  padding-right: 35px;
}
#custom-html-9j .es-p40 {
  padding: 40px;
}
#custom-html-9j .es-p40t {
  padding-top: 40px;
}
#custom-html-9j .es-p40b {
  padding-bottom: 40px;
}
#custom-html-9j .es-p40l {
  padding-left: 40px;
}
#custom-html-9j .es-p40r {
  padding-right: 40px;
}
#custom-html-9j .es-menu td {
  border: 0;
}
#custom-html-9j .es-menu td a img {
  display: inline-block !important;
}
#custom-html-9j a {
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
#custom-html-9j h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9j h1 a {
  font-size: 30px;
}
#custom-html-9j h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9j h2 a {
  font-size: 24px;
}
#custom-html-9j h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9j h3 a {
  font-size: 20px;
}
#custom-html-9j p,
#custom-html-9j ul li,
#custom-html-9j ol li {
  font-size: 14px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  line-height: 150%;
}
#custom-html-9j ul li,
#custom-html-9j ol li {
  Margin-bottom: 15px;
}
#custom-html-9j .es-menu td a {
  text-decoration: none;
  display: block;
}
#custom-html-9j .es-wrapper {
  width: 100%;
  height: 100%;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9j .es-wrapper-color {
  background-color: #f6f6f6;
}
#custom-html-9j .es-content-body {
  background-color: #ffffff;
}
#custom-html-9j .es-content-body p,
#custom-html-9j .es-content-body ul li,
#custom-html-9j .es-content-body ol li {
  color: #333333;
}
#custom-html-9j .es-content-body a {
  color: #2cb543;
}
#custom-html-9j .es-header {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9j .es-header-body {
  background-color: #ffffff;
}
#custom-html-9j .es-header-body p,
#custom-html-9j .es-header-body ul li,
#custom-html-9j .es-header-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9j .es-header-body a {
  color: #1376c8;
  font-size: 14px;
}
#custom-html-9j .es-footer {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9j .es-footer-body {
  background-color: #ffffff;
}
#custom-html-9j .es-footer-body p,
#custom-html-9j .es-footer-body ul li,
#custom-html-9j .es-footer-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9j .es-footer-body a {
  color: #ffffff;
  font-size: 14px;
}
#custom-html-9j .es-infoblock,
#custom-html-9j .es-infoblock p,
#custom-html-9j .es-infoblock ul li,
#custom-html-9j .es-infoblock ol li {
  line-height: 120%;
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9j .es-infoblock a {
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9j a.es-button {
  border-style: solid;
  border-color: #31cb4b;
  border-width: 10px 20px 10px 20px;
  display: inline-block;
  background: #31cb4b;
  border-radius: 30px;
  font-size: 18px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
  width: auto;
  text-align: center;
}
#custom-html-9j .es-button-border {
  border-style: solid solid solid solid;
  border-color: #2cb543 #2cb543 #2cb543 #2cb543;
  background: #2cb543;
  border-width: 0px 0px 2px 0px;
  display: inline-block;
  border-radius: 30px;
  width: auto;
}
#custom-html-9j .es-button img {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  #custom-html-9j p,
  #custom-html-9j ul li,
  #custom-html-9j ol li,
  #custom-html-9j a {
    font-size: 16px !important;
    line-height: 150% !important;
  }
  #custom-html-9j h1 {
    font-size: 30px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9j h2 {
    font-size: 26px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9j h3 {
    font-size: 20px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9j h1 a {
    font-size: 30px !important;
  }
  #custom-html-9j h2 a {
    font-size: 26px !important;
  }
  #custom-html-9j h3 a {
    font-size: 20px !important;
  }
  #custom-html-9j .es-menu td a {
    font-size: 16px !important;
  }
  #custom-html-9j .es-header-body p,
  #custom-html-9j .es-header-body ul li,
  #custom-html-9j .es-header-body ol li,
  #custom-html-9j .es-header-body a {
    font-size: 16px !important;
  }
  #custom-html-9j .es-footer-body p,
  #custom-html-9j .es-footer-body ul li,
  #custom-html-9j .es-footer-body ol li,
  #custom-html-9j .es-footer-body a {
    font-size: 16px !important;
  }
  #custom-html-9j .es-infoblock p,
  #custom-html-9j .es-infoblock ul li,
  #custom-html-9j .es-infoblock ol li,
  #custom-html-9j .es-infoblock a {
    font-size: 12px !important;
  }
  #custom-html-9j *[class="gmail-fix"] {
    display: none !important;
  }
  #custom-html-9j .es-m-txt-c,
  #custom-html-9j .es-m-txt-c h1,
  #custom-html-9j .es-m-txt-c h2,
  #custom-html-9j .es-m-txt-c h3 {
    text-align: center !important;
  }
  #custom-html-9j .es-m-txt-r,
  #custom-html-9j .es-m-txt-r h1,
  #custom-html-9j .es-m-txt-r h2,
  #custom-html-9j .es-m-txt-r h3 {
    text-align: right !important;
  }
  #custom-html-9j .es-m-txt-l,
  #custom-html-9j .es-m-txt-l h1,
  #custom-html-9j .es-m-txt-l h2,
  #custom-html-9j .es-m-txt-l h3 {
    text-align: left !important;
  }
  #custom-html-9j .es-m-txt-r img,
  #custom-html-9j .es-m-txt-c img,
  #custom-html-9j .es-m-txt-l img {
    display: inline !important;
  }
  #custom-html-9j .es-button-border {
    display: block !important;
  }
  #custom-html-9j a.es-button {
    font-size: 20px !important;
    display: block !important;
    border-width: 10px 0px 10px 0px !important;
  }
  #custom-html-9j .es-btn-fw {
    border-width: 10px 0px !important;
    text-align: center !important;
  }
  #custom-html-9j .es-adaptive table,
  #custom-html-9j .es-btn-fw,
  #custom-html-9j .es-btn-fw-brdr,
  #custom-html-9j .es-left,
  #custom-html-9j .es-right {
    width: 100% !important;
  }
  #custom-html-9j .es-content table,
  #custom-html-9j .es-header table,
  #custom-html-9j .es-footer table,
  #custom-html-9j .es-content,
  #custom-html-9j .es-footer,
  #custom-html-9j .es-header {
    width: 100% !important;
    max-width: 600px !important;
  }
  #custom-html-9j .es-adapt-td {
    display: block !important;
    width: 100% !important;
  }
  #custom-html-9j .adapt-img {
    width: 100% !important;
    height: auto !important;
  }
  #custom-html-9j .es-m-p0 {
    padding: 0px !important;
  }
  #custom-html-9j .es-m-p0r {
    padding-right: 0px !important;
  }
  #custom-html-9j .es-m-p0l {
    padding-left: 0px !important;
  }
  #custom-html-9j .es-m-p0t {
    padding-top: 0px !important;
  }
  #custom-html-9j .es-m-p0b {
    padding-bottom: 0 !important;
  }
  #custom-html-9j .es-m-p20b {
    padding-bottom: 20px !important;
  }
  #custom-html-9j .es-mobile-hidden,
  #custom-html-9j .es-hidden {
    display: none !important;
  }
  #custom-html-9j .es-desk-hidden {
    display: table-row !important;
    width: auto !important;
    overflow: visible !important;
    float: none !important;
    max-height: inherit !important;
    line-height: inherit !important;
  }
  #custom-html-9j .es-desk-menu-hidden {
    display: table-cell !important;
  }
  #custom-html-9j table.es-table-not-adapt,
  #custom-html-9j .esd-block-html table {
    width: auto !important;
  }
  #custom-html-9j table.es-social {
    display: inline-block !important;
  }
  #custom-html-9j table.es-social td {
    display: inline-block !important;
  }
}
#custom-html-9g {
  /* CONFIG STYLES Please do not delete and edit CSS styles below */
  /* IMPORTANT THIS STYLES MUST BE ON FINAL EMAIL */
  /*
END OF IMPORTANT
*/
  /* END CONFIG STYLES */
  /* RESPONSIVE STYLES Please do not delete and edit CSS styles below. If you don't need responsive layout, please delete this section. */
  /* END RESPONSIVE STYLES */
}
#custom-html-9g #outlook a {
  padding: 0;
}
#custom-html-9g .ExternalClass {
  width: 100%;
}
#custom-html-9g .ExternalClass,
#custom-html-9g .ExternalClass p,
#custom-html-9g .ExternalClass span,
#custom-html-9g .ExternalClass font,
#custom-html-9g .ExternalClass td,
#custom-html-9g .ExternalClass div {
  line-height: 100%;
}
#custom-html-9g .es-button {
  mso-style-priority: 100 !important;
  text-decoration: none !important;
}
#custom-html-9g a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
#custom-html-9g .es-desk-hidden {
  display: none;
  float: left;
  overflow: hidden;
  width: 0;
  max-height: 0;
  line-height: 0;
  mso-hide: all;
}
#custom-html-9g s {
  text-decoration: line-through;
}
#custom-html-9g html,
#custom-html-9g body {
  width: 100%;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
#custom-html-9g table {
  mso-table-lspace: 0pt;
  mso-table-rspace: 0pt;
  border-collapse: collapse;
  border-spacing: 0px;
}
#custom-html-9g table td,
#custom-html-9g html,
#custom-html-9g body,
#custom-html-9g .es-wrapper {
  padding: 0;
  Margin: 0;
}
#custom-html-9g .es-content,
#custom-html-9g .es-header,
#custom-html-9g .es-footer {
  table-layout: fixed !important;
  width: 100%;
}
#custom-html-9g img {
  display: block;
  border: 0;
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
}
#custom-html-9g table tr {
  border-collapse: collapse;
}
#custom-html-9g p,
#custom-html-9g hr {
  Margin: 0;
}
#custom-html-9g h1,
#custom-html-9g h2,
#custom-html-9g h3,
#custom-html-9g h4,
#custom-html-9g h5 {
  Margin: 0;
  line-height: 120%;
  mso-line-height-rule: exactly;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
}
#custom-html-9g p,
#custom-html-9g ul li,
#custom-html-9g ol li,
#custom-html-9g a {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  mso-line-height-rule: exactly;
}
#custom-html-9g .es-left {
  float: left;
}
#custom-html-9g .es-right {
  float: right;
}
#custom-html-9g .es-p5 {
  padding: 5px;
}
#custom-html-9g .es-p5t {
  padding-top: 5px;
}
#custom-html-9g .es-p5b {
  padding-bottom: 5px;
}
#custom-html-9g .es-p5l {
  padding-left: 5px;
}
#custom-html-9g .es-p5r {
  padding-right: 5px;
}
#custom-html-9g .es-p10 {
  padding: 10px;
}
#custom-html-9g .es-p10t {
  padding-top: 10px;
}
#custom-html-9g .es-p10b {
  padding-bottom: 10px;
}
#custom-html-9g .es-p10l {
  padding-left: 10px;
}
#custom-html-9g .es-p10r {
  padding-right: 10px;
}
#custom-html-9g .es-p15 {
  padding: 15px;
}
#custom-html-9g .es-p15t {
  padding-top: 15px;
}
#custom-html-9g .es-p15b {
  padding-bottom: 15px;
}
#custom-html-9g .es-p15l {
  padding-left: 15px;
}
#custom-html-9g .es-p15r {
  padding-right: 15px;
}
#custom-html-9g .es-p20 {
  padding: 20px;
}
#custom-html-9g .es-p20t {
  padding-top: 20px;
}
#custom-html-9g .es-p20b {
  padding-bottom: 20px;
}
#custom-html-9g .es-p20l {
  padding-left: 20px;
}
#custom-html-9g .es-p20r {
  padding-right: 20px;
}
#custom-html-9g .es-p25 {
  padding: 25px;
}
#custom-html-9g .es-p25t {
  padding-top: 25px;
}
#custom-html-9g .es-p25b {
  padding-bottom: 25px;
}
#custom-html-9g .es-p25l {
  padding-left: 25px;
}
#custom-html-9g .es-p25r {
  padding-right: 25px;
}
#custom-html-9g .es-p30 {
  padding: 30px;
}
#custom-html-9g .es-p30t {
  padding-top: 30px;
}
#custom-html-9g .es-p30b {
  padding-bottom: 30px;
}
#custom-html-9g .es-p30l {
  padding-left: 30px;
}
#custom-html-9g .es-p30r {
  padding-right: 30px;
}
#custom-html-9g .es-p35 {
  padding: 35px;
}
#custom-html-9g .es-p35t {
  padding-top: 35px;
}
#custom-html-9g .es-p35b {
  padding-bottom: 35px;
}
#custom-html-9g .es-p35l {
  padding-left: 35px;
}
#custom-html-9g .es-p35r {
  padding-right: 35px;
}
#custom-html-9g .es-p40 {
  padding: 40px;
}
#custom-html-9g .es-p40t {
  padding-top: 40px;
}
#custom-html-9g .es-p40b {
  padding-bottom: 40px;
}
#custom-html-9g .es-p40l {
  padding-left: 40px;
}
#custom-html-9g .es-p40r {
  padding-right: 40px;
}
#custom-html-9g .es-menu td {
  border: 0;
}
#custom-html-9g .es-menu td a img {
  display: inline-block !important;
}
#custom-html-9g a {
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
#custom-html-9g h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9g h1 a {
  font-size: 30px;
}
#custom-html-9g h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9g h2 a {
  font-size: 24px;
}
#custom-html-9g h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9g h3 a {
  font-size: 20px;
}
#custom-html-9g p,
#custom-html-9g ul li,
#custom-html-9g ol li {
  font-size: 14px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  line-height: 150%;
}
#custom-html-9g ul li,
#custom-html-9g ol li {
  Margin-bottom: 15px;
}
#custom-html-9g .es-menu td a {
  text-decoration: none;
  display: block;
}
#custom-html-9g .es-wrapper {
  width: 100%;
  height: 100%;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9g .es-wrapper-color {
  background-color: #f6f6f6;
}
#custom-html-9g .es-content-body {
  background-color: #ffffff;
}
#custom-html-9g .es-content-body p,
#custom-html-9g .es-content-body ul li,
#custom-html-9g .es-content-body ol li {
  color: #333333;
}
#custom-html-9g .es-content-body a {
  color: #2cb543;
}
#custom-html-9g .es-header {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9g .es-header-body {
  background-color: #ffffff;
}
#custom-html-9g .es-header-body p,
#custom-html-9g .es-header-body ul li,
#custom-html-9g .es-header-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9g .es-header-body a {
  color: #1376c8;
  font-size: 14px;
}
#custom-html-9g .es-footer {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9g .es-footer-body {
  background-color: #ffffff;
}
#custom-html-9g .es-footer-body p,
#custom-html-9g .es-footer-body ul li,
#custom-html-9g .es-footer-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9g .es-footer-body a {
  color: #ffffff;
  font-size: 14px;
}
#custom-html-9g .es-infoblock,
#custom-html-9g .es-infoblock p,
#custom-html-9g .es-infoblock ul li,
#custom-html-9g .es-infoblock ol li {
  line-height: 120%;
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9g .es-infoblock a {
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9g a.es-button {
  border-style: solid;
  border-color: #31cb4b;
  border-width: 10px 20px 10px 20px;
  display: inline-block;
  background: #31cb4b;
  border-radius: 30px;
  font-size: 18px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
  width: auto;
  text-align: center;
}
#custom-html-9g .es-button-border {
  border-style: solid solid solid solid;
  border-color: #2cb543 #2cb543 #2cb543 #2cb543;
  background: #2cb543;
  border-width: 0px 0px 2px 0px;
  display: inline-block;
  border-radius: 30px;
  width: auto;
}
#custom-html-9g .es-button img {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  #custom-html-9g p,
  #custom-html-9g ul li,
  #custom-html-9g ol li,
  #custom-html-9g a {
    font-size: 16px !important;
    line-height: 150% !important;
  }
  #custom-html-9g h1 {
    font-size: 30px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9g h2 {
    font-size: 26px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9g h3 {
    font-size: 20px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9g h1 a {
    font-size: 30px !important;
  }
  #custom-html-9g h2 a {
    font-size: 26px !important;
  }
  #custom-html-9g h3 a {
    font-size: 20px !important;
  }
  #custom-html-9g .es-menu td a {
    font-size: 16px !important;
  }
  #custom-html-9g .es-header-body p,
  #custom-html-9g .es-header-body ul li,
  #custom-html-9g .es-header-body ol li,
  #custom-html-9g .es-header-body a {
    font-size: 16px !important;
  }
  #custom-html-9g .es-footer-body p,
  #custom-html-9g .es-footer-body ul li,
  #custom-html-9g .es-footer-body ol li,
  #custom-html-9g .es-footer-body a {
    font-size: 16px !important;
  }
  #custom-html-9g .es-infoblock p,
  #custom-html-9g .es-infoblock ul li,
  #custom-html-9g .es-infoblock ol li,
  #custom-html-9g .es-infoblock a {
    font-size: 12px !important;
  }
  #custom-html-9g *[class="gmail-fix"] {
    display: none !important;
  }
  #custom-html-9g .es-m-txt-c,
  #custom-html-9g .es-m-txt-c h1,
  #custom-html-9g .es-m-txt-c h2,
  #custom-html-9g .es-m-txt-c h3 {
    text-align: center !important;
  }
  #custom-html-9g .es-m-txt-r,
  #custom-html-9g .es-m-txt-r h1,
  #custom-html-9g .es-m-txt-r h2,
  #custom-html-9g .es-m-txt-r h3 {
    text-align: right !important;
  }
  #custom-html-9g .es-m-txt-l,
  #custom-html-9g .es-m-txt-l h1,
  #custom-html-9g .es-m-txt-l h2,
  #custom-html-9g .es-m-txt-l h3 {
    text-align: left !important;
  }
  #custom-html-9g .es-m-txt-r img,
  #custom-html-9g .es-m-txt-c img,
  #custom-html-9g .es-m-txt-l img {
    display: inline !important;
  }
  #custom-html-9g .es-button-border {
    display: block !important;
  }
  #custom-html-9g a.es-button {
    font-size: 20px !important;
    display: block !important;
    border-width: 10px 0px 10px 0px !important;
  }
  #custom-html-9g .es-btn-fw {
    border-width: 10px 0px !important;
    text-align: center !important;
  }
  #custom-html-9g .es-adaptive table,
  #custom-html-9g .es-btn-fw,
  #custom-html-9g .es-btn-fw-brdr,
  #custom-html-9g .es-left,
  #custom-html-9g .es-right {
    width: 100% !important;
  }
  #custom-html-9g .es-content table,
  #custom-html-9g .es-header table,
  #custom-html-9g .es-footer table,
  #custom-html-9g .es-content,
  #custom-html-9g .es-footer,
  #custom-html-9g .es-header {
    width: 100% !important;
    max-width: 600px !important;
  }
  #custom-html-9g .es-adapt-td {
    display: block !important;
    width: 100% !important;
  }
  #custom-html-9g .adapt-img {
    width: 100% !important;
    height: auto !important;
  }
  #custom-html-9g .es-m-p0 {
    padding: 0px !important;
  }
  #custom-html-9g .es-m-p0r {
    padding-right: 0px !important;
  }
  #custom-html-9g .es-m-p0l {
    padding-left: 0px !important;
  }
  #custom-html-9g .es-m-p0t {
    padding-top: 0px !important;
  }
  #custom-html-9g .es-m-p0b {
    padding-bottom: 0 !important;
  }
  #custom-html-9g .es-m-p20b {
    padding-bottom: 20px !important;
  }
  #custom-html-9g .es-mobile-hidden,
  #custom-html-9g .es-hidden {
    display: none !important;
  }
  #custom-html-9g .es-desk-hidden {
    display: table-row !important;
    width: auto !important;
    overflow: visible !important;
    float: none !important;
    max-height: inherit !important;
    line-height: inherit !important;
  }
  #custom-html-9g .es-desk-menu-hidden {
    display: table-cell !important;
  }
  #custom-html-9g table.es-table-not-adapt,
  #custom-html-9g .esd-block-html table {
    width: auto !important;
  }
  #custom-html-9g table.es-social {
    display: inline-block !important;
  }
  #custom-html-9g table.es-social td {
    display: inline-block !important;
  }
}
#custom-html-9i {
  /* CONFIG STYLES Please do not delete and edit CSS styles below */
  /* IMPORTANT THIS STYLES MUST BE ON FINAL EMAIL */
  /*
END OF IMPORTANT
*/
  /* END CONFIG STYLES */
  /* RESPONSIVE STYLES Please do not delete and edit CSS styles below. If you don't need responsive layout, please delete this section. */
  /* END RESPONSIVE STYLES */
}
#custom-html-9i #outlook a {
  padding: 0;
}
#custom-html-9i .ExternalClass {
  width: 100%;
}
#custom-html-9i .ExternalClass,
#custom-html-9i .ExternalClass p,
#custom-html-9i .ExternalClass span,
#custom-html-9i .ExternalClass font,
#custom-html-9i .ExternalClass td,
#custom-html-9i .ExternalClass div {
  line-height: 100%;
}
#custom-html-9i .es-button {
  mso-style-priority: 100 !important;
  text-decoration: none !important;
}
#custom-html-9i a[x-apple-data-detectors] {
  color: inherit !important;
  text-decoration: none !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
}
#custom-html-9i .es-desk-hidden {
  display: none;
  float: left;
  overflow: hidden;
  width: 0;
  max-height: 0;
  line-height: 0;
  mso-hide: all;
}
#custom-html-9i s {
  text-decoration: line-through;
}
#custom-html-9i html,
#custom-html-9i body {
  width: 100%;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
#custom-html-9i table {
  mso-table-lspace: 0pt;
  mso-table-rspace: 0pt;
  border-collapse: collapse;
  border-spacing: 0px;
}
#custom-html-9i table td,
#custom-html-9i html,
#custom-html-9i body,
#custom-html-9i .es-wrapper {
  padding: 0;
  Margin: 0;
}
#custom-html-9i .es-content,
#custom-html-9i .es-header,
#custom-html-9i .es-footer {
  table-layout: fixed !important;
  width: 100%;
}
#custom-html-9i img {
  display: block;
  border: 0;
  outline: none;
  text-decoration: none;
  -ms-interpolation-mode: bicubic;
}
#custom-html-9i table tr {
  border-collapse: collapse;
}
#custom-html-9i p,
#custom-html-9i hr {
  Margin: 0;
}
#custom-html-9i h1,
#custom-html-9i h2,
#custom-html-9i h3,
#custom-html-9i h4,
#custom-html-9i h5 {
  Margin: 0;
  line-height: 120%;
  mso-line-height-rule: exactly;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
}
#custom-html-9i p,
#custom-html-9i ul li,
#custom-html-9i ol li,
#custom-html-9i a {
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  mso-line-height-rule: exactly;
}
#custom-html-9i .es-left {
  float: left;
}
#custom-html-9i .es-right {
  float: right;
}
#custom-html-9i .es-p5 {
  padding: 5px;
}
#custom-html-9i .es-p5t {
  padding-top: 5px;
}
#custom-html-9i .es-p5b {
  padding-bottom: 5px;
}
#custom-html-9i .es-p5l {
  padding-left: 5px;
}
#custom-html-9i .es-p5r {
  padding-right: 5px;
}
#custom-html-9i .es-p10 {
  padding: 10px;
}
#custom-html-9i .es-p10t {
  padding-top: 10px;
}
#custom-html-9i .es-p10b {
  padding-bottom: 10px;
}
#custom-html-9i .es-p10l {
  padding-left: 10px;
}
#custom-html-9i .es-p10r {
  padding-right: 10px;
}
#custom-html-9i .es-p15 {
  padding: 15px;
}
#custom-html-9i .es-p15t {
  padding-top: 15px;
}
#custom-html-9i .es-p15b {
  padding-bottom: 15px;
}
#custom-html-9i .es-p15l {
  padding-left: 15px;
}
#custom-html-9i .es-p15r {
  padding-right: 15px;
}
#custom-html-9i .es-p20 {
  padding: 20px;
}
#custom-html-9i .es-p20t {
  padding-top: 20px;
}
#custom-html-9i .es-p20b {
  padding-bottom: 20px;
}
#custom-html-9i .es-p20l {
  padding-left: 20px;
}
#custom-html-9i .es-p20r {
  padding-right: 20px;
}
#custom-html-9i .es-p25 {
  padding: 25px;
}
#custom-html-9i .es-p25t {
  padding-top: 25px;
}
#custom-html-9i .es-p25b {
  padding-bottom: 25px;
}
#custom-html-9i .es-p25l {
  padding-left: 25px;
}
#custom-html-9i .es-p25r {
  padding-right: 25px;
}
#custom-html-9i .es-p30 {
  padding: 30px;
}
#custom-html-9i .es-p30t {
  padding-top: 30px;
}
#custom-html-9i .es-p30b {
  padding-bottom: 30px;
}
#custom-html-9i .es-p30l {
  padding-left: 30px;
}
#custom-html-9i .es-p30r {
  padding-right: 30px;
}
#custom-html-9i .es-p35 {
  padding: 35px;
}
#custom-html-9i .es-p35t {
  padding-top: 35px;
}
#custom-html-9i .es-p35b {
  padding-bottom: 35px;
}
#custom-html-9i .es-p35l {
  padding-left: 35px;
}
#custom-html-9i .es-p35r {
  padding-right: 35px;
}
#custom-html-9i .es-p40 {
  padding: 40px;
}
#custom-html-9i .es-p40t {
  padding-top: 40px;
}
#custom-html-9i .es-p40b {
  padding-bottom: 40px;
}
#custom-html-9i .es-p40l {
  padding-left: 40px;
}
#custom-html-9i .es-p40r {
  padding-right: 40px;
}
#custom-html-9i .es-menu td {
  border: 0;
}
#custom-html-9i .es-menu td a img {
  display: inline-block !important;
}
#custom-html-9i a {
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
#custom-html-9i h1 {
  font-size: 30px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9i h1 a {
  font-size: 30px;
}
#custom-html-9i h2 {
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9i h2 a {
  font-size: 24px;
}
#custom-html-9i h3 {
  font-size: 20px;
  font-style: normal;
  font-weight: normal;
  color: #333333;
}
#custom-html-9i h3 a {
  font-size: 20px;
}
#custom-html-9i p,
#custom-html-9i ul li,
#custom-html-9i ol li {
  font-size: 14px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  line-height: 150%;
}
#custom-html-9i ul li,
#custom-html-9i ol li {
  Margin-bottom: 15px;
}
#custom-html-9i .es-menu td a {
  text-decoration: none;
  display: block;
}
#custom-html-9i .es-wrapper {
  width: 100%;
  height: 100%;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9i .es-wrapper-color {
  background-color: #f6f6f6;
}
#custom-html-9i .es-content-body {
  background-color: #ffffff;
}
#custom-html-9i .es-content-body p,
#custom-html-9i .es-content-body ul li,
#custom-html-9i .es-content-body ol li {
  color: #333333;
}
#custom-html-9i .es-content-body a {
  color: #2cb543;
}
#custom-html-9i .es-header {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9i .es-header-body {
  background-color: #ffffff;
}
#custom-html-9i .es-header-body p,
#custom-html-9i .es-header-body ul li,
#custom-html-9i .es-header-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9i .es-header-body a {
  color: #1376c8;
  font-size: 14px;
}
#custom-html-9i .es-footer {
  background-color: transparent;
  background-image: ;
  background-repeat: repeat;
  background-position: center top;
}
#custom-html-9i .es-footer-body {
  background-color: #ffffff;
}
#custom-html-9i .es-footer-body p,
#custom-html-9i .es-footer-body ul li,
#custom-html-9i .es-footer-body ol li {
  color: #333333;
  font-size: 14px;
}
#custom-html-9i .es-footer-body a {
  color: #ffffff;
  font-size: 14px;
}
#custom-html-9i .es-infoblock,
#custom-html-9i .es-infoblock p,
#custom-html-9i .es-infoblock ul li,
#custom-html-9i .es-infoblock ol li {
  line-height: 120%;
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9i .es-infoblock a {
  font-size: 12px;
  color: #cccccc;
}
#custom-html-9i a.es-button {
  border-style: solid;
  border-color: #31cb4b;
  border-width: 10px 20px 10px 20px;
  display: inline-block;
  background: #31cb4b;
  border-radius: 30px;
  font-size: 18px;
  font-family: arial, 'helvetica neue', helvetica, sans-serif;
  font-weight: normal;
  font-style: normal;
  line-height: 120%;
  color: #ffffff;
  text-decoration: none;
  width: auto;
  text-align: center;
}
#custom-html-9i .es-button-border {
  border-style: solid solid solid solid;
  border-color: #2cb543 #2cb543 #2cb543 #2cb543;
  background: #2cb543;
  border-width: 0px 0px 2px 0px;
  display: inline-block;
  border-radius: 30px;
  width: auto;
}
#custom-html-9i .es-button img {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 600px) {
  #custom-html-9i p,
  #custom-html-9i ul li,
  #custom-html-9i ol li,
  #custom-html-9i a {
    font-size: 16px !important;
    line-height: 150% !important;
  }
  #custom-html-9i h1 {
    font-size: 30px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9i h2 {
    font-size: 26px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9i h3 {
    font-size: 20px !important;
    text-align: center;
    line-height: 120% !important;
  }
  #custom-html-9i h1 a {
    font-size: 30px !important;
  }
  #custom-html-9i h2 a {
    font-size: 26px !important;
  }
  #custom-html-9i h3 a {
    font-size: 20px !important;
  }
  #custom-html-9i .es-menu td a {
    font-size: 16px !important;
  }
  #custom-html-9i .es-header-body p,
  #custom-html-9i .es-header-body ul li,
  #custom-html-9i .es-header-body ol li,
  #custom-html-9i .es-header-body a {
    font-size: 16px !important;
  }
  #custom-html-9i .es-footer-body p,
  #custom-html-9i .es-footer-body ul li,
  #custom-html-9i .es-footer-body ol li,
  #custom-html-9i .es-footer-body a {
    font-size: 16px !important;
  }
  #custom-html-9i .es-infoblock p,
  #custom-html-9i .es-infoblock ul li,
  #custom-html-9i .es-infoblock ol li,
  #custom-html-9i .es-infoblock a {
    font-size: 12px !important;
  }
  #custom-html-9i *[class="gmail-fix"] {
    display: none !important;
  }
  #custom-html-9i .es-m-txt-c,
  #custom-html-9i .es-m-txt-c h1,
  #custom-html-9i .es-m-txt-c h2,
  #custom-html-9i .es-m-txt-c h3 {
    text-align: center !important;
  }
  #custom-html-9i .es-m-txt-r,
  #custom-html-9i .es-m-txt-r h1,
  #custom-html-9i .es-m-txt-r h2,
  #custom-html-9i .es-m-txt-r h3 {
    text-align: right !important;
  }
  #custom-html-9i .es-m-txt-l,
  #custom-html-9i .es-m-txt-l h1,
  #custom-html-9i .es-m-txt-l h2,
  #custom-html-9i .es-m-txt-l h3 {
    text-align: left !important;
  }
  #custom-html-9i .es-m-txt-r img,
  #custom-html-9i .es-m-txt-c img,
  #custom-html-9i .es-m-txt-l img {
    display: inline !important;
  }
  #custom-html-9i .es-button-border {
    display: block !important;
  }
  #custom-html-9i a.es-button {
    font-size: 20px !important;
    display: block !important;
    border-width: 10px 0px 10px 0px !important;
  }
  #custom-html-9i .es-btn-fw {
    border-width: 10px 0px !important;
    text-align: center !important;
  }
  #custom-html-9i .es-adaptive table,
  #custom-html-9i .es-btn-fw,
  #custom-html-9i .es-btn-fw-brdr,
  #custom-html-9i .es-left,
  #custom-html-9i .es-right {
    width: 100% !important;
  }
  #custom-html-9i .es-content table,
  #custom-html-9i .es-header table,
  #custom-html-9i .es-footer table,
  #custom-html-9i .es-content,
  #custom-html-9i .es-footer,
  #custom-html-9i .es-header {
    width: 100% !important;
    max-width: 600px !important;
  }
  #custom-html-9i .es-adapt-td {
    display: block !important;
    width: 100% !important;
  }
  #custom-html-9i .adapt-img {
    width: 100% !important;
    height: auto !important;
  }
  #custom-html-9i .es-m-p0 {
    padding: 0px !important;
  }
  #custom-html-9i .es-m-p0r {
    padding-right: 0px !important;
  }
  #custom-html-9i .es-m-p0l {
    padding-left: 0px !important;
  }
  #custom-html-9i .es-m-p0t {
    padding-top: 0px !important;
  }
  #custom-html-9i .es-m-p0b {
    padding-bottom: 0 !important;
  }
  #custom-html-9i .es-m-p20b {
    padding-bottom: 20px !important;
  }
  #custom-html-9i .es-mobile-hidden,
  #custom-html-9i .es-hidden {
    display: none !important;
  }
  #custom-html-9i .es-desk-hidden {
    display: table-row !important;
    width: auto !important;
    overflow: visible !important;
    float: none !important;
    max-height: inherit !important;
    line-height: inherit !important;
  }
  #custom-html-9i .es-desk-menu-hidden {
    display: table-cell !important;
  }
  #custom-html-9i table.es-table-not-adapt,
  #custom-html-9i .esd-block-html table {
    width: auto !important;
  }
  #custom-html-9i table.es-social {
    display: inline-block !important;
  }
  #custom-html-9i table.es-social td {
    display: inline-block !important;
  }
}
.cid-s3ZuZZqfRZ {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #6b9b2d;
}
.cid-s3ZuZZqfRZ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s3ZuZZqfRZ .form-control,
.cid-s3ZuZZqfRZ .field-input {
  padding: 0.5rem;
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZuZZqfRZ .form-control input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .form-control textarea::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-s3ZuZZqfRZ .form-control input:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input input:-moz-placeholder,
.cid-s3ZuZZqfRZ .form-control textarea:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input textarea:-moz-placeholder {
  color: #000000;
}
.cid-s3ZuZZqfRZ .form-control:hover,
.cid-s3ZuZZqfRZ .field-input:hover,
.cid-s3ZuZZqfRZ .form-control:focus,
.cid-s3ZuZZqfRZ .field-input:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZuZZqfRZ .form-control:hover input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input:hover input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .form-control:focus input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input:focus input::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .form-control:hover textarea::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input:hover textarea::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .form-control:focus textarea::-webkit-input-placeholder,
.cid-s3ZuZZqfRZ .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s3ZuZZqfRZ .form-control:hover input:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input:hover input:-moz-placeholder,
.cid-s3ZuZZqfRZ .form-control:focus input:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input:focus input:-moz-placeholder,
.cid-s3ZuZZqfRZ .form-control:hover textarea:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input:hover textarea:-moz-placeholder,
.cid-s3ZuZZqfRZ .form-control:focus textarea:-moz-placeholder,
.cid-s3ZuZZqfRZ .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-s3ZuZZqfRZ .jq-number__spin:hover,
.cid-s3ZuZZqfRZ .jq-number__spin:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZuZZqfRZ .jq-number__spin {
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZuZZqfRZ .jq-selectbox li,
.cid-s3ZuZZqfRZ .jq-selectbox li {
  background-color: #cccccc;
  color: #000000;
}
.cid-s3ZuZZqfRZ .jq-selectbox li:hover,
.cid-s3ZuZZqfRZ .jq-selectbox li.selected {
  background-color: #f79608;
  color: #000000;
}
.cid-s3ZuZZqfRZ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s3ZuZZqfRZ .jq-number__spin.minus:hover:after,
.cid-s3ZuZZqfRZ .jq-number__spin.plus:hover:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}
.cid-s3ZuZZqfRZ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s3ZuZZqfRZ .jq-number__spin.minus:after,
.cid-s3ZuZZqfRZ .jq-number__spin.plus:after {
  border-top-color: #f79608;
  border-bottom-color: #f79608;
}
.cid-s3ZuZZqfRZ input::-webkit-clear-button {
  display: none;
}
.cid-s3ZuZZqfRZ input::-webkit-inner-spin-button {
  display: none;
}
.cid-s3ZuZZqfRZ input::-webkit-outer-spin-button {
  display: none;
}
.cid-s3ZuZZqfRZ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s3ZuZZqfRZ H4 {
  color: #ffffff;
}
.cid-s3ZuZZqfRZ P {
  color: #ffffff;
}
.cid-rLj5ojHWRM .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-rLj5ojHWRM .nav-item,
.cid-rLj5ojHWRM .nav-link,
.cid-rLj5ojHWRM .navbar-caption {
  font-weight: normal;
}
.cid-rLj5ojHWRM .nav-item:focus,
.cid-rLj5ojHWRM .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-rLj5ojHWRM .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-rLj5ojHWRM .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-rLj5ojHWRM .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-rLj5ojHWRM .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-rLj5ojHWRM .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-rLj5ojHWRM .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-rLj5ojHWRM .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-rLj5ojHWRM .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-rLj5ojHWRM .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-rLj5ojHWRM .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-rLj5ojHWRM .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-rLj5ojHWRM .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-rLj5ojHWRM .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-rLj5ojHWRM .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-rLj5ojHWRM .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-rLj5ojHWRM .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-rLj5ojHWRM .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-rLj5ojHWRM .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-rLj5ojHWRM .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-rLj5ojHWRM .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-rLj5ojHWRM .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-rLj5ojHWRM .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-rLj5ojHWRM .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-rLj5ojHWRM .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-rLj5ojHWRM .dropdown-item.active,
.cid-rLj5ojHWRM .dropdown-item:active {
  background-color: transparent;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-rLj5ojHWRM .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-rLj5ojHWRM .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-rLj5ojHWRM .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-rLj5ojHWRM ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-rLj5ojHWRM .navbar-buttons {
  text-align: center;
}
.cid-rLj5ojHWRM button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-rLj5ojHWRM button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-rLj5ojHWRM nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-rLj5ojHWRM .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-rLj5ojHWRM a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-rLj5ojHWRM .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-rLj5ojHWRM .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-rLj5ojHWRM .soc-item {
  margin: .5rem .3rem;
}
.cid-rLj5ojHWRM .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-rLj5ojHWRM .navbar {
    height: 77px;
  }
  .cid-rLj5ojHWRM .navbar.opened {
    height: auto;
  }
  .cid-rLj5ojHWRM .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-rL8S7NNlWE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .content {
    text-align: center;
  }
  .cid-rL8S7NNlWE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-rL8S7NNlWE .logo-subtitle {
  color: #8d97ad;
}
.cid-rL8S7NNlWE .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-rL8S7NNlWE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-rL8S7NNlWE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-rL8S7NNlWE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-rL8S7NNlWE .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-rL8S7NNlWE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-rL8S7NNlWE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-rL8S7NNlWE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-rL8S7NNlWE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-rL8S7NNlWE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-rL8S7NNlWE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-rL8S7NNlWE .list-item {
  display: flex;
}
.cid-rL8S7NNlWE .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-rL8S7NNlWE ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-rL8S7NNlWE ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-rL8S7NNlWE ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-rL8S7NNlWE .copyright > p {
  text-align: left;
}
.cid-rL8S7NNlWE P {
  color: #ffffff;
}
.cid-rL8S7NNlWE .column-title {
  color: #ffffff;
}
.cid-s3ZOISjvyq {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #6b9b2d;
}
.cid-s3ZOISjvyq .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s3ZOISjvyq .form-control,
.cid-s3ZOISjvyq .field-input {
  padding: 0.5rem;
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZOISjvyq .form-control input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .form-control textarea::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-s3ZOISjvyq .form-control input:-moz-placeholder,
.cid-s3ZOISjvyq .field-input input:-moz-placeholder,
.cid-s3ZOISjvyq .form-control textarea:-moz-placeholder,
.cid-s3ZOISjvyq .field-input textarea:-moz-placeholder {
  color: #000000;
}
.cid-s3ZOISjvyq .form-control:hover,
.cid-s3ZOISjvyq .field-input:hover,
.cid-s3ZOISjvyq .form-control:focus,
.cid-s3ZOISjvyq .field-input:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZOISjvyq .form-control:hover input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input:hover input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .form-control:focus input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input:focus input::-webkit-input-placeholder,
.cid-s3ZOISjvyq .form-control:hover textarea::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input:hover textarea::-webkit-input-placeholder,
.cid-s3ZOISjvyq .form-control:focus textarea::-webkit-input-placeholder,
.cid-s3ZOISjvyq .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s3ZOISjvyq .form-control:hover input:-moz-placeholder,
.cid-s3ZOISjvyq .field-input:hover input:-moz-placeholder,
.cid-s3ZOISjvyq .form-control:focus input:-moz-placeholder,
.cid-s3ZOISjvyq .field-input:focus input:-moz-placeholder,
.cid-s3ZOISjvyq .form-control:hover textarea:-moz-placeholder,
.cid-s3ZOISjvyq .field-input:hover textarea:-moz-placeholder,
.cid-s3ZOISjvyq .form-control:focus textarea:-moz-placeholder,
.cid-s3ZOISjvyq .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-s3ZOISjvyq .jq-number__spin:hover,
.cid-s3ZOISjvyq .jq-number__spin:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZOISjvyq .jq-number__spin {
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZOISjvyq .jq-selectbox li,
.cid-s3ZOISjvyq .jq-selectbox li {
  background-color: #cccccc;
  color: #000000;
}
.cid-s3ZOISjvyq .jq-selectbox li:hover,
.cid-s3ZOISjvyq .jq-selectbox li.selected {
  background-color: #f79608;
  color: #000000;
}
.cid-s3ZOISjvyq .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s3ZOISjvyq .jq-number__spin.minus:hover:after,
.cid-s3ZOISjvyq .jq-number__spin.plus:hover:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}
.cid-s3ZOISjvyq .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s3ZOISjvyq .jq-number__spin.minus:after,
.cid-s3ZOISjvyq .jq-number__spin.plus:after {
  border-top-color: #f79608;
  border-bottom-color: #f79608;
}
.cid-s3ZOISjvyq input::-webkit-clear-button {
  display: none;
}
.cid-s3ZOISjvyq input::-webkit-inner-spin-button {
  display: none;
}
.cid-s3ZOISjvyq input::-webkit-outer-spin-button {
  display: none;
}
.cid-s3ZOISjvyq input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s3ZOISjvyq H4 {
  color: #ffffff;
}
.cid-s3ZOISjvyq P {
  color: #ffffff;
}
.cid-s3ZOIU2pxS .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-s3ZOIU2pxS .nav-item,
.cid-s3ZOIU2pxS .nav-link,
.cid-s3ZOIU2pxS .navbar-caption {
  font-weight: normal;
}
.cid-s3ZOIU2pxS .nav-item:focus,
.cid-s3ZOIU2pxS .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s3ZOIU2pxS .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-s3ZOIU2pxS .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s3ZOIU2pxS .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s3ZOIU2pxS .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s3ZOIU2pxS .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s3ZOIU2pxS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s3ZOIU2pxS .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-s3ZOIU2pxS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s3ZOIU2pxS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s3ZOIU2pxS .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-s3ZOIU2pxS .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-s3ZOIU2pxS .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s3ZOIU2pxS .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s3ZOIU2pxS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s3ZOIU2pxS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s3ZOIU2pxS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-s3ZOIU2pxS .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s3ZOIU2pxS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s3ZOIU2pxS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s3ZOIU2pxS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s3ZOIU2pxS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s3ZOIU2pxS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s3ZOIU2pxS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s3ZOIU2pxS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s3ZOIU2pxS .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s3ZOIU2pxS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s3ZOIU2pxS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s3ZOIU2pxS .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s3ZOIU2pxS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s3ZOIU2pxS .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-s3ZOIU2pxS .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s3ZOIU2pxS .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s3ZOIU2pxS .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s3ZOIU2pxS .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-s3ZOIU2pxS .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s3ZOIU2pxS .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s3ZOIU2pxS .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s3ZOIU2pxS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s3ZOIU2pxS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s3ZOIU2pxS .dropdown-item.active,
.cid-s3ZOIU2pxS .dropdown-item:active {
  background-color: transparent;
}
.cid-s3ZOIU2pxS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s3ZOIU2pxS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s3ZOIU2pxS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-s3ZOIU2pxS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s3ZOIU2pxS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s3ZOIU2pxS ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s3ZOIU2pxS .navbar-buttons {
  text-align: center;
}
.cid-s3ZOIU2pxS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s3ZOIU2pxS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-s3ZOIU2pxS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s3ZOIU2pxS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZOIU2pxS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZOIU2pxS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s3ZOIU2pxS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZOIU2pxS nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s3ZOIU2pxS nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s3ZOIU2pxS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZOIU2pxS .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s3ZOIU2pxS a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s3ZOIU2pxS .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s3ZOIU2pxS .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-s3ZOIU2pxS .soc-item {
  margin: .5rem .3rem;
}
.cid-s3ZOIU2pxS .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s3ZOIU2pxS .navbar {
    height: 77px;
  }
  .cid-s3ZOIU2pxS .navbar.opened {
    height: auto;
  }
  .cid-s3ZOIU2pxS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s3ZOIUW6BL {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-s3ZOIUW6BL .content {
    text-align: center;
  }
  .cid-s3ZOIUW6BL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s3ZOIUW6BL .logo-subtitle {
  color: #8d97ad;
}
.cid-s3ZOIUW6BL .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-s3ZOIUW6BL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s3ZOIUW6BL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s3ZOIUW6BL .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s3ZOIUW6BL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s3ZOIUW6BL .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-s3ZOIUW6BL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s3ZOIUW6BL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-s3ZOIUW6BL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s3ZOIUW6BL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s3ZOIUW6BL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s3ZOIUW6BL .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s3ZOIUW6BL .list-item {
  display: flex;
}
.cid-s3ZOIUW6BL .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-s3ZOIUW6BL ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-s3ZOIUW6BL ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-s3ZOIUW6BL ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-s3ZOIUW6BL .copyright > p {
  text-align: left;
}
.cid-s3ZOIUW6BL P {
  color: #ffffff;
}
.cid-s3ZOIUW6BL .column-title {
  color: #ffffff;
}
.cid-s3ZPFeJi2S {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #6b9b2d;
}
.cid-s3ZPFeJi2S .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-s3ZPFeJi2S .form-control,
.cid-s3ZPFeJi2S .field-input {
  padding: 0.5rem;
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZPFeJi2S .form-control input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .form-control textarea::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input textarea::-webkit-input-placeholder {
  color: #000000;
}
.cid-s3ZPFeJi2S .form-control input:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input input:-moz-placeholder,
.cid-s3ZPFeJi2S .form-control textarea:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input textarea:-moz-placeholder {
  color: #000000;
}
.cid-s3ZPFeJi2S .form-control:hover,
.cid-s3ZPFeJi2S .field-input:hover,
.cid-s3ZPFeJi2S .form-control:focus,
.cid-s3ZPFeJi2S .field-input:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZPFeJi2S .form-control:hover input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input:hover input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .form-control:focus input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input:focus input::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .form-control:hover textarea::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input:hover textarea::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .form-control:focus textarea::-webkit-input-placeholder,
.cid-s3ZPFeJi2S .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-s3ZPFeJi2S .form-control:hover input:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input:hover input:-moz-placeholder,
.cid-s3ZPFeJi2S .form-control:focus input:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input:focus input:-moz-placeholder,
.cid-s3ZPFeJi2S .form-control:hover textarea:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input:hover textarea:-moz-placeholder,
.cid-s3ZPFeJi2S .form-control:focus textarea:-moz-placeholder,
.cid-s3ZPFeJi2S .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-s3ZPFeJi2S .jq-number__spin:hover,
.cid-s3ZPFeJi2S .jq-number__spin:focus {
  background-color: #f79608;
  border-color: #000000;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-s3ZPFeJi2S .jq-number__spin {
  background-color: #cccccc;
  border-color: #f79608;
  color: #000000;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-s3ZPFeJi2S .jq-selectbox li,
.cid-s3ZPFeJi2S .jq-selectbox li {
  background-color: #cccccc;
  color: #000000;
}
.cid-s3ZPFeJi2S .jq-selectbox li:hover,
.cid-s3ZPFeJi2S .jq-selectbox li.selected {
  background-color: #f79608;
  color: #000000;
}
.cid-s3ZPFeJi2S .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-s3ZPFeJi2S .jq-number__spin.minus:hover:after,
.cid-s3ZPFeJi2S .jq-number__spin.plus:hover:after {
  border-top-color: #cccccc;
  border-bottom-color: #cccccc;
}
.cid-s3ZPFeJi2S .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-s3ZPFeJi2S .jq-number__spin.minus:after,
.cid-s3ZPFeJi2S .jq-number__spin.plus:after {
  border-top-color: #f79608;
  border-bottom-color: #f79608;
}
.cid-s3ZPFeJi2S input::-webkit-clear-button {
  display: none;
}
.cid-s3ZPFeJi2S input::-webkit-inner-spin-button {
  display: none;
}
.cid-s3ZPFeJi2S input::-webkit-outer-spin-button {
  display: none;
}
.cid-s3ZPFeJi2S input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-s3ZPFeJi2S H4 {
  color: #ffffff;
}
.cid-s3ZPFeJi2S P {
  color: #ffffff;
}
.cid-s3ZPFgjgCT .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 16px;
  position: absolute;
  right: 1rem;
  top: 30%;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  -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-s3ZPFgjgCT .nav-item,
.cid-s3ZPFgjgCT .nav-link,
.cid-s3ZPFgjgCT .navbar-caption {
  font-weight: normal;
}
.cid-s3ZPFgjgCT .nav-item:focus,
.cid-s3ZPFgjgCT .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-s3ZPFgjgCT .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
  }
}
.cid-s3ZPFgjgCT .dropdown .dropdown-menu .dropdown-item {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s3ZPFgjgCT .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-s3ZPFgjgCT .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-s3ZPFgjgCT .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
  display: none;
}
.cid-s3ZPFgjgCT .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s3ZPFgjgCT .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-s3ZPFgjgCT .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s3ZPFgjgCT .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s3ZPFgjgCT .navbar {
  min-height: 77px;
  transition: all .3s;
  background: #6b9b2d;
}
.cid-s3ZPFgjgCT .navbar.opened {
  transition: all .3s;
  background: #6b9b2d !important;
}
.cid-s3ZPFgjgCT .navbar .dropdown-item {
  padding: .235rem 2.5rem .235rem 1.5rem;
}
.cid-s3ZPFgjgCT .navbar .navbar-collapse {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  z-index: 1;
}
.cid-s3ZPFgjgCT .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s3ZPFgjgCT .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-s3ZPFgjgCT .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem - 1rem);
  }
}
.cid-s3ZPFgjgCT .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-s3ZPFgjgCT .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s3ZPFgjgCT .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s3ZPFgjgCT .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s3ZPFgjgCT .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s3ZPFgjgCT .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-top: .5rem;
  padding-bottom: .5rem;
}
@media (max-width: 991px) {
  .cid-s3ZPFgjgCT .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s3ZPFgjgCT .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s3ZPFgjgCT .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-s3ZPFgjgCT .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s3ZPFgjgCT .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-s3ZPFgjgCT .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s3ZPFgjgCT .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s3ZPFgjgCT .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem !important;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-s3ZPFgjgCT .navbar .navbar-brand {
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
  }
  .cid-s3ZPFgjgCT .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
  .cid-s3ZPFgjgCT .navbar .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}
.cid-s3ZPFgjgCT .navbar.navbar-short {
  background: #6b9b2d !important;
  min-height: 60px;
}
.cid-s3ZPFgjgCT .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s3ZPFgjgCT .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s3ZPFgjgCT .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s3ZPFgjgCT .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s3ZPFgjgCT .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s3ZPFgjgCT .dropdown-item.active,
.cid-s3ZPFgjgCT .dropdown-item:active {
  background-color: transparent;
}
.cid-s3ZPFgjgCT .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s3ZPFgjgCT .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s3ZPFgjgCT .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #6b9b2d;
}
.cid-s3ZPFgjgCT .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s3ZPFgjgCT .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s3ZPFgjgCT ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s3ZPFgjgCT .navbar-buttons {
  text-align: center;
}
.cid-s3ZPFgjgCT button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s3ZPFgjgCT button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #f79608;
}
.cid-s3ZPFgjgCT button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-s3ZPFgjgCT button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZPFgjgCT button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-s3ZPFgjgCT button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-s3ZPFgjgCT nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZPFgjgCT nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-s3ZPFgjgCT nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-s3ZPFgjgCT nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-s3ZPFgjgCT .navbar-dropdown {
  padding: .5rem 1rem;
  position: fixed;
}
.cid-s3ZPFgjgCT a.nav-link {
  -webkit-justify-content: center;
  justify-content: center;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-s3ZPFgjgCT .mbr-iconfont {
  font-size: 1rem;
  color: #ffffff;
  display: inline-flex;
}
.cid-s3ZPFgjgCT .mbr-iconfont:before {
  padding: .5rem;
  border: 2px solid;
  border-radius: 100px;
}
.cid-s3ZPFgjgCT .soc-item {
  margin: .5rem .3rem;
}
.cid-s3ZPFgjgCT .icons-menu {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  text-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s3ZPFgjgCT .navbar {
    height: 77px;
  }
  .cid-s3ZPFgjgCT .navbar.opened {
    height: auto;
  }
  .cid-s3ZPFgjgCT .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-s3ZPFhdl61 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #6b9b2d;
}
@media (max-width: 767px) {
  .cid-s3ZPFhdl61 .content {
    text-align: center;
  }
  .cid-s3ZPFhdl61 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s3ZPFhdl61 .logo-subtitle {
  color: #8d97ad;
}
.cid-s3ZPFhdl61 .media-wrap {
  padding-bottom: 2rem;
}
@media (max-width: 160px) {
  .cid-s3ZPFhdl61 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-s3ZPFhdl61 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s3ZPFhdl61 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-s3ZPFhdl61 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-s3ZPFhdl61 .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
  opacity: .05;
}
.cid-s3ZPFhdl61 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-s3ZPFhdl61 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #232323;
}
.cid-s3ZPFhdl61 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-s3ZPFhdl61 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-s3ZPFhdl61 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-s3ZPFhdl61 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-s3ZPFhdl61 .list-item {
  display: flex;
}
.cid-s3ZPFhdl61 .list-item .mbr-iconfont {
  padding-right: 1rem;
  font-size: 24px;
  color: #188ef4;
}
.cid-s3ZPFhdl61 ul.list {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.cid-s3ZPFhdl61 ul.list li {
  display: flex;
  word-break: break-all;
}
.cid-s3ZPFhdl61 ul.list li::before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  padding-right: .5rem;
}
.cid-s3ZPFhdl61 .copyright > p {
  text-align: left;
}
.cid-s3ZPFhdl61 P {
  color: #ffffff;
}
.cid-s3ZPFhdl61 .column-title {
  color: #ffffff;
}
