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





body {
  font-family: Nunito;
}
.display-1 {
  font-family: 'Nunito', sans-serif;
  font-size: 3.125rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5rem;
}
.display-2 {
  font-family: 'Nunito', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.2rem;
}
.display-4 {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.35rem;
  line-height: 1.1;
}
.display-5 > .mbr-iconfont {
  font-size: 2.16rem;
}
.display-7 {
  font-family: 'Nunito', sans-serif;
  font-size: 1.2rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.92rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 992px) {
  .display-1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1875rem;
    font-size: calc( 1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.74375rem + (3.125 - 1.74375) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.08rem;
    font-size: calc( 1.1225rem + (1.35 - 1.1225) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.1225rem + (1.35 - 1.1225) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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: 1rem 3rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 1rem 2.6rem;
  border-radius: 8px;
}
.btn-lg {
  padding: 20px 30px;
  border-radius: 8px;
}
.bg-primary {
  background-color: #2eab50 !important;
}
.bg-success {
  background-color: #86c226 !important;
}
.bg-info {
  background-color: #999999 !important;
}
.bg-warning {
  background-color: #242930 !important;
}
.bg-danger {
  background-color: #d7a459 !important;
}
.btn-primary {
  color: #242930 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #2eab50 !important;
  border-color: #2eab50 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #1e6f34 !important;
  border-color: #1e6f34 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #11737c !important;
  border-color: #11737c !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #083539 !important;
  border-color: #083539 !important;
}
.btn-info,
.btn-info:active {
  background-color: #999999 !important;
  border-color: #999999 !important;
  color: #ffffff !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #737373 !important;
  border-color: #737373 !important;
}
.btn-success,
.btn-success:active {
  background-color: #86c226 !important;
  border-color: #86c226 !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #5a8219 !important;
  border-color: #5a8219 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #242930 !important;
  border-color: #242930 !important;
  color: #ffffff !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #030404 !important;
  border-color: #030404 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #d7a459 !important;
  border-color: #d7a459 !important;
  color: #ffffff !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #b77f2c !important;
  border-color: #b77f2c !important;
}
.btn-white {
  color: #404040 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #d9d9d9 !important;
  border-color: #d9d9d9 !important;
}
.btn-black,
.btn-black:active {
  background-color: #333333 !important;
  border-color: #333333 !important;
  color: #ffffff !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 {
  background: none;
  border-color: #2eab50;
  color: #2eab50;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #2eab50;
  border-color: #2eab50;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #2eab50 !important;
  border-color: #2eab50 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #11737c;
  color: #11737c;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #11737c;
  border-color: #11737c;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #11737c !important;
  border-color: #11737c !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #999999;
  color: #999999;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #999999;
  border-color: #999999;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #999999 !important;
  border-color: #999999 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #86c226;
  color: #86c226;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #86c226;
  border-color: #86c226;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #86c226 !important;
  border-color: #86c226 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #242930;
  color: #242930;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #242930;
  border-color: #242930;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #242930 !important;
  border-color: #242930 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #d7a459;
  color: #d7a459;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #d7a459;
  border-color: #d7a459;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #d7a459 !important;
  border-color: #d7a459 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #333333;
  color: #333333;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-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: #2eab50 !important;
}
.text-secondary {
  color: #11737c !important;
}
.text-success {
  color: #86c226 !important;
}
.text-info {
  color: #999999 !important;
}
.text-warning {
  color: #242930 !important;
}
.text-danger {
  color: #d7a459 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #68d786 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #1dc6d6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #b5e26c !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #505b6a !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #ebd1ab !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #999999;
}
.alert-warning {
  background-color: #242930;
}
.alert-danger {
  background-color: #d7a459;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5) !important;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #2eab50;
  border-color: #2eab50;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #2eab50;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #7ddc97;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bfe681;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #d9d9d9;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #d8dce1;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #fffefd;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
blockquote {
  border-color: #2eab50;
}
/* Forms */
.mbr-form .btn {
  margin: 0.4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 0 0 5px rgba(132, 138, 189, 0.5);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #2eab50;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: gray !important;
  border-bottom-color: gray !important;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #2eab50;
  border-bottom-color: #2eab50;
}
.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: #2eab50 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #11737c !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%232eab50' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-s0kLm3ktvQ .dropdown-menu {
  padding: 12px 0;
}
.cid-s0kLm3ktvQ .dropdown-item:hover,
.cid-s0kLm3ktvQ .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s0kLm3ktvQ .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s0kLm3ktvQ .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s0kLm3ktvQ .nav-link {
  position: relative;
}
.cid-s0kLm3ktvQ .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s0kLm3ktvQ .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s0kLm3ktvQ .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s0kLm3ktvQ .dropdown-menu,
.cid-s0kLm3ktvQ .navbar.opened {
  background: #242930 !important;
}
.cid-s0kLm3ktvQ .nav-item:focus,
.cid-s0kLm3ktvQ .nav-link:focus {
  outline: none;
}
.cid-s0kLm3ktvQ .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s0kLm3ktvQ .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0kLm3ktvQ .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-s0kLm3ktvQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0kLm3ktvQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0kLm3ktvQ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s0kLm3ktvQ .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s0kLm3ktvQ .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s0kLm3ktvQ .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s0kLm3ktvQ .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s0kLm3ktvQ .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s0kLm3ktvQ .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s0kLm3ktvQ .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s0kLm3ktvQ .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s0kLm3ktvQ .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s0kLm3ktvQ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s0kLm3ktvQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s0kLm3ktvQ .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened {
  position: fixed;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s0kLm3ktvQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s0kLm3ktvQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s0kLm3ktvQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s0kLm3ktvQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s0kLm3ktvQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s0kLm3ktvQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s0kLm3ktvQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s0kLm3ktvQ .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s0kLm3ktvQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s0kLm3ktvQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s0kLm3ktvQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s0kLm3ktvQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s0kLm3ktvQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s0kLm3ktvQ .dropdown-item.active,
.cid-s0kLm3ktvQ .dropdown-item:active {
  background-color: transparent;
}
.cid-s0kLm3ktvQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s0kLm3ktvQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s0kLm3ktvQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s0kLm3ktvQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0kLm3ktvQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s0kLm3ktvQ .navbar-buttons {
  text-align: center;
}
.cid-s0kLm3ktvQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ .navbar-dropdown {
  position: fixed;
}
.cid-s0kLm3ktvQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0kLm3ktvQ .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s0kLm3ktvQ .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s0kLm3ktvQ .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0kLm3ktvQ .navbar {
    height: 77px;
  }
  .cid-s0kLm3ktvQ .navbar.opened {
    height: auto;
  }
  .cid-s0kLm3ktvQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s0kLm3ktvQ * {
    text-align: left !important;
  }
  .cid-s0kLm3ktvQ .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFkBSrUbyt {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .cid-sFkBSrUbyt {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFkBSrUbyt img {
  width: 100%;
}
.cid-sFkBSrUbyt .mbr-section-title {
  color: #ffffff;
}
.cid-sFkBSrUbyt .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFkBSrUbyt .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFkBSrUbyt .svg-1 path {
  fill: #242930;
}
.cid-sFkBSrUbyt .container-fluid {
  max-width: 1200px;
}
.cid-sFkBSrUbyt .mbr-arrow {
  z-index: 1;
}
.cid-sFkBSrUbyt .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFkBSrUbyt .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFkBSrUbyt .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFkBSrUbyt {
    padding-top: 130px !important;
    padding-bottom: 30px !important;
  }
  .cid-sFkBSrUbyt .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFkBSrUbyt .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-sFkBSrUbyt .mbr-text,
.cid-sFkBSrUbyt .mbr-section-btn {
  color: #ffffff;
}
.cid-s0l2BkM8Gb {
  padding-top: 15px;
  padding-bottom: 60px;
  background-color: #242930;
}
@media (min-width: 1500px) {
  .cid-s0l2BkM8Gb .container {
    max-width: 1400px;
  }
}
.cid-s0l2BkM8Gb .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2eab50;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-s0l2BkM8Gb .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-s0l2BkM8Gb .mbr-section-subtitle {
  color: #999999;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-s0l2BkM8Gb .main-title {
  margin-bottom: 16px;
  color: #f9fafb;
}
.cid-s0l2BkM8Gb .card {
  transition: all 0.3s;
}
.cid-s0l2BkM8Gb .card .card-wrapper {
  background-position: center;
  border-radius: 4px;
  padding: 10px;
  cursor: pointer;
  background: #242930;
  transition: all 0.3s;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cid-s0l2BkM8Gb .card .card-wrapper .img-wrapper {
  width: auto;
  height: 134px;
  margin-bottom: 30px;
}
.cid-s0l2BkM8Gb .card .card-wrapper .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.cid-s0l2BkM8Gb .card .card-wrapper .card-box {
  padding-top: 30px;
}
.cid-s0l2BkM8Gb .card .card-wrapper .card-box .card-title {
  font-weight: 600;
  margin-bottom: 16px;
}
.cid-s0l2BkM8Gb .card .card-wrapper .card-box .mbr-text {
  font-weight: 400;
}
.cid-s0l2BkM8Gb .card .card-wrapper .card-box .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 767px) {
  .cid-s0l2BkM8Gb {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-s0l2BkM8Gb .card-box {
    padding: 1rem;
    padding-top: 0 !important;
  }
}
.cid-s0l2BkM8Gb .btn[class*="-outline"] {
  border: none;
  padding: 0;
  margin: 0 0.25rem !important;
  box-shadow: none !important;
}
.cid-s0l2BkM8Gb .btn[class*="-outline"] span {
  order: 2;
  font-size: 1.1rem;
  padding-top: 3px;
  padding-left: 0.4rem;
  transition: padding 0.3s !important;
}
.cid-s0l2BkM8Gb .btn[class*="-outline"]:hover span {
  padding-left: 15px;
}
.cid-s0l2BkM8Gb .btn[class*="-outline"]:hover {
  background-color: transparent !important;
  color: #000000 !important;
  box-shadow: none !important;
}
.cid-s0l2BkM8Gb .btn[class*="-outline"]:active,
.cid-s0l2BkM8Gb .btn[class*="-outline"]:focus {
  background-color: transparent !important;
  box-shadow: none !important;
}
.cid-s0l2BkM8Gb .card-title,
.cid-s0l2BkM8Gb .card-box {
  color: #f9fafb;
}
.cid-s0l2BkM8Gb .mbr-text,
.cid-s0l2BkM8Gb .link-wrap {
  color: #5bb947;
}
.cid-sFkQk6DKL5 {
  padding-top: 4rem;
  padding-bottom: 2rem;
  background-color: #86c226;
}
.cid-sFkQk6DKL5 .card-wrapper {
  display: flex;
  justify-content: center;
}
.cid-sFkQk6DKL5 .mbr-iconfont {
  font-size: 2rem;
  color: #1e1e1e;
}
.cid-sFkQk6DKL5 .icon-wrapper {
  background: #ffffff;
  border-radius: 50%;
  min-width: 70px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFkQk6DKL5 .card-box {
  padding-left: 1.5rem;
  width: fit-content;
  min-width: 170px;
}
.cid-sFkQk6DKL5 .card-text {
  color: #242930;
}
.cid-sFkQk6DKL5 h4 {
  color: #242930;
  font-weight: 900 !important;
}
@media (max-width: 767px) {
  .cid-sFkQk6DKL5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .cid-sFkQk6DKL5 * {
    text-align: left !important;
  }
}
.cid-sFkQk6DKL5 .mbr-text {
  text-align: left;
}
.cid-s0lk2AFhij {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/engine3-3-960x640.jpg");
  overflow: hidden;
}
.cid-s0lk2AFhij svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-s0lk2AFhij #e2_shape {
  fill: #86c226 !important;
}
.cid-s0lk2AFhij .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s0lk2AFhij .mbr-text {
  font-weight: 300;
}
.cid-s0lk2AFhij .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s0lk2AFhij .btn-white {
  color: #404040 !important;
}
.cid-s0lk2AFhij .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s0lk2AFhij .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-s0lk2AFhij .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s0lk2AFhij {
    padding: 30px 30px 0 30px;
  }
  .cid-s0lk2AFhij svg {
    display: none;
  }
}
.cid-s0lk2AFhij .mbr-section-title,
.cid-s0lk2AFhij .mbr-section-btn {
  color: #ffffff;
}
.cid-s0lk2AFhij .mbr-text,
.cid-s0lk2AFhij .mbr-section-btn {
  color: #ffffff;
}
.cid-s0lfzeDRZk {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #86c226;
}
.cid-s0lfzeDRZk .mbr-text,
.cid-s0lfzeDRZk .ornament {
  color: #242930;
  text-align: right;
}
@media (max-width: 767px) {
  .cid-s0lfzeDRZk {
    padding-top: 30px !important;
    padding-bottom: 10px !important;
  }
  .cid-s0lfzeDRZk * {
    text-align: left !important;
  }
}
.cid-s0leQMWTGJ {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-s0leQMWTGJ .container {
  max-width: 1400px;
}
.cid-s0leQMWTGJ .card-img2 span {
  padding-top: 6px;
}
.cid-s0leQMWTGJ .soc-item a {
  padding-top: 5px;
}
.cid-s0leQMWTGJ .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s0leQMWTGJ .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s0leQMWTGJ .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s0leQMWTGJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s0leQMWTGJ svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s0leQMWTGJ #e2_shape {
  fill: #86c226 !important;
}
.cid-s0leQMWTGJ .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s0leQMWTGJ .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s0leQMWTGJ .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s0leQMWTGJ .card-img {
  width: auto;
}
.cid-s0leQMWTGJ .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s0leQMWTGJ .soc-item span {
  font-size: 1.4rem;
}
.cid-s0leQMWTGJ .soc-item:hover span {
  color: white !important;
}
.cid-s0leQMWTGJ .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s0leQMWTGJ .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s0leQMWTGJ .media-wrap {
  margin-bottom: 1rem;
}
.cid-s0leQMWTGJ .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s0leQMWTGJ img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s0leQMWTGJ {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .cid-s0leQMWTGJ .item {
    justify-content: center;
  }
  .cid-s0leQMWTGJ .quote::after {
    left: 60px;
  }
  .cid-s0leQMWTGJ * {
    text-align: left !important;
  }
  .cid-s0leQMWTGJ svg {
    display: none;
  }
}
.cid-s0leQMWTGJ .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s0leQMWTGJ .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s0leQMWTGJ .text1 {
  color: #ffffff;
}
.cid-s0leQMWTGJ .item-title {
  color: #ffffff;
}
.cid-s0leQMWTGJ H5 {
  color: #86c226;
}
.cid-s0leQMWTGJ .theme {
  color: #ffffff;
}
.cid-s0leQMWTGJ .copyright > p {
  color: #ff3366;
}
.cid-s0leQMWTGJ .text2 {
  color: #ffffff;
}
.cid-sFlgxoq6V8.popup-builder {
  background-color: #ffffff;
}
.cid-sFlgxoq6V8.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFlgxoq6V8.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFlgxoq6V8 .modal-content,
.cid-sFlgxoq6V8 .modal-dialog {
  height: auto;
}
.cid-sFlgxoq6V8 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFlgxoq6V8 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFlgxoq6V8 .form-wrapper .mbr-form .form-group,
  .cid-sFlgxoq6V8 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFlgxoq6V8 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFlgxoq6V8 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFlgxoq6V8 .mbr-text {
  text-align: center;
}
.cid-sFlgxoq6V8 .pt-0 {
  padding-top: 0 !important;
}
.cid-sFlgxoq6V8 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFlgxoq6V8 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFlgxoq6V8 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFlgxoq6V8 .modal-open {
  overflow: hidden;
}
.cid-sFlgxoq6V8 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFlgxoq6V8 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFlgxoq6V8 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFlgxoq6V8 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFlgxoq6V8 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFlgxoq6V8 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFlgxoq6V8 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFlgxoq6V8 .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFlgxoq6V8 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFlgxoq6V8 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFlgxoq6V8 .modal-backdrop.show {
  opacity: .5;
}
.cid-sFlgxoq6V8 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFlgxoq6V8 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlgxoq6V8 .modal-header {
    padding: 1rem;
  }
}
.cid-sFlgxoq6V8 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFlgxoq6V8 .modal-header .close:hover {
  opacity: 1;
}
.cid-sFlgxoq6V8 .modal-header .close:focus {
  outline: none;
}
.cid-sFlgxoq6V8 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFlgxoq6V8 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFlgxoq6V8 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlgxoq6V8 .modal-body {
    padding: 1rem;
  }
}
.cid-sFlgxoq6V8 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFlgxoq6V8 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlgxoq6V8 .modal-footer {
    padding: 1rem;
  }
}
.cid-sFlgxoq6V8 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFlgxoq6V8 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFlgxoq6V8 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFlgxoq6V8 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFlgxoq6V8 .modal-sm {
    max-width: 300px;
  }
  .cid-sFlgxoq6V8 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFlgxoq6V8 .modal-lg,
  .cid-sFlgxoq6V8 .modal-xl {
    max-width: 800px;
  }
  .cid-sFlgxoq6V8 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFlgxoq6V8 .modal-xl {
    max-width: 1140px;
  }
  .cid-sFlgxoq6V8 .container {
    max-width: 1140px;
  }
}
.cid-sFlgxoq6V8 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFlgxoq6V8 .container {
    max-width: 720px;
  }
}
.cid-sFlgxoq6V8 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFlgxoq6V8 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFlgxoq6V8 .form-group {
  margin-bottom: 1rem;
}
.cid-sFlgxoq6V8 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFlgxoq6V8 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFlgxoq6V8 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFlgxoq6V8 .mbr-section-btn {
  margin: 0;
}
.cid-sFlgxoq6V8 .mbr-section-btn .btn {
  margin: 0;
}
.cid-s0kLm3ktvQ .dropdown-menu {
  padding: 12px 0;
}
.cid-s0kLm3ktvQ .dropdown-item:hover,
.cid-s0kLm3ktvQ .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s0kLm3ktvQ .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s0kLm3ktvQ .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s0kLm3ktvQ .nav-link {
  position: relative;
}
.cid-s0kLm3ktvQ .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s0kLm3ktvQ .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s0kLm3ktvQ .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s0kLm3ktvQ .dropdown-menu,
.cid-s0kLm3ktvQ .navbar.opened {
  background: #242930 !important;
}
.cid-s0kLm3ktvQ .nav-item:focus,
.cid-s0kLm3ktvQ .nav-link:focus {
  outline: none;
}
.cid-s0kLm3ktvQ .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s0kLm3ktvQ .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s0kLm3ktvQ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s0kLm3ktvQ .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-s0kLm3ktvQ .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s0kLm3ktvQ .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s0kLm3ktvQ .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s0kLm3ktvQ .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s0kLm3ktvQ .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s0kLm3ktvQ .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s0kLm3ktvQ .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s0kLm3ktvQ .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s0kLm3ktvQ .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s0kLm3ktvQ .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s0kLm3ktvQ .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s0kLm3ktvQ .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s0kLm3ktvQ .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s0kLm3ktvQ .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s0kLm3ktvQ .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened {
  position: fixed;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s0kLm3ktvQ .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s0kLm3ktvQ .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s0kLm3ktvQ .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s0kLm3ktvQ .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s0kLm3ktvQ .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s0kLm3ktvQ .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s0kLm3ktvQ .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s0kLm3ktvQ .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s0kLm3ktvQ .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s0kLm3ktvQ .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s0kLm3ktvQ .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s0kLm3ktvQ .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s0kLm3ktvQ .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s0kLm3ktvQ .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s0kLm3ktvQ .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s0kLm3ktvQ .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s0kLm3ktvQ .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s0kLm3ktvQ .dropdown-item.active,
.cid-s0kLm3ktvQ .dropdown-item:active {
  background-color: transparent;
}
.cid-s0kLm3ktvQ .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s0kLm3ktvQ .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s0kLm3ktvQ .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s0kLm3ktvQ .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s0kLm3ktvQ .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s0kLm3ktvQ ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s0kLm3ktvQ .navbar-buttons {
  text-align: center;
}
.cid-s0kLm3ktvQ button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s0kLm3ktvQ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s0kLm3ktvQ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s0kLm3ktvQ .navbar-dropdown {
  position: fixed;
}
.cid-s0kLm3ktvQ a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s0kLm3ktvQ .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s0kLm3ktvQ .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s0kLm3ktvQ .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s0kLm3ktvQ .navbar {
    height: 77px;
  }
  .cid-s0kLm3ktvQ .navbar.opened {
    height: auto;
  }
  .cid-s0kLm3ktvQ .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s0kLm3ktvQ * {
    text-align: left !important;
  }
  .cid-s0kLm3ktvQ .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFl64gkOiX {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .cid-sFl64gkOiX {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFl64gkOiX img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFl64gkOiX .mbr-section-title {
  color: #ffffff;
}
.cid-sFl64gkOiX .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFl64gkOiX .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFl64gkOiX .svg-1 path {
  fill: #242930;
}
.cid-sFl64gkOiX .container-fluid {
  max-width: 1200px;
}
.cid-sFl64gkOiX .mbr-arrow {
  z-index: 1;
}
.cid-sFl64gkOiX .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFl64gkOiX .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFl64gkOiX .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFl64gkOiX {
    padding-top: 80px !important;
  }
  .cid-sFl64gkOiX .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFl64gkOiX .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFl64gkOiX h1 {
    margin-top: 2rem;
  }
}
.cid-sFl64gkOiX .mbr-text,
.cid-sFl64gkOiX .mbr-section-btn {
  color: #ffffff;
}
.cid-s0ZeJU0mcK {
  padding-top: 40px;
  background-color: #242930;
}
.cid-s0ZeJU0mcK .container {
  margin-bottom: 15%;
}
.cid-s0ZeJU0mcK .content-container .btn-bgr {
  z-index: 0;
}
.cid-s0ZeJU0mcK .container-boxes {
  padding-bottom: 45px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #242930;
}
.cid-s0ZeJU0mcK .box-item {
  width: 29%;
  padding: 2.5rem;
}
.cid-s0ZeJU0mcK .box-item:first-child {
  background-color: #f9fafb;
  margin-top: -200px;
}
.cid-s0ZeJU0mcK .box-item:nth-child(2) {
  background-color: #5bb947;
}
.cid-s0ZeJU0mcK .box-item:last-child {
  background-color: #242930;
}
.cid-s0ZeJU0mcK .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-s0ZeJU0mcK .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-s0ZeJU0mcK .box-list li:last-child {
  border-bottom: none;
}
.cid-s0ZeJU0mcK .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-s0ZeJU0mcK .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
.cid-s0ZeJU0mcK .izq {
  border-top-left-radius: 25px !important;
  border-bottom-left-radius: 25px !important;
}
.cid-s0ZeJU0mcK .der {
  border-top-right-radius: 25px !important;
  border-bottom-right-radius: 25px !important;
}
@media (min-width: 992px) {
  .cid-s0ZeJU0mcK .media-container-row {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
  .cid-s0ZeJU0mcK .box-item {
    margin-top: -200px;
    max-width: 400px;
  }
}
@media (max-width: 991px) {
  .cid-s0ZeJU0mcK .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-s0ZeJU0mcK .box-item {
    margin-top: 0;
    width: 90%;
  }
  .cid-s0ZeJU0mcK .box-item:first-child {
    margin-top: -100px;
  }
}
@media (max-width: 768px) {
  .cid-s0ZeJU0mcK * {
    text-align: left !important;
  }
  .cid-s0ZeJU0mcK .boton {
    display: none;
  }
  .cid-s0ZeJU0mcK .izq {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;
  }
  .cid-s0ZeJU0mcK .der {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }
  .cid-s0ZeJU0mcK .container-boxes {
    padding-top: 30px;
  }
}
.cid-s0ZeJU0mcK .mbr-text,
.cid-s0ZeJU0mcK .mbr-section-btn {
  color: #5bb947;
  text-align: right;
}
.cid-s0ZeJU0mcK H1 {
  color: #f9fafb;
  text-align: right;
}
.cid-s0ZeJU0mcK .icon-block-top,
.cid-s0ZeJU0mcK .box-item-title {
  color: #ffffff;
}
.cid-s0ZeJU0mcK .box-item-text {
  color: #242930;
}
.cid-s0ZeJU0mcK UL {
  color: #86c226;
}
.cid-s0ZfuXJkC5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-s0ZfuXJkC5 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s0ZfuXJkC5 svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-s0ZfuXJkC5 #e2_shape {
  fill: #86c226 !important;
}
.cid-s0ZfuXJkC5 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s0ZfuXJkC5 .mbr-text {
  font-weight: 300;
}
.cid-s0ZfuXJkC5 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s0ZfuXJkC5 .btn-white {
  color: #404040 !important;
}
.cid-s0ZfuXJkC5 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s0ZfuXJkC5 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-s0ZfuXJkC5 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s0ZfuXJkC5 {
    padding: 30px 30px 0 30px !important;
  }
  .cid-s0ZfuXJkC5 svg {
    display: none;
  }
  .cid-s0ZfuXJkC5 * {
    text-align: left !important;
  }
}
.cid-s0ZfuXJkC5 .mbr-text,
.cid-s0ZfuXJkC5 .mbr-section-btn {
  color: #ffffff;
}
.cid-s0ZfuXJkC5 .mbr-section-title,
.cid-s0ZfuXJkC5 .mbr-section-btn {
  color: #86c226;
}
.cid-s0ZfogAcN7 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-s0ZfogAcN7 .container {
  max-width: 1400px;
}
.cid-s0ZfogAcN7 .card-img2 span {
  padding-top: 6px;
}
.cid-s0ZfogAcN7 .soc-item a {
  padding-top: 5px;
}
.cid-s0ZfogAcN7 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s0ZfogAcN7 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s0ZfogAcN7 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s0ZfogAcN7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s0ZfogAcN7 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s0ZfogAcN7 #e2_shape {
  fill: #86c226 !important;
}
.cid-s0ZfogAcN7 .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s0ZfogAcN7 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s0ZfogAcN7 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s0ZfogAcN7 .card-img {
  width: auto;
}
.cid-s0ZfogAcN7 .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s0ZfogAcN7 .soc-item span {
  font-size: 1.4rem;
}
.cid-s0ZfogAcN7 .soc-item:hover span {
  color: white !important;
}
.cid-s0ZfogAcN7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s0ZfogAcN7 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s0ZfogAcN7 .media-wrap {
  margin-bottom: 1rem;
}
.cid-s0ZfogAcN7 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s0ZfogAcN7 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s0ZfogAcN7 .item {
    justify-content: center;
  }
  .cid-s0ZfogAcN7 .quote::after {
    left: 60px;
  }
}
.cid-s0ZfogAcN7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s0ZfogAcN7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s0ZfogAcN7 .text1 {
  color: #ffffff;
}
.cid-s0ZfogAcN7 .item-title {
  color: #ffffff;
}
.cid-s0ZfogAcN7 H5 {
  color: #86c226;
}
.cid-s0ZfogAcN7 .theme {
  color: #ffffff;
}
.cid-s0ZfogAcN7 .copyright > p {
  color: #ff3366;
}
.cid-s0ZfogAcN7 .text2 {
  color: #ffffff;
}
.cid-sFlhx1zK7m.popup-builder {
  background-color: #ffffff;
}
.cid-sFlhx1zK7m.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFlhx1zK7m.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFlhx1zK7m .modal-content,
.cid-sFlhx1zK7m .modal-dialog {
  height: auto;
}
.cid-sFlhx1zK7m .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFlhx1zK7m .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFlhx1zK7m .form-wrapper .mbr-form .form-group,
  .cid-sFlhx1zK7m .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFlhx1zK7m .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFlhx1zK7m .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFlhx1zK7m .mbr-text {
  text-align: center;
}
.cid-sFlhx1zK7m .pt-0 {
  padding-top: 0 !important;
}
.cid-sFlhx1zK7m .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFlhx1zK7m .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFlhx1zK7m .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFlhx1zK7m .modal-open {
  overflow: hidden;
}
.cid-sFlhx1zK7m .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFlhx1zK7m .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFlhx1zK7m .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFlhx1zK7m .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFlhx1zK7m .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFlhx1zK7m .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFlhx1zK7m .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFlhx1zK7m .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFlhx1zK7m .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFlhx1zK7m .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFlhx1zK7m .modal-backdrop.show {
  opacity: .5;
}
.cid-sFlhx1zK7m .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFlhx1zK7m .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1zK7m .modal-header {
    padding: 1rem;
  }
}
.cid-sFlhx1zK7m .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFlhx1zK7m .modal-header .close:hover {
  opacity: 1;
}
.cid-sFlhx1zK7m .modal-header .close:focus {
  outline: none;
}
.cid-sFlhx1zK7m .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFlhx1zK7m .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFlhx1zK7m .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1zK7m .modal-body {
    padding: 1rem;
  }
}
.cid-sFlhx1zK7m .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFlhx1zK7m .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1zK7m .modal-footer {
    padding: 1rem;
  }
}
.cid-sFlhx1zK7m .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFlhx1zK7m .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFlhx1zK7m .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFlhx1zK7m .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFlhx1zK7m .modal-sm {
    max-width: 300px;
  }
  .cid-sFlhx1zK7m .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFlhx1zK7m .modal-lg,
  .cid-sFlhx1zK7m .modal-xl {
    max-width: 800px;
  }
  .cid-sFlhx1zK7m .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFlhx1zK7m .modal-xl {
    max-width: 1140px;
  }
  .cid-sFlhx1zK7m .container {
    max-width: 1140px;
  }
}
.cid-sFlhx1zK7m .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFlhx1zK7m .container {
    max-width: 720px;
  }
}
.cid-sFlhx1zK7m .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFlhx1zK7m .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFlhx1zK7m .form-group {
  margin-bottom: 1rem;
}
.cid-sFlhx1zK7m .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFlhx1zK7m .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFlhx1zK7m .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFlhx1zK7m .mbr-section-btn {
  margin: 0;
}
.cid-sFlhx1zK7m .mbr-section-btn .btn {
  margin: 0;
}
.cid-s100MVyK6G .dropdown-menu {
  padding: 12px 0;
}
.cid-s100MVyK6G .dropdown-item:hover,
.cid-s100MVyK6G .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s100MVyK6G .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s100MVyK6G .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s100MVyK6G .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s100MVyK6G .nav-link {
  position: relative;
}
.cid-s100MVyK6G .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s100MVyK6G .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s100MVyK6G .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s100MVyK6G .dropdown-menu,
.cid-s100MVyK6G .navbar.opened {
  background: #242930 !important;
}
.cid-s100MVyK6G .nav-item:focus,
.cid-s100MVyK6G .nav-link:focus {
  outline: none;
}
.cid-s100MVyK6G .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s100MVyK6G .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s100MVyK6G .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s100MVyK6G .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s100MVyK6G .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s100MVyK6G .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-s100MVyK6G .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s100MVyK6G .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s100MVyK6G .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s100MVyK6G .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s100MVyK6G .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s100MVyK6G .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s100MVyK6G .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s100MVyK6G .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s100MVyK6G .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s100MVyK6G .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s100MVyK6G .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s100MVyK6G .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s100MVyK6G .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s100MVyK6G .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s100MVyK6G .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s100MVyK6G .navbar.collapsed.opened {
  position: fixed;
}
.cid-s100MVyK6G .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s100MVyK6G .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s100MVyK6G .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s100MVyK6G .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s100MVyK6G .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s100MVyK6G .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s100MVyK6G .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s100MVyK6G .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s100MVyK6G .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s100MVyK6G .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s100MVyK6G .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s100MVyK6G .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s100MVyK6G .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s100MVyK6G .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s100MVyK6G .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s100MVyK6G .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s100MVyK6G .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s100MVyK6G .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s100MVyK6G .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s100MVyK6G .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s100MVyK6G .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s100MVyK6G .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s100MVyK6G .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s100MVyK6G .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s100MVyK6G .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s100MVyK6G .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s100MVyK6G .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s100MVyK6G .dropdown-item.active,
.cid-s100MVyK6G .dropdown-item:active {
  background-color: transparent;
}
.cid-s100MVyK6G .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s100MVyK6G .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s100MVyK6G .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s100MVyK6G .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s100MVyK6G .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s100MVyK6G .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s100MVyK6G ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s100MVyK6G .navbar-buttons {
  text-align: center;
}
.cid-s100MVyK6G button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s100MVyK6G button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s100MVyK6G button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s100MVyK6G button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s100MVyK6G button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s100MVyK6G button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s100MVyK6G nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s100MVyK6G nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s100MVyK6G nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s100MVyK6G nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s100MVyK6G .navbar-dropdown {
  position: fixed;
}
.cid-s100MVyK6G a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s100MVyK6G .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s100MVyK6G .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s100MVyK6G .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s100MVyK6G .navbar {
    height: 77px;
  }
  .cid-s100MVyK6G .navbar.opened {
    height: auto;
  }
  .cid-s100MVyK6G .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s100MVyK6G * {
    text-align: left !important;
  }
  .cid-s100MVyK6G .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFkEuCYRwF {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .cid-sFkEuCYRwF {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFkEuCYRwF img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFkEuCYRwF .mbr-section-title {
  color: #ffffff;
}
.cid-sFkEuCYRwF .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFkEuCYRwF .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFkEuCYRwF .svg-1 path {
  fill: #242930;
}
.cid-sFkEuCYRwF .container-fluid {
  max-width: 1200px;
}
.cid-sFkEuCYRwF .mbr-arrow {
  z-index: 1;
}
.cid-sFkEuCYRwF .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFkEuCYRwF .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFkEuCYRwF .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFkEuCYRwF .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFkEuCYRwF .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-sFkEuCYRwF .mbr-text,
.cid-sFkEuCYRwF .mbr-section-btn {
  color: #ffffff;
}
.cid-s104mCm3vt {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #242930;
}
.cid-s104mCm3vt .mbr-section-title {
  color: #404040;
}
.cid-s104mCm3vt .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-s104mCm3vt .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-s104mCm3vt .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s104mCm3vt .mbr-section-title,
.cid-s104mCm3vt .icon-wrap,
.cid-s104mCm3vt .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-s104mCm3vt .mbr-text,
.cid-s104mCm3vt .mbr-section-btn {
  text-align: right;
  color: #5bb947;
}
@media (max-width: 767px) {
  .cid-s104mCm3vt {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-s104mCm3vt * {
    text-align: left !important;
  }
}
.cid-s13ixGR128 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
}
.cid-s13ixGR128 h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
}
.cid-s13ixGR128 p {
  color: #767676;
  text-align: left;
}
.cid-s13ixGR128 .card-box {
  padding-top: 2rem;
}
.cid-s13ixGR128 .card-wrapper {
  height: 100%;
}
.cid-s13ixGR128 img {
  border-radius: 100%;
  height: 260px;
  width: 260px;
  object-fit: cover;
}
.cid-s13ixGR128 P {
  text-align: center;
  color: #5bb947;
}
.cid-s13ixGR128 .card-title {
  text-align: center;
  color: #ffffff;
}
.cid-s13ixGR128 .card-img {
  position: relative;
}
.cid-s13ixGR128 .card-icon {
  position: absolute;
  background: #f9fafb;
  height: 70px;
  width: 70px;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.22);
  border-radius: 100%;
  padding: 1rem;
  left: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
  top: 1rem;
}
.cid-s13ixGR128 .card-icon .mbr-iconfont {
  font-size: 2rem;
  color: #2eab50;
}
.cid-sFreMe5W0X {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #242930;
}
.cid-sFreMe5W0X h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sFreMe5W0X img {
  width: 100%;
}
.cid-sFreMe5W0X .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sFreMe5W0X .mbr-section-subtitle {
  color: #767676;
}
.cid-sFreMe5W0X .main-sub-title {
  background: #2eab50;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-sFreMe5W0X .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sFreMe5W0X svg {
  overflow: visible;
}
.cid-sFreMe5W0X ellipse {
  stroke: #efefef;
  stroke-width: 10px;
}
.cid-sFreMe5W0X path {
  stroke-width: 10px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sFreMe5W0X .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sFreMe5W0X .progress1 path {
  stroke: #86c226;
}
.cid-sFreMe5W0X .progress2 path {
  stroke: #86c226;
}
.cid-sFreMe5W0X .progress3 path {
  stroke: #86c226;
}
.cid-sFreMe5W0X .card-text {
  color: #767676;
}
.cid-sFreMe5W0X .main-sub-title,
.cid-sFreMe5W0X .align-wrapper {
  color: #ffffff;
}
.cid-sFreMe5W0X .main-text {
  color: #e6eaf1;
}
.cid-sFreMe5W0X .number {
  color: #ffffff;
}
.cid-sFreMe5W0X H4 {
  color: #ffffff;
}
.cid-sFreMe5W0X .main-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sFreMe5W0X {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-sFreMe5W0X img {
    width: 80%;
    margin-bottom: 2rem;
  }
  .cid-sFreMe5W0X .centro {
    text-align: center !important;
  }
}
.cid-sFV0Bo8RUH {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #242930;
}
.cid-sFV0Bo8RUH .mbr-section-subtitle {
  color: #36187d;
}
.cid-sFV0Bo8RUH .mbr-text {
  color: #86c226;
}
.cid-sFm7l6QlRZ {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sFm7l6QlRZ h3 {
  text-align: center;
  font-weight: 900 !important;
  font-size: 4rem !important;
}
.cid-sFm7l6QlRZ .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sFm7l6QlRZ .mbr-content-text {
  color: #000000;
}
.cid-sFm7l6QlRZ .card {
  word-wrap: break-word;
}
.cid-sFm7l6QlRZ .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem !important;
}
.cid-sFm7l6QlRZ H3 {
  color: #ffffff;
}
.cid-sFm7l6QlRZ H4 {
  color: #ffffff;
}
.cid-s10mnZ9Y8V {
  padding-top: 90px;
  padding-bottom: 30px;
  background: #242930;
}
.cid-s10mnZ9Y8V .container-fluid {
  padding: 0 3rem;
}
.cid-s10mnZ9Y8V .table-wrap {
  overflow: hidden;
  border-radius: 25px;
  background-color: #11737c;
  transition: 0.3s ease-out all;
  padding: 0;
  margin-bottom: 1em;
}
.cid-s10mnZ9Y8V .table-wrap .table-pricing {
  margin: 0 0 0.4em 0;
}
.cid-s10mnZ9Y8V .table-wrap ul {
  word-wrap: break-word;
  padding: 0 4rem;
  margin: 0 0 2rem 0;
  list-style: none;
}
.cid-s10mnZ9Y8V .table-wrap ul li {
  padding: 0.7em 0;
}
.cid-s10mnZ9Y8V .table-wrap ul li span {
  font-size: 32px;
  color: #000000;
  vertical-align: bottom;
  display: inline-block;
}
.cid-s10mnZ9Y8V .table-wrap ul:last-child {
  padding-bottom: 2rem;
}
.cid-s10mnZ9Y8V .table-wrap:hover {
  box-shadow: 0 7px 24px 0 rgba(206, 195, 52, 0.42);
}
.cid-s10mnZ9Y8V .table-wrap:hover .table-heading {
  background-color: #f9fafb;
}
.cid-s10mnZ9Y8V .mbr-iconfont {
  margin: 0 0.5em;
}
.cid-s10mnZ9Y8V .table-heading {
  transition: 0.3s ease-out all;
  display: block;
  width: 100%;
  padding: 0.6em 2rem;
  background-color: #86c226;
  color: #242930;
  text-align: center;
}
.cid-s10mnZ9Y8V .table-purchase {
  padding: 0 4rem;
  margin: 2.5em 0 0 0;
}
.cid-s10mnZ9Y8V .table-purchase .pricing-value {
  vertical-align: top;
  display: inline-block;
}
.cid-s10mnZ9Y8V .table-purchase .table-pricing {
  display: inline-block;
}
.cid-s10mnZ9Y8V .table-pricing,
.cid-s10mnZ9Y8V .pricing-value h1,
.cid-s10mnZ9Y8V .list-group {
  text-align: left;
}
.cid-s10mnZ9Y8V .table-pricing {
  text-align: center;
}
@media (max-width: 767px) {
  .cid-s10mnZ9Y8V {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-s10mnZ9Y8V * {
    text-align: left !important;
  }
  .cid-s10mnZ9Y8V .container-fluid {
    padding: 0 1rem;
  }
}
@media (max-width: 992px) {
  .cid-s10mnZ9Y8V {
    padding-left: 0rem !important;
    padding-right: 0rem !important;
  }
}
@media (max-width: 1393px) {
  .cid-s10mnZ9Y8V ul {
    padding: 1rem !important;
  }
  .cid-s10mnZ9Y8V .table-purchase {
    padding: 1rem !important;
  }
  .cid-s10mnZ9Y8V .table-heading {
    padding: 1rem !important;
  }
}
.cid-s10mnZ9Y8V .table-purchase,
.cid-s10mnZ9Y8V .table-pricing {
  text-align: left;
}
.cid-s10mnZ9Y8V P {
  text-align: left;
  color: #d3dcde;
}
.cid-s10sjm6aBW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #242930;
}
.cid-s10sjm6aBW .mbr-text,
.cid-s10sjm6aBW .ornament {
  color: #999999;
  text-align: left;
}
@media (max-width: 767px) {
  .cid-s10sjm6aBW * {
    text-align: left !important;
  }
}
.cid-ss7URSonpG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #242930;
}
.cid-ss7URSonpG .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2eab50;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ss7URSonpG .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ss7URSonpG .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ss7URSonpG .main-title.display-2 {
  line-height: 1.375;
}
.cid-ss7URSonpG .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ss7URSonpG .mbr-text {
  color: #606060;
}
.cid-ss7URSonpG .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ss7URSonpG .mbr-section-btn {
  margin-top: 24px;
}
.cid-ss7URSonpG .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ss7URSonpG .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ss7URSonpG .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ss7URSonpG .mbr-text,
.cid-ss7URSonpG .mbr-section-btn {
  color: #999999;
}
.cid-ss7URSonpG .main-title,
.cid-ss7URSonpG .mbr-section-btn {
  color: #5bb947;
}
@media (max-width: 767px) {
  .cid-ss7URSonpG {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
  }
  .cid-ss7URSonpG * {
    text-align: left !important;
  }
}
.cid-sFDn8DkAIn {
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #242930;
}
.cid-sFDn8DkAIn .title_block {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sFDn8DkAIn .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #2eab50;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sFDn8DkAIn .mbr-section-title {
  color: #86c226;
}
.cid-sFDn8DkAIn .card_wrap {
  height: 100%;
  z-index: 1;
  overflow: hidden;
  padding: 40px;
  padding-bottom: 60px;
  position: relative;
  border-radius: 6px;
  background-color: #d3dcde;
  box-shadow: 0px 6px 20px 0px rgba(0, 33, 121, 0.08);
}
.cid-sFDn8DkAIn .card_wrap:before {
  content: '';
  bottom: 20px;
  right: 15px;
  width: 65px;
  height: 65px;
  position: absolute;
  background-color: rgba(46, 171, 80, 0.15);
  border-radius: 50%;
}
.cid-sFDn8DkAIn .card_wrap:after {
  content: '';
  bottom: -24px;
  right: -20px;
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: rgba(46, 171, 80, 0.15);
  border-radius: 50%;
}
.cid-sFDn8DkAIn .card_header {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.cid-sFDn8DkAIn .user {
  display: flex;
  align-items: center;
}
.cid-sFDn8DkAIn .user_img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 50%;
}
.cid-sFDn8DkAIn .user_img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.cid-sFDn8DkAIn .user_name {
  margin-bottom: 2px;
  display: block;
  color: #242930;
}
.cid-sFDn8DkAIn .desk {
  margin-bottom: 0;
}
.cid-sFDn8DkAIn .iconfont-wrapper {
  min-width: 115px;
}
.cid-sFDn8DkAIn .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  margin-right: 3px;
}
.cid-sFDn8DkAIn .carousel-item {
  justify-content: center;
}
.cid-sFDn8DkAIn .carousel-item > div {
  width: 100%;
}
.cid-sFDn8DkAIn .carousel-item.active,
.cid-sFDn8DkAIn .carousel-item-next,
.cid-sFDn8DkAIn .carousel-item-prev {
  display: flex;
}
.cid-sFDn8DkAIn .carousel-controls {
  position: relative;
  height: 50px;
  margin-left: 20px;
  max-width: 120px;
  min-width: 120px;
}
.cid-sFDn8DkAIn .carousel-controls a {
  opacity: 1;
}
.cid-sFDn8DkAIn .carousel-controls a span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  color: #86c226;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #86c226;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sFDn8DkAIn .carousel-controls a span:hover {
  background-color: #86c226;
  color: #2eab50;
}
.cid-sFDn8DkAIn .carousel-control-prev {
  position: static;
  margin-right: 10px;
  width: 50px;
}
.cid-sFDn8DkAIn .carousel-control-next {
  position: static;
  width: 50px;
}
@media (max-width: 991px) {
  .cid-sFDn8DkAIn .title_block {
    margin-bottom: 40px;
  }
  .cid-sFDn8DkAIn .card_header {
    flex-direction: column;
  }
  .cid-sFDn8DkAIn .rating {
    margin-bottom: 10px;
    align-self: flex-end;
  }
  .cid-sFDn8DkAIn .user {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-sFDn8DkAIn .carousel-controls {
    display: none;
  }
  .cid-sFDn8DkAIn .title_block {
    text-align: center;
  }
  .cid-sFDn8DkAIn .carousel-item {
    padding: 0;
  }
  .cid-sFDn8DkAIn .card_wrap {
    padding: 30px;
    margin-bottom: 50px;
  }
  .cid-sFDn8DkAIn .card_header {
    margin-bottom: 15px;
  }
  .cid-sFDn8DkAIn .user_img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .cid-sFDn8DkAIn .user_img img {
    width: 50px;
    height: 50px;
  }
}
.cid-sFDn8DkAIn .mbr-text {
  color: #242930;
}
.cid-s100N6ZcXR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-s100N6ZcXR .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s100N6ZcXR svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-s100N6ZcXR #e2_shape {
  fill: #86c226 !important;
}
.cid-s100N6ZcXR .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s100N6ZcXR .mbr-text {
  font-weight: 300;
}
.cid-s100N6ZcXR .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s100N6ZcXR .btn-white {
  color: #404040 !important;
}
.cid-s100N6ZcXR .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s100N6ZcXR .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-s100N6ZcXR .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s100N6ZcXR {
    padding: 30px 30px 0 30px !important;
  }
  .cid-s100N6ZcXR svg {
    display: none;
  }
  .cid-s100N6ZcXR * {
    text-align: left !important;
  }
}
.cid-s100N6ZcXR .mbr-text,
.cid-s100N6ZcXR .mbr-section-btn {
  color: #ffffff;
}
.cid-s100N6ZcXR .mbr-section-title,
.cid-s100N6ZcXR .mbr-section-btn {
  color: #86c226;
}
.cid-s100NaqxDk {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-s100NaqxDk .container {
  max-width: 1400px;
}
.cid-s100NaqxDk .card-img2 span {
  padding-top: 6px;
}
.cid-s100NaqxDk .soc-item a {
  padding-top: 5px;
}
.cid-s100NaqxDk .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s100NaqxDk .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s100NaqxDk .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s100NaqxDk .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s100NaqxDk svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s100NaqxDk #e2_shape {
  fill: #86c226 !important;
}
.cid-s100NaqxDk .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s100NaqxDk .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s100NaqxDk .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s100NaqxDk .card-img {
  width: auto;
}
.cid-s100NaqxDk .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s100NaqxDk .soc-item span {
  font-size: 1.4rem;
}
.cid-s100NaqxDk .soc-item:hover span {
  color: white !important;
}
.cid-s100NaqxDk .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s100NaqxDk .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s100NaqxDk .media-wrap {
  margin-bottom: 1rem;
}
.cid-s100NaqxDk .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s100NaqxDk img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s100NaqxDk .item {
    justify-content: center;
  }
  .cid-s100NaqxDk .quote::after {
    left: 60px;
  }
}
.cid-s100NaqxDk .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s100NaqxDk .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s100NaqxDk .text1 {
  color: #ffffff;
}
.cid-s100NaqxDk .item-title {
  color: #ffffff;
}
.cid-s100NaqxDk H5 {
  color: #86c226;
}
.cid-s100NaqxDk .theme {
  color: #ffffff;
}
.cid-s100NaqxDk .copyright > p {
  color: #ff3366;
}
.cid-s100NaqxDk .text2 {
  color: #ffffff;
}
.cid-sFlhx1AItg.popup-builder {
  background-color: #ffffff;
}
.cid-sFlhx1AItg.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFlhx1AItg.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFlhx1AItg .modal-content,
.cid-sFlhx1AItg .modal-dialog {
  height: auto;
}
.cid-sFlhx1AItg .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFlhx1AItg .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFlhx1AItg .form-wrapper .mbr-form .form-group,
  .cid-sFlhx1AItg .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFlhx1AItg .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFlhx1AItg .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFlhx1AItg .mbr-text {
  text-align: center;
}
.cid-sFlhx1AItg .pt-0 {
  padding-top: 0 !important;
}
.cid-sFlhx1AItg .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFlhx1AItg .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFlhx1AItg .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFlhx1AItg .modal-open {
  overflow: hidden;
}
.cid-sFlhx1AItg .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFlhx1AItg .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFlhx1AItg .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFlhx1AItg .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFlhx1AItg .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFlhx1AItg .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFlhx1AItg .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFlhx1AItg .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFlhx1AItg .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFlhx1AItg .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFlhx1AItg .modal-backdrop.show {
  opacity: .5;
}
.cid-sFlhx1AItg .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFlhx1AItg .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1AItg .modal-header {
    padding: 1rem;
  }
}
.cid-sFlhx1AItg .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFlhx1AItg .modal-header .close:hover {
  opacity: 1;
}
.cid-sFlhx1AItg .modal-header .close:focus {
  outline: none;
}
.cid-sFlhx1AItg .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFlhx1AItg .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFlhx1AItg .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1AItg .modal-body {
    padding: 1rem;
  }
}
.cid-sFlhx1AItg .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFlhx1AItg .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1AItg .modal-footer {
    padding: 1rem;
  }
}
.cid-sFlhx1AItg .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFlhx1AItg .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFlhx1AItg .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFlhx1AItg .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFlhx1AItg .modal-sm {
    max-width: 300px;
  }
  .cid-sFlhx1AItg .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFlhx1AItg .modal-lg,
  .cid-sFlhx1AItg .modal-xl {
    max-width: 800px;
  }
  .cid-sFlhx1AItg .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFlhx1AItg .modal-xl {
    max-width: 1140px;
  }
  .cid-sFlhx1AItg .container {
    max-width: 1140px;
  }
}
.cid-sFlhx1AItg .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFlhx1AItg .container {
    max-width: 720px;
  }
}
.cid-sFlhx1AItg .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFlhx1AItg .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFlhx1AItg .form-group {
  margin-bottom: 1rem;
}
.cid-sFlhx1AItg .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFlhx1AItg .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFlhx1AItg .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFlhx1AItg .mbr-section-btn {
  margin: 0;
}
.cid-sFlhx1AItg .mbr-section-btn .btn {
  margin: 0;
}
.cid-s14LlVDqsW .dropdown-menu {
  padding: 12px 0;
}
.cid-s14LlVDqsW .dropdown-item:hover,
.cid-s14LlVDqsW .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s14LlVDqsW .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s14LlVDqsW .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s14LlVDqsW .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s14LlVDqsW .nav-link {
  position: relative;
}
.cid-s14LlVDqsW .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s14LlVDqsW .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s14LlVDqsW .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s14LlVDqsW .dropdown-menu,
.cid-s14LlVDqsW .navbar.opened {
  background: #242930 !important;
}
.cid-s14LlVDqsW .nav-item:focus,
.cid-s14LlVDqsW .nav-link:focus {
  outline: none;
}
.cid-s14LlVDqsW .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s14LlVDqsW .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s14LlVDqsW .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s14LlVDqsW .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s14LlVDqsW .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s14LlVDqsW .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-s14LlVDqsW .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s14LlVDqsW .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s14LlVDqsW .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s14LlVDqsW .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s14LlVDqsW .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s14LlVDqsW .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s14LlVDqsW .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s14LlVDqsW .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s14LlVDqsW .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s14LlVDqsW .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s14LlVDqsW .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s14LlVDqsW .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s14LlVDqsW .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s14LlVDqsW .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s14LlVDqsW .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s14LlVDqsW .navbar.collapsed.opened {
  position: fixed;
}
.cid-s14LlVDqsW .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s14LlVDqsW .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s14LlVDqsW .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s14LlVDqsW .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s14LlVDqsW .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s14LlVDqsW .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s14LlVDqsW .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s14LlVDqsW .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s14LlVDqsW .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s14LlVDqsW .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s14LlVDqsW .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s14LlVDqsW .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s14LlVDqsW .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s14LlVDqsW .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s14LlVDqsW .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s14LlVDqsW .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s14LlVDqsW .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s14LlVDqsW .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s14LlVDqsW .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s14LlVDqsW .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s14LlVDqsW .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s14LlVDqsW .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s14LlVDqsW .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s14LlVDqsW .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s14LlVDqsW .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s14LlVDqsW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s14LlVDqsW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s14LlVDqsW .dropdown-item.active,
.cid-s14LlVDqsW .dropdown-item:active {
  background-color: transparent;
}
.cid-s14LlVDqsW .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s14LlVDqsW .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s14LlVDqsW .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s14LlVDqsW .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s14LlVDqsW .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s14LlVDqsW .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s14LlVDqsW ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s14LlVDqsW .navbar-buttons {
  text-align: center;
}
.cid-s14LlVDqsW button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s14LlVDqsW button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s14LlVDqsW button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s14LlVDqsW button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s14LlVDqsW button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s14LlVDqsW button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s14LlVDqsW nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s14LlVDqsW nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s14LlVDqsW nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s14LlVDqsW nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s14LlVDqsW .navbar-dropdown {
  position: fixed;
}
.cid-s14LlVDqsW a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s14LlVDqsW .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s14LlVDqsW .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s14LlVDqsW .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s14LlVDqsW .navbar {
    height: 77px;
  }
  .cid-s14LlVDqsW .navbar.opened {
    height: auto;
  }
  .cid-s14LlVDqsW .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s14LlVDqsW * {
    text-align: left !important;
  }
  .cid-s14LlVDqsW .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFkGuf74iV {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .cid-sFkGuf74iV {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFkGuf74iV img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFkGuf74iV .mbr-section-title {
  color: #ffffff;
}
.cid-sFkGuf74iV .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFkGuf74iV .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFkGuf74iV .svg-1 path {
  fill: #242930;
}
.cid-sFkGuf74iV .container-fluid {
  max-width: 1200px;
}
.cid-sFkGuf74iV .mbr-arrow {
  z-index: 1;
}
.cid-sFkGuf74iV .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFkGuf74iV .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFkGuf74iV .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFkGuf74iV .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFkGuf74iV .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
}
.cid-sFkGuf74iV .mbr-text,
.cid-sFkGuf74iV .mbr-section-btn {
  color: #ffffff;
}
.cid-s14Lm63fvj {
  padding-top: 45px;
  padding-bottom: 15px;
  background-color: #242930;
}
.cid-s14Lm63fvj .mbr-section-title {
  color: #404040;
}
.cid-s14Lm63fvj .mbr-section-title.display-2 {
  line-height: 1.375;
}
.cid-s14Lm63fvj .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #3c71d3;
  margin-bottom: 2rem;
}
.cid-s14Lm63fvj .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s14Lm63fvj .mbr-section-title,
.cid-s14Lm63fvj .icon-wrap,
.cid-s14Lm63fvj .mbr-section-btn {
  text-align: right;
  color: #ffffff;
}
.cid-s14Lm63fvj .mbr-text,
.cid-s14Lm63fvj .mbr-section-btn {
  text-align: right;
  color: #5bb947;
}
@media (max-width: 767px) {
  .cid-s14Lm63fvj {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-s14Lm63fvj * {
    text-align: left !important;
  }
}
.cid-s14OumWTMb {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #242930;
}
.cid-s14OumWTMb .mbr-section-subtitle {
  color: #5bb947;
  text-align: left;
  line-height: 1.6;
}
.cid-s14OumWTMb .image-element {
  position: relative;
  z-index: 0;
  overflow: hidden;
  border-radius: 25px !important;
}
.cid-s14OumWTMb .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-s14OumWTMb .wrapper {
  padding: 2rem 1rem 1rem 1rem;
}
.cid-s14OumWTMb .card-overlay {
  display: none;
  background: #4f5b5f;
}
@media (min-width: 768px) {
  .cid-s14OumWTMb .image-element:hover .card-overlay {
    opacity: 0.9;
    border-bottom-right-radius: 7rem;
  }
  .cid-s14OumWTMb .image-element:hover .wrapper {
    padding-top: 0;
    border-bottom-right-radius: 7rem;
  }
  .cid-s14OumWTMb .image-element:hover .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 3s;
    opacity: 1;
    max-height: 999px;
    border-bottom-right-radius: 7rem;
  }
  .cid-s14OumWTMb .image-element:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 7rem;
  }
  .cid-s14OumWTMb .image-element.popup-btn:hover .card-overlay {
    border-bottom-right-radius: 0 !important;
  }
  .cid-s14OumWTMb .image-element.popup-btn:hover .wrapper {
    border-bottom-right-radius: 0 !important;
  }
  .cid-s14OumWTMb .image-element.popup-btn:hover .wrapper .collapsed-content {
    border-bottom-right-radius: 0 !important;
  }
  .cid-s14OumWTMb .image-element.popup-btn:hover .wrapper .collapsed-content .mbr-section-btn {
    border-bottom-right-radius: 0 !important;
  }
  .cid-s14OumWTMb .wrapper {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    background: transparent;
  }
  .cid-s14OumWTMb .wrapper .collapsed-content {
    transition: opacity 0.5s, max-height 1s;
    opacity: 0;
    max-height: 0px;
    overflow: hidden;
  }
  .cid-s14OumWTMb .card-overlay {
    transition: all .5s;
    opacity: 0;
    display: block;
  }
}
@media (max-width: 767px) {
  .cid-s14OumWTMb {
    padding-top: 0 !important;
    padding-bottom: 30px !important;
  }
  .cid-s14OumWTMb .card-title,
  .cid-s14OumWTMb .underline,
  .cid-s14OumWTMb .mbr-text,
  .cid-s14OumWTMb .mbr-section-btn,
  .cid-s14OumWTMb .mbr-section-subtitle,
  .cid-s14OumWTMb .mbr-section-title {
    text-align: left !important;
  }
  .cid-s14OumWTMb .wrapper {
    background-color: #4f5b5f;
  }
  .cid-s14OumWTMb * {
    text-align: left !important;
  }
}
.cid-s14OumWTMb .mbr-section-title {
  text-align: left;
}
.cid-s14OumWTMb .mbr-section-title,
.cid-s14OumWTMb .underline {
  color: #ffffff;
}
.cid-s14OumWTMb .mbr-text,
.cid-s14OumWTMb .mbr-section-btn {
  color: #f9fafb;
}
.cid-sFrhPyy81N {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
}
.cid-sFrhPyy81N h3 {
  text-align: center;
  font-weight: 300;
}
.cid-sFrhPyy81N img {
  width: 100%;
}
.cid-sFrhPyy81N .wrap {
  width: 150px;
  height: 150px;
  margin: 0 auto;
}
.cid-sFrhPyy81N .mbr-section-subtitle {
  color: #767676;
}
.cid-sFrhPyy81N .main-sub-title {
  background: #11737c;
  border-radius: 8px;
  display: inline-block;
  width: fit-content;
  padding: 0.1rem 1rem;
}
.cid-sFrhPyy81N .card {
  -webkit-flex-basis: 100%;
  flex-basis: 100%;
  word-wrap: break-word;
}
.cid-sFrhPyy81N svg {
  overflow: visible;
}
.cid-sFrhPyy81N ellipse {
  stroke: #efefef;
  stroke-width: 10px;
}
.cid-sFrhPyy81N path {
  stroke-width: 10px;
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sFrhPyy81N .card {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}
.cid-sFrhPyy81N .progress1 path {
  stroke: #86c226;
}
.cid-sFrhPyy81N .progress2 path {
  stroke: #86c226;
}
.cid-sFrhPyy81N .progress3 path {
  stroke: #86c226;
}
.cid-sFrhPyy81N .card-text {
  color: #767676;
}
.cid-sFrhPyy81N .main-sub-title,
.cid-sFrhPyy81N .align-wrapper {
  color: #ffffff;
}
.cid-sFrhPyy81N .main-text {
  color: #e6eaf1;
}
.cid-sFrhPyy81N .number {
  color: #ffffff;
}
.cid-sFrhPyy81N H4 {
  color: #ffffff;
}
.cid-sFrhPyy81N .main-title {
  color: #ffffff;
}
@media (max-width: 767px) {
  .cid-sFrhPyy81N {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-sFrhPyy81N img {
    width: 80%;
    margin-bottom: 2rem;
  }
  .cid-sFrhPyy81N .centro {
    text-align: center !important;
  }
}
.cid-sFUZSajYW2 {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #242930;
}
.cid-sFUZSajYW2 .mbr-section-subtitle {
  color: #36187d;
}
.cid-sFUZSajYW2 .mbr-text {
  color: #86c226;
}
.cid-sFrkns2xo4 {
  padding-top: 45px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpg");
}
.cid-sFrkns2xo4 h3 {
  text-align: center;
  font-weight: 900 !important;
  font-size: 4rem !important;
}
.cid-sFrkns2xo4 .mbr-section-subtitle {
  color: #767676;
  font-weight: 300;
}
.cid-sFrkns2xo4 .mbr-content-text {
  color: #000000;
}
.cid-sFrkns2xo4 .card {
  word-wrap: break-word;
}
.cid-sFrkns2xo4 .mbr-iconfont {
  color: #ffffff !important;
  font-size: 3.5rem !important;
}
.cid-sFrkns2xo4 H3 {
  color: #ffffff;
}
.cid-sFrkns2xo4 H4 {
  color: #ffffff;
}
.cid-ss2VfM3sAB {
  background-color: #242930;
}
.cid-ss2VfM3sAB .img-wrap {
  width: 100% !important;
  height: 100% !important;
}
.cid-ss2VfM3sAB .underline .line {
  width: 2rem;
  height: 1px;
  background: #ffffff;
  display: inline-block;
}
.cid-ss2VfM3sAB .image-element {
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss2VfM3sAB .image-element img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
@media (min-width: 1200px) {
  .cid-ss2VfM3sAB .image-element {
    padding-left: 0;
  }
}
.cid-ss2VfM3sAB .text-element {
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  justify-content: center;
  padding: 2rem;
}
.cid-ss2VfM3sAB .mbr-text {
  color: #cccccc;
  line-height: 27px;
}
.cid-ss2VfM3sAB .brown {
  color: #2eab50;
}
.cid-ss2VfM3sAB .paragraphs-wrapper {
  display: flex;
  -webkit-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}
.cid-ss2VfM3sAB .paragraphs-wrapper .first-paragraph,
.cid-ss2VfM3sAB .paragraphs-wrapper .second-paragraph {
  margin: 0;
}
@media (max-width: 991px) {
  .cid-ss2VfM3sAB .image-element {
    padding-top: 1rem;
  }
  .cid-ss2VfM3sAB .paragraphs-wrapper {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-ss2VfM3sAB .paragraphs-wrapper .first-paragraph,
  .cid-ss2VfM3sAB .paragraphs-wrapper .second-paragraph {
    width: 100%;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .cid-ss2VfM3sAB .first-paragraph,
  .cid-ss2VfM3sAB .second-paragraph {
    width: 50%;
  }
  .cid-ss2VfM3sAB .first-paragraph {
    padding-right: .5rem;
  }
  .cid-ss2VfM3sAB .second-paragraph {
    padding-left: .5rem;
  }
  .cid-ss2VfM3sAB .text-element {
    padding: 6rem;
  }
}
@media (max-width: 767px) {
  .cid-ss2VfM3sAB .mbr-section-title,
  .cid-ss2VfM3sAB .mbr-section-btn {
    text-align: left;
  }
}
.cid-ss2VfM3sAB .mbr-text,
.cid-ss2VfM3sAB .mbr-section-btn {
  color: #cccccc;
}
.cid-ss37Q4hzre {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #2eab50;
}
.cid-ss37Q4hzre .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2eab50;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ss37Q4hzre .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ss37Q4hzre .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ss37Q4hzre .main-title.display-2 {
  line-height: 1.375;
}
.cid-ss37Q4hzre .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ss37Q4hzre .mbr-text {
  color: #606060;
}
.cid-ss37Q4hzre .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ss37Q4hzre .mbr-section-btn {
  margin-top: 24px;
}
.cid-ss37Q4hzre .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ss37Q4hzre .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ss37Q4hzre .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ss37Q4hzre .main-title,
.cid-ss37Q4hzre .mbr-section-btn {
  color: #ffffff;
}
.cid-ss37Q4hzre .mbr-text,
.cid-ss37Q4hzre .mbr-section-btn {
  color: #242930;
}
.cid-ss2UFCxX3A {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1920x1517.jpg");
}
.cid-ss2UFCxX3A .card-box {
  padding: 0rem;
}
.cid-ss2UFCxX3A .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-ss2UFCxX3A .big {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ss2UFCxX3A .big h4 {
  margin: 0;
}
.cid-ss2UFCxX3A .card {
  padding: 0;
  min-height: 300px;
}
.cid-ss2UFCxX3A img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ss2UFCxX3A .card-img {
  min-height: 400px;
  height: 100%;
}
.cid-ss2UFCxX3A .card-wrapper {
  padding: 4rem 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-ss2UFCxX3A .card-wrapper {
    padding: 4rem;
  }
}
.cid-ss2UFCxX3A .cardbg1 {
  background: #242930;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ss2UFCxX3A .cardbg2 {
  background: #242930;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ss2UFCxX3A .main-title {
  color: #ffffff;
  text-align: left;
}
.cid-ss2UFCxX3A .card-text {
  color: #5bb947;
}
.cid-ss2UFCxX3A .card-title,
.cid-ss2UFCxX3A .mbr-section-btn {
  color: #ffffff;
}
.cid-ss3cF9UEO4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/mbr-1489x1076.jpg");
}
.cid-ss3cF9UEO4 .card-box {
  padding: 0rem;
}
.cid-ss3cF9UEO4 .mbr-section-btn {
  margin-top: 1.8rem;
}
.cid-ss3cF9UEO4 .big {
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-ss3cF9UEO4 .big h4 {
  margin: 0;
}
.cid-ss3cF9UEO4 .card {
  padding: 0;
  min-height: 300px;
}
.cid-ss3cF9UEO4 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-ss3cF9UEO4 .card-img {
  min-height: 400px;
  height: 100%;
}
.cid-ss3cF9UEO4 .card-wrapper {
  padding: 4rem 2rem;
  width: 100%;
}
@media (min-width: 1400px) {
  .cid-ss3cF9UEO4 .card-wrapper {
    padding: 4rem;
  }
}
.cid-ss3cF9UEO4 .cardbg1 {
  background: #242930;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ss3cF9UEO4 .cardbg2 {
  background: #2eab50;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.cid-ss3cF9UEO4 .main-title {
  color: #ffffff;
  text-align: left;
}
.cid-ss3cF9UEO4 .card-text {
  color: #ffffff;
}
.cid-ss3cF9UEO4 .card-title,
.cid-ss3cF9UEO4 .mbr-section-btn {
  color: #ffffff;
}
.cid-s14Y6idsQz {
  padding-top: 150px;
  padding-bottom: 135px;
  background-image: url("../../../assets/images/44-1366x768.jpg");
}
.cid-s14Y6idsQz .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-s14Y6idsQz .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s14Y6idsQz .mbr-section-title,
.cid-s14Y6idsQz .icon-wrap,
.cid-s14Y6idsQz .mbr-section-btn {
  color: #ffffff;
}
.cid-s14LmhJ3Na {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #242930;
}
.cid-s14LmhJ3Na .mbr-section-title,
.cid-s14LmhJ3Na .mbr-section-subtitle {
  color: #000000;
}
.cid-s14LmhJ3Na .mbr-section-text {
  color: #232323;
}
.cid-s14LmhJ3Na .mbr-text,
.cid-s14LmhJ3Na .typed-text,
.cid-s14LmhJ3Na .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s14LmhJ3Na .btn {
  margin-left: 4px !important;
}
.cid-s14LmhJ3Na .animated-element {
  color: #5bb947;
}
.cid-s14LmhJ3Na .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #5bb947;
}
.cid-s14LmhJ3Na .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
  align: right !important;
  text-align: right !important;
}
.cid-s14LmhJ3Na img {
  width: 100% !important;
  align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}
@media (max-width: 767px) {
  .cid-s14LmhJ3Na .typed-text,
  .cid-s14LmhJ3Na .mbr-section-subtitle,
  .cid-s14LmhJ3Na .mbr-section-text,
  .cid-s14LmhJ3Na .mbr-section-btn {
    text-align: left !important;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.cid-s14LmhJ3Na .mbr-section-subtitle,
.cid-s14LmhJ3Na .typed-text {
  color: #ffffff;
}
.cid-s14LmhJ3Na .mbr-section-text,
.cid-s14LmhJ3Na .mbr-section-btn {
  color: #5bb947;
}
.cid-ss7VznxPxx {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #242930;
}
.cid-ss7VznxPxx .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2eab50;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 16px;
}
.cid-ss7VznxPxx .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-ss7VznxPxx .main-title {
  color: #404040;
  margin-bottom: 26px;
}
.cid-ss7VznxPxx .main-title.display-2 {
  line-height: 1.375;
}
.cid-ss7VznxPxx .mbr-section-subtitle {
  color: #5f86be;
  font-weight: 600;
  margin-bottom: 21px;
}
.cid-ss7VznxPxx .mbr-text {
  color: #606060;
}
.cid-ss7VznxPxx .mbr-text.display-4 {
  line-height: 1.75;
}
.cid-ss7VznxPxx .mbr-section-btn {
  margin-top: 24px;
}
.cid-ss7VznxPxx .mbr-section-btn .btn {
  margin-left: 14.1px;
  padding: 18px 26px;
}
.cid-ss7VznxPxx .mbr-section-btn .btn.display-4 {
  font-size: 13px;
  line-height: 1;
}
.cid-ss7VznxPxx .mbr-section-btn .btn:hover {
  box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
  -webkit-box-shadow: 0 0 0 5px rgba(60, 113, 211, 0.2) !important;
}
.cid-ss7VznxPxx .mbr-text,
.cid-ss7VznxPxx .mbr-section-btn {
  color: #999999;
}
.cid-ss7VznxPxx .main-title,
.cid-ss7VznxPxx .mbr-section-btn {
  color: #5bb947;
}
@media (max-width: 767px) {
  .cid-ss7VznxPxx {
    padding-top: 0px !important;
    padding-bottom: 0 !important;
  }
  .cid-ss7VznxPxx * {
    text-align: left !important;
  }
}
.cid-sFDHa9LqLY {
  overflow: hidden;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #242930;
}
.cid-sFDHa9LqLY .title_block {
  margin-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cid-sFDHa9LqLY .mbr-section-subtitle {
  margin-bottom: 16px;
  color: #2eab50;
  letter-spacing: 1.6px;
  line-height: 1;
  font-weight: 600;
}
.cid-sFDHa9LqLY .mbr-section-title {
  color: #86c226;
}
.cid-sFDHa9LqLY .card_wrap {
  height: 100%;
  z-index: 1;
  overflow: hidden;
  padding: 40px;
  padding-bottom: 60px;
  position: relative;
  border-radius: 6px;
  background-color: #d3dcde;
  box-shadow: 0px 6px 20px 0px rgba(0, 33, 121, 0.08);
}
.cid-sFDHa9LqLY .card_wrap:before {
  content: '';
  bottom: 20px;
  right: 15px;
  width: 65px;
  height: 65px;
  position: absolute;
  background-color: rgba(46, 171, 80, 0.15);
  border-radius: 50%;
}
.cid-sFDHa9LqLY .card_wrap:after {
  content: '';
  bottom: -24px;
  right: -20px;
  width: 80px;
  height: 80px;
  position: absolute;
  background-color: rgba(46, 171, 80, 0.15);
  border-radius: 50%;
}
.cid-sFDHa9LqLY .card_header {
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
.cid-sFDHa9LqLY .user {
  display: flex;
  align-items: center;
}
.cid-sFDHa9LqLY .user_img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 20px;
  border-radius: 50%;
}
.cid-sFDHa9LqLY .user_img img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}
.cid-sFDHa9LqLY .user_name {
  margin-bottom: 2px;
  display: block;
  color: #242930;
}
.cid-sFDHa9LqLY .desk {
  margin-bottom: 0;
}
.cid-sFDHa9LqLY .iconfont-wrapper {
  min-width: 115px;
}
.cid-sFDHa9LqLY .iconfont-wrapper .mbr-iconfont {
  font-size: 16px;
  margin-right: 3px;
}
.cid-sFDHa9LqLY .carousel-item {
  justify-content: center;
}
.cid-sFDHa9LqLY .carousel-item > div {
  width: 100%;
}
.cid-sFDHa9LqLY .carousel-item.active,
.cid-sFDHa9LqLY .carousel-item-next,
.cid-sFDHa9LqLY .carousel-item-prev {
  display: flex;
}
.cid-sFDHa9LqLY .carousel-controls {
  position: relative;
  height: 50px;
  margin-left: 20px;
  max-width: 120px;
  min-width: 120px;
}
.cid-sFDHa9LqLY .carousel-controls a {
  opacity: 1;
}
.cid-sFDHa9LqLY .carousel-controls a span {
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-weight: 700;
  font-size: 18px;
  position: absolute;
  color: #86c226;
  background-color: transparent;
  border-radius: 50%;
  border: 1px solid #86c226;
  transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.cid-sFDHa9LqLY .carousel-controls a span:hover {
  background-color: #86c226;
  color: #2eab50;
}
.cid-sFDHa9LqLY .carousel-control-prev {
  position: static;
  margin-right: 10px;
  width: 50px;
}
.cid-sFDHa9LqLY .carousel-control-next {
  position: static;
  width: 50px;
}
@media (max-width: 991px) {
  .cid-sFDHa9LqLY .title_block {
    margin-bottom: 40px;
  }
  .cid-sFDHa9LqLY .card_header {
    flex-direction: column;
  }
  .cid-sFDHa9LqLY .rating {
    margin-bottom: 10px;
    align-self: flex-end;
  }
  .cid-sFDHa9LqLY .user {
    order: 1;
  }
}
@media (max-width: 767px) {
  .cid-sFDHa9LqLY .carousel-controls {
    display: none;
  }
  .cid-sFDHa9LqLY .title_block {
    text-align: center;
  }
  .cid-sFDHa9LqLY .carousel-item {
    padding: 0;
  }
  .cid-sFDHa9LqLY .card_wrap {
    padding: 30px;
    margin-bottom: 50px;
  }
  .cid-sFDHa9LqLY .card_header {
    margin-bottom: 15px;
  }
  .cid-sFDHa9LqLY .user_img {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }
  .cid-sFDHa9LqLY .user_img img {
    width: 50px;
    height: 50px;
  }
}
.cid-sFDHa9LqLY .mbr-text {
  color: #242930;
}
.cid-s14LmDxdee {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-s14LmDxdee .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s14LmDxdee svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-s14LmDxdee #e2_shape {
  fill: #86c226 !important;
}
.cid-s14LmDxdee .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s14LmDxdee .mbr-text {
  font-weight: 300;
}
.cid-s14LmDxdee .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s14LmDxdee .btn-white {
  color: #404040 !important;
}
.cid-s14LmDxdee .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s14LmDxdee .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-s14LmDxdee .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s14LmDxdee {
    padding: 30px 30px 0 30px !important;
  }
  .cid-s14LmDxdee svg {
    display: none;
  }
  .cid-s14LmDxdee * {
    text-align: left !important;
  }
}
.cid-s14LmDxdee .mbr-text,
.cid-s14LmDxdee .mbr-section-btn {
  color: #ffffff;
}
.cid-s14LmDxdee .mbr-section-title,
.cid-s14LmDxdee .mbr-section-btn {
  color: #86c226;
}
.cid-s14LmIOV6S {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-s14LmIOV6S .container {
  max-width: 1400px;
}
.cid-s14LmIOV6S .card-img2 span {
  padding-top: 6px;
}
.cid-s14LmIOV6S .soc-item a {
  padding-top: 5px;
}
.cid-s14LmIOV6S .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s14LmIOV6S .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s14LmIOV6S .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s14LmIOV6S .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s14LmIOV6S svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s14LmIOV6S #e2_shape {
  fill: #86c226 !important;
}
.cid-s14LmIOV6S .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s14LmIOV6S .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s14LmIOV6S .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s14LmIOV6S .card-img {
  width: auto;
}
.cid-s14LmIOV6S .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s14LmIOV6S .soc-item span {
  font-size: 1.4rem;
}
.cid-s14LmIOV6S .soc-item:hover span {
  color: white !important;
}
.cid-s14LmIOV6S .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s14LmIOV6S .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s14LmIOV6S .media-wrap {
  margin-bottom: 1rem;
}
.cid-s14LmIOV6S .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s14LmIOV6S img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s14LmIOV6S .item {
    justify-content: center;
  }
  .cid-s14LmIOV6S .quote::after {
    left: 60px;
  }
}
.cid-s14LmIOV6S .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s14LmIOV6S .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s14LmIOV6S .text1 {
  color: #ffffff;
}
.cid-s14LmIOV6S .item-title {
  color: #ffffff;
}
.cid-s14LmIOV6S H5 {
  color: #86c226;
}
.cid-s14LmIOV6S .theme {
  color: #ffffff;
}
.cid-s14LmIOV6S .copyright > p {
  color: #ff3366;
}
.cid-s14LmIOV6S .text2 {
  color: #ffffff;
}
.cid-sFlhx1Ahwp.popup-builder {
  background-color: #ffffff;
}
.cid-sFlhx1Ahwp.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFlhx1Ahwp.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFlhx1Ahwp .modal-content,
.cid-sFlhx1Ahwp .modal-dialog {
  height: auto;
}
.cid-sFlhx1Ahwp .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFlhx1Ahwp .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFlhx1Ahwp .form-wrapper .mbr-form .form-group,
  .cid-sFlhx1Ahwp .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFlhx1Ahwp .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFlhx1Ahwp .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFlhx1Ahwp .mbr-text {
  text-align: center;
}
.cid-sFlhx1Ahwp .pt-0 {
  padding-top: 0 !important;
}
.cid-sFlhx1Ahwp .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFlhx1Ahwp .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFlhx1Ahwp .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFlhx1Ahwp .modal-open {
  overflow: hidden;
}
.cid-sFlhx1Ahwp .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFlhx1Ahwp .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFlhx1Ahwp .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFlhx1Ahwp .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFlhx1Ahwp .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFlhx1Ahwp .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFlhx1Ahwp .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFlhx1Ahwp .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFlhx1Ahwp .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFlhx1Ahwp .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFlhx1Ahwp .modal-backdrop.show {
  opacity: .5;
}
.cid-sFlhx1Ahwp .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFlhx1Ahwp .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1Ahwp .modal-header {
    padding: 1rem;
  }
}
.cid-sFlhx1Ahwp .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFlhx1Ahwp .modal-header .close:hover {
  opacity: 1;
}
.cid-sFlhx1Ahwp .modal-header .close:focus {
  outline: none;
}
.cid-sFlhx1Ahwp .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFlhx1Ahwp .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFlhx1Ahwp .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1Ahwp .modal-body {
    padding: 1rem;
  }
}
.cid-sFlhx1Ahwp .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFlhx1Ahwp .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1Ahwp .modal-footer {
    padding: 1rem;
  }
}
.cid-sFlhx1Ahwp .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFlhx1Ahwp .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFlhx1Ahwp .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFlhx1Ahwp .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFlhx1Ahwp .modal-sm {
    max-width: 300px;
  }
  .cid-sFlhx1Ahwp .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFlhx1Ahwp .modal-lg,
  .cid-sFlhx1Ahwp .modal-xl {
    max-width: 800px;
  }
  .cid-sFlhx1Ahwp .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFlhx1Ahwp .modal-xl {
    max-width: 1140px;
  }
  .cid-sFlhx1Ahwp .container {
    max-width: 1140px;
  }
}
.cid-sFlhx1Ahwp .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFlhx1Ahwp .container {
    max-width: 720px;
  }
}
.cid-sFlhx1Ahwp .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFlhx1Ahwp .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFlhx1Ahwp .form-group {
  margin-bottom: 1rem;
}
.cid-sFlhx1Ahwp .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFlhx1Ahwp .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFlhx1Ahwp .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFlhx1Ahwp .mbr-section-btn {
  margin: 0;
}
.cid-sFlhx1Ahwp .mbr-section-btn .btn {
  margin: 0;
}
.cid-s1b7IL03Ce .dropdown-menu {
  padding: 12px 0;
}
.cid-s1b7IL03Ce .dropdown-item:hover,
.cid-s1b7IL03Ce .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s1b7IL03Ce .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s1b7IL03Ce .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s1b7IL03Ce .nav-link {
  position: relative;
}
.cid-s1b7IL03Ce .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s1b7IL03Ce .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s1b7IL03Ce .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s1b7IL03Ce .dropdown-menu,
.cid-s1b7IL03Ce .navbar.opened {
  background: #242930 !important;
}
.cid-s1b7IL03Ce .nav-item:focus,
.cid-s1b7IL03Ce .nav-link:focus {
  outline: none;
}
.cid-s1b7IL03Ce .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s1b7IL03Ce .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s1b7IL03Ce .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-s1b7IL03Ce .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s1b7IL03Ce .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s1b7IL03Ce .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s1b7IL03Ce .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s1b7IL03Ce .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s1b7IL03Ce .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s1b7IL03Ce .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s1b7IL03Ce .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s1b7IL03Ce .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s1b7IL03Ce .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s1b7IL03Ce .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s1b7IL03Ce .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s1b7IL03Ce .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s1b7IL03Ce .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s1b7IL03Ce .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened {
  position: fixed;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s1b7IL03Ce .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s1b7IL03Ce .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s1b7IL03Ce .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s1b7IL03Ce .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s1b7IL03Ce .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s1b7IL03Ce .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s1b7IL03Ce .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s1b7IL03Ce .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s1b7IL03Ce .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s1b7IL03Ce .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s1b7IL03Ce .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s1b7IL03Ce .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s1b7IL03Ce .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s1b7IL03Ce .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s1b7IL03Ce .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s1b7IL03Ce .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s1b7IL03Ce .dropdown-item.active,
.cid-s1b7IL03Ce .dropdown-item:active {
  background-color: transparent;
}
.cid-s1b7IL03Ce .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s1b7IL03Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s1b7IL03Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s1b7IL03Ce .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s1b7IL03Ce ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s1b7IL03Ce .navbar-buttons {
  text-align: center;
}
.cid-s1b7IL03Ce button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce .navbar-dropdown {
  position: fixed;
}
.cid-s1b7IL03Ce a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1b7IL03Ce .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s1b7IL03Ce .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s1b7IL03Ce .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s1b7IL03Ce .navbar {
    height: 77px;
  }
  .cid-s1b7IL03Ce .navbar.opened {
    height: auto;
  }
  .cid-s1b7IL03Ce .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s1b7IL03Ce * {
    text-align: left !important;
  }
  .cid-s1b7IL03Ce .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFl9FZZntY {
  padding-top: 180px;
  padding-bottom: 180px;
}
@media (max-width: 767px) {
  .cid-sFl9FZZntY {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.cid-sFl9FZZntY img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFl9FZZntY .mbr-section-title {
  color: #ffffff;
}
.cid-sFl9FZZntY .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFl9FZZntY .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFl9FZZntY .svg-1 path {
  fill: #242930;
}
.cid-sFl9FZZntY .container-fluid {
  max-width: 1200px;
}
.cid-sFl9FZZntY .mbr-arrow {
  z-index: 1;
}
.cid-sFl9FZZntY .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFl9FZZntY .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFl9FZZntY .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFl9FZZntY {
    padding-top: 80px !important;
  }
  .cid-sFl9FZZntY .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFl9FZZntY .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFl9FZZntY .boton {
    display: none;
  }
}
.cid-sFl9FZZntY .mbr-text,
.cid-sFl9FZZntY .mbr-section-btn {
  color: #ffffff;
}
.cid-s1b8eiSz57 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #242930;
}
.cid-s1b8eiSz57 *:focus {
  outline: none;
}
.cid-s1b8eiSz57 .form-group {
  margin-bottom: 2rem;
}
.cid-s1b8eiSz57 .form-control {
  width: 100%;
  border: none;
  background: transparent;
  border-bottom: 2px solid #f9fafb;
  color: #f9fafb;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 1px;
  min-height: 35px;
}
.cid-s1b8eiSz57 .form-control:focus {
  outline: none;
  box-shadow: none;
}
.cid-s1b8eiSz57 .form-control::-webkit-input-placeholder {
  color: #f9fafb;
}
.cid-s1b8eiSz57 .form-control::-moz-placeholder {
  color: #f9fafb;
}
.cid-s1b8eiSz57 .form-control:-ms-input-placeholder {
  color: #f9fafb;
}
.cid-s1b8eiSz57 .form-control:-moz-placeholder {
  color: #f9fafb;
}
.cid-s1b8eiSz57 input.form-control {
  padding: 1px 0;
}
.cid-s1b8eiSz57 .soc-item {
  display: inline-block;
  margin: 0 .2rem;
}
.cid-s1b8eiSz57 .soc-item .socicon {
  font-size: 1.5rem;
  color: #767676;
  opacity: 1;
}
.cid-s1b8eiSz57 .soc-item .socicon:hover {
  opacity: .5;
}
.cid-s1b8eiSz57 .input-group-btn {
  display: block;
}
@media (max-width: 767px) {
  .cid-s1b8eiSz57 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .cid-s1b8eiSz57 .first-column,
  .cid-s1b8eiSz57 .form-1 {
    text-align: left;
  }
  .cid-s1b8eiSz57 * {
    text-align: left !important;
  }
}
.cid-s1b8eiSz57 .form-title,
.cid-s1b8eiSz57 .btn-row {
  color: #5bb947;
}
.cid-s1b8eiSz57 .address-title,
.cid-s1b8eiSz57 .address-block {
  color: #f9fafb;
}
.cid-s1b8eiSz57 .contacts-title,
.cid-s1b8eiSz57 .contacts-block {
  color: #f9fafb;
}
.cid-s1b8eiSz57 .follow-title,
.cid-s1b8eiSz57 .social-list {
  color: #f9fafb;
}
.cid-s1b9o09j97 .google-map {
  height: 30rem;
  position: relative;
}
.cid-s1b9o09j97 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-s1b9o09j97 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-s1b9o09j97 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-s1b9o09j97 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-s1b9o09j97 svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s1b9o09j97 #e2_shape {
  fill: #242930 !important;
}
@media (max-width: 768px) {
  .cid-s1b9o09j97 {
    padding: 30px;
  }
  .cid-s1b9o09j97 svg {
    display: none;
  }
}
.cid-s1bb7VpwKY {
  padding-top: 90px;
  padding-bottom: 75px;
  overflow: hidden;
  background-color: #242930;
}
.cid-s1bb7VpwKY .badge {
  display: inline-block;
  border-radius: 10rem;
  padding: 8px 14px 6px 14px;
  color: #2eab50;
  background-color: rgba(132, 138, 189, 0.15);
  margin-bottom: 26px;
}
.cid-s1bb7VpwKY .badge.display-4 {
  font-size: 11px;
  line-height: 1.81;
  letter-spacing: 0.5px;
}
.cid-s1bb7VpwKY .mbr-section-subtitle {
  color: #5bb947;
  font-weight: 600;
  margin-bottom: 21px;
  text-align: left;
}
.cid-s1bb7VpwKY .img-wrapper img {
  width: 50%;
}
.cid-s1bb7VpwKY .carousel {
  z-index: 2;
  position: relative;
}
.cid-s1bb7VpwKY .user {
  padding: 0 !important;
}
.cid-s1bb7VpwKY .big-icon {
  top: 1rem;
  font-size: 2.7rem;
  z-index: 0;
  color: #5bb947;
  opacity: 0.3;
  line-height: 2.083;
}
.cid-s1bb7VpwKY .mbr-iconfont {
  font-family: Moririse2 !important;
}
.cid-s1bb7VpwKY .carousel-item.active,
.cid-s1bb7VpwKY .carousel-item-next,
.cid-s1bb7VpwKY .carousel-item-prev {
  display: flex;
}
.cid-s1bb7VpwKY .user_name {
  margin: 0;
}
.cid-s1bb7VpwKY .user_name.display-7 {
  font-size: 18px;
  line-height: 1.3;
}
.cid-s1bb7VpwKY .user_status {
  color: #999999;
}
.cid-s1bb7VpwKY .user_status.display-4 {
  line-height: 1.3125;
}
.cid-s1bb7VpwKY .carousel-controls a {
  font-size: 2rem;
}
.cid-s1bb7VpwKY .carousel-controls a span {
  position: absolute;
  transition: opacity 0.3s;
  top: 70px;
  padding: 10px;
  border-radius: 50%;
  color: #232323;
  background: transparent;
  opacity: 0.5;
}
.cid-s1bb7VpwKY .carousel-controls a:hover span {
  opacity: 1;
  cursor: pointer;
}
.cid-s1bb7VpwKY ol {
  margin-bottom: 0;
  bottom: -3rem;
}
.cid-s1bb7VpwKY .carousel-indicators li {
  height: 10px;
  width: 10px;
  border-radius: 50%;
  transition: opacity 0.5s;
  background-color: rgba(91, 185, 71, 0.8);
  font-size: 2rem;
  border-width: 0px;
  transform: scale(0.6);
  margin: 6px;
}
.cid-s1bb7VpwKY .carousel-indicators li:hover {
  opacity: 1;
}
.cid-s1bb7VpwKY .carousel-indicators .active {
  transform: scale(1);
  border: 0;
  background-color: rgba(91, 185, 71, 0.8);
  transition: all 200ms ease-in-out;
}
.cid-s1bb7VpwKY .user_text {
  color: #707070;
  text-align: left;
}
.cid-s1bb7VpwKY .user_text p.display-5 {
  line-height: 1.54;
}
.cid-s1bb7VpwKY .user_desk {
  color: #767676;
}
.cid-s1bb7VpwKY .user_desk,
.cid-s1bb7VpwKY .carousel-item {
  text-align: left;
}
.cid-s1bb7VpwKY .carousel-item {
  padding-right: 20px;
}
.cid-s1bb7VpwKY .carousel-indicators {
  margin: 0;
  margin-left: 0.1rem;
  justify-content: flex-start !important;
}
.cid-s1bb7VpwKY .titulo {
  padding-bottom: 2rem;
}
@media (max-width: 767px) {
  .cid-s1bb7VpwKY * {
    text-align: left !important;
  }
  .cid-s1bb7VpwKY .titulo {
    padding-bottom: 0rem;
  }
  .cid-s1bb7VpwKY .carousel-indicators {
    margin: auto;
    justify-content: center !important;
  }
}
.cid-s1bb7VpwKY .carousel-control-next {
  right: -30px;
  transform: translateX(50%);
}
.cid-s1bb7VpwKY .carousel-control-prev {
  left: -20px;
  transform: translateX(-50%);
}
.cid-s1bb7VpwKY .user_text p,
.cid-s1bb7VpwKY .carousel-item {
  color: #ffffff;
}
.cid-s1bb7VpwKY .main-title {
  color: #ffffff;
  text-align: left;
}
.cid-s1bb7VpwKY .carousel-item .user .user_name,
.cid-s1bb7VpwKY .carousel-item {
  color: #5bb947;
}
.cid-s1b7J5qpV7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-s1b7J5qpV7 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s1b7J5qpV7 svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-s1b7J5qpV7 #e2_shape {
  fill: #86c226 !important;
}
.cid-s1b7J5qpV7 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s1b7J5qpV7 .mbr-text {
  font-weight: 300;
}
.cid-s1b7J5qpV7 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s1b7J5qpV7 .btn-white {
  color: #404040 !important;
}
.cid-s1b7J5qpV7 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s1b7J5qpV7 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-s1b7J5qpV7 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s1b7J5qpV7 {
    padding: 30px 30px 0 30px !important;
  }
  .cid-s1b7J5qpV7 svg {
    display: none;
  }
  .cid-s1b7J5qpV7 * {
    text-align: left !important;
  }
}
.cid-s1b7J5qpV7 .mbr-text,
.cid-s1b7J5qpV7 .mbr-section-btn {
  color: #ffffff;
}
.cid-s1b7J5qpV7 .mbr-section-title,
.cid-s1b7J5qpV7 .mbr-section-btn {
  color: #86c226;
}
.cid-s1b7J8pZLB {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-s1b7J8pZLB .container {
  max-width: 1400px;
}
.cid-s1b7J8pZLB .card-img2 span {
  padding-top: 6px;
}
.cid-s1b7J8pZLB .soc-item a {
  padding-top: 5px;
}
.cid-s1b7J8pZLB .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-s1b7J8pZLB .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-s1b7J8pZLB .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-s1b7J8pZLB .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-s1b7J8pZLB svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-s1b7J8pZLB #e2_shape {
  fill: #86c226 !important;
}
.cid-s1b7J8pZLB .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-s1b7J8pZLB .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-s1b7J8pZLB .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-s1b7J8pZLB .card-img {
  width: auto;
}
.cid-s1b7J8pZLB .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-s1b7J8pZLB .soc-item span {
  font-size: 1.4rem;
}
.cid-s1b7J8pZLB .soc-item:hover span {
  color: white !important;
}
.cid-s1b7J8pZLB .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-s1b7J8pZLB .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-s1b7J8pZLB .media-wrap {
  margin-bottom: 1rem;
}
.cid-s1b7J8pZLB .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-s1b7J8pZLB img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-s1b7J8pZLB .item {
    justify-content: center;
  }
  .cid-s1b7J8pZLB .quote::after {
    left: 60px;
  }
}
.cid-s1b7J8pZLB .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-s1b7J8pZLB .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-s1b7J8pZLB .text1 {
  color: #ffffff;
}
.cid-s1b7J8pZLB .item-title {
  color: #ffffff;
}
.cid-s1b7J8pZLB H5 {
  color: #86c226;
}
.cid-s1b7J8pZLB .theme {
  color: #ffffff;
}
.cid-s1b7J8pZLB .copyright > p {
  color: #ff3366;
}
.cid-s1b7J8pZLB .text2 {
  color: #ffffff;
}
.cid-sFlhx1ATjP.popup-builder {
  background-color: #ffffff;
}
.cid-sFlhx1ATjP.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFlhx1ATjP.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFlhx1ATjP .modal-content,
.cid-sFlhx1ATjP .modal-dialog {
  height: auto;
}
.cid-sFlhx1ATjP .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFlhx1ATjP .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFlhx1ATjP .form-wrapper .mbr-form .form-group,
  .cid-sFlhx1ATjP .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFlhx1ATjP .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFlhx1ATjP .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFlhx1ATjP .mbr-text {
  text-align: center;
}
.cid-sFlhx1ATjP .pt-0 {
  padding-top: 0 !important;
}
.cid-sFlhx1ATjP .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFlhx1ATjP .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFlhx1ATjP .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFlhx1ATjP .modal-open {
  overflow: hidden;
}
.cid-sFlhx1ATjP .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFlhx1ATjP .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFlhx1ATjP .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFlhx1ATjP .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFlhx1ATjP .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFlhx1ATjP .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFlhx1ATjP .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFlhx1ATjP .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFlhx1ATjP .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFlhx1ATjP .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFlhx1ATjP .modal-backdrop.show {
  opacity: .5;
}
.cid-sFlhx1ATjP .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFlhx1ATjP .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1ATjP .modal-header {
    padding: 1rem;
  }
}
.cid-sFlhx1ATjP .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFlhx1ATjP .modal-header .close:hover {
  opacity: 1;
}
.cid-sFlhx1ATjP .modal-header .close:focus {
  outline: none;
}
.cid-sFlhx1ATjP .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFlhx1ATjP .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFlhx1ATjP .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1ATjP .modal-body {
    padding: 1rem;
  }
}
.cid-sFlhx1ATjP .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFlhx1ATjP .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFlhx1ATjP .modal-footer {
    padding: 1rem;
  }
}
.cid-sFlhx1ATjP .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFlhx1ATjP .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFlhx1ATjP .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFlhx1ATjP .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFlhx1ATjP .modal-sm {
    max-width: 300px;
  }
  .cid-sFlhx1ATjP .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFlhx1ATjP .modal-lg,
  .cid-sFlhx1ATjP .modal-xl {
    max-width: 800px;
  }
  .cid-sFlhx1ATjP .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFlhx1ATjP .modal-xl {
    max-width: 1140px;
  }
  .cid-sFlhx1ATjP .container {
    max-width: 1140px;
  }
}
.cid-sFlhx1ATjP .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFlhx1ATjP .container {
    max-width: 720px;
  }
}
.cid-sFlhx1ATjP .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFlhx1ATjP .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFlhx1ATjP .form-group {
  margin-bottom: 1rem;
}
.cid-sFlhx1ATjP .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFlhx1ATjP .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFlhx1ATjP .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFlhx1ATjP .mbr-section-btn {
  margin: 0;
}
.cid-sFlhx1ATjP .mbr-section-btn .btn {
  margin: 0;
}
.cid-s1b7IL03Ce .dropdown-menu {
  padding: 12px 0;
}
.cid-s1b7IL03Ce .dropdown-item:hover,
.cid-s1b7IL03Ce .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-s1b7IL03Ce .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-s1b7IL03Ce .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-s1b7IL03Ce .nav-link {
  position: relative;
}
.cid-s1b7IL03Ce .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-s1b7IL03Ce .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-s1b7IL03Ce .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-s1b7IL03Ce .dropdown-menu,
.cid-s1b7IL03Ce .navbar.opened {
  background: #242930 !important;
}
.cid-s1b7IL03Ce .nav-item:focus,
.cid-s1b7IL03Ce .nav-link:focus {
  outline: none;
}
.cid-s1b7IL03Ce .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-s1b7IL03Ce .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-s1b7IL03Ce .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-s1b7IL03Ce .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-s1b7IL03Ce .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-s1b7IL03Ce .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-s1b7IL03Ce .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-s1b7IL03Ce .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-s1b7IL03Ce .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-s1b7IL03Ce .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-s1b7IL03Ce .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-s1b7IL03Ce .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-s1b7IL03Ce .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-s1b7IL03Ce .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-s1b7IL03Ce .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-s1b7IL03Ce .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-s1b7IL03Ce .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-s1b7IL03Ce .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-s1b7IL03Ce .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened {
  position: fixed;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-s1b7IL03Ce .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-s1b7IL03Ce .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-s1b7IL03Ce .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-s1b7IL03Ce .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-s1b7IL03Ce .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-s1b7IL03Ce .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-s1b7IL03Ce .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-s1b7IL03Ce .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-s1b7IL03Ce .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-s1b7IL03Ce .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-s1b7IL03Ce .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-s1b7IL03Ce .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-s1b7IL03Ce .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-s1b7IL03Ce .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-s1b7IL03Ce .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-s1b7IL03Ce .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-s1b7IL03Ce .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-s1b7IL03Ce .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-s1b7IL03Ce .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-s1b7IL03Ce .dropdown-item.active,
.cid-s1b7IL03Ce .dropdown-item:active {
  background-color: transparent;
}
.cid-s1b7IL03Ce .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-s1b7IL03Ce .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-s1b7IL03Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-s1b7IL03Ce .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-s1b7IL03Ce .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-s1b7IL03Ce ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-s1b7IL03Ce .navbar-buttons {
  text-align: center;
}
.cid-s1b7IL03Ce button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-s1b7IL03Ce button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-s1b7IL03Ce nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-s1b7IL03Ce .navbar-dropdown {
  position: fixed;
}
.cid-s1b7IL03Ce a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-s1b7IL03Ce .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-s1b7IL03Ce .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-s1b7IL03Ce .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-s1b7IL03Ce .navbar {
    height: 77px;
  }
  .cid-s1b7IL03Ce .navbar.opened {
    height: auto;
  }
  .cid-s1b7IL03Ce .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-s1b7IL03Ce * {
    text-align: left !important;
  }
  .cid-s1b7IL03Ce .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFlzpD4eKN {
  padding-top: 165px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
}
.cid-sFlzpD4eKN .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sFlzpD4eKN .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFlzpD4eKN .mbr-section-title,
.cid-sFlzpD4eKN .icon-wrap,
.cid-sFlzpD4eKN .mbr-section-btn {
  text-align: left;
}
.cid-sFlzpD4eKN .mbr-text,
.cid-sFlzpD4eKN .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sFlzpD4eKN {
    padding-top: 130px !important;
    padding-bottom: 30px !important;
  }
  .cid-sFlzpD4eKN * {
    text-align: left !important;
  }
}
.cid-sFlB1SekrQ {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFlB1SekrQ .first {
  border-top: 1px solid #86c226;
  padding-top: 1rem;
}
.cid-sFlB1SekrQ .icon {
  position: relative;
  margin: 0;
  padding-top: 1rem;
  border-bottom: 1px solid #86c226;
}
.cid-sFlB1SekrQ .icon div {
  padding: 0;
}
@media (min-width: 546px) {
  .cid-sFlB1SekrQ .mbr-text-wrap {
    border-left: 2px solid #ccc;
    padding-left: 1.8125rem !important;
  }
}
@media (max-width: 667px) {
  .cid-sFlB1SekrQ .mbr-text-wrap {
    padding-top: 2rem !important;
  }
}
@media (min-width: 546px) {
  .cid-sFlB1SekrQ .counter-container {
    padding-right: 1.8125rem !important;
  }
}
.cid-sFlB1SekrQ .mbr-text {
  color: #000000;
}
@media (max-width: 667px) {
  .cid-sFlB1SekrQ {
    padding-top: 30px !important;
  }
  .cid-sFlB1SekrQ * {
    text-align: left !important;
  }
  .cid-sFlB1SekrQ .icon span {
    margin-bottom: 1rem;
  }
}
.cid-sFlL9MP6rQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sFlL9MP6rQ .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFlL9MP6rQ svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFlL9MP6rQ #e2_shape {
  fill: #86c226 !important;
}
.cid-sFlL9MP6rQ .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFlL9MP6rQ .mbr-text {
  font-weight: 300;
}
.cid-sFlL9MP6rQ .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFlL9MP6rQ .btn-white {
  color: #404040 !important;
}
.cid-sFlL9MP6rQ .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFlL9MP6rQ .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFlL9MP6rQ .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFlL9MP6rQ {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFlL9MP6rQ svg {
    display: none;
  }
  .cid-sFlL9MP6rQ * {
    text-align: left !important;
  }
}
.cid-sFlL9MP6rQ .mbr-text,
.cid-sFlL9MP6rQ .mbr-section-btn {
  color: #242930;
}
.cid-sFlL9MP6rQ .mbr-section-title,
.cid-sFlL9MP6rQ .mbr-section-btn {
  color: #86c226;
}
.cid-sFlKXcuzDw {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFlKXcuzDw .container {
  max-width: 1400px;
}
.cid-sFlKXcuzDw .card-img2 span {
  padding-top: 6px;
}
.cid-sFlKXcuzDw .soc-item a {
  padding-top: 5px;
}
.cid-sFlKXcuzDw .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFlKXcuzDw .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFlKXcuzDw .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFlKXcuzDw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFlKXcuzDw svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFlKXcuzDw #e2_shape {
  fill: #86c226 !important;
}
.cid-sFlKXcuzDw .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFlKXcuzDw .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFlKXcuzDw .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFlKXcuzDw .card-img {
  width: auto;
}
.cid-sFlKXcuzDw .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFlKXcuzDw .soc-item span {
  font-size: 1.4rem;
}
.cid-sFlKXcuzDw .soc-item:hover span {
  color: white !important;
}
.cid-sFlKXcuzDw .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFlKXcuzDw .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFlKXcuzDw .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFlKXcuzDw .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFlKXcuzDw img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFlKXcuzDw .item {
    justify-content: center;
  }
  .cid-sFlKXcuzDw .quote::after {
    left: 60px;
  }
}
.cid-sFlKXcuzDw .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFlKXcuzDw .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFlKXcuzDw .text1 {
  color: #ffffff;
}
.cid-sFlKXcuzDw .item-title {
  color: #ffffff;
}
.cid-sFlKXcuzDw H5 {
  color: #86c226;
}
.cid-sFlKXcuzDw .theme {
  color: #ffffff;
}
.cid-sFlKXcuzDw .copyright > p {
  color: #ff3366;
}
.cid-sFlKXcuzDw .text2 {
  color: #ffffff;
}
.cid-sFDs2skh26 .dropdown-menu {
  padding: 12px 0;
}
.cid-sFDs2skh26 .dropdown-item:hover,
.cid-sFDs2skh26 .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sFDs2skh26 .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFDs2skh26 .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sFDs2skh26 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFDs2skh26 .nav-link {
  position: relative;
}
.cid-sFDs2skh26 .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sFDs2skh26 .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFDs2skh26 .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sFDs2skh26 .dropdown-menu,
.cid-sFDs2skh26 .navbar.opened {
  background: #242930 !important;
}
.cid-sFDs2skh26 .nav-item:focus,
.cid-sFDs2skh26 .nav-link:focus {
  outline: none;
}
.cid-sFDs2skh26 .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sFDs2skh26 .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sFDs2skh26 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sFDs2skh26 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDs2skh26 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFDs2skh26 .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-sFDs2skh26 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDs2skh26 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDs2skh26 .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-sFDs2skh26 .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sFDs2skh26 .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sFDs2skh26 .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sFDs2skh26 .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sFDs2skh26 .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sFDs2skh26 .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sFDs2skh26 .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sFDs2skh26 .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sFDs2skh26 .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sFDs2skh26 .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sFDs2skh26 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDs2skh26 .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sFDs2skh26 .navbar.collapsed.opened {
  position: fixed;
}
.cid-sFDs2skh26 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sFDs2skh26 .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sFDs2skh26 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFDs2skh26 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDs2skh26 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDs2skh26 .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFDs2skh26 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDs2skh26 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFDs2skh26 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFDs2skh26 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDs2skh26 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDs2skh26 .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sFDs2skh26 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDs2skh26 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDs2skh26 .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-sFDs2skh26 .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sFDs2skh26 .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFDs2skh26 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDs2skh26 .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFDs2skh26 .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sFDs2skh26 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFDs2skh26 .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-sFDs2skh26 .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFDs2skh26 .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFDs2skh26 .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFDs2skh26 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDs2skh26 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDs2skh26 .dropdown-item.active,
.cid-sFDs2skh26 .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDs2skh26 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDs2skh26 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDs2skh26 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDs2skh26 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-sFDs2skh26 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDs2skh26 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDs2skh26 ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFDs2skh26 .navbar-buttons {
  text-align: center;
}
.cid-sFDs2skh26 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDs2skh26 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFDs2skh26 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFDs2skh26 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDs2skh26 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDs2skh26 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFDs2skh26 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDs2skh26 nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFDs2skh26 nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFDs2skh26 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDs2skh26 .navbar-dropdown {
  position: fixed;
}
.cid-sFDs2skh26 a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDs2skh26 .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sFDs2skh26 .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sFDs2skh26 .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFDs2skh26 .navbar {
    height: 77px;
  }
  .cid-sFDs2skh26 .navbar.opened {
    height: auto;
  }
  .cid-sFDs2skh26 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDs2skh26 * {
    text-align: left !important;
  }
  .cid-sFDs2skh26 .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFDs2tStfs {
  padding-top: 165px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2-759x506.jpg");
}
@media (max-width: 767px) {
  .cid-sFDs2tStfs {
    padding-top: 55px;
    padding-bottom: 15px;
  }
}
.cid-sFDs2tStfs img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFDs2tStfs .mbr-section-title {
  color: #ffffff;
}
.cid-sFDs2tStfs .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFDs2tStfs .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFDs2tStfs .svg-1 path {
  fill: #242930;
}
.cid-sFDs2tStfs .container-fluid {
  max-width: 1200px;
}
.cid-sFDs2tStfs .mbr-arrow {
  z-index: 1;
}
.cid-sFDs2tStfs .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFDs2tStfs .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFDs2tStfs .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDs2tStfs {
    padding-top: 80px !important;
  }
  .cid-sFDs2tStfs .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFDs2tStfs .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFDs2tStfs h1 {
    margin-top: 2rem;
  }
}
.cid-sFDs2tStfs .mbr-text,
.cid-sFDs2tStfs .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDuXLd1Tc {
  padding-top: 45px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #242930;
}
.cid-sFDuXLd1Tc .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFDuXLd1Tc .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFDuXLd1Tc .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFDuXLd1Tc .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFDuXLd1Tc .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #86c226;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sFDuXLd1Tc .icon-focus,
.cid-sFDuXLd1Tc .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sFDuXLd1Tc .icon-focus:before,
.cid-sFDuXLd1Tc .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDuXLd1Tc .icon-video {
  font-size: 1.5rem !important;
}
.cid-sFDuXLd1Tc .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sFDuXLd1Tc ul {
  font-size: 0;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li:first-child,
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sFDuXLd1Tc .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sFDuXLd1Tc .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sFDuXLd1Tc .mbr-section-tag {
  color: #86c226;
  margin-bottom: 0.4375rem;
}
.cid-sFDuXLd1Tc .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFDuXLd1Tc .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sFDuXLd1Tc .mbr-section-title,
.cid-sFDuXLd1Tc .mbr-gallery-filter ul {
  color: #ffffff;
}
.cid-sFDuXLd1Tc .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFDs2vXyxC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-sFDs2vXyxC .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFDs2vXyxC svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFDs2vXyxC #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDs2vXyxC .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFDs2vXyxC .mbr-text {
  font-weight: 300;
}
.cid-sFDs2vXyxC .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFDs2vXyxC .btn-white {
  color: #404040 !important;
}
.cid-sFDs2vXyxC .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFDs2vXyxC .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFDs2vXyxC .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFDs2vXyxC {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFDs2vXyxC svg {
    display: none;
  }
  .cid-sFDs2vXyxC * {
    text-align: left !important;
  }
}
.cid-sFDs2vXyxC .mbr-text,
.cid-sFDs2vXyxC .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDs2vXyxC .mbr-section-title,
.cid-sFDs2vXyxC .mbr-section-btn {
  color: #86c226;
}
.cid-sFDs2wVncq {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFDs2wVncq .container {
  max-width: 1400px;
}
.cid-sFDs2wVncq .card-img2 span {
  padding-top: 6px;
}
.cid-sFDs2wVncq .soc-item a {
  padding-top: 5px;
}
.cid-sFDs2wVncq .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFDs2wVncq .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFDs2wVncq .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFDs2wVncq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFDs2wVncq svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFDs2wVncq #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDs2wVncq .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFDs2wVncq .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFDs2wVncq .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFDs2wVncq .card-img {
  width: auto;
}
.cid-sFDs2wVncq .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFDs2wVncq .soc-item span {
  font-size: 1.4rem;
}
.cid-sFDs2wVncq .soc-item:hover span {
  color: white !important;
}
.cid-sFDs2wVncq .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFDs2wVncq .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFDs2wVncq .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFDs2wVncq .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFDs2wVncq img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFDs2wVncq .item {
    justify-content: center;
  }
  .cid-sFDs2wVncq .quote::after {
    left: 60px;
  }
}
.cid-sFDs2wVncq .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFDs2wVncq .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFDs2wVncq .text1 {
  color: #ffffff;
}
.cid-sFDs2wVncq .item-title {
  color: #ffffff;
}
.cid-sFDs2wVncq H5 {
  color: #86c226;
}
.cid-sFDs2wVncq .theme {
  color: #ffffff;
}
.cid-sFDs2wVncq .copyright > p {
  color: #ff3366;
}
.cid-sFDs2wVncq .text2 {
  color: #ffffff;
}
.cid-sFDs2y9lqZ.popup-builder {
  background-color: #ffffff;
}
.cid-sFDs2y9lqZ.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFDs2y9lqZ.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFDs2y9lqZ .modal-content,
.cid-sFDs2y9lqZ .modal-dialog {
  height: auto;
}
.cid-sFDs2y9lqZ .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFDs2y9lqZ .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFDs2y9lqZ .form-wrapper .mbr-form .form-group,
  .cid-sFDs2y9lqZ .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFDs2y9lqZ .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFDs2y9lqZ .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDs2y9lqZ .mbr-text {
  text-align: center;
}
.cid-sFDs2y9lqZ .pt-0 {
  padding-top: 0 !important;
}
.cid-sFDs2y9lqZ .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFDs2y9lqZ .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFDs2y9lqZ .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFDs2y9lqZ .modal-open {
  overflow: hidden;
}
.cid-sFDs2y9lqZ .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFDs2y9lqZ .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFDs2y9lqZ .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFDs2y9lqZ .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFDs2y9lqZ .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFDs2y9lqZ .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFDs2y9lqZ .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFDs2y9lqZ .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFDs2y9lqZ .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFDs2y9lqZ .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFDs2y9lqZ .modal-backdrop.show {
  opacity: .5;
}
.cid-sFDs2y9lqZ .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFDs2y9lqZ .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDs2y9lqZ .modal-header {
    padding: 1rem;
  }
}
.cid-sFDs2y9lqZ .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFDs2y9lqZ .modal-header .close:hover {
  opacity: 1;
}
.cid-sFDs2y9lqZ .modal-header .close:focus {
  outline: none;
}
.cid-sFDs2y9lqZ .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFDs2y9lqZ .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFDs2y9lqZ .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDs2y9lqZ .modal-body {
    padding: 1rem;
  }
}
.cid-sFDs2y9lqZ .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFDs2y9lqZ .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDs2y9lqZ .modal-footer {
    padding: 1rem;
  }
}
.cid-sFDs2y9lqZ .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFDs2y9lqZ .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFDs2y9lqZ .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFDs2y9lqZ .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFDs2y9lqZ .modal-sm {
    max-width: 300px;
  }
  .cid-sFDs2y9lqZ .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFDs2y9lqZ .modal-lg,
  .cid-sFDs2y9lqZ .modal-xl {
    max-width: 800px;
  }
  .cid-sFDs2y9lqZ .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFDs2y9lqZ .modal-xl {
    max-width: 1140px;
  }
  .cid-sFDs2y9lqZ .container {
    max-width: 1140px;
  }
}
.cid-sFDs2y9lqZ .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFDs2y9lqZ .container {
    max-width: 720px;
  }
}
.cid-sFDs2y9lqZ .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFDs2y9lqZ .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFDs2y9lqZ .form-group {
  margin-bottom: 1rem;
}
.cid-sFDs2y9lqZ .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFDs2y9lqZ .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFDs2y9lqZ .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFDs2y9lqZ .mbr-section-btn {
  margin: 0;
}
.cid-sFDs2y9lqZ .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFDADrZFpI .dropdown-menu {
  padding: 12px 0;
}
.cid-sFDADrZFpI .dropdown-item:hover,
.cid-sFDADrZFpI .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sFDADrZFpI .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFDADrZFpI .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sFDADrZFpI .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFDADrZFpI .nav-link {
  position: relative;
}
.cid-sFDADrZFpI .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sFDADrZFpI .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFDADrZFpI .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sFDADrZFpI .dropdown-menu,
.cid-sFDADrZFpI .navbar.opened {
  background: #242930 !important;
}
.cid-sFDADrZFpI .nav-item:focus,
.cid-sFDADrZFpI .nav-link:focus {
  outline: none;
}
.cid-sFDADrZFpI .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sFDADrZFpI .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sFDADrZFpI .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sFDADrZFpI .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDADrZFpI .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFDADrZFpI .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-sFDADrZFpI .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDADrZFpI .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDADrZFpI .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-sFDADrZFpI .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sFDADrZFpI .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sFDADrZFpI .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sFDADrZFpI .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sFDADrZFpI .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sFDADrZFpI .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sFDADrZFpI .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sFDADrZFpI .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sFDADrZFpI .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sFDADrZFpI .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sFDADrZFpI .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDADrZFpI .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sFDADrZFpI .navbar.collapsed.opened {
  position: fixed;
}
.cid-sFDADrZFpI .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sFDADrZFpI .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sFDADrZFpI .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFDADrZFpI .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDADrZFpI .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDADrZFpI .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFDADrZFpI .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDADrZFpI .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFDADrZFpI .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFDADrZFpI .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDADrZFpI .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDADrZFpI .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sFDADrZFpI .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDADrZFpI .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDADrZFpI .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-sFDADrZFpI .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sFDADrZFpI .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFDADrZFpI .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDADrZFpI .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFDADrZFpI .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sFDADrZFpI .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFDADrZFpI .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-sFDADrZFpI .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFDADrZFpI .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFDADrZFpI .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFDADrZFpI .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDADrZFpI .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDADrZFpI .dropdown-item.active,
.cid-sFDADrZFpI .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDADrZFpI .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDADrZFpI .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDADrZFpI .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDADrZFpI .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-sFDADrZFpI .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDADrZFpI .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDADrZFpI ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFDADrZFpI .navbar-buttons {
  text-align: center;
}
.cid-sFDADrZFpI button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDADrZFpI button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFDADrZFpI button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFDADrZFpI button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDADrZFpI button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDADrZFpI button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFDADrZFpI nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDADrZFpI nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFDADrZFpI nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFDADrZFpI nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDADrZFpI .navbar-dropdown {
  position: fixed;
}
.cid-sFDADrZFpI a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDADrZFpI .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sFDADrZFpI .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sFDADrZFpI .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFDADrZFpI .navbar {
    height: 77px;
  }
  .cid-sFDADrZFpI .navbar.opened {
    height: auto;
  }
  .cid-sFDADrZFpI .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDADrZFpI * {
    text-align: left !important;
  }
  .cid-sFDADrZFpI .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFDADuFxAl {
  padding-top: 165px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2-759x506.jpg");
}
@media (max-width: 767px) {
  .cid-sFDADuFxAl {
    padding-top: 55px;
    padding-bottom: 15px;
  }
}
.cid-sFDADuFxAl img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFDADuFxAl .mbr-section-title {
  color: #ffffff;
}
.cid-sFDADuFxAl .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFDADuFxAl .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFDADuFxAl .svg-1 path {
  fill: #242930;
}
.cid-sFDADuFxAl .container-fluid {
  max-width: 1200px;
}
.cid-sFDADuFxAl .mbr-arrow {
  z-index: 1;
}
.cid-sFDADuFxAl .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFDADuFxAl .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFDADuFxAl .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDADuFxAl {
    padding-top: 80px !important;
  }
  .cid-sFDADuFxAl .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFDADuFxAl .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFDADuFxAl h1 {
    margin-top: 2rem;
  }
}
.cid-sFDADuFxAl .mbr-text,
.cid-sFDADuFxAl .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDADvCKEs {
  padding-top: 45px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #242930;
}
.cid-sFDADvCKEs .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFDADvCKEs .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFDADvCKEs .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFDADvCKEs .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFDADvCKEs .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #86c226;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sFDADvCKEs .icon-focus,
.cid-sFDADvCKEs .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sFDADvCKEs .icon-focus:before,
.cid-sFDADvCKEs .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDADvCKEs .icon-video {
  font-size: 1.5rem !important;
}
.cid-sFDADvCKEs .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sFDADvCKEs ul {
  font-size: 0;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sFDADvCKEs .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li:first-child,
.cid-sFDADvCKEs .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sFDADvCKEs .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sFDADvCKEs .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sFDADvCKEs .mbr-section-tag {
  color: #86c226;
  margin-bottom: 0.4375rem;
}
.cid-sFDADvCKEs .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sFDADvCKEs .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFDADvCKEs .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sFDADvCKEs .mbr-section-title,
.cid-sFDADvCKEs .mbr-gallery-filter ul {
  color: #ffffff;
}
.cid-sFDADvCKEs .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFDADwUi7s {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-sFDADwUi7s .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFDADwUi7s svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFDADwUi7s #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDADwUi7s .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFDADwUi7s .mbr-text {
  font-weight: 300;
}
.cid-sFDADwUi7s .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFDADwUi7s .btn-white {
  color: #404040 !important;
}
.cid-sFDADwUi7s .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFDADwUi7s .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFDADwUi7s .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFDADwUi7s {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFDADwUi7s svg {
    display: none;
  }
  .cid-sFDADwUi7s * {
    text-align: left !important;
  }
}
.cid-sFDADwUi7s .mbr-text,
.cid-sFDADwUi7s .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDADwUi7s .mbr-section-title,
.cid-sFDADwUi7s .mbr-section-btn {
  color: #86c226;
}
.cid-sFDADxOGw7 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFDADxOGw7 .container {
  max-width: 1400px;
}
.cid-sFDADxOGw7 .card-img2 span {
  padding-top: 6px;
}
.cid-sFDADxOGw7 .soc-item a {
  padding-top: 5px;
}
.cid-sFDADxOGw7 .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFDADxOGw7 .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFDADxOGw7 .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFDADxOGw7 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFDADxOGw7 svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFDADxOGw7 #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDADxOGw7 .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFDADxOGw7 .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFDADxOGw7 .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFDADxOGw7 .card-img {
  width: auto;
}
.cid-sFDADxOGw7 .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFDADxOGw7 .soc-item span {
  font-size: 1.4rem;
}
.cid-sFDADxOGw7 .soc-item:hover span {
  color: white !important;
}
.cid-sFDADxOGw7 .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFDADxOGw7 .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFDADxOGw7 .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFDADxOGw7 .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFDADxOGw7 img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFDADxOGw7 .item {
    justify-content: center;
  }
  .cid-sFDADxOGw7 .quote::after {
    left: 60px;
  }
}
.cid-sFDADxOGw7 .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFDADxOGw7 .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFDADxOGw7 .text1 {
  color: #ffffff;
}
.cid-sFDADxOGw7 .item-title {
  color: #ffffff;
}
.cid-sFDADxOGw7 H5 {
  color: #86c226;
}
.cid-sFDADxOGw7 .theme {
  color: #ffffff;
}
.cid-sFDADxOGw7 .copyright > p {
  color: #ff3366;
}
.cid-sFDADxOGw7 .text2 {
  color: #ffffff;
}
.cid-sFDADzDtW5.popup-builder {
  background-color: #ffffff;
}
.cid-sFDADzDtW5.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFDADzDtW5.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFDADzDtW5 .modal-content,
.cid-sFDADzDtW5 .modal-dialog {
  height: auto;
}
.cid-sFDADzDtW5 .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFDADzDtW5 .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFDADzDtW5 .form-wrapper .mbr-form .form-group,
  .cid-sFDADzDtW5 .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFDADzDtW5 .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFDADzDtW5 .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDADzDtW5 .mbr-text {
  text-align: center;
}
.cid-sFDADzDtW5 .pt-0 {
  padding-top: 0 !important;
}
.cid-sFDADzDtW5 .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFDADzDtW5 .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFDADzDtW5 .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFDADzDtW5 .modal-open {
  overflow: hidden;
}
.cid-sFDADzDtW5 .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFDADzDtW5 .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFDADzDtW5 .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFDADzDtW5 .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFDADzDtW5 .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFDADzDtW5 .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFDADzDtW5 .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFDADzDtW5 .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFDADzDtW5 .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFDADzDtW5 .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFDADzDtW5 .modal-backdrop.show {
  opacity: .5;
}
.cid-sFDADzDtW5 .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFDADzDtW5 .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDADzDtW5 .modal-header {
    padding: 1rem;
  }
}
.cid-sFDADzDtW5 .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFDADzDtW5 .modal-header .close:hover {
  opacity: 1;
}
.cid-sFDADzDtW5 .modal-header .close:focus {
  outline: none;
}
.cid-sFDADzDtW5 .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFDADzDtW5 .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFDADzDtW5 .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDADzDtW5 .modal-body {
    padding: 1rem;
  }
}
.cid-sFDADzDtW5 .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFDADzDtW5 .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDADzDtW5 .modal-footer {
    padding: 1rem;
  }
}
.cid-sFDADzDtW5 .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFDADzDtW5 .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFDADzDtW5 .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFDADzDtW5 .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFDADzDtW5 .modal-sm {
    max-width: 300px;
  }
  .cid-sFDADzDtW5 .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFDADzDtW5 .modal-lg,
  .cid-sFDADzDtW5 .modal-xl {
    max-width: 800px;
  }
  .cid-sFDADzDtW5 .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFDADzDtW5 .modal-xl {
    max-width: 1140px;
  }
  .cid-sFDADzDtW5 .container {
    max-width: 1140px;
  }
}
.cid-sFDADzDtW5 .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFDADzDtW5 .container {
    max-width: 720px;
  }
}
.cid-sFDADzDtW5 .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFDADzDtW5 .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFDADzDtW5 .form-group {
  margin-bottom: 1rem;
}
.cid-sFDADzDtW5 .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFDADzDtW5 .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFDADzDtW5 .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFDADzDtW5 .mbr-section-btn {
  margin: 0;
}
.cid-sFDADzDtW5 .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFDAJresbG .dropdown-menu {
  padding: 12px 0;
}
.cid-sFDAJresbG .dropdown-item:hover,
.cid-sFDAJresbG .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sFDAJresbG .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFDAJresbG .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sFDAJresbG .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFDAJresbG .nav-link {
  position: relative;
}
.cid-sFDAJresbG .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sFDAJresbG .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFDAJresbG .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sFDAJresbG .dropdown-menu,
.cid-sFDAJresbG .navbar.opened {
  background: #242930 !important;
}
.cid-sFDAJresbG .nav-item:focus,
.cid-sFDAJresbG .nav-link:focus {
  outline: none;
}
.cid-sFDAJresbG .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sFDAJresbG .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sFDAJresbG .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sFDAJresbG .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDAJresbG .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFDAJresbG .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-sFDAJresbG .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDAJresbG .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDAJresbG .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-sFDAJresbG .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sFDAJresbG .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sFDAJresbG .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sFDAJresbG .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sFDAJresbG .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sFDAJresbG .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sFDAJresbG .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sFDAJresbG .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sFDAJresbG .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sFDAJresbG .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sFDAJresbG .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDAJresbG .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sFDAJresbG .navbar.collapsed.opened {
  position: fixed;
}
.cid-sFDAJresbG .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sFDAJresbG .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sFDAJresbG .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFDAJresbG .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDAJresbG .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDAJresbG .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFDAJresbG .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDAJresbG .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFDAJresbG .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFDAJresbG .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDAJresbG .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDAJresbG .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sFDAJresbG .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDAJresbG .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDAJresbG .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-sFDAJresbG .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sFDAJresbG .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFDAJresbG .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDAJresbG .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFDAJresbG .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sFDAJresbG .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFDAJresbG .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-sFDAJresbG .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFDAJresbG .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFDAJresbG .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFDAJresbG .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDAJresbG .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDAJresbG .dropdown-item.active,
.cid-sFDAJresbG .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDAJresbG .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDAJresbG .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDAJresbG .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDAJresbG .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-sFDAJresbG .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDAJresbG .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDAJresbG ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFDAJresbG .navbar-buttons {
  text-align: center;
}
.cid-sFDAJresbG button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDAJresbG button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFDAJresbG button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFDAJresbG button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDAJresbG button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDAJresbG button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFDAJresbG nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDAJresbG nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFDAJresbG nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFDAJresbG nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDAJresbG .navbar-dropdown {
  position: fixed;
}
.cid-sFDAJresbG a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDAJresbG .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sFDAJresbG .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sFDAJresbG .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFDAJresbG .navbar {
    height: 77px;
  }
  .cid-sFDAJresbG .navbar.opened {
    height: auto;
  }
  .cid-sFDAJresbG .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDAJresbG * {
    text-align: left !important;
  }
  .cid-sFDAJresbG .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFDAJstdHm {
  padding-top: 165px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2-759x506.jpg");
}
@media (max-width: 767px) {
  .cid-sFDAJstdHm {
    padding-top: 55px;
    padding-bottom: 15px;
  }
}
.cid-sFDAJstdHm img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFDAJstdHm .mbr-section-title {
  color: #ffffff;
}
.cid-sFDAJstdHm .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFDAJstdHm .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFDAJstdHm .svg-1 path {
  fill: #242930;
}
.cid-sFDAJstdHm .container-fluid {
  max-width: 1200px;
}
.cid-sFDAJstdHm .mbr-arrow {
  z-index: 1;
}
.cid-sFDAJstdHm .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFDAJstdHm .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFDAJstdHm .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDAJstdHm {
    padding-top: 80px !important;
  }
  .cid-sFDAJstdHm .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFDAJstdHm .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFDAJstdHm h1 {
    margin-top: 2rem;
  }
}
.cid-sFDAJstdHm .mbr-text,
.cid-sFDAJstdHm .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDAJtrBgk {
  padding-top: 45px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #242930;
}
.cid-sFDAJtrBgk .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFDAJtrBgk .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFDAJtrBgk .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFDAJtrBgk .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFDAJtrBgk .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #86c226;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sFDAJtrBgk .icon-focus,
.cid-sFDAJtrBgk .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sFDAJtrBgk .icon-focus:before,
.cid-sFDAJtrBgk .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDAJtrBgk .icon-video {
  font-size: 1.5rem !important;
}
.cid-sFDAJtrBgk .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sFDAJtrBgk ul {
  font-size: 0;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sFDAJtrBgk .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li:first-child,
.cid-sFDAJtrBgk .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sFDAJtrBgk .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sFDAJtrBgk .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sFDAJtrBgk .mbr-section-tag {
  color: #86c226;
  margin-bottom: 0.4375rem;
}
.cid-sFDAJtrBgk .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sFDAJtrBgk .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFDAJtrBgk .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sFDAJtrBgk .mbr-section-title,
.cid-sFDAJtrBgk .mbr-gallery-filter ul {
  color: #ffffff;
}
.cid-sFDAJtrBgk .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFDAJuK7fU {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-sFDAJuK7fU .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFDAJuK7fU svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFDAJuK7fU #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDAJuK7fU .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFDAJuK7fU .mbr-text {
  font-weight: 300;
}
.cid-sFDAJuK7fU .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFDAJuK7fU .btn-white {
  color: #404040 !important;
}
.cid-sFDAJuK7fU .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFDAJuK7fU .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFDAJuK7fU .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFDAJuK7fU {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFDAJuK7fU svg {
    display: none;
  }
  .cid-sFDAJuK7fU * {
    text-align: left !important;
  }
}
.cid-sFDAJuK7fU .mbr-text,
.cid-sFDAJuK7fU .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDAJuK7fU .mbr-section-title,
.cid-sFDAJuK7fU .mbr-section-btn {
  color: #86c226;
}
.cid-sFDAJvBUnu {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFDAJvBUnu .container {
  max-width: 1400px;
}
.cid-sFDAJvBUnu .card-img2 span {
  padding-top: 6px;
}
.cid-sFDAJvBUnu .soc-item a {
  padding-top: 5px;
}
.cid-sFDAJvBUnu .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFDAJvBUnu .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFDAJvBUnu .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFDAJvBUnu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFDAJvBUnu svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFDAJvBUnu #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDAJvBUnu .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFDAJvBUnu .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFDAJvBUnu .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFDAJvBUnu .card-img {
  width: auto;
}
.cid-sFDAJvBUnu .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFDAJvBUnu .soc-item span {
  font-size: 1.4rem;
}
.cid-sFDAJvBUnu .soc-item:hover span {
  color: white !important;
}
.cid-sFDAJvBUnu .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFDAJvBUnu .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFDAJvBUnu .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFDAJvBUnu .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFDAJvBUnu img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFDAJvBUnu .item {
    justify-content: center;
  }
  .cid-sFDAJvBUnu .quote::after {
    left: 60px;
  }
}
.cid-sFDAJvBUnu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFDAJvBUnu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFDAJvBUnu .text1 {
  color: #ffffff;
}
.cid-sFDAJvBUnu .item-title {
  color: #ffffff;
}
.cid-sFDAJvBUnu H5 {
  color: #86c226;
}
.cid-sFDAJvBUnu .theme {
  color: #ffffff;
}
.cid-sFDAJvBUnu .copyright > p {
  color: #ff3366;
}
.cid-sFDAJvBUnu .text2 {
  color: #ffffff;
}
.cid-sFDAJx4uBT.popup-builder {
  background-color: #ffffff;
}
.cid-sFDAJx4uBT.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFDAJx4uBT.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFDAJx4uBT .modal-content,
.cid-sFDAJx4uBT .modal-dialog {
  height: auto;
}
.cid-sFDAJx4uBT .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFDAJx4uBT .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFDAJx4uBT .form-wrapper .mbr-form .form-group,
  .cid-sFDAJx4uBT .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFDAJx4uBT .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFDAJx4uBT .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDAJx4uBT .mbr-text {
  text-align: center;
}
.cid-sFDAJx4uBT .pt-0 {
  padding-top: 0 !important;
}
.cid-sFDAJx4uBT .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFDAJx4uBT .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFDAJx4uBT .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFDAJx4uBT .modal-open {
  overflow: hidden;
}
.cid-sFDAJx4uBT .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFDAJx4uBT .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFDAJx4uBT .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFDAJx4uBT .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFDAJx4uBT .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFDAJx4uBT .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFDAJx4uBT .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFDAJx4uBT .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFDAJx4uBT .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFDAJx4uBT .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFDAJx4uBT .modal-backdrop.show {
  opacity: .5;
}
.cid-sFDAJx4uBT .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFDAJx4uBT .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDAJx4uBT .modal-header {
    padding: 1rem;
  }
}
.cid-sFDAJx4uBT .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFDAJx4uBT .modal-header .close:hover {
  opacity: 1;
}
.cid-sFDAJx4uBT .modal-header .close:focus {
  outline: none;
}
.cid-sFDAJx4uBT .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFDAJx4uBT .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFDAJx4uBT .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDAJx4uBT .modal-body {
    padding: 1rem;
  }
}
.cid-sFDAJx4uBT .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFDAJx4uBT .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDAJx4uBT .modal-footer {
    padding: 1rem;
  }
}
.cid-sFDAJx4uBT .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFDAJx4uBT .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFDAJx4uBT .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFDAJx4uBT .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFDAJx4uBT .modal-sm {
    max-width: 300px;
  }
  .cid-sFDAJx4uBT .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFDAJx4uBT .modal-lg,
  .cid-sFDAJx4uBT .modal-xl {
    max-width: 800px;
  }
  .cid-sFDAJx4uBT .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFDAJx4uBT .modal-xl {
    max-width: 1140px;
  }
  .cid-sFDAJx4uBT .container {
    max-width: 1140px;
  }
}
.cid-sFDAJx4uBT .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFDAJx4uBT .container {
    max-width: 720px;
  }
}
.cid-sFDAJx4uBT .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFDAJx4uBT .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFDAJx4uBT .form-group {
  margin-bottom: 1rem;
}
.cid-sFDAJx4uBT .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFDAJx4uBT .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFDAJx4uBT .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFDAJx4uBT .mbr-section-btn {
  margin: 0;
}
.cid-sFDAJx4uBT .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFDE3X5Jzc .dropdown-menu {
  padding: 12px 0;
}
.cid-sFDE3X5Jzc .dropdown-item:hover,
.cid-sFDE3X5Jzc .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sFDE3X5Jzc .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFDE3X5Jzc .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sFDE3X5Jzc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFDE3X5Jzc .nav-link {
  position: relative;
}
.cid-sFDE3X5Jzc .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sFDE3X5Jzc .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFDE3X5Jzc .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sFDE3X5Jzc .dropdown-menu,
.cid-sFDE3X5Jzc .navbar.opened {
  background: #242930 !important;
}
.cid-sFDE3X5Jzc .nav-item:focus,
.cid-sFDE3X5Jzc .nav-link:focus {
  outline: none;
}
.cid-sFDE3X5Jzc .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sFDE3X5Jzc .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sFDE3X5Jzc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sFDE3X5Jzc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFDE3X5Jzc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFDE3X5Jzc .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-sFDE3X5Jzc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFDE3X5Jzc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFDE3X5Jzc .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-sFDE3X5Jzc .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sFDE3X5Jzc .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sFDE3X5Jzc .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sFDE3X5Jzc .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sFDE3X5Jzc .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sFDE3X5Jzc .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sFDE3X5Jzc .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sFDE3X5Jzc .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sFDE3X5Jzc .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sFDE3X5Jzc .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sFDE3X5Jzc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFDE3X5Jzc .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sFDE3X5Jzc .navbar.collapsed.opened {
  position: fixed;
}
.cid-sFDE3X5Jzc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sFDE3X5Jzc .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sFDE3X5Jzc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFDE3X5Jzc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFDE3X5Jzc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFDE3X5Jzc .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFDE3X5Jzc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFDE3X5Jzc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFDE3X5Jzc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFDE3X5Jzc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFDE3X5Jzc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFDE3X5Jzc .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sFDE3X5Jzc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFDE3X5Jzc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFDE3X5Jzc .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-sFDE3X5Jzc .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sFDE3X5Jzc .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFDE3X5Jzc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFDE3X5Jzc .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFDE3X5Jzc .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sFDE3X5Jzc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFDE3X5Jzc .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-sFDE3X5Jzc .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFDE3X5Jzc .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFDE3X5Jzc .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFDE3X5Jzc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFDE3X5Jzc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFDE3X5Jzc .dropdown-item.active,
.cid-sFDE3X5Jzc .dropdown-item:active {
  background-color: transparent;
}
.cid-sFDE3X5Jzc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFDE3X5Jzc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFDE3X5Jzc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFDE3X5Jzc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-sFDE3X5Jzc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFDE3X5Jzc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFDE3X5Jzc ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFDE3X5Jzc .navbar-buttons {
  text-align: center;
}
.cid-sFDE3X5Jzc button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDE3X5Jzc button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFDE3X5Jzc button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFDE3X5Jzc button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDE3X5Jzc button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFDE3X5Jzc button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFDE3X5Jzc nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDE3X5Jzc nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFDE3X5Jzc nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFDE3X5Jzc nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFDE3X5Jzc .navbar-dropdown {
  position: fixed;
}
.cid-sFDE3X5Jzc a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDE3X5Jzc .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sFDE3X5Jzc .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sFDE3X5Jzc .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFDE3X5Jzc .navbar {
    height: 77px;
  }
  .cid-sFDE3X5Jzc .navbar.opened {
    height: auto;
  }
  .cid-sFDE3X5Jzc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDE3X5Jzc * {
    text-align: left !important;
  }
  .cid-sFDE3X5Jzc .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFDE3YnTZH {
  padding-top: 165px;
  padding-bottom: 45px;
  background-image: url("../../../assets/images/mbr-2-759x506.jpg");
}
@media (max-width: 767px) {
  .cid-sFDE3YnTZH {
    padding-top: 55px;
    padding-bottom: 15px;
  }
}
.cid-sFDE3YnTZH img {
  width: 80%;
  border-radius: 30px;
}
.cid-sFDE3YnTZH .mbr-section-title {
  color: #ffffff;
}
.cid-sFDE3YnTZH .mbr-section-subtitle {
  background-color: #11737c;
  padding: 0 1rem;
  border-radius: 5px;
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  color: #ffffff;
}
.cid-sFDE3YnTZH .svg-1 {
  position: absolute;
  bottom: 0;
}
.cid-sFDE3YnTZH .svg-1 path {
  fill: #242930;
}
.cid-sFDE3YnTZH .container-fluid {
  max-width: 1200px;
}
.cid-sFDE3YnTZH .mbr-arrow {
  z-index: 1;
}
.cid-sFDE3YnTZH .mbr-section-btn {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .cid-sFDE3YnTZH .container-fluid {
    padding: 0 1.5rem;
  }
}
@media (max-width: 992px) {
  .cid-sFDE3YnTZH .imageContainer {
    margin-top: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sFDE3YnTZH {
    padding-top: 80px !important;
  }
  .cid-sFDE3YnTZH .container-fluid {
    padding: 0 1rem;
  }
  .cid-sFDE3YnTZH .mbr-section-subtitle {
    margin-bottom: 1.4rem;
  }
  .cid-sFDE3YnTZH h1 {
    margin-top: 2rem;
  }
}
.cid-sFDE3YnTZH .mbr-text,
.cid-sFDE3YnTZH .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDE3Zj73C {
  padding-top: 45px;
  padding-bottom: 15px;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #242930;
}
.cid-sFDE3Zj73C .mbr-slider .carousel-control {
  background: #1b1b1b;
}
.cid-sFDE3Zj73C .mbr-slider .carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sFDE3Zj73C .mbr-slider .carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-sFDE3Zj73C .mbr-slider .modal-body .close {
  background: #1b1b1b;
}
.cid-sFDE3Zj73C .mbr-gallery-item > div::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #86c226;
  opacity: 0;
  -webkit-transition: 0.2s opacity ease-in-out;
  transition: 0.2s opacity ease-in-out;
}
.cid-sFDE3Zj73C .icon-focus,
.cid-sFDE3Zj73C .icon-video {
  font-size: 2rem !important;
  width: 50px;
  height: 50px;
  top: calc(50% - 25px);
  left: calc(50% - 25px);
}
.cid-sFDE3Zj73C .icon-focus:before,
.cid-sFDE3Zj73C .icon-video:before {
  content: '+';
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  padding-bottom: 6px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFDE3Zj73C .icon-video {
  font-size: 1.5rem !important;
}
.cid-sFDE3Zj73C .mbr-gallery-title {
  transition: all 0.5s ease;
  position: absolute;
  text-align: left;
  display: none;
  width: 100%;
  bottom: 0;
  right: 0;
  padding: 1rem;
  font-weight: bold;
  background: transparent;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
}
.cid-sFDE3Zj73C ul {
  font-size: 0;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul {
  text-align: left;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li {
  padding: 0;
  margin: 0 .2rem;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li .btn {
  position: relative;
  padding: 0.5rem 1rem 0.6rem !important;
  margin: 0!important;
  background-color: transparent !important;
  border-width: 0 !important;
  color: #f23801 !important;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li .btn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border: 1px solid transparent;
  border-radius: 100px;
  opacity: 0.5;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li:not(.active) .btn:hover:after,
.cid-sFDE3Zj73C .mbr-gallery-filter ul li.active .btn:after {
  border-color: #f23801;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li .btn:hover:after {
  -webkit-animation: 1s btn-animation linear infinite;
  animation: 1s btn-animation linear infinite;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li .btn:not(:hover):after {
  animation: none;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li:first-child,
.cid-sFDE3Zj73C .mbr-gallery-filter ul li:last-child {
  margin: 0;
}
.cid-sFDE3Zj73C .mbr-gallery-item > div:hover .mbr-gallery-title {
  display: block;
}
.cid-sFDE3Zj73C .mbr-gallery-item > div:hover:before {
  opacity: 0.4 !important;
}
@keyframes btn-animation {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3);
    opacity: 0;
  }
}
.cid-sFDE3Zj73C .mbr-section-tag {
  color: #86c226;
  margin-bottom: 0.4375rem;
}
.cid-sFDE3Zj73C .mbr-section-title {
  margin-bottom: 1rem;
}
.cid-sFDE3Zj73C .mbr-gallery-filter {
  padding-left: 0;
  padding-right: 0;
}
.cid-sFDE3Zj73C .mbr-gallery-filter ul li .btn:after {
  transform: none !important;
}
.cid-sFDE3Zj73C .mbr-section-title,
.cid-sFDE3Zj73C .mbr-gallery-filter ul {
  color: #ffffff;
}
.cid-sFDE3Zj73C .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sFDE40csbY {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #242930;
  overflow: hidden;
}
.cid-sFDE40csbY .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFDE40csbY svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFDE40csbY #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDE40csbY .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFDE40csbY .mbr-text {
  font-weight: 300;
}
.cid-sFDE40csbY .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFDE40csbY .btn-white {
  color: #404040 !important;
}
.cid-sFDE40csbY .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFDE40csbY .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFDE40csbY .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFDE40csbY {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFDE40csbY svg {
    display: none;
  }
  .cid-sFDE40csbY * {
    text-align: left !important;
  }
}
.cid-sFDE40csbY .mbr-text,
.cid-sFDE40csbY .mbr-section-btn {
  color: #ffffff;
}
.cid-sFDE40csbY .mbr-section-title,
.cid-sFDE40csbY .mbr-section-btn {
  color: #86c226;
}
.cid-sFDE418FSu {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFDE418FSu .container {
  max-width: 1400px;
}
.cid-sFDE418FSu .card-img2 span {
  padding-top: 6px;
}
.cid-sFDE418FSu .soc-item a {
  padding-top: 5px;
}
.cid-sFDE418FSu .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFDE418FSu .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFDE418FSu .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFDE418FSu .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFDE418FSu svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFDE418FSu #e2_shape {
  fill: #86c226 !important;
}
.cid-sFDE418FSu .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFDE418FSu .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFDE418FSu .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFDE418FSu .card-img {
  width: auto;
}
.cid-sFDE418FSu .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFDE418FSu .soc-item span {
  font-size: 1.4rem;
}
.cid-sFDE418FSu .soc-item:hover span {
  color: white !important;
}
.cid-sFDE418FSu .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFDE418FSu .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFDE418FSu .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFDE418FSu .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFDE418FSu img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFDE418FSu .item {
    justify-content: center;
  }
  .cid-sFDE418FSu .quote::after {
    left: 60px;
  }
}
.cid-sFDE418FSu .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFDE418FSu .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFDE418FSu .text1 {
  color: #ffffff;
}
.cid-sFDE418FSu .item-title {
  color: #ffffff;
}
.cid-sFDE418FSu H5 {
  color: #86c226;
}
.cid-sFDE418FSu .theme {
  color: #ffffff;
}
.cid-sFDE418FSu .copyright > p {
  color: #ff3366;
}
.cid-sFDE418FSu .text2 {
  color: #ffffff;
}
.cid-sFDE42MNtu.popup-builder {
  background-color: #ffffff;
}
.cid-sFDE42MNtu.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-sFDE42MNtu.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-sFDE42MNtu .modal-content,
.cid-sFDE42MNtu .modal-dialog {
  height: auto;
}
.cid-sFDE42MNtu .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-sFDE42MNtu .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-sFDE42MNtu .form-wrapper .mbr-form .form-group,
  .cid-sFDE42MNtu .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-sFDE42MNtu .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-sFDE42MNtu .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFDE42MNtu .mbr-text {
  text-align: center;
}
.cid-sFDE42MNtu .pt-0 {
  padding-top: 0 !important;
}
.cid-sFDE42MNtu .pb-0 {
  padding-bottom: 0 !important;
}
.cid-sFDE42MNtu .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-sFDE42MNtu .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-sFDE42MNtu .modal-open {
  overflow: hidden;
}
.cid-sFDE42MNtu .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-sFDE42MNtu .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-sFDE42MNtu .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-sFDE42MNtu .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-sFDE42MNtu .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-sFDE42MNtu .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-sFDE42MNtu .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-sFDE42MNtu .modal-content {
  background: #d3dcde;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-sFDE42MNtu .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-sFDE42MNtu .modal-backdrop.fade {
  opacity: 0;
}
.cid-sFDE42MNtu .modal-backdrop.show {
  opacity: .5;
}
.cid-sFDE42MNtu .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-sFDE42MNtu .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDE42MNtu .modal-header {
    padding: 1rem;
  }
}
.cid-sFDE42MNtu .modal-header .close {
  position: absolute;
  top: auto;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-sFDE42MNtu .modal-header .close:hover {
  opacity: 1;
}
.cid-sFDE42MNtu .modal-header .close:focus {
  outline: none;
}
.cid-sFDE42MNtu .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-sFDE42MNtu .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 100%;
}
@media (min-width: 992px) {
  .cid-sFDE42MNtu .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDE42MNtu .modal-body {
    padding: 1rem;
  }
}
.cid-sFDE42MNtu .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sFDE42MNtu .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sFDE42MNtu .modal-footer {
    padding: 1rem;
  }
}
.cid-sFDE42MNtu .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-sFDE42MNtu .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-sFDE42MNtu .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-sFDE42MNtu .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-sFDE42MNtu .modal-sm {
    max-width: 300px;
  }
  .cid-sFDE42MNtu .container {
    max-width: 540px;
  }
}
@media (min-width: 992px) {
  .cid-sFDE42MNtu .modal-lg,
  .cid-sFDE42MNtu .modal-xl {
    max-width: 800px;
  }
  .cid-sFDE42MNtu .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .cid-sFDE42MNtu .modal-xl {
    max-width: 1140px;
  }
  .cid-sFDE42MNtu .container {
    max-width: 1140px;
  }
}
.cid-sFDE42MNtu .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) {
  .cid-sFDE42MNtu .container {
    max-width: 720px;
  }
}
.cid-sFDE42MNtu .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-sFDE42MNtu .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-sFDE42MNtu .form-group {
  margin-bottom: 1rem;
}
.cid-sFDE42MNtu .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-sFDE42MNtu .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-sFDE42MNtu .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-sFDE42MNtu .mbr-section-btn {
  margin: 0;
}
.cid-sFDE42MNtu .mbr-section-btn .btn {
  margin: 0;
}
.cid-sFOWMBUSnb .dropdown-menu {
  padding: 12px 0;
}
.cid-sFOWMBUSnb .dropdown-item:hover,
.cid-sFOWMBUSnb .dropdown-item:focus {
  color: white;
  opacity: 0.75;
}
.cid-sFOWMBUSnb .dropdown-item.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFOWMBUSnb .nav-dropdown .link {
  padding: 40px 24px !important;
  font-weight: 600 !important;
}
.cid-sFOWMBUSnb .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sFOWMBUSnb .nav-link {
  position: relative;
}
.cid-sFOWMBUSnb .container {
  display: flex;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  justify-content: center !important;
}
.cid-sFOWMBUSnb .mbr-iconfont {
  color: #ffffff;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sFOWMBUSnb .navbar-nav {
  justify-content: center;
  margin-left: auto;
}
.cid-sFOWMBUSnb .dropdown-menu,
.cid-sFOWMBUSnb .navbar.opened {
  background: #242930 !important;
}
.cid-sFOWMBUSnb .nav-item:focus,
.cid-sFOWMBUSnb .nav-link:focus {
  outline: none;
}
.cid-sFOWMBUSnb .nav-item:hover .link {
  opacity: 0.75;
  transition: all 200ms ease-in-out;
}
.cid-sFOWMBUSnb .nav-item .link.display-4 {
  font-size: 14px;
}
.cid-sFOWMBUSnb .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sFOWMBUSnb .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sFOWMBUSnb .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sFOWMBUSnb .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-sFOWMBUSnb .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sFOWMBUSnb .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sFOWMBUSnb .navbar {
  min-height: 77px;
  transition: all 0.3s;
  background: #242930;
}
.cid-sFOWMBUSnb .navbar.opened {
  transition: all 0.3s;
  width: 300px;
  height: 100%;
  padding: 0px 30px 10px 30px;
}
.cid-sFOWMBUSnb .navbar.opened .container {
  align-self: flex-start;
  margin: 0px;
}
.cid-sFOWMBUSnb .navbar.opened .container .navbar-brand {
  padding: 3rem 0 2rem;
}
.cid-sFOWMBUSnb .navbar.opened .container button.navbar-toggler {
  position: absolute;
  top: 1.3rem;
  left: auto;
  right: -0.5rem;
}
.cid-sFOWMBUSnb .navbar.opened .container button.navbar-toggler .hamburger span {
  width: 15px;
  height: 3px;
}
.cid-sFOWMBUSnb .navbar.opened .container ul.navbar-nav li {
  margin: 0;
}
.cid-sFOWMBUSnb .navbar.opened .container ul.navbar-nav li .link {
  justify-content: flex-start;
}
.cid-sFOWMBUSnb .navbar.opened .container .nav-dropdown .link {
  padding: 14px 42px 14px 0 !important;
}
.cid-sFOWMBUSnb .navbar .dropdown-item {
  padding: 12px 40px 12px 24px;
}
.cid-sFOWMBUSnb .navbar .navbar-collapse {
  justify-content: space-between;
  z-index: 1;
}
.cid-sFOWMBUSnb .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sFOWMBUSnb .navbar.collapsed .navbar-toggler {
  -webkit-flex-basis: auto;
  flex-basis: auto;
  margin-left: auto;
}
.cid-sFOWMBUSnb .navbar.collapsed.opened {
  position: fixed;
}
.cid-sFOWMBUSnb .navbar.collapsed.opened .dropdown-menu {
  top: 0;
  padding-left: 20px;
}
.cid-sFOWMBUSnb .navbar.collapsed.opened .dropdown-menu .dropdown-item {
  padding: 14px 45px 14px 0 !important;
  text-align: left;
}
@media (min-width: 992px) {
  .cid-sFOWMBUSnb .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5rem);
  }
}
.cid-sFOWMBUSnb .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sFOWMBUSnb .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sFOWMBUSnb .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sFOWMBUSnb .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sFOWMBUSnb .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sFOWMBUSnb .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sFOWMBUSnb .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sFOWMBUSnb .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sFOWMBUSnb .navbar .dropdown-menu {
    padding-left: 20px;
  }
  .cid-sFOWMBUSnb .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sFOWMBUSnb .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sFOWMBUSnb .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 41%;
  }
  .cid-sFOWMBUSnb .navbar .dropdown-menu .dropdown-item {
    padding: 14px 45px 14px 0 !important;
    text-align: left;
  }
  .cid-sFOWMBUSnb .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sFOWMBUSnb .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sFOWMBUSnb .navbar .navbar-brand {
    margin-right: auto;
    -webkit-flex-shrink: initial;
    flex-shrink: initial;
    -webkit-flex-basis: auto;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sFOWMBUSnb .navbar .navbar-toggler {
    -webkit-flex-basis: auto;
    flex-basis: auto;
    margin-left: auto;
  }
  .cid-sFOWMBUSnb .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sFOWMBUSnb .navbar.navbar-short {
  background: #242930 !important;
  min-height: 60px;
}
.cid-sFOWMBUSnb .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sFOWMBUSnb .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sFOWMBUSnb .navbar-brand {
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sFOWMBUSnb .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sFOWMBUSnb .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sFOWMBUSnb .dropdown-item.active,
.cid-sFOWMBUSnb .dropdown-item:active {
  background-color: transparent;
}
.cid-sFOWMBUSnb .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sFOWMBUSnb .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sFOWMBUSnb .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sFOWMBUSnb .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #242930;
}
.cid-sFOWMBUSnb .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sFOWMBUSnb .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sFOWMBUSnb ul.navbar-nav {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
.cid-sFOWMBUSnb .navbar-buttons {
  text-align: center;
}
.cid-sFOWMBUSnb button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sFOWMBUSnb button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #ffffff;
}
.cid-sFOWMBUSnb button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sFOWMBUSnb button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFOWMBUSnb button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sFOWMBUSnb button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sFOWMBUSnb nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFOWMBUSnb nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sFOWMBUSnb nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sFOWMBUSnb nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sFOWMBUSnb .navbar-dropdown {
  position: fixed;
}
.cid-sFOWMBUSnb a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sFOWMBUSnb .icons-menu {
  -webkit-flex-wrap: nowrap;
  flex-wrap: nowrap;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
.cid-sFOWMBUSnb .icons-menu span {
  font-size: 22px;
  color: #ffffff;
  transition: all 200ms ease-in-out;
}
.cid-sFOWMBUSnb .icons-menu span:hover {
  opacity: 0.7;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sFOWMBUSnb .navbar {
    height: 77px;
  }
  .cid-sFOWMBUSnb .navbar.opened {
    height: auto;
  }
  .cid-sFOWMBUSnb .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
@media (max-width: 767px) {
  .cid-sFOWMBUSnb * {
    text-align: left !important;
  }
  .cid-sFOWMBUSnb .icons-menu {
    -webkit-justify-content: left;
    justify-content: left;
    text-align: left;
  }
}
.cid-sFOWMCTZl1 {
  padding-top: 165px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
}
.cid-sFOWMCTZl1 .mbr-iconfont {
  display: block;
  font-size: 6rem;
  color: #848abd;
  margin-bottom: 2rem;
}
.cid-sFOWMCTZl1 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
}
.cid-sFOWMCTZl1 .mbr-section-title,
.cid-sFOWMCTZl1 .icon-wrap,
.cid-sFOWMCTZl1 .mbr-section-btn {
  text-align: left;
}
.cid-sFOWMCTZl1 .mbr-text,
.cid-sFOWMCTZl1 .mbr-section-btn {
  text-align: left;
}
@media (max-width: 767px) {
  .cid-sFOWMCTZl1 {
    padding-top: 130px !important;
    padding-bottom: 30px !important;
  }
  .cid-sFOWMCTZl1 * {
    text-align: left !important;
  }
}
.cid-sFOX4CHjkG {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sFOX4CHjkG .card {
  padding: 5rem 20%;
  background: #ffffff;
  border-radius: 0;
  display: flex;
  flex-direction: column;
}
.cid-sFOX4CHjkG .lin {
  display: inline;
  text-align: center;
  color: #0c5b47;
}
.cid-sFOX4CHjkG .mbr-iconfont {
  font-size: 50px;
  color: #86c226;
}
.cid-sFOX4CHjkG .iconfont-wrapper {
  padding-bottom: 10px;
  text-align: center;
}
.cid-sFOX4CHjkG .mbr-section-subtitle {
  padding-top: 15px;
  text-align: left;
  color: #000000;
  font-style: italic;
}
.cid-sFOX4CHjkG .lin,
.cid-sFOX4CHjkG .iconfont-wrapper {
  color: #242930;
  text-align: left;
}
.cid-sFOWMEbH49 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-sFOWMEbH49 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-sFOWMEbH49 svg {
  fill: #86c226 !important;
  pointer-events: none;
}
.cid-sFOWMEbH49 #e2_shape {
  fill: #86c226 !important;
}
.cid-sFOWMEbH49 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-sFOWMEbH49 .mbr-text {
  font-weight: 300;
}
.cid-sFOWMEbH49 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-sFOWMEbH49 .btn-white {
  color: #404040 !important;
}
.cid-sFOWMEbH49 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-sFOWMEbH49 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
@media (max-width: 991px) {
  .cid-sFOWMEbH49 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-sFOWMEbH49 {
    padding: 30px 30px 0 30px !important;
  }
  .cid-sFOWMEbH49 svg {
    display: none;
  }
  .cid-sFOWMEbH49 * {
    text-align: left !important;
  }
}
.cid-sFOWMEbH49 .mbr-text,
.cid-sFOWMEbH49 .mbr-section-btn {
  color: #242930;
}
.cid-sFOWMEbH49 .mbr-section-title,
.cid-sFOWMEbH49 .mbr-section-btn {
  color: #86c226;
}
.cid-sFOWMEHBMj {
  padding-top: 150px;
  padding-bottom: 75px;
  background-image: url("../../../assets/images/addigreen-bacground-2000x1114.jpg");
  position: relative;
  overflow: hidden;
}
.cid-sFOWMEHBMj .container {
  max-width: 1400px;
}
.cid-sFOWMEHBMj .card-img2 span {
  padding-top: 6px;
}
.cid-sFOWMEHBMj .soc-item a {
  padding-top: 5px;
}
.cid-sFOWMEHBMj .btn {
  padding: 0.4rem 0.6rem!important;
  margin: 0.5rem!important;
  border-radius: 10px!important;
  letter-spacing: 0px;
}
.cid-sFOWMEHBMj .btn .mbr-iconfont {
  margin-top: 0.1rem;
}
.cid-sFOWMEHBMj .btn .mbr-iconfont.socicon {
  margin-right: 0.8rem !important;
  order: 0;
}
@media (max-width: 992px) {
  .cid-sFOWMEHBMj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
.cid-sFOWMEHBMj svg {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6) rotate(180deg);
}
.cid-sFOWMEHBMj #e2_shape {
  fill: #86c226 !important;
}
.cid-sFOWMEHBMj .quote {
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #ffffff;
}
.cid-sFOWMEHBMj .quote::after {
  top: 100%;
  left: 36px;
  content: " ";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: rgba(0, 0, 0, 0.1) transparent transparent;
}
.cid-sFOWMEHBMj .card-img2 {
  min-width: 45px;
  height: 45px;
  background: transparent;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sFOWMEHBMj .card-img {
  width: auto;
}
.cid-sFOWMEHBMj .soc-item {
  width: 45px;
  height: 45px;
  background: #86c226;
  margin-bottom: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 1rem;
}
.cid-sFOWMEHBMj .soc-item span {
  font-size: 1.4rem;
}
.cid-sFOWMEHBMj .soc-item:hover span {
  color: white !important;
}
.cid-sFOWMEHBMj .item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}
.cid-sFOWMEHBMj .item h4 {
  padding-left: 10px;
  margin: 0;
}
.cid-sFOWMEHBMj .media-wrap {
  margin-bottom: 1rem;
}
.cid-sFOWMEHBMj .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sFOWMEHBMj img {
  height: 4rem;
}
@media (max-width: 576px) {
  .cid-sFOWMEHBMj .item {
    justify-content: center;
  }
  .cid-sFOWMEHBMj .quote::after {
    left: 60px;
  }
}
.cid-sFOWMEHBMj .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 576px) {
  .cid-sFOWMEHBMj .social-list {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sFOWMEHBMj .text1 {
  color: #ffffff;
}
.cid-sFOWMEHBMj .item-title {
  color: #ffffff;
}
.cid-sFOWMEHBMj H5 {
  color: #86c226;
}
.cid-sFOWMEHBMj .theme {
  color: #ffffff;
}
.cid-sFOWMEHBMj .copyright > p {
  color: #ff3366;
}
.cid-sFOWMEHBMj .text2 {
  color: #ffffff;
}
