@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: #5bb947 !important;
}
.bg-success {
  background-color: #9ccd7e !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: #5bb947 !important;
  border-color: #5bb947 !important;
  color: #ffffff !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #408231 !important;
  border-color: #408231 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !important;
  color: #ffffff !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #244f9f !important;
  border-color: #244f9f !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: #9ccd7e !important;
  border-color: #9ccd7e !important;
  color: #ffffff !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #72b747 !important;
  border-color: #72b747 !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: #5bb947;
  color: #5bb947;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #5bb947;
  border-color: #5bb947;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5bb947 !important;
  border-color: #5bb947 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #3c71d3;
  color: #3c71d3;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #3c71d3;
  border-color: #3c71d3;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #3c71d3 !important;
  border-color: #3c71d3 !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: #9ccd7e;
  color: #9ccd7e;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #9ccd7e;
  border-color: #9ccd7e;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #9ccd7e !important;
  border-color: #9ccd7e !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: #5bb947 !important;
}
.text-secondary {
  color: #3c71d3 !important;
}
.text-success {
  color: #9ccd7e !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: #9dd591 !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #8faee6 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #d4e9c8 !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: #5bb947;
  border-color: #5bb947;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5bb947;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #addca3;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #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: #5bb947;
}
/* 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: #5bb947;
  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: #5bb947;
  border-bottom-color: #5bb947;
}
.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: #5bb947 !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: #3c71d3 !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='%235bb947' %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 - 3.8rem);
  }
}
.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;
  }
}
.cid-s0kQONxNlf {
  padding-top: 150px;
  padding-bottom: 0px;
  background-image: url("images/engine1v-32-1940x1300.jpg");
  overflow: hidden;
}
.cid-s0kQONxNlf svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s0kQONxNlf #e2_shape {
  fill: #242930 !important;
}
.cid-s0kQONxNlf .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s0kQONxNlf .mbr-text {
  font-weight: 300;
}
.cid-s0kQONxNlf .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s0kQONxNlf .btn-white {
  color: #404040 !important;
}
.cid-s0kQONxNlf .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s0kQONxNlf .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
.cid-s0kQONxNlf img {
  padding-top: 2rem;
}
@media (max-width: 991px) {
  .cid-s0kQONxNlf .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s0kQONxNlf {
    padding: 30px;
  }
  .cid-s0kQONxNlf svg {
    display: none;
  }
  .cid-s0kQONxNlf img {
    padding-top: 0;
  }
}
.cid-s0l2BkM8Gb {
  padding-top: 60px;
  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: #5bb947;
  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 .card-box {
    padding: 1rem;
    padding-top: 2rem;
  }
}
.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-s0lk2AFhij {
  padding-top: 210px;
  padding-bottom: 0px;
  background-image: url("images/3v-24-2000x1200.jpg");
  overflow: hidden;
}
.cid-s0lk2AFhij svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s0lk2AFhij #e2_shape {
  fill: #242930 !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;
  }
  .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: #242930;
}
.cid-s0lfzeDRZk .mbr-text,
.cid-s0lfzeDRZk .ornament {
  color: #5bb947;
  text-align: right;
}
.cid-s0leQMWTGJ {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #abc0a6;
  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: #242930 !important;
}
.cid-s0leQMWTGJ .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #000000;
}
.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: #abc0a6;
  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: #6f8c68;
  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: 3rem;
}
@media (max-width: 576px) {
  .cid-s0leQMWTGJ .item {
    justify-content: center;
  }
  .cid-s0leQMWTGJ .quote::after {
    left: 60px;
  }
}
.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: #000000;
}
.cid-s0leQMWTGJ .item-title {
  color: #000000;
}
.cid-s0leQMWTGJ H5 {
  color: #000000;
}
.cid-s0leQMWTGJ .theme {
  color: #000000;
}
.cid-s0leQMWTGJ .copyright > p {
  color: #ff3366;
}
.cid-s0leQMWTGJ .text2 {
  color: #000000;
}
.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 - 3.8rem);
  }
}
.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;
  }
}
.cid-s0ZeoINoxo {
  padding-top: 135px;
  padding-bottom: 0px;
  background-image: url("images/engine3-3-960x640.jpg");
  overflow: hidden;
}
.cid-s0ZeoINoxo svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s0ZeoINoxo #e2_shape {
  fill: #242930 !important;
}
.cid-s0ZeoINoxo .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s0ZeoINoxo .mbr-text {
  font-weight: 300;
}
.cid-s0ZeoINoxo .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s0ZeoINoxo .btn-white {
  color: #404040 !important;
}
.cid-s0ZeoINoxo .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s0ZeoINoxo .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
.cid-s0ZeoINoxo .arriba {
  z-index: 999999 !important;
}
@media (max-width: 991px) {
  .cid-s0ZeoINoxo .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s0ZeoINoxo {
    padding: 30px;
  }
  .cid-s0ZeoINoxo svg {
    display: none;
  }
}
.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 .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 .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: #5bb947;
}
.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: #5bb947 !important;
  pointer-events: none;
}
.cid-s0ZfuXJkC5 #e2_shape {
  fill: #5bb947 !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;
  }
  .cid-s0ZfuXJkC5 svg {
    display: none;
  }
}
.cid-s0ZfuXJkC5 .mbr-text,
.cid-s0ZfuXJkC5 .mbr-section-btn {
  color: #5bb947;
}
.cid-s0ZfogAcN7 {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #abc0a6;
  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: #5bb947 !important;
}
.cid-s0ZfogAcN7 .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #000000;
}
.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: #abc0a6;
  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: #6f8c68;
  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: 3rem;
}
@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: #000000;
}
.cid-s0ZfogAcN7 .item-title {
  color: #000000;
}
.cid-s0ZfogAcN7 H5 {
  color: #000000;
}
.cid-s0ZfogAcN7 .theme {
  color: #000000;
}
.cid-s0ZfogAcN7 .copyright > p {
  color: #ff3366;
}
.cid-s0ZfogAcN7 .text2 {
  color: #000000;
}
.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 - 3.8rem);
  }
}
.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;
  }
}
.cid-s100MZFNG1 {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/car-exhaust1-2-1000x667.jpg");
  overflow: hidden;
}
.cid-s100MZFNG1 .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s100MZFNG1 svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s100MZFNG1 #e2_shape {
  fill: #242930 !important;
}
.cid-s100MZFNG1 .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s100MZFNG1 .mbr-text {
  font-weight: 300;
}
.cid-s100MZFNG1 .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s100MZFNG1 .btn-white {
  color: #404040 !important;
}
.cid-s100MZFNG1 .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s100MZFNG1 .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
.cid-s100MZFNG1 .arriba {
  z-index: 999999 !important;
}
@media (max-width: 991px) {
  .cid-s100MZFNG1 .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s100MZFNG1 {
    padding: 30px;
  }
  .cid-s100MZFNG1 svg {
    display: none;
  }
}
.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;
}
.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: #5bb947;
}
.cid-s10bOLSJLd {
  padding-top: 75px;
  padding-bottom: 90px;
  background-color: #242930;
}
.cid-s10bOLSJLd .mbr-section-title,
.cid-s10bOLSJLd .mbr-section-subtitle {
  color: #000000;
}
.cid-s10bOLSJLd .mbr-section-text {
  color: #232323;
}
.cid-s10bOLSJLd .mbr-text,
.cid-s10bOLSJLd .typed-text,
.cid-s10bOLSJLd .mbr-section-text {
  letter-spacing: 0.03rem;
}
.cid-s10bOLSJLd .btn {
  margin-left: 4px !important;
}
.cid-s10bOLSJLd .animated-element {
  color: #5bb947;
}
.cid-s10bOLSJLd .typed-cursor {
  opacity: 1;
  -webkit-animation: blink 0.7s infinite;
  -moz-animation: blink 0.7s infinite;
  animation: blink 0.7s infinite;
  color: #5bb947;
}
.cid-s10bOLSJLd .mbr-figure {
  border-radius: .25rem;
  overflow: hidden;
  align: right !important;
  text-align: right !important;
}
.cid-s10bOLSJLd img {
  width: 95% !important;
  align: right !important;
  margin-right: 0 !important;
  padding-right: 0 !important;
}
@media (max-width: 767px) {
  .cid-s10bOLSJLd .typed-text,
  .cid-s10bOLSJLd .mbr-section-subtitle,
  .cid-s10bOLSJLd .mbr-section-text,
  .cid-s10bOLSJLd .mbr-section-btn {
    text-align: center !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-s10bOLSJLd .mbr-section-subtitle,
.cid-s10bOLSJLd .typed-text {
  color: #ffffff;
}
.cid-s10bOLSJLd .mbr-section-text,
.cid-s10bOLSJLd .mbr-section-btn {
  color: #5bb947;
}
.cid-s10mnZ9Y8V {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #242930;
}
.cid-s10mnZ9Y8V .container-fluid {
  padding: 0 3rem;
}
.cid-s10mnZ9Y8V .table-wrap {
  overflow: hidden;
  border-radius: 25px;
  background-color: #5bb947;
  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: #9ccd7e;
  color: #000000;
  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 .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;
}
.cid-s10sjm6aBW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #242930;
}
.cid-s10sjm6aBW .mbr-text,
.cid-s10sjm6aBW .ornament {
  color: #878787;
  text-align: left;
}
.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: #5bb947 !important;
  pointer-events: none;
}
.cid-s100N6ZcXR #e2_shape {
  fill: #5bb947 !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;
  }
  .cid-s100N6ZcXR svg {
    display: none;
  }
}
.cid-s100N6ZcXR .mbr-text,
.cid-s100N6ZcXR .mbr-section-btn {
  color: #5bb947;
}
.cid-s100NaqxDk {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #abc0a6;
  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: #5bb947 !important;
}
.cid-s100NaqxDk .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #000000;
}
.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: #abc0a6;
  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: #6f8c68;
  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: 3rem;
}
@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: #000000;
}
.cid-s100NaqxDk .item-title {
  color: #000000;
}
.cid-s100NaqxDk H5 {
  color: #000000;
}
.cid-s100NaqxDk .theme {
  color: #000000;
}
.cid-s100NaqxDk .copyright > p {
  color: #ff3366;
}
.cid-s100NaqxDk .text2 {
  color: #000000;
}
.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 - 3.8rem);
  }
}
.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;
  }
}
.cid-s14Lm1MOmc {
  padding-top: 165px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/diesel-engine1-1-1280x960.jpg");
  overflow: hidden;
}
.cid-s14Lm1MOmc .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s14Lm1MOmc svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s14Lm1MOmc #e2_shape {
  fill: #242930 !important;
}
.cid-s14Lm1MOmc .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s14Lm1MOmc .mbr-text {
  font-weight: 300;
}
.cid-s14Lm1MOmc .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s14Lm1MOmc .btn-white {
  color: #404040 !important;
}
.cid-s14Lm1MOmc .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s14Lm1MOmc .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
.cid-s14Lm1MOmc .arriba {
  z-index: 999999 !important;
}
@media (max-width: 991px) {
  .cid-s14Lm1MOmc .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s14Lm1MOmc {
    padding: 30px;
  }
  .cid-s14Lm1MOmc svg {
    display: none;
  }
}
.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;
}
.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 .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: center !important;
  }
  .cid-s14OumWTMb .wrapper {
    background-color: #4f5b5f;
  }
}
.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-s14Y6idsQz {
  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: #5bb947;
}
.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: 50% !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: center !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-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: #5bb947 !important;
  pointer-events: none;
}
.cid-s14LmDxdee #e2_shape {
  fill: #5bb947 !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;
  }
  .cid-s14LmDxdee svg {
    display: none;
  }
}
.cid-s14LmDxdee .mbr-text,
.cid-s14LmDxdee .mbr-section-btn {
  color: #5bb947;
}
.cid-s14LmIOV6S {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #abc0a6;
  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: #5bb947 !important;
}
.cid-s14LmIOV6S .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #000000;
}
.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: #abc0a6;
  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: #6f8c68;
  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: 3rem;
}
@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: #000000;
}
.cid-s14LmIOV6S .item-title {
  color: #000000;
}
.cid-s14LmIOV6S H5 {
  color: #000000;
}
.cid-s14LmIOV6S .theme {
  color: #000000;
}
.cid-s14LmIOV6S .copyright > p {
  color: #ff3366;
}
.cid-s14LmIOV6S .text2 {
  color: #000000;
}
.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 - 3.8rem);
  }
}
.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;
  }
}
.cid-s1b7IOV79A {
  padding-top: 210px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/diesel-engine1-1-1280x960.jpg");
  overflow: hidden;
}
.cid-s1b7IOV79A .row {
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.cid-s1b7IOV79A svg {
  fill: #242930 !important;
  pointer-events: none;
}
.cid-s1b7IOV79A #e2_shape {
  fill: #242930 !important;
}
.cid-s1b7IOV79A .mbr-section-title.display-1 {
  line-height: 1.24;
}
.cid-s1b7IOV79A .mbr-text {
  font-weight: 300;
}
.cid-s1b7IOV79A .mbr-text.display-5 {
  font-size: 24px;
  line-height: 1.416;
}
.cid-s1b7IOV79A .btn-white {
  color: #404040 !important;
}
.cid-s1b7IOV79A .btn.display-4 {
  font-size: 14px;
  line-height: 1;
  padding: 21px 30px 20px;
}
.cid-s1b7IOV79A .btn.display-4 .mbr-iconfont {
  font-size: 0.9rem;
  margin-right: 5px;
}
.cid-s1b7IOV79A .arriba {
  z-index: 999999 !important;
}
@media (max-width: 991px) {
  .cid-s1b7IOV79A .img-wrap {
    display: none;
  }
}
@media (max-width: 768px) {
  .cid-s1b7IOV79A {
    padding: 30px;
  }
  .cid-s1b7IOV79A svg {
    display: none;
  }
}
.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 .first-column,
  .cid-s1b8eiSz57 .form-1 {
    text-align: center;
  }
}
.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: #5bb947;
  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;
}
@media (max-width: 767px) {
  .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: #5bb947;
}
.cid-s1bb7VpwKY .main-title {
  color: #ffffff;
  text-align: center;
}
.cid-s1bb7VpwKY .carousel-item .user .user_name,
.cid-s1bb7VpwKY .carousel-item {
  color: #f9fafb;
}
.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: #5bb947 !important;
  pointer-events: none;
}
.cid-s1b7J5qpV7 #e2_shape {
  fill: #5bb947 !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;
  }
  .cid-s1b7J5qpV7 svg {
    display: none;
  }
}
.cid-s1b7J5qpV7 .mbr-text,
.cid-s1b7J5qpV7 .mbr-section-btn {
  color: #5bb947;
}
.cid-s1b7J8pZLB {
  padding-top: 150px;
  padding-bottom: 75px;
  background-color: #abc0a6;
  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: #5bb947 !important;
}
.cid-s1b7J8pZLB .quote {
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem;
  position: relative;
  margin-bottom: 1.8rem;
  color: #000000;
}
.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: #abc0a6;
  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: #6f8c68;
  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: 3rem;
}
@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: #000000;
}
.cid-s1b7J8pZLB .item-title {
  color: #000000;
}
.cid-s1b7J8pZLB H5 {
  color: #000000;
}
.cid-s1b7J8pZLB .theme {
  color: #000000;
}
.cid-s1b7J8pZLB .copyright > p {
  color: #ff3366;
}
.cid-s1b7J8pZLB .text2 {
  color: #000000;
}
