body {
  font-family: Inter Tight;
}
.display-1 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 6.875rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-1 > .mbr-iconfont {
  font-size: 8.59375rem;
}
.display-2 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 3.75rem;
  line-height: 1;
  letter-spacing: -0.02em;
}
.display-2 > .mbr-iconfont {
  font-size: 4.6875rem;
}
.display-4 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
}
.display-4 > .mbr-iconfont {
  font-size: 1.625rem;
}
.display-5 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.75rem;
  line-height: 1.4;
}
.display-5 > .mbr-iconfont {
  font-size: 2.1875rem;
}
.display-7 {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.18rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.475rem;
}
/* ---- 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: 5.5rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 4.8125rem;
    font-size: calc( 3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (3.05625rem + (6.875 - 3.05625) * ((100vw - 20rem) / (48 - 20))));
    letter-spacing: -0.038em;
  }
  .display-2 {
    font-size: 3rem;
    font-size: calc( 1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.9625rem + (3.75 - 1.9625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 1.04rem;
    font-size: calc( 1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.105rem + (1.3 - 1.105) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.4rem;
    font-size: calc( 1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.2625rem + (1.75 - 1.2625) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.944rem;
    font-size: calc( 1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.063rem + (1.18 - 1.063) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #ff9370 !important;
}
.bg-success {
  background-color: #4fb380 !important;
}
.bg-info {
  background-color: #4c82a2 !important;
}
.bg-warning {
  background-color: #e3d688 !important;
}
.bg-danger {
  background-color: #c04822 !important;
}
.btn-primary:after {
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary,
.btn-primary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #ff9370 !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ff9370 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary:after {
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary,
.btn-secondary:active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
  color: #9b8db7 !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #9b8db7 !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info:after {
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info,
.btn-info:active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
  color: #4c82a2 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #4c82a2 !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success:after {
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success,
.btn-success:active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
  color: #4fb380 !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #4fb380 !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning:after {
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning,
.btn-warning:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #e3d688 !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #e3d688 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger:after {
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger,
.btn-danger:active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
  color: #c04822 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #c04822 !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-white:after {
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #f6f6f6 !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #f6f6f6 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black:after {
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black,
.btn-black:active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  background-color: #a26457 !important;
  border-color: #a26457 !important;
  color: #303030 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #303030 !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-primary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #ff9370 0 25%, transparent 25% 75%, #ff9370 75% 100%);
}
.btn-primary-outline,
.btn-primary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9370;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ff9370 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-secondary-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #9b8db7 0 25%, transparent 25% 75%, #9b8db7 75% 100%);
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #9b8db7;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #9b8db7 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #efe6f7 !important;
  border-color: #efe6f7 !important;
}
.btn-info-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4c82a2 0 25%, transparent 25% 75%, #4c82a2 75% 100%);
}
.btn-info-outline,
.btn-info-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4c82a2;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #4c82a2 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #9cc0eb !important;
  border-color: #9cc0eb !important;
}
.btn-success-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #4fb380 0 25%, transparent 25% 75%, #4fb380 75% 100%);
}
.btn-success-outline,
.btn-success-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #4fb380;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #4fb380 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #abf0d8 !important;
  border-color: #abf0d8 !important;
}
.btn-warning-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #e3d688 0 25%, transparent 25% 75%, #e3d688 75% 100%);
}
.btn-warning-outline,
.btn-warning-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #e3d688;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #e3d688 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #574e15 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-danger-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #c04822 0 25%, transparent 25% 75%, #c04822 75% 100%);
}
.btn-danger-outline,
.btn-danger-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #c04822;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #c04822 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ffb17c !important;
  border-color: #ffb17c !important;
}
.btn-black-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #303030 0 25%, transparent 25% 75%, #303030 75% 100%);
}
.btn-black-outline,
.btn-black-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #303030;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #303030 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #a26457 !important;
  border-color: #a26457 !important;
}
.btn-white-outline:after {
  width: 100% !important;
  bottom: 0 !important;
  background: linear-gradient(to right, #f6f6f6 0 25%, transparent 25% 75%, #f6f6f6 75% 100%);
}
.btn-white-outline,
.btn-white-outline:active {
  min-width: auto !important;
  min-height: auto !important;
  padding: 0 !important;
  border: none !important;
  background-color: transparent !important;
  border-color: transparent;
  color: #f6f6f6;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #f6f6f6 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #777777 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.text-primary {
  color: #ff9370 !important;
}
.text-secondary {
  color: #9b8db7 !important;
}
.text-success {
  color: #4fb380 !important;
}
.text-info {
  color: #4c82a2 !important;
}
.text-warning {
  color: #e3d688 !important;
}
.text-danger {
  color: #c04822 !important;
}
.text-white {
  color: #f6f6f6 !important;
}
.text-black {
  color: #303030 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #ff460a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #675688 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #2f6d4d !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #2b4a5d !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #d0ba35 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #692813 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c3c3c3 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #ff9370;
}
.nav-tabs .nav-link:not(.active) {
  color: #303030;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #4c82a2;
}
.alert-warning {
  background-color: #e3d688;
}
.alert-danger {
  background-color: #c04822;
}
.mbr-gallery-filter li.active .btn {
  background-color: #ff9370;
  border-color: #ff9370;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #ff9370;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8d9c0;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #9dbdd1;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #e7947a;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.625rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #ff9370 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Inter Tight', sans-serif;
  font-size: 1.3rem;
  line-height: 1.4;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.625rem;
}
blockquote {
  border-color: #ff9370;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #ff9370;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #ff9370;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #ff9370;
  border-bottom-color: #ff9370;
}
.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: #ff9370 !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: #9b8db7 !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='%23ff9370' %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-duration: .4s;
}
a:hover {
  background-image: none !important;
}
.mbr-fonts-style a:not(.mbr-fonts-style) {
  position: relative;
}
.mbr-fonts-style a:not(.mbr-fonts-style):before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  height: 1px;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background: linear-gradient(to right, currentColor 0 25%, transparent 25% 75%, currentColor 75% 100%);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-fonts-style a:not(.mbr-fonts-style):hover:before {
  background-position: left;
}
.container {
  max-width: 1300px;
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 1439px) {
  .container {
    max-width: 1100px;
  }
}
@media (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 86%;
  }
}
.container-fluid {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 991px) {
  .container-fluid {
    max-width: 86%;
  }
}
.row {
  margin-left: -20px;
  margin-right: -20px;
  justify-content: center;
}
.row > [class*="col"] {
  padding-left: 20px;
  padding-right: 20px;
}
.row {
  justify-content: center;
}
b,
strong {
  font-weight: 700 !important;
}
.mbr-section-btn .btn {
  position: relative;
  min-width: 100px;
  min-height: 54px;
  padding: 10px 34px 15px;
  font-weight: 700 !important;
  transition: all 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  box-shadow: none !important;
  border-radius: 0 !important;
  letter-spacing: -0.025em;
}
.mbr-section-btn .btn:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 13px;
  transform: translateX(-50%);
  height: 2px;
  width: calc(100% - 34px * 2);
  transition: all 0.7s cubic-bezier(0.33, 0.52, 0.05, 0.96);
  background-position: right;
  background-size: 400% 100%;
  overflow: hidden;
}
.mbr-section-btn .btn.btn-primary {
  background-color: #ffe3db !important;
  border-color: #ffe3db !important;
}
.mbr-section-btn .btn.btn-black {
  background-color: #FFFFFF !important;
  border-color: #FFFFFF !important;
}
.mbr-section-btn .btn.btn-white {
  background-color: #303030 !important;
  border-color: #303030 !important;
}
.mbr-section-btn .btn:hover:after {
  background-position: left;
}
.cid-ttjmnoK6UH {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-ttjmnoK6UH nav.navbar {
  position: fixed;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-ttjmnoK6UH .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-ttjmnoK6UH .dropdown-item:after {
  right: 1rem !important;
}
.cid-ttjmnoK6UH .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .dropdown-item:hover:before,
.cid-ttjmnoK6UH .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-ttjmnoK6UH .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-ttjmnoK6UH .nav-link {
  position: relative;
}
.cid-ttjmnoK6UH .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .container {
    flex-wrap: nowrap;
  }
}
.cid-ttjmnoK6UH .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-ttjmnoK6UH .navbar-nav .nav-item {
  margin: 0;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-ttjmnoK6UH .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-ttjmnoK6UH .dropdown-menu,
.cid-ttjmnoK6UH .navbar.opened {
  background: #4fb380 !important;
}
.cid-ttjmnoK6UH .nav-item:focus,
.cid-ttjmnoK6UH .nav-link:focus {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-ttjmnoK6UH .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-ttjmnoK6UH .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-ttjmnoK6UH .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-ttjmnoK6UH .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-ttjmnoK6UH .navbar.opened {
  transition: all 0.3s;
}
.cid-ttjmnoK6UH .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-ttjmnoK6UH .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-ttjmnoK6UH .navbar .navbar-logo img {
  width: auto;
}
.cid-ttjmnoK6UH .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar.collapsed {
  justify-content: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-ttjmnoK6UH .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-ttjmnoK6UH .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-ttjmnoK6UH .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: 41%;
}
.cid-ttjmnoK6UH .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-ttjmnoK6UH .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-ttjmnoK6UH .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-ttjmnoK6UH .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-ttjmnoK6UH .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: 40%;
  }
  .cid-ttjmnoK6UH .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-ttjmnoK6UH .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-ttjmnoK6UH .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-ttjmnoK6UH .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-ttjmnoK6UH .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-ttjmnoK6UH .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-ttjmnoK6UH .navbar.navbar-short {
  min-height: 100px;
}
.cid-ttjmnoK6UH .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-ttjmnoK6UH .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-ttjmnoK6UH .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-ttjmnoK6UH .dropdown-item.active,
.cid-ttjmnoK6UH .dropdown-item:active {
  background-color: transparent;
}
.cid-ttjmnoK6UH .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-ttjmnoK6UH .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-ttjmnoK6UH .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-ttjmnoK6UH .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-ttjmnoK6UH ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-ttjmnoK6UH .navbar-buttons {
  text-align: center;
}
.cid-ttjmnoK6UH button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-ttjmnoK6UH button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-ttjmnoK6UH nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-ttjmnoK6UH nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-ttjmnoK6UH .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-ttjmnoK6UH a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-ttjmnoK6UH .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-ttjmnoK6UH .navbar {
    height: 70px;
  }
  .cid-ttjmnoK6UH .navbar.opened {
    height: auto;
  }
  .cid-ttjmnoK6UH .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-ttjmnoK6UH .container,
.cid-ttjmnoK6UH .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH .container,
  .cid-ttjmnoK6UH .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-ttjmnoK6UH .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-ttjmnoK6UH .navbar-collapse {
  min-height: 98px;
}
.cid-ttjmnoK6UH .mbr-section-btn {
  max-width: 35%;
}
.cid-ttjmnoK6UH .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-ttjmnoK6UH {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .navbar {
    min-height: 70px !important;
  }
  .cid-ttjmnoK6UH .container-fluid {
    padding: 0 7%;
  }
  .cid-ttjmnoK6UH .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-ttjmnoK6UH .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-ttjmnoK6UH .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-ttjmnoK6UH .navbar-nav li {
    margin: 0 !important;
  }
  .cid-ttjmnoK6UH .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-ttjmnoK6UH .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-ttjmnoK6UH .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-ttjniok9Xv {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-ttjniok9Xv .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjniok9Xv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjniok9Xv .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-ttjniok9Xv .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-ttjniok9Xv .mbr-text {
  color: #FFFFFF;
}
.cid-ttjniok9Xv .mbr-section-btn {
  margin-top: 18px;
}
.cid-tSoqLJv2zF {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tSoqLJv2zF .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSoqLJv2zF .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSoqLJv2zF .mbr-section-title {
  color: #ff9370;
}
.cid-tSoqLJv2zF .mbr-section-subtitle {
  color: #303030;
}
.cid-tTZsNfFC5g {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTZsNfFC5g .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tTZsNfFC5g .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tTZsNfFC5g .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tTZsNfFC5g .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tTZsNfFC5g .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tTZsNfFC5g .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tTZsNfFC5g .margin {
  margin-right: 14px;
}
.cid-tTZsNfFC5g .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tTZsNfFC5g .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tTZsNfFC5g .socicon-bg-facebook {
  background-color: #0a66c3;
}
.cid-tTZsNfFC5g .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tTZsNfFC5g .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tTZsNfFC5g .socicon-bg-mail {
  background-color: #134785;
}
.cid-tTZsNfFC5g .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tTZsNfFC5g .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tTZsNfFC5g .btn-social:hover {
  color: #fff;
}
.cid-tTZsNfFC5g .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tTZsNfFC5g img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tTZsNfFC5g .mbr-social-likes {
  max-width: 454px;
}
.cid-tTZsNfFC5g .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tTZsNfFC5g .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
  text-align: left;
}
.cid-tTZsNfFC5g .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tTZsNfFC5g .card-title,
.cid-tTZsNfFC5g .card-subtitle,
.cid-tTZsNfFC5g .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tTZsNfFC5g .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tTZsNfFC5g .al {
    flex-direction: column;
  }
  .cid-tTZsNfFC5g .shadow {
    padding: 39px 36px;
  }
  .cid-tTZsNfFC5g img {
    padding-bottom: 20px;
  }
  .cid-tTZsNfFC5g .card-title,
  .cid-tTZsNfFC5g .card-subtitle,
  .cid-tTZsNfFC5g .card-text,
  .cid-tTZsNfFC5g .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tTZsNfFC5g .shadow {
    padding: 35px 15px;
  }
}
.cid-tTZsNfFC5g .mbr-iconfont {
  margin-left: 0;
}
.cid-tTZsNfFC5g .card-text,
.cid-tTZsNfFC5g .mbr-social-likes {
  text-align: center;
}
.cid-tTZsPkoGVF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTZsPkoGVF .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tTZsPkoGVF .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tTZsPkoGVF .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tTZsPkoGVF .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tTZsPkoGVF .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tTZsPkoGVF .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tTZsPkoGVF .margin {
  margin-right: 14px;
}
.cid-tTZsPkoGVF .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tTZsPkoGVF .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tTZsPkoGVF .socicon-bg-facebook {
  background-color: #0a66c3;
}
.cid-tTZsPkoGVF .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tTZsPkoGVF .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tTZsPkoGVF .socicon-bg-mail {
  background-color: #134785;
}
.cid-tTZsPkoGVF .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tTZsPkoGVF .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tTZsPkoGVF .btn-social:hover {
  color: #fff;
}
.cid-tTZsPkoGVF .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tTZsPkoGVF img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tTZsPkoGVF .mbr-social-likes {
  max-width: 454px;
}
.cid-tTZsPkoGVF .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tTZsPkoGVF .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
  text-align: left;
}
.cid-tTZsPkoGVF .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tTZsPkoGVF .card-title,
.cid-tTZsPkoGVF .card-subtitle,
.cid-tTZsPkoGVF .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tTZsPkoGVF .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tTZsPkoGVF .al {
    flex-direction: column;
  }
  .cid-tTZsPkoGVF .shadow {
    padding: 39px 36px;
  }
  .cid-tTZsPkoGVF img {
    padding-bottom: 20px;
  }
  .cid-tTZsPkoGVF .card-title,
  .cid-tTZsPkoGVF .card-subtitle,
  .cid-tTZsPkoGVF .card-text,
  .cid-tTZsPkoGVF .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tTZsPkoGVF .shadow {
    padding: 35px 15px;
  }
}
.cid-tTZsPkoGVF .mbr-iconfont {
  margin-left: 0;
}
.cid-tTZsPkoGVF .card-text,
.cid-tTZsPkoGVF .mbr-social-likes {
  text-align: center;
}
.cid-tTZsOdRbbk {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tTZsOdRbbk .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tTZsOdRbbk .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tTZsOdRbbk .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tTZsOdRbbk .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tTZsOdRbbk .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tTZsOdRbbk .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tTZsOdRbbk .margin {
  margin-right: 14px;
}
.cid-tTZsOdRbbk .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tTZsOdRbbk .socicon-bg-youtube {
  background-color: #0a66c3;
}
.cid-tTZsOdRbbk .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tTZsOdRbbk .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tTZsOdRbbk .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tTZsOdRbbk .socicon-bg-mail {
  background-color: #134785;
}
.cid-tTZsOdRbbk .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tTZsOdRbbk .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tTZsOdRbbk .btn-social:hover {
  color: #fff;
}
.cid-tTZsOdRbbk .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tTZsOdRbbk img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tTZsOdRbbk .mbr-social-likes {
  max-width: 454px;
}
.cid-tTZsOdRbbk .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tTZsOdRbbk .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
  text-align: left;
}
.cid-tTZsOdRbbk .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tTZsOdRbbk .card-title,
.cid-tTZsOdRbbk .card-subtitle,
.cid-tTZsOdRbbk .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tTZsOdRbbk .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tTZsOdRbbk .al {
    flex-direction: column;
  }
  .cid-tTZsOdRbbk .shadow {
    padding: 39px 36px;
  }
  .cid-tTZsOdRbbk img {
    padding-bottom: 20px;
  }
  .cid-tTZsOdRbbk .card-title,
  .cid-tTZsOdRbbk .card-subtitle,
  .cid-tTZsOdRbbk .card-text,
  .cid-tTZsOdRbbk .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tTZsOdRbbk .shadow {
    padding: 35px 15px;
  }
}
.cid-tTZsOdRbbk .mbr-iconfont {
  margin-left: 0;
}
.cid-tTZsOdRbbk .card-text,
.cid-tTZsOdRbbk .mbr-social-likes {
  text-align: center;
}
.cid-tSeaKInARl {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tSeaKInARl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tSeaKInARl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tSeaKInARl .mbr-section-title {
  color: #ff9370;
}
.cid-tSeaKInARl .mbr-section-subtitle {
  color: #303030;
}
.cid-tRaeoq34kP {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRaeoq34kP .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tRaeoq34kP .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tRaeoq34kP .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tRaeoq34kP .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tRaeoq34kP .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tRaeoq34kP .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tRaeoq34kP .margin {
  margin-right: 14px;
}
.cid-tRaeoq34kP .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tRaeoq34kP .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tRaeoq34kP .socicon-bg-facebook {
  background-color: #0a66c3;
}
.cid-tRaeoq34kP .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tRaeoq34kP .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tRaeoq34kP .socicon-bg-mail {
  background-color: #134785;
}
.cid-tRaeoq34kP .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tRaeoq34kP .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tRaeoq34kP .btn-social:hover {
  color: #fff;
}
.cid-tRaeoq34kP .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tRaeoq34kP img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tRaeoq34kP .mbr-social-likes {
  max-width: 454px;
}
.cid-tRaeoq34kP .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tRaeoq34kP .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRaeoq34kP .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRaeoq34kP .card-title,
.cid-tRaeoq34kP .card-subtitle,
.cid-tRaeoq34kP .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tRaeoq34kP .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tRaeoq34kP .al {
    flex-direction: column;
  }
  .cid-tRaeoq34kP .shadow {
    padding: 39px 36px;
  }
  .cid-tRaeoq34kP img {
    padding-bottom: 20px;
  }
  .cid-tRaeoq34kP .card-title,
  .cid-tRaeoq34kP .card-subtitle,
  .cid-tRaeoq34kP .card-text,
  .cid-tRaeoq34kP .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tRaeoq34kP .shadow {
    padding: 35px 15px;
  }
}
.cid-tRaeoq34kP .mbr-iconfont {
  margin-left: 0;
}
.cid-tRaeoq34kP .card-text,
.cid-tRaeoq34kP .mbr-social-likes {
  text-align: center;
}
.cid-tRabNM4evY {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tRabNM4evY .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tRabNM4evY .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tRabNM4evY .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tRabNM4evY .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tRabNM4evY .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tRabNM4evY .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tRabNM4evY .margin {
  margin-right: 14px;
}
.cid-tRabNM4evY .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tRabNM4evY .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tRabNM4evY .socicon-bg-facebook {
  background-color: #3e5b98;
}
.cid-tRabNM4evY .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tRabNM4evY .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tRabNM4evY .socicon-bg-mail {
  background-color: #134785;
}
.cid-tRabNM4evY .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tRabNM4evY .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tRabNM4evY .btn-social:hover {
  color: #fff;
}
.cid-tRabNM4evY .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tRabNM4evY img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tRabNM4evY .mbr-social-likes {
  max-width: 454px;
}
.cid-tRabNM4evY .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tRabNM4evY .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRabNM4evY .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRabNM4evY .card-title,
.cid-tRabNM4evY .card-subtitle,
.cid-tRabNM4evY .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tRabNM4evY .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tRabNM4evY .al {
    flex-direction: column;
  }
  .cid-tRabNM4evY .shadow {
    padding: 39px 36px;
  }
  .cid-tRabNM4evY img {
    padding-bottom: 20px;
  }
  .cid-tRabNM4evY .card-title,
  .cid-tRabNM4evY .card-subtitle,
  .cid-tRabNM4evY .card-text,
  .cid-tRabNM4evY .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tRabNM4evY .shadow {
    padding: 35px 15px;
  }
}
.cid-tRabNM4evY .mbr-iconfont {
  margin-left: 0;
}
.cid-tRabNM4evY .card-text,
.cid-tRabNM4evY .mbr-social-likes {
  text-align: center;
}
.cid-tRag5UtS4j {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRag5UtS4j .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tRag5UtS4j .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tRag5UtS4j .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tRag5UtS4j .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tRag5UtS4j .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tRag5UtS4j .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tRag5UtS4j .margin {
  margin-right: 14px;
}
.cid-tRag5UtS4j .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tRag5UtS4j .socicon-bg-youtube {
  background-color: #c4302b;
}
.cid-tRag5UtS4j .socicon-bg-facebook {
  background-color: #0a66c3;
}
.cid-tRag5UtS4j .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tRag5UtS4j .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tRag5UtS4j .socicon-bg-mail {
  background-color: #134785;
}
.cid-tRag5UtS4j .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tRag5UtS4j .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tRag5UtS4j .btn-social:hover {
  color: #fff;
}
.cid-tRag5UtS4j .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tRag5UtS4j img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tRag5UtS4j .mbr-social-likes {
  max-width: 454px;
}
.cid-tRag5UtS4j .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tRag5UtS4j .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRag5UtS4j .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRag5UtS4j .card-title,
.cid-tRag5UtS4j .card-subtitle,
.cid-tRag5UtS4j .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tRag5UtS4j .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tRag5UtS4j .al {
    flex-direction: column;
  }
  .cid-tRag5UtS4j .shadow {
    padding: 39px 36px;
  }
  .cid-tRag5UtS4j img {
    padding-bottom: 20px;
  }
  .cid-tRag5UtS4j .card-title,
  .cid-tRag5UtS4j .card-subtitle,
  .cid-tRag5UtS4j .card-text,
  .cid-tRag5UtS4j .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tRag5UtS4j .shadow {
    padding: 35px 15px;
  }
}
.cid-tRag5UtS4j .mbr-iconfont {
  margin-left: 0;
}
.cid-tRag5UtS4j .card-text,
.cid-tRag5UtS4j .mbr-social-likes {
  text-align: center;
}
.cid-tRafiyq8zY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tRafiyq8zY .row {
  align-items: center;
  justify-content: space-between;
}
.cid-tRafiyq8zY .mbr-section-title {
  width: 100%;
  text-align: left;
  margin-bottom: 24px;
  line-height: 1.171em;
}
.cid-tRafiyq8zY .mbr-section-subtitle {
  color: #4c4c4c;
  width: 100%;
  text-align: left;
}
.cid-tRafiyq8zY .mbr-text {
  color: #5f5d68;
  margin-bottom: 48px;
}
.cid-tRafiyq8zY .right-side {
  max-width: 554px;
  margin-right: 60px;
}
.cid-tRafiyq8zY .mbr-section-btn {
  width: auto;
  display: inline;
}
.cid-tRafiyq8zY .margin {
  margin-right: 14px;
}
.cid-tRafiyq8zY .shadow {
  margin: auto;
  max-width: 860px;
  padding: 79px 76px;
  box-shadow: 0 5px 16px 0 rgba(8, 15, 52, 0.07);
  overflow: hidden;
  border-style: solid;
  border-width: 1px;
  border-color: #eff0f6;
  border-radius: 24px;
  background-color: #fff;
}
.cid-tRafiyq8zY .socicon-bg-youtube {
  background-color: #0a66c3;
}
.cid-tRafiyq8zY .socicon-bg-facebook {
  background-color: #c04822;
}
.cid-tRafiyq8zY .socicon-bg-twitter {
  background-color: #4da7de;
}
.cid-tRafiyq8zY .socicon-bg-pinterest {
  background-color: #c92619;
}
.cid-tRafiyq8zY .socicon-bg-mail {
  background-color: #134785;
}
.cid-tRafiyq8zY .btn-social {
  margin-right: 3px !important;
  margin-left: 3px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  font-size: 14px;
  border-radius: 50%;
  padding: 0;
  width: 32px;
  height: 32px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: none !important;
  border-color: #ff9370;
  cursor: pointer;
}
.cid-tRafiyq8zY .btn-social .mbr-iconfont {
  top: 0;
  line-height: 22px;
  width: 22px;
  color: #fff;
}
.cid-tRafiyq8zY .btn-social:hover {
  color: #fff;
}
.cid-tRafiyq8zY .btn-social + .btn {
  margin-left: 0.1rem;
}
.cid-tRafiyq8zY img {
  max-width: 238px;
  height: auto;
  border-radius: 50%;
}
.cid-tRafiyq8zY .mbr-social-likes {
  max-width: 454px;
}
.cid-tRafiyq8zY .card-title {
  margin-bottom: 8px;
  color: #14142b;
}
.cid-tRafiyq8zY .card-subtitle {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRafiyq8zY .card-text {
  margin-bottom: 22px;
  color: #8c8c95;
}
.cid-tRafiyq8zY .card-title,
.cid-tRafiyq8zY .card-subtitle,
.cid-tRafiyq8zY .card-text {
  width: auto;
}
@media (max-width: 770px) {
  .cid-tRafiyq8zY .shadow {
    padding: 59px 56px;
  }
}
@media (max-width: 640px) {
  .cid-tRafiyq8zY .al {
    flex-direction: column;
  }
  .cid-tRafiyq8zY .shadow {
    padding: 39px 36px;
  }
  .cid-tRafiyq8zY img {
    padding-bottom: 20px;
  }
  .cid-tRafiyq8zY .card-title,
  .cid-tRafiyq8zY .card-subtitle,
  .cid-tRafiyq8zY .card-text,
  .cid-tRafiyq8zY .mbr-social-likes {
    text-align: center;
  }
}
@media (max-width: 600px) {
  .cid-tRafiyq8zY .shadow {
    padding: 35px 15px;
  }
}
.cid-tRafiyq8zY .mbr-iconfont {
  margin-left: 0;
}
.cid-tRafiyq8zY .card-text,
.cid-tRafiyq8zY .mbr-social-likes {
  text-align: center;
}
.cid-ttjshGEUCp {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-ttjshGEUCp .mbr-fallback-image.disabled {
  display: none;
}
.cid-ttjshGEUCp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ttjshGEUCp .mbr-section-head {
  width: 100%;
  margin-bottom: 30px;
}
.cid-ttjshGEUCp .mbr-section-title {
  color: #303030;
  margin-bottom: 0;
}
.cid-ttjshGEUCp .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-ttjshGEUCp .mbr-iconfont {
  position: relative;
  font-size: 13px !important;
  font-family: 'Moririse2' !important;
  color: #4fb380;
  margin-left: 1rem;
  padding: 7px;
  transition: .2s all;
}
.cid-ttjshGEUCp .mbr-iconfont:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #abf0d8;
  opacity: 1;
  transition: .2s all;
}
.cid-ttjshGEUCp .mbr-iconfont:before {
  position: relative;
  z-index: 2;
}
.cid-ttjshGEUCp .panel-group {
  border: none;
}
.cid-ttjshGEUCp .card {
  border-radius: 0;
}
.cid-ttjshGEUCp .card:not(:first-child) {
  margin-top: 12px;
  border-top: 2px solid #4fb380;
}
.cid-ttjshGEUCp .card-header {
  padding: 0;
  border: none;
  background-color: transparent;
  margin-bottom: 0;
}
.cid-ttjshGEUCp .card-header:hover .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ttjshGEUCp .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 10px 20px 0;
  color: #303030;
  transition: .2s all;
}
.cid-ttjshGEUCp .panel-title[aria-expanded="true"] {
  padding: 12px 10px 13px 0;
}
.cid-ttjshGEUCp .panel-title[aria-expanded="true"] .mbr-iconfont {
  transform: rotate(180deg);
}
.cid-ttjshGEUCp .panel-title-edit {
  color: #303030;
}
.cid-ttjshGEUCp .panel-body {
  padding: 0 0 30px;
}
.cid-ttjshGEUCp .panel-text {
  color: #303030;
  margin: 0;
}
.cid-tUPRXYuGhO {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUPRXYuGhO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUPRXYuGhO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUPRXYuGhO .mbr-section-title {
  color: #ff9370;
}
.cid-tUPRXYuGhO .mbr-section-subtitle {
  color: #303030;
}
.cid-tLYWyyaWj9 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-tLYWyyaWj9 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tLYWyyaWj9 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tLYWyyaWj9 .cards-row {
  row-gap: 50px;
}
.cid-tLYWyyaWj9 .card-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cid-tLYWyyaWj9 .mbr-iconfont {
  font-size: 82px;
  color: #4fb380;
}
.cid-tLYWyyaWj9 .card-box {
  padding-left: 28px;
}
.cid-tLYWyyaWj9 .card-title {
  color: #303030;
}
.cid-tLYWyyaWj9 .card-text {
  color: #303030;
  margin-top: 10px;
}
.cid-tUW9Hg44MZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUW9Hg44MZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUW9Hg44MZ .btn-social,
.cid-tUW9Hg44MZ .mbr-section-title {
  color: #57468b;
}
.cid-tUW9Hg44MZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUW9Hg44MZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUW9Hg44MZ .soc-item:hover {
  background: #ffffff;
}
.cid-tUW9Hg44MZ .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUW9Hg44MZ .align-left,
  .cid-tUW9Hg44MZ .align-right {
    text-align: center;
  }
  .cid-tUW9Hg44MZ .social-list {
    justify-content: center;
  }
  .cid-tUW9Hg44MZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUW9Hg44MZ .mbr-text {
  color: #000000;
}
.cid-tUL47pHpVS {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-tUL47pHpVS nav.navbar {
  position: fixed;
}
.cid-tUL47pHpVS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUL47pHpVS .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUL47pHpVS .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-tUL47pHpVS .dropdown-item:after {
  right: 1rem !important;
}
.cid-tUL47pHpVS .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUL47pHpVS .dropdown-item:hover:before,
.cid-tUL47pHpVS .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-tUL47pHpVS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUL47pHpVS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUL47pHpVS .nav-link {
  position: relative;
}
.cid-tUL47pHpVS .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUL47pHpVS .container {
    flex-wrap: nowrap;
  }
}
.cid-tUL47pHpVS .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-tUL47pHpVS .navbar-nav .nav-item {
  margin: 0;
}
.cid-tUL47pHpVS .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-tUL47pHpVS .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUL47pHpVS .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-tUL47pHpVS .dropdown-menu,
.cid-tUL47pHpVS .navbar.opened {
  background: #4fb380 !important;
}
.cid-tUL47pHpVS .nav-item:focus,
.cid-tUL47pHpVS .nav-link:focus {
  outline: none;
}
.cid-tUL47pHpVS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUL47pHpVS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUL47pHpVS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUL47pHpVS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUL47pHpVS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUL47pHpVS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUL47pHpVS .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tUL47pHpVS .navbar.opened {
  transition: all 0.3s;
}
.cid-tUL47pHpVS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUL47pHpVS .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-tUL47pHpVS .navbar .navbar-logo img {
  width: auto;
}
.cid-tUL47pHpVS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUL47pHpVS .navbar.collapsed {
  justify-content: center;
}
.cid-tUL47pHpVS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUL47pHpVS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUL47pHpVS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUL47pHpVS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUL47pHpVS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUL47pHpVS .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: 41%;
}
.cid-tUL47pHpVS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUL47pHpVS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUL47pHpVS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUL47pHpVS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUL47pHpVS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUL47pHpVS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUL47pHpVS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUL47pHpVS .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: 40%;
  }
  .cid-tUL47pHpVS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUL47pHpVS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUL47pHpVS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUL47pHpVS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUL47pHpVS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUL47pHpVS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUL47pHpVS .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUL47pHpVS .navbar.navbar-short {
  min-height: 100px;
}
.cid-tUL47pHpVS .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-tUL47pHpVS .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUL47pHpVS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUL47pHpVS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUL47pHpVS .dropdown-item.active,
.cid-tUL47pHpVS .dropdown-item:active {
  background-color: transparent;
}
.cid-tUL47pHpVS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUL47pHpVS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUL47pHpVS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUL47pHpVS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-tUL47pHpVS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUL47pHpVS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUL47pHpVS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUL47pHpVS .navbar-buttons {
  text-align: center;
}
.cid-tUL47pHpVS button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-tUL47pHpVS button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-tUL47pHpVS button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUL47pHpVS button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-tUL47pHpVS button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-tUL47pHpVS button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUL47pHpVS nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-tUL47pHpVS nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-tUL47pHpVS nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-tUL47pHpVS nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUL47pHpVS nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-tUL47pHpVS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUL47pHpVS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUL47pHpVS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUL47pHpVS .navbar {
    height: 70px;
  }
  .cid-tUL47pHpVS .navbar.opened {
    height: auto;
  }
  .cid-tUL47pHpVS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUL47pHpVS .container,
.cid-tUL47pHpVS .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUL47pHpVS .container,
  .cid-tUL47pHpVS .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUL47pHpVS .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-tUL47pHpVS .navbar-collapse {
  min-height: 98px;
}
.cid-tUL47pHpVS .mbr-section-btn {
  max-width: 35%;
}
.cid-tUL47pHpVS .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tUL47pHpVS {
    min-height: 70px !important;
  }
  .cid-tUL47pHpVS .navbar {
    min-height: 70px !important;
  }
  .cid-tUL47pHpVS .container-fluid {
    padding: 0 7%;
  }
  .cid-tUL47pHpVS .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-tUL47pHpVS .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-tUL47pHpVS .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-tUL47pHpVS .navbar-nav li {
    margin: 0 !important;
  }
  .cid-tUL47pHpVS .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-tUL47pHpVS .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-tUL47pHpVS .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-tUL47pHpVS .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-tUL47pHpVS .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-tUL47pHpVS .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tUL47qv17o {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-tUL47qv17o .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUL47qv17o .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUL47qv17o .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tUL47qv17o .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tUL47qv17o .mbr-text {
  color: #FFFFFF;
}
.cid-tUL47qv17o .mbr-section-btn {
  margin-top: 18px;
}
.cid-tUL8CkYxdw {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUL8CkYxdw .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tUL8CkYxdw .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULay6dfwK {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tULay6dfwK .mbr-fallback-image.disabled {
  display: none;
}
.cid-tULay6dfwK .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tULay6dfwK .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tULay6dfwK img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tULay6dfwK img {
    min-height: 400px;
  }
}
.cid-tUL9dtjgeq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUL9dtjgeq .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tUL9dtjgeq .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULc2aLjDf {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tULc2aLjDf .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tULc2aLjDf .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULctHHfbO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tULctHHfbO .mbr-fallback-image.disabled {
  display: none;
}
.cid-tULctHHfbO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tULctHHfbO .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tULctHHfbO img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tULctHHfbO img {
    min-height: 400px;
  }
}
.cid-tULcKleUoD {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tULcKleUoD .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tULcKleUoD .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULdpjVLZ9 {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tULdpjVLZ9 .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tULdpjVLZ9 .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULcTXYJET {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tULcTXYJET .mbr-fallback-image.disabled {
  display: none;
}
.cid-tULcTXYJET .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tULcTXYJET .image-wrapper {
  border: 2px solid #131313;
  box-shadow: 4px 4px 0 #131313;
}
.cid-tULcTXYJET img {
  width: 100%;
  object-fit: cover;
  max-height: 100vh;
}
@media (max-width: 767px) {
  .cid-tULcTXYJET img {
    min-height: 400px;
  }
}
.cid-tULdqQkBsB {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tULdqQkBsB .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tULdqQkBsB .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULdrUUhfO {
  padding-top: 15px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tULdrUUhfO .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: center;
}
.cid-tULdrUUhfO .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tULfj8gIOE {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tULfj8gIOE .mbr-iconfont {
  font-size: 1rem;
  margin-bottom: 6px;
}
.cid-tULfj8gIOE .title,
.cid-tULfj8gIOE .mbr-section-title {
  margin-bottom: 0.5rem !important;
}
.cid-tULfj8gIOE .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  border-bottom: 2px dotted #c2c2c2;
}
.cid-tULfj8gIOE .ico-line {
  display: flex;
}
.cid-tULfj8gIOE .type {
  color: #000000;
  text-align: left;
}
.cid-tULfj8gIOE p {
  padding: 0;
  margin: 0;
}
.cid-tULfj8gIOE img {
  border-radius: 100%;
  width: 100%;
}
.cid-tULfj8gIOE .text-box {
  padding: 0rem;
}
.cid-tULfj8gIOE .ico-box {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding: 3px;
}
.cid-tULfj8gIOE .card-title {
  color: #000000;
  margin: 0;
  padding-bottom: 0.2rem;
}
.cid-tULfj8gIOE .card-img {
  border-radius: 100%;
  height: 100%;
}
.cid-tULfj8gIOE .card-box {
  padding: 0rem;
}
.cid-tULfj8gIOE .mbr-section-title {
  margin: 0 auto;
  margin-bottom: 2rem;
  color: #656565;
  text-align: center;
}
.cid-tULfj8gIOE .status {
  color: #656565;
  text-align: left;
}
.cid-tULfj8gIOE .text {
  line-height: 1.6;
}
.cid-tUW9Hg44MZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUW9Hg44MZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUW9Hg44MZ .btn-social,
.cid-tUW9Hg44MZ .mbr-section-title {
  color: #57468b;
}
.cid-tUW9Hg44MZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUW9Hg44MZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUW9Hg44MZ .soc-item:hover {
  background: #ffffff;
}
.cid-tUW9Hg44MZ .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUW9Hg44MZ .align-left,
  .cid-tUW9Hg44MZ .align-right {
    text-align: center;
  }
  .cid-tUW9Hg44MZ .social-list {
    justify-content: center;
  }
  .cid-tUW9Hg44MZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUW9Hg44MZ .mbr-text {
  color: #000000;
}
.cid-tUhQVnffO2 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-tUhQVnffO2 nav.navbar {
  position: fixed;
}
.cid-tUhQVnffO2 .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUhQVnffO2 .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUhQVnffO2 .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-tUhQVnffO2 .dropdown-item:after {
  right: 1rem !important;
}
.cid-tUhQVnffO2 .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUhQVnffO2 .dropdown-item:hover:before,
.cid-tUhQVnffO2 .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-tUhQVnffO2 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUhQVnffO2 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUhQVnffO2 .nav-link {
  position: relative;
}
.cid-tUhQVnffO2 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUhQVnffO2 .container {
    flex-wrap: nowrap;
  }
}
.cid-tUhQVnffO2 .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-tUhQVnffO2 .navbar-nav .nav-item {
  margin: 0;
}
.cid-tUhQVnffO2 .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-tUhQVnffO2 .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUhQVnffO2 .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-tUhQVnffO2 .dropdown-menu,
.cid-tUhQVnffO2 .navbar.opened {
  background: #4fb380 !important;
}
.cid-tUhQVnffO2 .nav-item:focus,
.cid-tUhQVnffO2 .nav-link:focus {
  outline: none;
}
.cid-tUhQVnffO2 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUhQVnffO2 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUhQVnffO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUhQVnffO2 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUhQVnffO2 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUhQVnffO2 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUhQVnffO2 .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tUhQVnffO2 .navbar.opened {
  transition: all 0.3s;
}
.cid-tUhQVnffO2 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUhQVnffO2 .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-tUhQVnffO2 .navbar .navbar-logo img {
  width: auto;
}
.cid-tUhQVnffO2 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUhQVnffO2 .navbar.collapsed {
  justify-content: center;
}
.cid-tUhQVnffO2 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUhQVnffO2 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUhQVnffO2 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUhQVnffO2 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUhQVnffO2 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUhQVnffO2 .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: 41%;
}
.cid-tUhQVnffO2 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUhQVnffO2 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUhQVnffO2 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUhQVnffO2 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUhQVnffO2 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUhQVnffO2 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUhQVnffO2 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUhQVnffO2 .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: 40%;
  }
  .cid-tUhQVnffO2 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUhQVnffO2 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUhQVnffO2 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUhQVnffO2 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUhQVnffO2 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUhQVnffO2 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUhQVnffO2 .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUhQVnffO2 .navbar.navbar-short {
  min-height: 100px;
}
.cid-tUhQVnffO2 .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-tUhQVnffO2 .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUhQVnffO2 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUhQVnffO2 .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUhQVnffO2 .dropdown-item.active,
.cid-tUhQVnffO2 .dropdown-item:active {
  background-color: transparent;
}
.cid-tUhQVnffO2 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUhQVnffO2 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUhQVnffO2 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUhQVnffO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-tUhQVnffO2 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUhQVnffO2 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUhQVnffO2 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUhQVnffO2 .navbar-buttons {
  text-align: center;
}
.cid-tUhQVnffO2 button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-tUhQVnffO2 button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-tUhQVnffO2 button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUhQVnffO2 button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-tUhQVnffO2 button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-tUhQVnffO2 button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUhQVnffO2 nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-tUhQVnffO2 nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-tUhQVnffO2 nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-tUhQVnffO2 nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUhQVnffO2 nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-tUhQVnffO2 .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUhQVnffO2 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUhQVnffO2 .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUhQVnffO2 .navbar {
    height: 70px;
  }
  .cid-tUhQVnffO2 .navbar.opened {
    height: auto;
  }
  .cid-tUhQVnffO2 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUhQVnffO2 .container,
.cid-tUhQVnffO2 .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUhQVnffO2 .container,
  .cid-tUhQVnffO2 .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUhQVnffO2 .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-tUhQVnffO2 .navbar-collapse {
  min-height: 98px;
}
.cid-tUhQVnffO2 .mbr-section-btn {
  max-width: 35%;
}
.cid-tUhQVnffO2 .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tUhQVnffO2 {
    min-height: 70px !important;
  }
  .cid-tUhQVnffO2 .navbar {
    min-height: 70px !important;
  }
  .cid-tUhQVnffO2 .container-fluid {
    padding: 0 7%;
  }
  .cid-tUhQVnffO2 .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-tUhQVnffO2 .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-tUhQVnffO2 .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-tUhQVnffO2 .navbar-nav li {
    margin: 0 !important;
  }
  .cid-tUhQVnffO2 .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-tUhQVnffO2 .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-tUhQVnffO2 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-tUhQVnffO2 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-tUhQVnffO2 .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-tUhQVnffO2 .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tUhQVnVyUw {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-tUhQVnVyUw .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUhQVnVyUw .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUhQVnVyUw .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tUhQVnVyUw .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tUhQVnVyUw .mbr-text {
  color: #FFFFFF;
}
.cid-tUhQVnVyUw .mbr-section-btn {
  margin-top: 18px;
}
.cid-tUKZ1aoMBS {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tUKZ1aoMBS .card-wrapper {
  overflow: hidden;
  height: 100%;
  background: #ffffff;
  color: #444444;
  padding: 0;
  border-radius: 6px;
  border: 1px solid #ececec;
  transition: all 0.3s;
}
.cid-tUKZ1aoMBS .card-wrapper:hover {
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  margin-top: -0.6rem;
}
.cid-tUKZ1aoMBS p {
  line-height: 1.6;
}
.cid-tUKZ1aoMBS .btn {
  border: none;
  background: transparent;
  font-weight: 400 !important;
}
.cid-tUKZ1aoMBS .card-title {
  color: #000000;
  margin: 0;
  line-height: 1.3;
  padding-bottom: 1.5rem;
}
.cid-tUKZ1aoMBS .card-img {
  overflow: hidden;
  max-height: 280px;
  border-radius: 0;
}
.cid-tUKZ1aoMBS img {
  transition: all 0.3s;
}
.cid-tUKZ1aoMBS .card-box {
  padding: 1.5rem;
}
.cid-tUKZ1aoMBS .mbr-section-title {
  margin: 0 auto;
  color: #000000;
  text-align: center;
}
.cid-tUKZ1aoMBS .card-box > p,
.cid-tUKZ1aoMBS .mbr-section-btn {
  color: #000000;
  text-align: left;
}
.cid-tUKZ1aoMBS .mbr-section-sub-title {
  text-align: center;
  color: #9e9e9e;
}
.cid-tUPS22x2HX {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUPS22x2HX .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUPS22x2HX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUPS22x2HX .mbr-section-title {
  color: #ff9370;
}
.cid-tUPS22x2HX .mbr-section-subtitle {
  color: #303030;
}
.cid-tUhQVxWwEQ {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #f6f6f6;
}
.cid-tUhQVxWwEQ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUhQVxWwEQ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUhQVxWwEQ .cards-row {
  row-gap: 50px;
}
.cid-tUhQVxWwEQ .card-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cid-tUhQVxWwEQ .mbr-iconfont {
  font-size: 82px;
  color: #4fb380;
}
.cid-tUhQVxWwEQ .card-box {
  padding-left: 28px;
}
.cid-tUhQVxWwEQ .card-title {
  color: #303030;
}
.cid-tUhQVxWwEQ .card-text {
  color: #303030;
  margin-top: 10px;
}
.cid-tUW9Hg44MZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUW9Hg44MZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUW9Hg44MZ .btn-social,
.cid-tUW9Hg44MZ .mbr-section-title {
  color: #57468b;
}
.cid-tUW9Hg44MZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUW9Hg44MZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUW9Hg44MZ .soc-item:hover {
  background: #ffffff;
}
.cid-tUW9Hg44MZ .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUW9Hg44MZ .align-left,
  .cid-tUW9Hg44MZ .align-right {
    text-align: center;
  }
  .cid-tUW9Hg44MZ .social-list {
    justify-content: center;
  }
  .cid-tUW9Hg44MZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUW9Hg44MZ .mbr-text {
  color: #000000;
}
.cid-tUPg7A4RYk {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-tUPg7A4RYk nav.navbar {
  position: fixed;
}
.cid-tUPg7A4RYk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUPg7A4RYk .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUPg7A4RYk .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-tUPg7A4RYk .dropdown-item:after {
  right: 1rem !important;
}
.cid-tUPg7A4RYk .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUPg7A4RYk .dropdown-item:hover:before,
.cid-tUPg7A4RYk .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-tUPg7A4RYk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUPg7A4RYk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUPg7A4RYk .nav-link {
  position: relative;
}
.cid-tUPg7A4RYk .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUPg7A4RYk .container {
    flex-wrap: nowrap;
  }
}
.cid-tUPg7A4RYk .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-tUPg7A4RYk .navbar-nav .nav-item {
  margin: 0;
}
.cid-tUPg7A4RYk .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-tUPg7A4RYk .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUPg7A4RYk .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-tUPg7A4RYk .dropdown-menu,
.cid-tUPg7A4RYk .navbar.opened {
  background: #4fb380 !important;
}
.cid-tUPg7A4RYk .nav-item:focus,
.cid-tUPg7A4RYk .nav-link:focus {
  outline: none;
}
.cid-tUPg7A4RYk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUPg7A4RYk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUPg7A4RYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUPg7A4RYk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUPg7A4RYk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUPg7A4RYk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUPg7A4RYk .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tUPg7A4RYk .navbar.opened {
  transition: all 0.3s;
}
.cid-tUPg7A4RYk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUPg7A4RYk .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-tUPg7A4RYk .navbar .navbar-logo img {
  width: auto;
}
.cid-tUPg7A4RYk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUPg7A4RYk .navbar.collapsed {
  justify-content: center;
}
.cid-tUPg7A4RYk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUPg7A4RYk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUPg7A4RYk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUPg7A4RYk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUPg7A4RYk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUPg7A4RYk .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: 41%;
}
.cid-tUPg7A4RYk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUPg7A4RYk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUPg7A4RYk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUPg7A4RYk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUPg7A4RYk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUPg7A4RYk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUPg7A4RYk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUPg7A4RYk .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: 40%;
  }
  .cid-tUPg7A4RYk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUPg7A4RYk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUPg7A4RYk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUPg7A4RYk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUPg7A4RYk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUPg7A4RYk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUPg7A4RYk .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUPg7A4RYk .navbar.navbar-short {
  min-height: 100px;
}
.cid-tUPg7A4RYk .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-tUPg7A4RYk .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUPg7A4RYk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUPg7A4RYk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUPg7A4RYk .dropdown-item.active,
.cid-tUPg7A4RYk .dropdown-item:active {
  background-color: transparent;
}
.cid-tUPg7A4RYk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUPg7A4RYk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUPg7A4RYk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUPg7A4RYk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-tUPg7A4RYk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUPg7A4RYk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUPg7A4RYk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUPg7A4RYk .navbar-buttons {
  text-align: center;
}
.cid-tUPg7A4RYk button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-tUPg7A4RYk button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-tUPg7A4RYk button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUPg7A4RYk button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-tUPg7A4RYk button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-tUPg7A4RYk button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUPg7A4RYk nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-tUPg7A4RYk nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-tUPg7A4RYk nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-tUPg7A4RYk nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUPg7A4RYk nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-tUPg7A4RYk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUPg7A4RYk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUPg7A4RYk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUPg7A4RYk .navbar {
    height: 70px;
  }
  .cid-tUPg7A4RYk .navbar.opened {
    height: auto;
  }
  .cid-tUPg7A4RYk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUPg7A4RYk .container,
.cid-tUPg7A4RYk .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUPg7A4RYk .container,
  .cid-tUPg7A4RYk .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUPg7A4RYk .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-tUPg7A4RYk .navbar-collapse {
  min-height: 98px;
}
.cid-tUPg7A4RYk .mbr-section-btn {
  max-width: 35%;
}
.cid-tUPg7A4RYk .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tUPg7A4RYk {
    min-height: 70px !important;
  }
  .cid-tUPg7A4RYk .navbar {
    min-height: 70px !important;
  }
  .cid-tUPg7A4RYk .container-fluid {
    padding: 0 7%;
  }
  .cid-tUPg7A4RYk .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-tUPg7A4RYk .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-tUPg7A4RYk .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-tUPg7A4RYk .navbar-nav li {
    margin: 0 !important;
  }
  .cid-tUPg7A4RYk .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-tUPg7A4RYk .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-tUPg7A4RYk .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-tUPg7A4RYk .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-tUPg7A4RYk .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-tUPg7A4RYk .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tUPg7APp6Q {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-tUPg7APp6Q .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUPg7APp6Q .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUPg7APp6Q .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tUPg7APp6Q .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tUPg7APp6Q .mbr-text {
  color: #FFFFFF;
}
.cid-tUPg7APp6Q .mbr-section-btn {
  margin-top: 18px;
}
.cid-tUPg7Bsibg {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUPg7Bsibg .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: left;
}
.cid-tUPg7Bsibg .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tUPi7gZAVq {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tUPi7gZAVq .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tUPi7gZAVq .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tUPi7gZAVq .row {
    row-gap: 40px;
  }
}
.cid-tUPi7gZAVq .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tUPi7gZAVq .mbr-section-title {
  color: #000000;
}
.cid-tUPi7gZAVq .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tUPi7gZAVq .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tUPi7gZAVq .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 2));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tUPi7gZAVq .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tUPi7gZAVq .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tUPi7gZAVq .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tUPi7gZAVq .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tUPi7gZAVq .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tUPi7gZAVq .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tUPi7gZAVq .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tUPi7gZAVq .item-content {
  margin-top: 32px;
}
.cid-tUPi7gZAVq .item-title {
  color: #303030;
}
.cid-tUPi7gZAVq .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tUPi7gZAVq .item-number {
  color: #4fb380;
  margin-top: 22px;
  text-align: left;
}
.cid-tUPi7gZAVq .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #4fb380;
}
.cid-tUPi7gZAVq .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tUPi7gZAVq .item-text {
  color: #4fb380;
}
.cid-tUPk9GGgJ4 {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
  overflow: hidden;
}
.cid-tUPk9GGgJ4 .row {
  margin-left: -30px;
  margin-right: -30px;
  justify-content: center;
  row-gap: 60px;
}
.cid-tUPk9GGgJ4 .row > [class*="col"] {
  padding-left: 30px;
  padding-right: 30px;
}
@media (max-width: 991px) {
  .cid-tUPk9GGgJ4 .row {
    row-gap: 40px;
  }
}
.cid-tUPk9GGgJ4 .mbr-section-head {
  padding-bottom: 50px;
}
.cid-tUPk9GGgJ4 .mbr-section-title {
  color: #000000;
}
.cid-tUPk9GGgJ4 .mbr-section-subtitle {
  color: #303030;
  margin-top: 16px;
}
.cid-tUPk9GGgJ4 .item-img {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.cid-tUPk9GGgJ4 .item-img img {
  width: 100%;
  aspect-ratio: calc(131 / (59 * 2));
  object-fit: cover;
  transform: scale(1.01);
  transition: all .5s ease;
}
.cid-tUPk9GGgJ4 .mbr-section-btn {
  position: absolute;
  top: 100%;
  left: 0;
  display: flex;
  justify-content: center;
  width: 100%;
  transition: all .5s ease;
  margin: 0 !important;
}
@media (max-width: 575px) {
  .cid-tUPk9GGgJ4 .mbr-section-btn {
    transform: translateY(-100%);
  }
}
.cid-tUPk9GGgJ4 .mbr-section-btn .btn {
  width: 100%;
  margin: 0 !important;
  padding: 10px 34px 10px !important;
}
.cid-tUPk9GGgJ4 .mbr-section-btn .btn:after {
  bottom: 11px !important;
  width: 50% !important;
}
.cid-tUPk9GGgJ4 .item-wrapper {
  width: 100%;
  height: 100%;
  padding: 0;
  transition: .3s all;
}
.cid-tUPk9GGgJ4 .item-wrapper:hover .item-img img {
  transform: scale(1.05);
}
.cid-tUPk9GGgJ4 .item-wrapper:hover .mbr-section-btn {
  transform: translateY(-100%);
}
.cid-tUPk9GGgJ4 .item-content {
  margin-top: 32px;
}
.cid-tUPk9GGgJ4 .item-title {
  color: #303030;
}
.cid-tUPk9GGgJ4 .mbr-text {
  margin-top: 11px;
  color: #303030;
}
.cid-tUPk9GGgJ4 .item-number {
  color: #4fb380;
  margin-top: 22px;
  text-align: left;
}
.cid-tUPk9GGgJ4 .item-border {
  width: 100%;
  height: 4px;
  margin-top: 3px;
  border-radius: 5px;
  background-color: #4fb380;
}
.cid-tUPk9GGgJ4 .item-text-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 16px;
}
.cid-tUPk9GGgJ4 .item-text {
  color: #4fb380;
}
.cid-tUPNYEQg38 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUPNYEQg38 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUPNYEQg38 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUPNYEQg38 .mbr-section-title {
  color: #ff9370;
}
.cid-tUPNYEQg38 .mbr-section-subtitle {
  color: #303030;
}
.cid-tUPg7Ko0Lp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-tUPg7Ko0Lp .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUPg7Ko0Lp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUPg7Ko0Lp .cards-row {
  row-gap: 50px;
}
.cid-tUPg7Ko0Lp .card-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cid-tUPg7Ko0Lp .mbr-iconfont {
  font-size: 82px;
  color: #4fb380;
}
.cid-tUPg7Ko0Lp .card-box {
  padding-left: 28px;
}
.cid-tUPg7Ko0Lp .card-title {
  color: #303030;
}
.cid-tUPg7Ko0Lp .card-text {
  color: #303030;
  margin-top: 10px;
}
.cid-tUW9Hg44MZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUW9Hg44MZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUW9Hg44MZ .btn-social,
.cid-tUW9Hg44MZ .mbr-section-title {
  color: #57468b;
}
.cid-tUW9Hg44MZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUW9Hg44MZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUW9Hg44MZ .soc-item:hover {
  background: #ffffff;
}
.cid-tUW9Hg44MZ .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUW9Hg44MZ .align-left,
  .cid-tUW9Hg44MZ .align-right {
    text-align: center;
  }
  .cid-tUW9Hg44MZ .social-list {
    justify-content: center;
  }
  .cid-tUW9Hg44MZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUW9Hg44MZ .mbr-text {
  color: #000000;
}
.cid-tUQcTab0gD {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-tUQcTab0gD nav.navbar {
  position: fixed;
}
.cid-tUQcTab0gD .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUQcTab0gD .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUQcTab0gD .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-tUQcTab0gD .dropdown-item:after {
  right: 1rem !important;
}
.cid-tUQcTab0gD .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUQcTab0gD .dropdown-item:hover:before,
.cid-tUQcTab0gD .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-tUQcTab0gD .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUQcTab0gD .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUQcTab0gD .nav-link {
  position: relative;
}
.cid-tUQcTab0gD .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUQcTab0gD .container {
    flex-wrap: nowrap;
  }
}
.cid-tUQcTab0gD .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-tUQcTab0gD .navbar-nav .nav-item {
  margin: 0;
}
.cid-tUQcTab0gD .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-tUQcTab0gD .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUQcTab0gD .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-tUQcTab0gD .dropdown-menu,
.cid-tUQcTab0gD .navbar.opened {
  background: #4fb380 !important;
}
.cid-tUQcTab0gD .nav-item:focus,
.cid-tUQcTab0gD .nav-link:focus {
  outline: none;
}
.cid-tUQcTab0gD .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUQcTab0gD .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUQcTab0gD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUQcTab0gD .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUQcTab0gD .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUQcTab0gD .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUQcTab0gD .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tUQcTab0gD .navbar.opened {
  transition: all 0.3s;
}
.cid-tUQcTab0gD .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUQcTab0gD .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-tUQcTab0gD .navbar .navbar-logo img {
  width: auto;
}
.cid-tUQcTab0gD .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUQcTab0gD .navbar.collapsed {
  justify-content: center;
}
.cid-tUQcTab0gD .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUQcTab0gD .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUQcTab0gD .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUQcTab0gD .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUQcTab0gD .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUQcTab0gD .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: 41%;
}
.cid-tUQcTab0gD .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUQcTab0gD .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUQcTab0gD .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUQcTab0gD .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUQcTab0gD .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUQcTab0gD .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUQcTab0gD .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUQcTab0gD .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: 40%;
  }
  .cid-tUQcTab0gD .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUQcTab0gD .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUQcTab0gD .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUQcTab0gD .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUQcTab0gD .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUQcTab0gD .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUQcTab0gD .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUQcTab0gD .navbar.navbar-short {
  min-height: 100px;
}
.cid-tUQcTab0gD .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-tUQcTab0gD .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUQcTab0gD .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUQcTab0gD .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUQcTab0gD .dropdown-item.active,
.cid-tUQcTab0gD .dropdown-item:active {
  background-color: transparent;
}
.cid-tUQcTab0gD .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUQcTab0gD .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUQcTab0gD .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUQcTab0gD .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-tUQcTab0gD .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUQcTab0gD .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUQcTab0gD ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUQcTab0gD .navbar-buttons {
  text-align: center;
}
.cid-tUQcTab0gD button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-tUQcTab0gD button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-tUQcTab0gD button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUQcTab0gD button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-tUQcTab0gD button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-tUQcTab0gD button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUQcTab0gD nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-tUQcTab0gD nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-tUQcTab0gD nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-tUQcTab0gD nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUQcTab0gD nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-tUQcTab0gD .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUQcTab0gD a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUQcTab0gD .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUQcTab0gD .navbar {
    height: 70px;
  }
  .cid-tUQcTab0gD .navbar.opened {
    height: auto;
  }
  .cid-tUQcTab0gD .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUQcTab0gD .container,
.cid-tUQcTab0gD .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUQcTab0gD .container,
  .cid-tUQcTab0gD .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUQcTab0gD .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-tUQcTab0gD .navbar-collapse {
  min-height: 98px;
}
.cid-tUQcTab0gD .mbr-section-btn {
  max-width: 35%;
}
.cid-tUQcTab0gD .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tUQcTab0gD {
    min-height: 70px !important;
  }
  .cid-tUQcTab0gD .navbar {
    min-height: 70px !important;
  }
  .cid-tUQcTab0gD .container-fluid {
    padding: 0 7%;
  }
  .cid-tUQcTab0gD .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-tUQcTab0gD .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-tUQcTab0gD .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-tUQcTab0gD .navbar-nav li {
    margin: 0 !important;
  }
  .cid-tUQcTab0gD .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-tUQcTab0gD .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-tUQcTab0gD .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-tUQcTab0gD .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-tUQcTab0gD .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-tUQcTab0gD .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tUQcTaJKNV {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-tUQcTaJKNV .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUQcTaJKNV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUQcTaJKNV .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tUQcTaJKNV .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tUQcTaJKNV .mbr-text {
  color: #FFFFFF;
}
.cid-tUQcTaJKNV .mbr-section-btn {
  margin-top: 18px;
}
.cid-tUQkvKQAGb {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUQkvKQAGb .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUQkvKQAGb .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUQkvKQAGb .mbr-section-title {
  color: #ff9370;
}
.cid-tUQkvKQAGb .mbr-section-subtitle {
  color: #303030;
}
.cid-v4krC9Viie {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v4krC9Viie .mbr-fallback-image.disabled {
  display: none;
}
.cid-v4krC9Viie .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-v4krC9Viie .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-v4krC9Viie img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-v4krC9Viie .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUQcTbSfbQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tUQcTbSfbQ .mbr-text {
  line-height: 1.5;
  color: #333333;
  text-align: left;
}
.cid-tUQcTbSfbQ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tV7qkp0rRA {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tV7qkp0rRA .mbr-fallback-image.disabled {
  display: none;
}
.cid-tV7qkp0rRA .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-tV7qkp0rRA .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-tV7qkp0rRA img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tV7qkp0rRA .text-wrapper {
    padding: 2rem;
  }
}
.cid-tUQcTjY1Mx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUQcTjY1Mx .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUQcTjY1Mx .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUQcTjY1Mx .mbr-section-title {
  color: #ff9370;
}
.cid-tUQcTjY1Mx .mbr-section-subtitle {
  color: #303030;
}
.cid-tUQcTkHypZ {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-tUQcTkHypZ .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUQcTkHypZ .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUQcTkHypZ .cards-row {
  row-gap: 50px;
}
.cid-tUQcTkHypZ .card-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cid-tUQcTkHypZ .mbr-iconfont {
  font-size: 82px;
  color: #4fb380;
}
.cid-tUQcTkHypZ .card-box {
  padding-left: 28px;
}
.cid-tUQcTkHypZ .card-title {
  color: #303030;
}
.cid-tUQcTkHypZ .card-text {
  color: #303030;
  margin-top: 10px;
}
.cid-tUW9Hg44MZ {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUW9Hg44MZ .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUW9Hg44MZ .btn-social,
.cid-tUW9Hg44MZ .mbr-section-title {
  color: #57468b;
}
.cid-tUW9Hg44MZ .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUW9Hg44MZ .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUW9Hg44MZ .soc-item:hover {
  background: #ffffff;
}
.cid-tUW9Hg44MZ .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUW9Hg44MZ .align-left,
  .cid-tUW9Hg44MZ .align-right {
    text-align: center;
  }
  .cid-tUW9Hg44MZ .social-list {
    justify-content: center;
  }
  .cid-tUW9Hg44MZ .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUW9Hg44MZ .mbr-text {
  color: #000000;
}
.cid-tUXj5pI4Kc {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 100px;
}
.cid-tUXj5pI4Kc nav.navbar {
  position: fixed;
}
.cid-tUXj5pI4Kc .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUXj5pI4Kc .dropdown-menu {
  padding: 15px 0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tUXj5pI4Kc .dropdown-item {
  position: relative !important;
  padding: 2px 40px !important;
}
.cid-tUXj5pI4Kc .dropdown-item:after {
  right: 1rem !important;
}
.cid-tUXj5pI4Kc .dropdown-item:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 40px;
  bottom: 2px;
  top: auto !important;
  height: 1px;
  width: 0;
  overflow: visible !important;
  transform: scale(1) !important;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUXj5pI4Kc .dropdown-item:hover:before,
.cid-tUXj5pI4Kc .dropdown-item:focus:before {
  width: calc(100% - 80px);
}
.cid-tUXj5pI4Kc .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tUXj5pI4Kc .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tUXj5pI4Kc .nav-link {
  position: relative;
}
.cid-tUXj5pI4Kc .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tUXj5pI4Kc .container {
    flex-wrap: nowrap;
  }
}
.cid-tUXj5pI4Kc .navbar-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
  min-height: 98px;
}
.cid-tUXj5pI4Kc .navbar-nav .nav-item {
  margin: 0;
}
.cid-tUXj5pI4Kc .navbar-nav .nav-link {
  position: relative;
  padding: 0 !important;
  margin: 10px 20px !important;
  transition: .4s all;
  font-weight: 700 !important;
}
.cid-tUXj5pI4Kc .navbar-nav .nav-link:before {
  content: "";
  display: block !important;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: currentColor;
  transition: 0.4s cubic-bezier(0.33, 0.52, 0.05, 0.96);
}
.cid-tUXj5pI4Kc .navbar-nav .nav-link:hover:before {
  width: 100%;
}
.cid-tUXj5pI4Kc .dropdown-menu,
.cid-tUXj5pI4Kc .navbar.opened {
  background: #4fb380 !important;
}
.cid-tUXj5pI4Kc .nav-item:focus,
.cid-tUXj5pI4Kc .nav-link:focus {
  outline: none;
}
.cid-tUXj5pI4Kc .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tUXj5pI4Kc .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tUXj5pI4Kc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tUXj5pI4Kc .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tUXj5pI4Kc .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tUXj5pI4Kc .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tUXj5pI4Kc .navbar {
  min-height: 100px;
  transition: all 0.3s;
  border-bottom: none !important;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #4fb380;
  box-shadow: none !important;
  padding: 0 !important;
}
.cid-tUXj5pI4Kc .navbar.opened {
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tUXj5pI4Kc .navbar .navbar-logo {
  margin-right: 0.5rem !important;
}
.cid-tUXj5pI4Kc .navbar .navbar-logo img {
  width: auto;
}
.cid-tUXj5pI4Kc .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tUXj5pI4Kc .navbar.collapsed {
  justify-content: center;
}
.cid-tUXj5pI4Kc .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tUXj5pI4Kc .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tUXj5pI4Kc .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 3rem);
  }
}
.cid-tUXj5pI4Kc .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tUXj5pI4Kc .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tUXj5pI4Kc .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: 41%;
}
.cid-tUXj5pI4Kc .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tUXj5pI4Kc .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tUXj5pI4Kc .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tUXj5pI4Kc .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tUXj5pI4Kc .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tUXj5pI4Kc .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tUXj5pI4Kc .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tUXj5pI4Kc .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: 40%;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tUXj5pI4Kc .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tUXj5pI4Kc .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tUXj5pI4Kc .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tUXj5pI4Kc .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tUXj5pI4Kc .navbar.navbar-short {
  min-height: 100px;
}
.cid-tUXj5pI4Kc .navbar.navbar-short .navbar-brand {
  min-height: 98px;
  padding: 0;
}
.cid-tUXj5pI4Kc .navbar-brand {
  min-height: 98px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tUXj5pI4Kc .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tUXj5pI4Kc .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tUXj5pI4Kc .dropdown-item.active,
.cid-tUXj5pI4Kc .dropdown-item:active {
  background-color: transparent;
}
.cid-tUXj5pI4Kc .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tUXj5pI4Kc .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tUXj5pI4Kc .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tUXj5pI4Kc .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #4fb380;
}
.cid-tUXj5pI4Kc .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tUXj5pI4Kc .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tUXj5pI4Kc ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tUXj5pI4Kc .navbar-buttons {
  text-align: center;
}
.cid-tUXj5pI4Kc button.navbar-toggler {
  outline: none;
  width: 24px;
  height: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
  padding: 0 !important;
  border: none !important;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  right: 0;
  width: 100%;
  height: 4px;
  background-color: transparent;
  opacity: 1;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger div:nth-child(1) {
  top: 0;
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger div:nth-child(3) {
  top: 10px;
  transition: all 0.25s;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger div:nth-child(4) {
  top: 20px;
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc button.navbar-toggler .hamburger span {
  width: 4px;
  height: 4px;
  background-color: #303030;
  border-radius: 50%;
}
.cid-tUXj5pI4Kc button.navbar-toggler:hover .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc button.navbar-toggler:hover .hamburger div:nth-child(2) {
  top: 10px;
  transition: all 0.25s;
  opacity: 1;
}
.cid-tUXj5pI4Kc button.navbar-toggler:hover .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transition: all 0.25s;
}
.cid-tUXj5pI4Kc button.navbar-toggler:hover .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc nav.opened .hamburger div:nth-child(1) {
  top: 10px;
  opacity: 0;
}
.cid-tUXj5pI4Kc nav.opened .hamburger div:nth-child(2) {
  top: 10px;
  opacity: 1;
  transform: rotate(45deg);
  background-color: #303030;
}
.cid-tUXj5pI4Kc nav.opened .hamburger div:nth-child(3) {
  top: 10px;
  opacity: 1;
  transform: rotate(-45deg);
  background-color: #303030;
}
.cid-tUXj5pI4Kc nav.opened .hamburger div:nth-child(4) {
  top: 10px;
  opacity: 0;
  transition: all 0.3s;
}
.cid-tUXj5pI4Kc nav.opened button.navbar-toggler:hover {
  transform: rotate(90deg);
}
.cid-tUXj5pI4Kc .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tUXj5pI4Kc a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tUXj5pI4Kc .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tUXj5pI4Kc .navbar {
    height: 70px;
  }
  .cid-tUXj5pI4Kc .navbar.opened {
    height: auto;
  }
  .cid-tUXj5pI4Kc .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tUXj5pI4Kc .container,
.cid-tUXj5pI4Kc .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tUXj5pI4Kc .container,
  .cid-tUXj5pI4Kc .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tUXj5pI4Kc .container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
.cid-tUXj5pI4Kc .navbar-collapse {
  min-height: 98px;
}
.cid-tUXj5pI4Kc .mbr-section-btn {
  max-width: 35%;
}
.cid-tUXj5pI4Kc .mbr-section-btn .btn {
  min-width: auto;
  max-width: 100%;
}
@media (max-width: 991px) {
  .cid-tUXj5pI4Kc {
    min-height: 70px !important;
  }
  .cid-tUXj5pI4Kc .navbar {
    min-height: 70px !important;
  }
  .cid-tUXj5pI4Kc .container-fluid {
    padding: 0 7%;
  }
  .cid-tUXj5pI4Kc .navbar-brand {
    width: calc(100% - 24px) !important;
    min-height: 68px !important;
  }
  .cid-tUXj5pI4Kc .navbar-collapse {
    width: 100%;
    min-height: auto;
    padding-bottom: 30px;
    order: 5;
  }
  .cid-tUXj5pI4Kc .navbar-nav {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
  .cid-tUXj5pI4Kc .navbar-nav li {
    margin: 0 !important;
  }
  .cid-tUXj5pI4Kc .navbar-nav .nav-link {
    width: max-content !important;
    max-width: 100% !important;
    margin: 5px 0 !important;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-collapse .dropdown .dropdown-menu {
    padding: 8px 0 !important;
    box-shadow: none !important;
    background: transparent !important;
    border: none !important;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item {
    padding: 2px 0 !important;
    width: max-content !important;
    max-width: 100% !important;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:before {
    left: 0 !important;
    bottom: 2px !important;
  }
  .cid-tUXj5pI4Kc .navbar .navbar-collapse .dropdown .dropdown-menu .dropdown-item:hover:before {
    width: 100% !important;
  }
  .cid-tUXj5pI4Kc .mbr-section-btn {
    max-width: 100%;
    margin-top: 10px;
  }
}
.cid-tUXj5qjhCH {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/solar-wind-art-by-mike-hansne-1800x1350.webp");
}
.cid-tUXj5qjhCH .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUXj5qjhCH .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUXj5qjhCH .mbr-section-title {
  color: #FFFFFF;
  margin-bottom: 20px;
  text-align: center;
}
.cid-tUXj5qjhCH .mbr-section-subtitle {
  color: #FFFFFF;
  margin-bottom: 20px;
}
.cid-tUXj5qjhCH .mbr-text {
  color: #FFFFFF;
}
.cid-tUXj5qjhCH .mbr-section-btn {
  margin-top: 18px;
}
.cid-tV1U3hInSZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-tV1U3hInSZ .mbr-text {
  line-height: 1.5;
  color: #333333;
}
.cid-tV1U3hInSZ .mbr-section-title {
  text-align: left;
  color: #000000;
}
.cid-tUXj5sovlg {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #4fb380;
  overflow: hidden;
}
.cid-tUXj5sovlg .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUXj5sovlg .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUXj5sovlg .mbr-section-title {
  color: #ff9370;
}
.cid-tUXj5sovlg .mbr-section-subtitle {
  color: #303030;
}
.cid-tUXj5sXId5 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #f6f6f6;
}
.cid-tUXj5sXId5 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tUXj5sXId5 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tUXj5sXId5 .cards-row {
  row-gap: 50px;
}
.cid-tUXj5sXId5 .card-wrapper {
  display: flex;
  align-items: flex-start;
  width: 100%;
}
.cid-tUXj5sXId5 .mbr-iconfont {
  font-size: 82px;
  color: #4fb380;
}
.cid-tUXj5sXId5 .card-box {
  padding-left: 28px;
}
.cid-tUXj5sXId5 .card-title {
  color: #303030;
}
.cid-tUXj5sXId5 .card-text {
  color: #303030;
  margin-top: 10px;
}
.cid-tUXj5tDKyo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #4fb380;
}
.cid-tUXj5tDKyo .social-list {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.cid-tUXj5tDKyo .btn-social,
.cid-tUXj5tDKyo .mbr-section-title {
  color: #57468b;
}
.cid-tUXj5tDKyo .soc-item {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  margin: 0 5px;
  background: #c04822;
}
.cid-tUXj5tDKyo .soc-item span {
  font-size: 20px;
  color: #ffffff !important;
  transition: all 0.3s;
}
.cid-tUXj5tDKyo .soc-item:hover {
  background: #ffffff;
}
.cid-tUXj5tDKyo .soc-item:hover span {
  color: #c04822 !important;
}
@media (max-width: 992px) {
  .cid-tUXj5tDKyo .align-left,
  .cid-tUXj5tDKyo .align-right {
    text-align: center;
  }
  .cid-tUXj5tDKyo .social-list {
    justify-content: center;
  }
  .cid-tUXj5tDKyo .mb-0 {
    padding-bottom: 1rem;
  }
}
.cid-tUXj5tDKyo .mbr-text {
  color: #000000;
}
