body {
  font-family: Barlow;
}
.display-1 {
  font-family: 'Barlow-Black';
  font-size: 4.8rem;
  letter-spacing: -1px;
}
.display-1 > .mbr-iconfont {
  font-size: 7.68rem;
}
.display-2 {
  font-family: 'Barlow-Bold';
  font-size: 2.6rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.16rem;
}
.display-4 {
  font-family: 'Barlow-Medium';
  font-size: 0.9rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.44rem;
}
.display-5 {
  font-family: 'Barlow-Bold';
  font-size: 1.4rem;
  letter-spacing: -1px;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.24rem;
}
.display-7 {
  font-family: 'Barlow-SemiBold';
  font-size: 1.1rem;
  line-height: 1.4;
}
.display-7 > .mbr-iconfont {
  font-size: 1.76rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.84rem;
    font-size: calc( 2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.33rem + (4.8 - 2.33) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.08rem;
    font-size: calc( 1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.56rem + (2.6 - 1.56) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.72rem;
    font-size: calc( 0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.965rem + (0.9 - 0.965) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-sm {
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #e5963a !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #767676 !important;
}
.bg-danger {
  background-color: #b1a374 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #149dcc !important;
  border-color: #149dcc !important;
  color: #ffffff !important;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #40c0ec !important;
  border-color: #40c0ec !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
  color: #ffffff !important;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff809f !important;
  border-color: #ff809f !important;
}
.btn-info,
.btn-info:active {
  background-color: #82786e !important;
  border-color: #82786e !important;
  color: #ffffff !important;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #a69e96 !important;
  border-color: #a69e96 !important;
}
.btn-success,
.btn-success:active {
  background-color: #e5963a !important;
  border-color: #e5963a !important;
  color: #ffffff !important;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #eeba7e !important;
  border-color: #eeba7e !important;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #eeba7e !important;
  border-color: #eeba7e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #767676 !important;
  border-color: #767676 !important;
  color: #ffffff !important;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #9c9c9c !important;
  border-color: #9c9c9c !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
  color: #ffffff !important;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ccc3a5 !important;
  border-color: #ccc3a5 !important;
}
.btn-white {
  color: #222222 !important;
}
.btn-white,
.btn-white:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !important;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-black,
.btn-black:active {
  background-color: #222222 !important;
  border-color: #222222 !important;
  color: #ffffff !important;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #484848 !important;
  border-color: #484848 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background: none;
  border-color: #cc0033;
  color: #cc0033;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ffffff;
  background-color: #ff3366;
  border-color: #ff3366;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff3366 !important;
  border-color: #ff3366 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background: none;
  border-color: #a36216;
  color: #a36216;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #ffffff;
  background-color: #e5963a;
  border-color: #e5963a;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #e5963a !important;
  border-color: #e5963a !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background: none;
  border-color: #434343;
  color: #434343;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffffff;
  background-color: #767676;
  border-color: #767676;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #767676 !important;
  border-color: #767676 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background: none;
  border-color: #7a6e45;
  color: #7a6e45;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ffffff;
  background-color: #b1a374;
  border-color: #b1a374;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #b1a374 !important;
  border-color: #b1a374 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #ffffff;
  background-color: #222222;
  border-color: #222222;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #222222 !important;
  border-color: #222222 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #ff3366 !important;
}
.text-success {
  color: #e5963a !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #767676 !important;
}
.text-danger {
  color: #b1a374 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #57c8ef !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #ff99b3 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #f1c694 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #b2aba4 !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #a9a9a9 !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #d6ceb5 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #ffffff !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #000000 !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #767676;
}
.alert-danger {
  background-color: #b1a374;
}
.mbr-section-btn a.btn:not(.btn-form):hover,
.mbr-section-btn a.btn:not(.btn-form):focus {
  box-shadow: none !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fdf6ee;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #b6b6b6;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #dfd9c6;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Barlow-SemiBold';
  font-size: 1.1rem;
  line-height: 1.4;
}
.form-control > .mbr-iconfont {
  font-size: 1.76rem;
}
blockquote {
  border-color: #149dcc;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #149dcc;
  color: #ffffff;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: currentColor;
  border-bottom-color: currentColor;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #149dcc;
  border-bottom-color: #149dcc;
}
.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: #ffffff !important;
  background-color: #149dcc !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: #ff3366 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%23149dcc' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
.cid-sGfOaJ5tVO {
  padding-top: 75px;
  padding-bottom: 45px;
  overflow: hidden;
}
.cid-sGfOaJ5tVO svg {
  position: absolute;
  bottom: 6rem;
  left: 50%;
  transform: translate(-50%) scale(2, 1.6);
}
.cid-sGfOaJ5tVO #e2_shape {
  fill: #ffffff !important;
}
.cid-sGfOaJ5tVO img {
  border-radius: 10px;
  margin: auto;
  box-shadow: 0 10px 55px 5px rgba(255, 102, 140, 0.35);
}
@media (max-width: 576px) {
  .cid-sGfOaJ5tVO img {
    width: 90%!important;
  }
}
.cid-sGfOaJ5tVO H1 {
  color: #ffffff;
  text-align: center;
}
.cid-tdUvqwVacG {
  padding-top: 60px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/modul-1-510x611.png");
}
.cid-tdUvqwVacG .row {
  position: relative;
}
.cid-tdUvqwVacG .container {
  max-width: 1500px;
}
.cid-tdUvqwVacG .container {
  padding-right: 8rem !important;
}
.cid-tdUvqwVacG h4 {
  position: absolute;
  transform: rotate(-270deg);
  transform-origin: bottom right;
  width: fit-content;
  padding: 0;
  margin: 0;
  right: 0rem;
  bottom: 25%;
}
.cid-tdUvqwVacG .content-wrapper {
  max-width: 800px;
}
@media (min-width: 767px) {
  .cid-tdUvqwVacG .container {
    padding: 0 4rem;
  }
}
@media (max-width: 767px) {
  .cid-tdUvqwVacG .container {
    padding-right: 4rem !important;
  }
}
.cid-sGgg4OTDvn {
  padding-top: 30px;
  padding-bottom: 60px;
  background-image: url("../../../assets/images/agriculture-blue-sky-clouds-464321-2000x1079.jpg");
}
.cid-sGgg4OTDvn .carousel-item {
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGgg4OTDvn .carousel-item .media-container-row {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-sGgg4OTDvn .carousel-item .wrap-img {
  text-align: center;
}
.cid-sGgg4OTDvn .carousel-item .wrap-img img {
  max-height: 150px;
  width: auto;
  max-width: 100%;
}
.cid-sGgg4OTDvn .carousel-control {
  transition: all .3s;
  opacity: 1;
  background-color: #444444;
  color: #ffffff;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 26%;
  margin-top: 2rem;
  border-width: 1px;
}
.cid-sGgg4OTDvn .carousel-control.carousel-control-prev {
  left: 29px;
}
.cid-sGgg4OTDvn .carousel-control.carousel-control-prev:hover {
  left: 15px;
}
.cid-sGgg4OTDvn .carousel-control.carousel-control-next {
  right: 29px;
}
.cid-sGgg4OTDvn .carousel-control.carousel-control-next:hover {
  right: 15px;
}
.cid-sGgg4OTDvn .carousel-control .mbr-iconfont {
  font-size: 1rem;
}
.cid-sGgg4OTDvn .carousel-control:hover {
  background-color: #149dcc;
}
@media (max-width: 767px) {
  .cid-sGgg4OTDvn .carousel-control {
    display: none;
  }
  .cid-sGgg4OTDvn .mbr-section-title {
    padding-bottom: 0;
  }
  .cid-sGgg4OTDvn .slider-clients {
    padding: 2rem 1rem;
  }
}
.cid-sGgg4OTDvn .cloneditem-1,
.cid-sGgg4OTDvn .cloneditem-2,
.cid-sGgg4OTDvn .cloneditem-3,
.cid-sGgg4OTDvn .cloneditem-4,
.cid-sGgg4OTDvn .cloneditem-5 {
  display: none;
}
.cid-sGgg4OTDvn .col-lg-15 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  -webkit-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
  position: relative;
  min-height: 1px;
  padding-right: 10px;
  padding-left: 10px;
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sGgg4OTDvn .col-lg-15 {
    -ms-flex: 0 0 20%;
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    width: 20%;
  }
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.active.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(50%, 0, 0);
    transform: translate3d(50%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.active.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides2 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides2 .cloneditem-1,
  .cid-sGgg4OTDvn .carousel-inner.slides2 .cloneditem-2,
  .cid-sGgg4OTDvn .carousel-inner.slides2 .cloneditem-3 {
    display: block;
  }
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.active.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(33.333333%, 0, 0);
    transform: translate3d(33.333333%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.active.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-33.333333%, 0, 0);
    transform: translate3d(-33.333333%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides3 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides3 .cloneditem-1,
  .cid-sGgg4OTDvn .carousel-inner.slides3 .cloneditem-2,
  .cid-sGgg4OTDvn .carousel-inner.slides3 .cloneditem-3 {
    display: block;
  }
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.active.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(25%, 0, 0);
    transform: translate3d(25%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.active.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-25%, 0, 0);
    transform: translate3d(-25%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides4 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides4 .cloneditem-1,
  .cid-sGgg4OTDvn .carousel-inner.slides4 .cloneditem-2,
  .cid-sGgg4OTDvn .carousel-inner.slides4 .cloneditem-3 {
    display: block;
  }
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.active.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(20%, 0, 0);
    transform: translate3d(20%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.active.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-20%, 0, 0);
    transform: translate3d(-20%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides5 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides5 .cloneditem-1,
  .cid-sGgg4OTDvn .carousel-inner.slides5 .cloneditem-2,
  .cid-sGgg4OTDvn .carousel-inner.slides5 .cloneditem-3,
  .cid-sGgg4OTDvn .carousel-inner.slides5 .cloneditem-4 {
    display: block;
  }
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.active.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.carousel-item-next {
    left: 0;
    -webkit-transform: translate3d(16.666667%, 0, 0);
    transform: translate3d(16.666667%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.active.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.carousel-item-prev {
    left: 0;
    -webkit-transform: translate3d(-16.666667%, 0, 0);
    transform: translate3d(-16.666667%, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.carousel-item-left,
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.carousel-item-prev.carousel-item-right,
  .cid-sGgg4OTDvn .carousel-inner.slides6 > .carousel-item.active {
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .cid-sGgg4OTDvn .carousel-inner.slides6 .cloneditem-1,
  .cid-sGgg4OTDvn .carousel-inner.slides6 .cloneditem-2,
  .cid-sGgg4OTDvn .carousel-inner.slides6 .cloneditem-3,
  .cid-sGgg4OTDvn .carousel-inner.slides6 .cloneditem-4,
  .cid-sGgg4OTDvn .carousel-inner.slides6 .cloneditem-5 {
    display: block;
  }
}
.cid-sGgg4OTDvn .mbr-section-title {
  margin: 0;
}
.cid-sGgg4OTDvn .underline {
  margin-top: -0.5rem;
  margin-bottom: -0.5rem;
}
.cid-sGgg4OTDvn .underline .line {
  width: 3rem;
  height: 2px;
  background: #ffffff;
  display: inline-block;
}
.cid-sGgg4OTDvn .slider-clients {
  background: rgba(204, 204, 204, 0.8) none repeat scroll 0 0;
  outline: 1px solid rgba(0, 0, 0, 0.2);
  outline-offset: -15px;
  padding: 65px 50px;
  position: relative;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGgg4OTDvn .slider-clients {
    outline: 15px solid rgba(204, 204, 204, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.2);
  }
  .cid-sGgg4OTDvn .carousel-control-prev {
    left: 15px !important;
  }
  .cid-sGgg4OTDvn .carousel-control-prev:hover {
    left: 0 !important;
  }
  .cid-sGgg4OTDvn .carousel-control-next {
    right: 15px !important;
  }
  .cid-sGgg4OTDvn .carousel-control-next:hover {
    right: 0 !important;
  }
}
.cid-sGhh01tUcJ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-image: url("../../../assets/images/agriculture-blue-sky-clouds-464321a-2000x1079.jpeg");
}
.cid-sGhh01tUcJ .mbr-overlay {
  background-color: #d5d5d5;
  opacity: 0.7;
}
.cid-sGhh01tUcJ .form-control,
.cid-sGhh01tUcJ .field-input {
  padding: 0.5rem;
  background-color: #ffffff;
  border-color: #cccccc;
  color: #efeeee;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGhh01tUcJ .form-control input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .form-control textarea::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input textarea::-webkit-input-placeholder {
  color: #7f1933;
}
.cid-sGhh01tUcJ .form-control input:-moz-placeholder,
.cid-sGhh01tUcJ .field-input input:-moz-placeholder,
.cid-sGhh01tUcJ .form-control textarea:-moz-placeholder,
.cid-sGhh01tUcJ .field-input textarea:-moz-placeholder {
  color: #7f1933;
}
.cid-sGhh01tUcJ .form-control:hover,
.cid-sGhh01tUcJ .field-input:hover,
.cid-sGhh01tUcJ .form-control:focus,
.cid-sGhh01tUcJ .field-input:focus {
  background-color: #efefef;
  border-color: #0f7699;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sGhh01tUcJ .form-control:hover input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input:hover input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .form-control:focus input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input:focus input::-webkit-input-placeholder,
.cid-sGhh01tUcJ .form-control:hover textarea::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input:hover textarea::-webkit-input-placeholder,
.cid-sGhh01tUcJ .form-control:focus textarea::-webkit-input-placeholder,
.cid-sGhh01tUcJ .field-input:focus textarea::-webkit-input-placeholder {
  color: #ffffff;
}
.cid-sGhh01tUcJ .form-control:hover input:-moz-placeholder,
.cid-sGhh01tUcJ .field-input:hover input:-moz-placeholder,
.cid-sGhh01tUcJ .form-control:focus input:-moz-placeholder,
.cid-sGhh01tUcJ .field-input:focus input:-moz-placeholder,
.cid-sGhh01tUcJ .form-control:hover textarea:-moz-placeholder,
.cid-sGhh01tUcJ .field-input:hover textarea:-moz-placeholder,
.cid-sGhh01tUcJ .form-control:focus textarea:-moz-placeholder,
.cid-sGhh01tUcJ .field-input:focus textarea:-moz-placeholder {
  color: #ffffff;
}
.cid-sGhh01tUcJ .jq-number__spin:hover,
.cid-sGhh01tUcJ .jq-number__spin:focus {
  background-color: #efefef;
  border-color: #0f7699;
  color: #000000;
  box-shadow: none;
  outline: none;
}
.cid-sGhh01tUcJ .jq-number__spin {
  background-color: #ffffff;
  border-color: #cccccc;
  color: #efeeee;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-sGhh01tUcJ .jq-selectbox li,
.cid-sGhh01tUcJ .jq-selectbox li {
  background-color: #ffffff;
  color: #000000;
}
.cid-sGhh01tUcJ .jq-selectbox li:hover,
.cid-sGhh01tUcJ .jq-selectbox li.selected {
  background-color: #efefef;
  color: #000000;
}
.cid-sGhh01tUcJ .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-sGhh01tUcJ .jq-number__spin.minus:hover:after,
.cid-sGhh01tUcJ .jq-number__spin.plus:hover:after {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
}
.cid-sGhh01tUcJ .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-sGhh01tUcJ .jq-number__spin.minus:after,
.cid-sGhh01tUcJ .jq-number__spin.plus:after {
  border-top-color: #efefef;
  border-bottom-color: #efefef;
}
.cid-sGhh01tUcJ input::-webkit-clear-button {
  display: none;
}
.cid-sGhh01tUcJ input::-webkit-inner-spin-button {
  display: none;
}
.cid-sGhh01tUcJ input::-webkit-outer-spin-button {
  display: none;
}
.cid-sGhh01tUcJ input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-sGhh01tUcJ H4 {
  color: #465052;
}
.cid-sGfQwomWwW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-sGfQwomWwW .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-sGfQwomWwW .icon2 {
  color: #f9b03e;
}
.cid-sGfQwomWwW .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-sGfQwomWwW p {
  font-weight: 400;
}
.cid-sGfQwomWwW .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-sGfQwomWwW .line2 {
  background: #f7ed4a;
}
.cid-sGfQwomWwW .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #0f7699;
}
.cid-sGfQwomWwW .card-wrapper:hover .link-ico {
  background-color: #ed4266;
  border-color: #ed4266;
  color: white;
}
.cid-sGfQwomWwW .card2 {
  background: #0f7699;
}
.cid-sGfQwomWwW .card-title,
.cid-sGfQwomWwW .card-ico,
.cid-sGfQwomWwW .line-wrap {
  text-align: center;
}
.cid-sGfQwomWwW .mbr-text,
.cid-sGfQwomWwW .card-link {
  text-align: center;
}
.cid-sGfRnM3eIo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .content {
    text-align: center;
  }
  .cid-sGfRnM3eIo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sGfRnM3eIo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sGfRnM3eIo .media-wrap img {
  height: 6rem;
}
.cid-sGfRnM3eIo .mbr-text {
  color: #8d97ad;
}
.cid-sGfRnM3eIo .p-title {
  font-size: 17px;
}
.cid-sGfRnM3eIo .p-title span {
  color: #111111;
}
.cid-sGfRnM3eIo .title-card {
  font-size: 1.3rem;
}
.cid-sGfRnM3eIo .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGfRnM3eIo .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sGfRnM3eIo .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sGfRnM3eIo .footer-menu__item {
  font-family: Barlow-Italic;
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sGfRnM3eIo .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sGfRnM3eIo .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGfRnM3eIo .copyright img {
  margin-right: 10px;
}
.cid-sGfRnM3eIo .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sGfRnM3eIo .icon-transition span:hover {
  background-color: #e4d295;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sGfRnM3eIo .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGfRnM3eIo SPAN {
  color: #ffffff;
}
.cid-sGh4of4dOq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .nav-item:focus,
.cid-sGh4of4dOq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sGh4of4dOq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sGh4of4dOq .nav-item {
    position: relative;
  }
  .cid-sGh4of4dOq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #149dcc, #ff3366);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sGh4of4dOq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sGh4of4dOq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGh4of4dOq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGh4of4dOq .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sGh4of4dOq .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e4d295, #ffffff);
}
.cid-sGh4of4dOq .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh4of4dOq .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sGh4of4dOq .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sGh4of4dOq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGh4of4dOq .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.show,
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGh4of4dOq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGh4of4dOq .navbar.collapsed .right-menu,
.cid-sGh4of4dOq .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar .navbar-collapse.show,
  .cid-sGh4of4dOq .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh4of4dOq .navbar .navbar-collapse.show .brand-container,
  .cid-sGh4of4dOq .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sGh4of4dOq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGh4of4dOq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGh4of4dOq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGh4of4dOq .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sGh4of4dOq .navbar .right-menu,
  .cid-sGh4of4dOq .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sGh4of4dOq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGh4of4dOq .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh4of4dOq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGh4of4dOq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGh4of4dOq .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGh4of4dOq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGh4of4dOq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGh4of4dOq .dropdown-item.active,
.cid-sGh4of4dOq .dropdown-item:active {
  background-color: transparent;
}
.cid-sGh4of4dOq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGh4of4dOq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGh4of4dOq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGh4of4dOq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGh4of4dOq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGh4of4dOq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGh4of4dOq ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sGh4of4dOq .navbar-buttons {
  margin-left: auto;
}
.cid-sGh4of4dOq button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh4of4dOq .navbar-dropdown {
  position: fixed;
}
.cid-sGh4of4dOq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGh4of4dOq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGh4of4dOq .right-menu,
.cid-sGh4of4dOq .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sGh4of4dOq .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh4of4dOq .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh4of4dOq .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sGh4of4dOq .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sGh4of4dOq .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sGh4of4dOq .card-wrapper {
  z-index: 3;
}
.cid-sGh4of4dOq .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGh4of4dOq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGh7Boa8vl .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh7Boa8vl .nav-item:focus,
.cid-sGh7Boa8vl .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sGh7Boa8vl .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sGh7Boa8vl .nav-item {
    position: relative;
  }
  .cid-sGh7Boa8vl .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #149dcc, #ff3366);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sGh7Boa8vl .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sGh7Boa8vl .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGh7Boa8vl .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh7Boa8vl .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGh7Boa8vl .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGh7Boa8vl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGh7Boa8vl .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh7Boa8vl .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGh7Boa8vl .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGh7Boa8vl .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sGh7Boa8vl .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e4d295, #ffffff);
}
.cid-sGh7Boa8vl .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh7Boa8vl .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sGh7Boa8vl .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sGh7Boa8vl .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sGh7Boa8vl .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGh7Boa8vl .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGh7Boa8vl .navbar.collapsed .navbar-collapse.show,
.cid-sGh7Boa8vl .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh7Boa8vl .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sGh7Boa8vl .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sGh7Boa8vl .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGh7Boa8vl .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGh7Boa8vl .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGh7Boa8vl .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGh7Boa8vl .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGh7Boa8vl .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh7Boa8vl .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGh7Boa8vl .navbar.collapsed .right-menu,
.cid-sGh7Boa8vl .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sGh7Boa8vl .navbar .navbar-collapse.show,
  .cid-sGh7Boa8vl .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh7Boa8vl .navbar .navbar-collapse.show .brand-container,
  .cid-sGh7Boa8vl .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sGh7Boa8vl .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGh7Boa8vl .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGh7Boa8vl .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGh7Boa8vl .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGh7Boa8vl .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGh7Boa8vl .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGh7Boa8vl .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGh7Boa8vl .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh7Boa8vl .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sGh7Boa8vl .navbar .right-menu,
  .cid-sGh7Boa8vl .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sGh7Boa8vl .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGh7Boa8vl .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh7Boa8vl .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGh7Boa8vl .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGh7Boa8vl .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGh7Boa8vl .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGh7Boa8vl .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGh7Boa8vl .dropdown-item.active,
.cid-sGh7Boa8vl .dropdown-item:active {
  background-color: transparent;
}
.cid-sGh7Boa8vl .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGh7Boa8vl .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGh7Boa8vl .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGh7Boa8vl .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGh7Boa8vl .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGh7Boa8vl .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGh7Boa8vl ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sGh7Boa8vl ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sGh7Boa8vl .navbar-buttons {
  margin-left: auto;
}
.cid-sGh7Boa8vl button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGh7Boa8vl button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGh7Boa8vl button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGh7Boa8vl button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh7Boa8vl button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh7Boa8vl button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGh7Boa8vl nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh7Boa8vl nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sGh7Boa8vl nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sGh7Boa8vl nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh7Boa8vl .navbar-dropdown {
  position: fixed;
}
.cid-sGh7Boa8vl a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGh7Boa8vl .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGh7Boa8vl .right-menu,
.cid-sGh7Boa8vl .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sGh7Boa8vl .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh7Boa8vl .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh7Boa8vl .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sGh7Boa8vl .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sGh7Boa8vl .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sGh7Boa8vl .card-wrapper {
  z-index: 3;
}
.cid-sGh7Boa8vl .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sGh7Boa8vl .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGh7Boa8vl .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGgITE02TW {
  padding-top: 120px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-sGgITE02TW .mbr-section-title {
  margin-bottom: 0;
}
.cid-sGgITE02TW .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-sGgITE02TW .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sGgITE02TW .mbr-iconfont:hover {
  color: #e96188;
}
.cid-sGgITE02TW .image-wrap {
  position: relative;
}
.cid-sGgITE02TW .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sGgITE02TW .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sGgITE02TW .card-wrap {
  margin-bottom: 3rem;
}
.cid-sGgITE02TW .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-sGgITE02TW .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-sGgITE02TW .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sGgITE02TW .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sGgITE02TW .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sGgITE02TW .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sGgITE02TW .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sGgITE02TW .mbr-role {
  color: #e96188;
}
.cid-sGgITE02TW .mbr-text {
  color: #767676;
}
.cid-sGgITHWpzD {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-sGgITHWpzD .mbr-section-title {
  margin-bottom: 0;
}
.cid-sGgITHWpzD .mbr-iconfont {
  color: #ffffff;
  font-size: 1rem;
}
.cid-sGgITHWpzD .mbr-iconfont:before {
  padding: .5rem;
  border: 1px solid;
  border-radius: 100px;
}
.cid-sGgITHWpzD .mbr-iconfont:hover {
  color: #e96188;
}
.cid-sGgITHWpzD .image-wrap {
  position: relative;
}
.cid-sGgITHWpzD .image-wrap img {
  width: 100%;
  z-index: 0;
}
.cid-sGgITHWpzD .mbr-section-subtitle {
  line-height: 1.5;
  color: #767676;
}
.cid-sGgITHWpzD .card-wrap {
  margin-bottom: 3rem;
}
.cid-sGgITHWpzD .card-wrap:hover .social-media {
  transition-delay: 0.3s;
  opacity: 1;
}
.cid-sGgITHWpzD .card-wrap:hover .img-overlay {
  opacity: 1;
}
.cid-sGgITHWpzD .social-media {
  bottom: 5%;
  transition-delay: 0s;
  list-style-type: none;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  z-index: 1;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  -moz-transition: opacity 0.2s ease-in-out;
  -o-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.cid-sGgITHWpzD .social-media ul {
  margin: 0;
  padding: 0;
}
.cid-sGgITHWpzD .social-media ul li {
  margin: .1rem;
  display: inline-block;
}
.cid-sGgITHWpzD .img-overlay {
  background: linear-gradient(transparent, #232323);
  pointer-events: none;
  position: absolute;
  height: 100.05%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  transition-delay: 0s;
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.cid-sGgITHWpzD .builderCard .img-overlay {
  border-bottom-left-radius: 5rem;
}
.cid-sGgITHWpzD .mbr-role {
  color: #e96188;
}
.cid-sGgITHWpzD .mbr-text {
  color: #767676;
}
.cid-sGfQwomWwW {
  padding-top: 30px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/background2.jpg");
}
.cid-sGfQwomWwW .card-icon {
  font-size: 56px;
  color: #ed4266;
  transition: color 0.3s;
}
.cid-sGfQwomWwW .icon2 {
  color: #f9b03e;
}
.cid-sGfQwomWwW .card-title {
  font-weight: 600;
  letter-spacing: 1px;
}
.cid-sGfQwomWwW p {
  font-weight: 400;
}
.cid-sGfQwomWwW .line {
  width: 35px;
  height: 3px;
  display: inline-block;
  background: #ed4266;
  margin-bottom: 1.5rem;
  transition: background 0.3s;
}
.cid-sGfQwomWwW .line2 {
  background: #f7ed4a;
}
.cid-sGfQwomWwW .card-wrapper {
  padding: 2.5rem 2rem;
  transition: background 0.3s;
  background: #0f7699;
}
.cid-sGfQwomWwW .card-wrapper:hover .link-ico {
  background-color: #ed4266;
  border-color: #ed4266;
  color: white;
}
.cid-sGfQwomWwW .card2 {
  background: #0f7699;
}
.cid-sGfQwomWwW .card-title,
.cid-sGfQwomWwW .card-ico,
.cid-sGfQwomWwW .line-wrap {
  text-align: center;
}
.cid-sGfQwomWwW .mbr-text,
.cid-sGfQwomWwW .card-link {
  text-align: center;
}
.cid-sGfRnM3eIo {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #073b4c;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .content {
    text-align: center;
  }
  .cid-sGfRnM3eIo .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-sGfRnM3eIo .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-sGfRnM3eIo .media-wrap img {
  height: 6rem;
}
.cid-sGfRnM3eIo .mbr-text {
  color: #8d97ad;
}
.cid-sGfRnM3eIo .p-title {
  font-size: 17px;
}
.cid-sGfRnM3eIo .p-title span {
  color: #111111;
}
.cid-sGfRnM3eIo .title-card {
  font-size: 1.3rem;
}
.cid-sGfRnM3eIo .social-media ul {
  margin: 0;
  padding: 0;
  margin-bottom: 8px;
}
.cid-sGfRnM3eIo .social-media ul li {
  margin-right: .5rem;
  display: inline-block;
  margin-bottom: .5rem;
}
.cid-sGfRnM3eIo .footer-menu {
  margin-bottom: 0;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
}
.cid-sGfRnM3eIo .footer-menu__item {
  font-size: 18px;
  padding-right: 1.5rem;
}
.cid-sGfRnM3eIo .footer-menu__item:last-child {
  padding-right: 0;
}
.cid-sGfRnM3eIo .copyright {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
.cid-sGfRnM3eIo .copyright img {
  margin-right: 10px;
}
.cid-sGfRnM3eIo .icon-transition span {
  color: #ffffff;
  display: flex;
  padding: 1rem;
  border-radius: 50%;
  background-color: #8d97ad;
  transition: all 0.3s ease-out 0s;
  font-size: 14px;
}
.cid-sGfRnM3eIo .icon-transition span:hover {
  background-color: #e4d295;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-sGfRnM3eIo .footer-lower hr {
  margin: 1rem 0;
  border-color: #efefef;
}
@media (max-width: 767px) {
  .cid-sGfRnM3eIo .footer-menu {
    -webkit-justify-content: center;
    justify-content: center;
  }
}
.cid-sGfRnM3eIo SPAN {
  color: #ffffff;
}
.cid-sGh4of4dOq .dropdown-item:before {
  font-family: MobiriseIcons !important;
  content: '\e966';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .nav-item:focus,
.cid-sGh4of4dOq .nav-link:focus {
  outline: none;
}
@media (min-width: 992px) {
  .cid-sGh4of4dOq .dropdown-item:hover:before {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    width: 16px;
  }
  .cid-sGh4of4dOq .nav-item {
    position: relative;
  }
  .cid-sGh4of4dOq .nav-item .nav-link::before {
    position: absolute;
    content: '';
    width: 0;
    height: 3px;
    bottom: -0.5rem;
    left: 50%;
    background: linear-gradient(90deg, #149dcc, #ff3366);
    transition: width 200ms linear, left 200ms linear;
  }
  .cid-sGh4of4dOq .nav-item.open .nav-link::before {
    bottom: .2rem;
    width: 80% !important;
    left: 10% !important;
  }
  .cid-sGh4of4dOq .nav-item .nav-link:hover::before {
    width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 2.5385em 0.235em 3.5385em;
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-sGh4of4dOq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  -moz-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-sGh4of4dOq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sGh4of4dOq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sGh4of4dOq .navbar {
  min-height: 77px;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
  display: -webkit-flex;
  -webkit-align-items: center;
  background: none;
}
.cid-sGh4of4dOq .navbar .mbr-overlay {
  z-index: -1;
  transition: all .3s;
  background: #ffffff;
  background: linear-gradient(#e4d295, #ffffff);
}
.cid-sGh4of4dOq .navbar.opened .mbr-overlay {
  transition: all .3s;
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh4of4dOq .navbar .dropdown-item {
  padding: .25rem 1.5rem;
}
.cid-sGh4of4dOq .navbar .navbar-collapse {
  width: 100%;
  -webkit-flex-basis: auto;
  flex-basis: auto;
  -webkit-justify-content: center;
  justify-content: center;
  z-index: 1;
  padding: .5rem 1rem;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar .navbar-collapse {
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
  }
}
.cid-sGh4of4dOq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
.cid-sGh4of4dOq .navbar.collapsed.opened .navbar-collapse {
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.show,
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.collapsing {
  transition: all .3s linear;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.show .brand-container,
.cid-sGh4of4dOq .navbar.collapsed .navbar-collapse.collapsing .brand-container {
  -webkit-order: -1;
  order: -1;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu {
  background: transparent !important;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: .25rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 55%;
}
.cid-sGh4of4dOq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sGh4of4dOq .navbar.collapsed .navbar-buttons {
  margin: 0;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-direction: column;
  flex-direction: column;
}
.cid-sGh4of4dOq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: .25rem 1.5rem;
  text-align: center;
}
.cid-sGh4of4dOq .navbar.collapsed .right-menu,
.cid-sGh4of4dOq .navbar.collapsed .left-menu {
  -webkit-flex-basis: auto;
  flex-basis: auto;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar .navbar-collapse.show,
  .cid-sGh4of4dOq .navbar .navbar-collapse.collapsing {
    transition: all .3s linear;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh4of4dOq .navbar .navbar-collapse.show .brand-container,
  .cid-sGh4of4dOq .navbar .navbar-collapse.collapsing .brand-container {
    -webkit-order: -1;
    order: -1;
  }
  .cid-sGh4of4dOq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu {
    background: transparent !important;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
  }
  .cid-sGh4of4dOq .navbar .navbar-logo img {
    height: 3.8rem !important;
  }
  .cid-sGh4of4dOq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sGh4of4dOq .navbar .navbar-buttons {
    margin: 0;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
  .cid-sGh4of4dOq .navbar .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
  }
  .cid-sGh4of4dOq .navbar .right-menu,
  .cid-sGh4of4dOq .navbar .left-menu {
    -webkit-flex-basis: auto;
    flex-basis: auto;
  }
}
.cid-sGh4of4dOq .navbar.navbar-short {
  min-height: 60px;
}
.cid-sGh4of4dOq .navbar.navbar-short .mbr-overlay {
  background: #ffffff !important;
  background: linear-gradient(#e4d295, #ffffff) !important;
}
.cid-sGh4of4dOq .navbar.navbar-short .navbar-logo img {
  height: 3rem !important;
}
.cid-sGh4of4dOq .navbar.navbar-short .navbar-brand {
  padding: 0;
}
.cid-sGh4of4dOq .navbar-brand {
  -webkit-align-items: center;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all .3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sGh4of4dOq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sGh4of4dOq .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sGh4of4dOq .dropdown-item.active,
.cid-sGh4of4dOq .dropdown-item:active {
  background-color: transparent;
}
.cid-sGh4of4dOq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sGh4of4dOq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sGh4of4dOq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sGh4of4dOq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sGh4of4dOq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sGh4of4dOq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sGh4of4dOq ul.navbar-nav {
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq ul.navbar-nav {
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
.cid-sGh4of4dOq .navbar-buttons {
  margin-left: auto;
}
.cid-sGh4of4dOq button.navbar-toggler {
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  margin: 1rem;
  -webkit-align-self: center;
  align-self: center;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-sGh4of4dOq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
  width: 20px;
  right: -2px;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
  width: 20px;
  left: -2px;
}
.cid-sGh4of4dOq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-sGh4of4dOq .navbar-dropdown {
  position: fixed;
}
.cid-sGh4of4dOq a.nav-link {
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sGh4of4dOq .mbr-iconfont {
  font-size: 1.5rem;
  padding-right: .5rem;
}
.cid-sGh4of4dOq .right-menu,
.cid-sGh4of4dOq .left-menu {
  -webkit-flex-basis: 50%;
  flex-basis: 50%;
}
.cid-sGh4of4dOq .left-menu .navbar-nav {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh4of4dOq .left-menu .navbar-nav ul {
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.cid-sGh4of4dOq .brand-container {
  padding: 0 2rem;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
}
.cid-sGh4of4dOq .menu-top {
  text-align: center;
  width: 100%;
  background-color: #fe525b;
  padding: .5rem 0;
}
.cid-sGh4of4dOq .full-link {
  width: 100%;
  font-size: 0;
  z-index: 2;
}
.cid-sGh4of4dOq .card-wrapper {
  z-index: 3;
}
.cid-sGh4of4dOq .popup-btn.card-wrapper {
  z-index: 1 !important;
}
@media (max-width: 991px) {
  .cid-sGh4of4dOq .navbar-collapse {
    padding-top: 0;
  }
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sGh4of4dOq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t8uk3lbtoT .container {
  max-width: 1500px;
}
.cid-t8uk3lbtoT img {
  width: 100%;
}
.cid-t8uk3lbtoT h2 {
  padding: 0;
  margin: 0;
}
.cid-t8uk3lbtoT .text-wrap {
  max-width: 500px;
  margin: auto;
}
.cid-t8uk3lbtoT .number {
  border-top: 2px solid currentColor;
  padding-top: 0.4rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
  width: fit-content;
}
.cid-t8uk3lbtoT .img-col {
  position: relative;
}
.cid-t8uk3lbtoT .img2 {
  position: absolute;
  left: -6rem;
  top: 4rem;
  width: 280px;
}
@media (max-width: 1200px) {
  .cid-t8uk3lbtoT .img2 {
    left: 1rem;
  }
}
@media (max-width: 992px) {
  .cid-t8uk3lbtoT .img-col {
    margin-bottom: 3rem;
  }
  .cid-t8uk3lbtoT .text-wrap {
    max-width: 550px;
  }
}
@media (max-width: 767px) {
  .cid-t8uk3lbtoT .img2 {
    width: 50%;
    top: 2rem;
  }
  .cid-t8uk3lbtoT .number {
    margin: auto;
  }
}
