body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.375rem;
}
.display-5 {
  font-family: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.88rem;
    font-size: calc( 1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.0350000000000001rem + (1.1 - 1.0350000000000001) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 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: #6592e6 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #6592e6 !important;
  border-color: #6592e6 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2260d2 !important;
  border-color: #2260d2 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #6592e6;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2260d2 !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: #6592e6 !important;
  border-color: #6592e6 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !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: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !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: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !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: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !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: #ff9966 !important;
  border-color: #ff9966 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !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: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #6592e6 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #205ac5 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !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: #6592e6;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #6592e6;
  border-color: #6592e6;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #6592e6;
}
.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: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.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: #ffffff;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.375rem;
}
.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: #6592e6 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.375rem;
}
blockquote {
  border-color: #6592e6;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #6592e6;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #6592e6;
}
.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: #6592e6;
  border-bottom-color: #6592e6;
}
.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: #6592e6 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%236592e6' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-tHP1bA3jBY {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHP1bA3jBY nav.navbar {
  position: fixed;
}
.cid-tHP1bA3jBY .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-tHP1bA3jBY .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHP1bA3jBY .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHP1bA3jBY .dropdown-item:hover,
.cid-tHP1bA3jBY .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tHP1bA3jBY .dropdown-item:hover span {
  color: white;
}
.cid-tHP1bA3jBY .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHP1bA3jBY .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHP1bA3jBY .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tHP1bA3jBY .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHP1bA3jBY .nav-link {
  position: relative;
}
.cid-tHP1bA3jBY .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHP1bA3jBY .container {
    flex-wrap: wrap;
  }
}
.cid-tHP1bA3jBY .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHP1bA3jBY .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tHP1bA3jBY .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHP1bA3jBY .dropdown-menu,
.cid-tHP1bA3jBY .navbar.opened {
  background: #ffffff !important;
}
.cid-tHP1bA3jBY .nav-item:focus,
.cid-tHP1bA3jBY .nav-link:focus {
  outline: none;
}
.cid-tHP1bA3jBY .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHP1bA3jBY .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHP1bA3jBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHP1bA3jBY .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHP1bA3jBY .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHP1bA3jBY .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHP1bA3jBY .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tHP1bA3jBY .navbar.opened {
  transition: all 0.3s;
}
.cid-tHP1bA3jBY .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHP1bA3jBY .navbar .navbar-logo img {
  width: auto;
}
.cid-tHP1bA3jBY .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHP1bA3jBY .navbar.collapsed {
  justify-content: center;
}
.cid-tHP1bA3jBY .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHP1bA3jBY .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHP1bA3jBY .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tHP1bA3jBY .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHP1bA3jBY .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHP1bA3jBY .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-tHP1bA3jBY .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHP1bA3jBY .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHP1bA3jBY .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHP1bA3jBY .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHP1bA3jBY .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHP1bA3jBY .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHP1bA3jBY .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHP1bA3jBY .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-tHP1bA3jBY .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHP1bA3jBY .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHP1bA3jBY .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHP1bA3jBY .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHP1bA3jBY .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHP1bA3jBY .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tHP1bA3jBY .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tHP1bA3jBY .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHP1bA3jBY .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHP1bA3jBY .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHP1bA3jBY .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHP1bA3jBY .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHP1bA3jBY .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHP1bA3jBY .dropdown-item.active,
.cid-tHP1bA3jBY .dropdown-item:active {
  background-color: transparent;
}
.cid-tHP1bA3jBY .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHP1bA3jBY .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHP1bA3jBY .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHP1bA3jBY .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHP1bA3jBY .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHP1bA3jBY .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHP1bA3jBY ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHP1bA3jBY .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHP1bA3jBY button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tHP1bA3jBY button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tHP1bA3jBY button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHP1bA3jBY button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHP1bA3jBY button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHP1bA3jBY button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHP1bA3jBY nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHP1bA3jBY nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHP1bA3jBY nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHP1bA3jBY nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHP1bA3jBY .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tHP1bA3jBY a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHP1bA3jBY .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-tHP1bA3jBY .navbar {
    height: 70px;
  }
  .cid-tHP1bA3jBY .navbar.opened {
    height: auto;
  }
  .cid-tHP1bA3jBY .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHP20RisPl {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/detalhe-da-planta-de-arroz-ao-por-do-sol-em-valencia-com-a-plantacao-fora-de-foco-graos-de-arroz-na-semente-da-planta-1920x1191.jpg");
}
.cid-tHP20RisPl .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHP20RisPl .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHP20RisPl .mbr-section-title {
  color: #ffffff;
}
.cid-tHP20RisPl .mbr-text,
.cid-tHP20RisPl .mbr-section-btn {
  color: #ffffff;
}
.cid-tHP2yzUpQz {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHP2yzUpQz img,
.cid-tHP2yzUpQz .item-img {
  width: 100%;
}
.cid-tHP2yzUpQz .item:focus,
.cid-tHP2yzUpQz span:focus {
  outline: none;
}
.cid-tHP2yzUpQz .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tHP2yzUpQz .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tHP2yzUpQz .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tHP2yzUpQz .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tHP2yzUpQz .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tHP2yzUpQz .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tHP2yzUpQz .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tHP2yzUpQz .mbr-section-title {
  color: #232323;
}
.cid-tHP2yzUpQz .mbr-text,
.cid-tHP2yzUpQz .mbr-section-btn {
  text-align: left;
}
.cid-tHP2yzUpQz .item-title {
  text-align: left;
}
.cid-tHP2yzUpQz .item-subtitle {
  text-align: left;
}
.cid-tHP7uo1UZf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tHP7uo1UZf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHP7uo1UZf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHP85aDxGO {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHP85aDxGO img {
  width: 120px;
  margin: auto;
}
.cid-tHP85aDxGO .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHP85aDxGO .card {
    max-width: 12.5%;
  }
}
.cid-tHP8yEOqeV {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHP8yEOqeV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHP8yEOqeV .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tHP8yEOqeV textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tHP8yEOqeV .form-row {
    flex-direction: column;
  }
}
.cid-tHP8yEOqeV h4 {
  margin-bottom: 2rem;
}
.cid-tHP8yEOqeV .form-control,
.cid-tHP8yEOqeV .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tHP8yEOqeV .form-control,
.cid-tHP8yEOqeV .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHP8yEOqeV .form-control::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input::-webkit-input-placeholder,
.cid-tHP8yEOqeV .form-control::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHP8yEOqeV .form-control:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:-moz-placeholder,
.cid-tHP8yEOqeV .form-control:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHP8yEOqeV .form-control:hover,
.cid-tHP8yEOqeV .field-input:hover,
.cid-tHP8yEOqeV .form-control:focus,
.cid-tHP8yEOqeV .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-tHP8yEOqeV .form-control:hover::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input:hover::-webkit-input-placeholder,
.cid-tHP8yEOqeV .form-control:focus::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input:focus::-webkit-input-placeholder,
.cid-tHP8yEOqeV .form-control:hover::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input:hover::-webkit-input-placeholder,
.cid-tHP8yEOqeV .form-control:focus::-webkit-input-placeholder,
.cid-tHP8yEOqeV .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHP8yEOqeV .form-control:hover:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:hover:-moz-placeholder,
.cid-tHP8yEOqeV .form-control:focus:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:focus:-moz-placeholder,
.cid-tHP8yEOqeV .form-control:hover:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:hover:-moz-placeholder,
.cid-tHP8yEOqeV .form-control:focus:-moz-placeholder,
.cid-tHP8yEOqeV .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHP8yEOqeV .jq-number__spin:hover,
.cid-tHP8yEOqeV .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tHP8yEOqeV .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHP8yEOqeV .jq-selectbox li,
.cid-tHP8yEOqeV .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHP8yEOqeV .jq-selectbox li:hover,
.cid-tHP8yEOqeV .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHP8yEOqeV .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHP8yEOqeV .jq-number__spin.minus:hover:after,
.cid-tHP8yEOqeV .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHP8yEOqeV .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHP8yEOqeV .jq-number__spin.minus:after,
.cid-tHP8yEOqeV .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHP8yEOqeV input::-webkit-clear-button {
  display: none;
}
.cid-tHP8yEOqeV input::-webkit-inner-spin-button {
  display: none;
}
.cid-tHP8yEOqeV input::-webkit-outer-spin-button {
  display: none;
}
.cid-tHP8yEOqeV input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tHP8yEOqeV H4 {
  color: #103178;
}
.cid-tHP979dlLL {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHP979dlLL nav.navbar {
  position: fixed;
}
.cid-tHP979dlLL .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-tHP979dlLL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHP979dlLL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHP979dlLL .dropdown-item:hover,
.cid-tHP979dlLL .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tHP979dlLL .dropdown-item:hover span {
  color: white;
}
.cid-tHP979dlLL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHP979dlLL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHP979dlLL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tHP979dlLL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHP979dlLL .nav-link {
  position: relative;
}
.cid-tHP979dlLL .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHP979dlLL .container {
    flex-wrap: wrap;
  }
}
.cid-tHP979dlLL .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHP979dlLL .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tHP979dlLL .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHP979dlLL .dropdown-menu,
.cid-tHP979dlLL .navbar.opened {
  background: #ffffff !important;
}
.cid-tHP979dlLL .nav-item:focus,
.cid-tHP979dlLL .nav-link:focus {
  outline: none;
}
.cid-tHP979dlLL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHP979dlLL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHP979dlLL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHP979dlLL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHP979dlLL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHP979dlLL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHP979dlLL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tHP979dlLL .navbar.opened {
  transition: all 0.3s;
}
.cid-tHP979dlLL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHP979dlLL .navbar .navbar-logo img {
  width: auto;
}
.cid-tHP979dlLL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHP979dlLL .navbar.collapsed {
  justify-content: center;
}
.cid-tHP979dlLL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHP979dlLL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHP979dlLL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tHP979dlLL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHP979dlLL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHP979dlLL .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-tHP979dlLL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHP979dlLL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHP979dlLL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHP979dlLL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHP979dlLL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHP979dlLL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHP979dlLL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHP979dlLL .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-tHP979dlLL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHP979dlLL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHP979dlLL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHP979dlLL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHP979dlLL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHP979dlLL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tHP979dlLL .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tHP979dlLL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHP979dlLL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHP979dlLL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHP979dlLL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHP979dlLL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHP979dlLL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHP979dlLL .dropdown-item.active,
.cid-tHP979dlLL .dropdown-item:active {
  background-color: transparent;
}
.cid-tHP979dlLL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHP979dlLL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHP979dlLL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHP979dlLL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHP979dlLL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHP979dlLL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHP979dlLL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHP979dlLL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHP979dlLL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tHP979dlLL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tHP979dlLL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHP979dlLL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHP979dlLL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHP979dlLL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHP979dlLL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHP979dlLL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHP979dlLL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHP979dlLL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHP979dlLL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tHP979dlLL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHP979dlLL .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-tHP979dlLL .navbar {
    height: 70px;
  }
  .cid-tHP979dlLL .navbar.opened {
    height: auto;
  }
  .cid-tHP979dlLL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHP97ajEUv {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/detalhe-da-planta-de-arroz-ao-por-do-sol-em-valencia-com-a-plantacao-fora-de-foco-graos-de-arroz-na-semente-da-planta-1920x1191.jpg");
}
.cid-tHP97ajEUv .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHP97ajEUv .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHP97ajEUv .mbr-section-title {
  color: #ffffff;
}
.cid-tHP97ajEUv .mbr-text,
.cid-tHP97ajEUv .mbr-section-btn {
  color: #ffffff;
}
.cid-tHP9ZXtd7z {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tHP9ZXtd7z img {
  object-fit: cover;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-tHP9ZXtd7z img {
    width: 100%;
  }
}
.cid-tHP97bR5vf {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tHP97bR5vf .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHP97bR5vf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHP97cu5uk {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHP97cu5uk img {
  width: 120px;
  margin: auto;
}
.cid-tHP97cu5uk .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHP97cu5uk .card {
    max-width: 12.5%;
  }
}
.cid-tHP97dbr9p {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHP97dbr9p .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHP97dbr9p .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tHP97dbr9p textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tHP97dbr9p .form-row {
    flex-direction: column;
  }
}
.cid-tHP97dbr9p h4 {
  margin-bottom: 2rem;
}
.cid-tHP97dbr9p .form-control,
.cid-tHP97dbr9p .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tHP97dbr9p .form-control,
.cid-tHP97dbr9p .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHP97dbr9p .form-control::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input::-webkit-input-placeholder,
.cid-tHP97dbr9p .form-control::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHP97dbr9p .form-control:-moz-placeholder,
.cid-tHP97dbr9p .field-input:-moz-placeholder,
.cid-tHP97dbr9p .form-control:-moz-placeholder,
.cid-tHP97dbr9p .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHP97dbr9p .form-control:hover,
.cid-tHP97dbr9p .field-input:hover,
.cid-tHP97dbr9p .form-control:focus,
.cid-tHP97dbr9p .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-tHP97dbr9p .form-control:hover::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input:hover::-webkit-input-placeholder,
.cid-tHP97dbr9p .form-control:focus::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input:focus::-webkit-input-placeholder,
.cid-tHP97dbr9p .form-control:hover::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input:hover::-webkit-input-placeholder,
.cid-tHP97dbr9p .form-control:focus::-webkit-input-placeholder,
.cid-tHP97dbr9p .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHP97dbr9p .form-control:hover:-moz-placeholder,
.cid-tHP97dbr9p .field-input:hover:-moz-placeholder,
.cid-tHP97dbr9p .form-control:focus:-moz-placeholder,
.cid-tHP97dbr9p .field-input:focus:-moz-placeholder,
.cid-tHP97dbr9p .form-control:hover:-moz-placeholder,
.cid-tHP97dbr9p .field-input:hover:-moz-placeholder,
.cid-tHP97dbr9p .form-control:focus:-moz-placeholder,
.cid-tHP97dbr9p .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHP97dbr9p .jq-number__spin:hover,
.cid-tHP97dbr9p .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tHP97dbr9p .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHP97dbr9p .jq-selectbox li,
.cid-tHP97dbr9p .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHP97dbr9p .jq-selectbox li:hover,
.cid-tHP97dbr9p .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHP97dbr9p .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHP97dbr9p .jq-number__spin.minus:hover:after,
.cid-tHP97dbr9p .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHP97dbr9p .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHP97dbr9p .jq-number__spin.minus:after,
.cid-tHP97dbr9p .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHP97dbr9p input::-webkit-clear-button {
  display: none;
}
.cid-tHP97dbr9p input::-webkit-inner-spin-button {
  display: none;
}
.cid-tHP97dbr9p input::-webkit-outer-spin-button {
  display: none;
}
.cid-tHP97dbr9p input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tHP97dbr9p H4 {
  color: #103178;
}
.cid-tHPaAAVbyh {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHPaAAVbyh nav.navbar {
  position: fixed;
}
.cid-tHPaAAVbyh .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-tHPaAAVbyh .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHPaAAVbyh .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHPaAAVbyh .dropdown-item:hover,
.cid-tHPaAAVbyh .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tHPaAAVbyh .dropdown-item:hover span {
  color: white;
}
.cid-tHPaAAVbyh .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHPaAAVbyh .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHPaAAVbyh .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tHPaAAVbyh .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHPaAAVbyh .nav-link {
  position: relative;
}
.cid-tHPaAAVbyh .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHPaAAVbyh .container {
    flex-wrap: wrap;
  }
}
.cid-tHPaAAVbyh .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHPaAAVbyh .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tHPaAAVbyh .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHPaAAVbyh .dropdown-menu,
.cid-tHPaAAVbyh .navbar.opened {
  background: #ffffff !important;
}
.cid-tHPaAAVbyh .nav-item:focus,
.cid-tHPaAAVbyh .nav-link:focus {
  outline: none;
}
.cid-tHPaAAVbyh .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHPaAAVbyh .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHPaAAVbyh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHPaAAVbyh .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHPaAAVbyh .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHPaAAVbyh .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHPaAAVbyh .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tHPaAAVbyh .navbar.opened {
  transition: all 0.3s;
}
.cid-tHPaAAVbyh .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHPaAAVbyh .navbar .navbar-logo img {
  width: auto;
}
.cid-tHPaAAVbyh .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHPaAAVbyh .navbar.collapsed {
  justify-content: center;
}
.cid-tHPaAAVbyh .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHPaAAVbyh .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHPaAAVbyh .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tHPaAAVbyh .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHPaAAVbyh .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHPaAAVbyh .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-tHPaAAVbyh .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHPaAAVbyh .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHPaAAVbyh .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHPaAAVbyh .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHPaAAVbyh .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHPaAAVbyh .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHPaAAVbyh .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHPaAAVbyh .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-tHPaAAVbyh .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHPaAAVbyh .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHPaAAVbyh .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHPaAAVbyh .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHPaAAVbyh .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHPaAAVbyh .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tHPaAAVbyh .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tHPaAAVbyh .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHPaAAVbyh .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHPaAAVbyh .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHPaAAVbyh .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHPaAAVbyh .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHPaAAVbyh .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHPaAAVbyh .dropdown-item.active,
.cid-tHPaAAVbyh .dropdown-item:active {
  background-color: transparent;
}
.cid-tHPaAAVbyh .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHPaAAVbyh .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHPaAAVbyh .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHPaAAVbyh .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHPaAAVbyh .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHPaAAVbyh .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHPaAAVbyh ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHPaAAVbyh .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHPaAAVbyh button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tHPaAAVbyh button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tHPaAAVbyh button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHPaAAVbyh button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPaAAVbyh button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPaAAVbyh button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHPaAAVbyh nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPaAAVbyh nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHPaAAVbyh nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHPaAAVbyh nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPaAAVbyh .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tHPaAAVbyh a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHPaAAVbyh .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-tHPaAAVbyh .navbar {
    height: 70px;
  }
  .cid-tHPaAAVbyh .navbar.opened {
    height: auto;
  }
  .cid-tHPaAAVbyh .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHPaACOv8F {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/detalhe-da-planta-de-arroz-ao-por-do-sol-em-valencia-com-a-plantacao-fora-de-foco-graos-de-arroz-na-semente-da-planta-1920x1191.jpg");
}
.cid-tHPaACOv8F .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHPaACOv8F .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHPaACOv8F .mbr-section-title {
  color: #ffffff;
}
.cid-tHPaACOv8F .mbr-text,
.cid-tHPaACOv8F .mbr-section-btn {
  color: #ffffff;
}
.cid-tHPaADuyuR {
  padding-top: 105px;
  padding-bottom: 105px;
  background-color: #ffffff;
}
.cid-tHPaADuyuR img {
  object-fit: cover;
  width: 90%;
}
@media (max-width: 992px) {
  .cid-tHPaADuyuR img {
    width: 100%;
  }
}
.cid-tHPaAEbC17 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tHPaAEbC17 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHPaAEbC17 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHPaAENIJY {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHPaAENIJY img {
  width: 120px;
  margin: auto;
}
.cid-tHPaAENIJY .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHPaAENIJY .card {
    max-width: 12.5%;
  }
}
.cid-tHPaAFuud3 {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHPaAFuud3 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHPaAFuud3 .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tHPaAFuud3 textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tHPaAFuud3 .form-row {
    flex-direction: column;
  }
}
.cid-tHPaAFuud3 h4 {
  margin-bottom: 2rem;
}
.cid-tHPaAFuud3 .form-control,
.cid-tHPaAFuud3 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tHPaAFuud3 .form-control,
.cid-tHPaAFuud3 .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHPaAFuud3 .form-control::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input::-webkit-input-placeholder,
.cid-tHPaAFuud3 .form-control::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHPaAFuud3 .form-control:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:-moz-placeholder,
.cid-tHPaAFuud3 .form-control:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHPaAFuud3 .form-control:hover,
.cid-tHPaAFuud3 .field-input:hover,
.cid-tHPaAFuud3 .form-control:focus,
.cid-tHPaAFuud3 .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-tHPaAFuud3 .form-control:hover::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input:hover::-webkit-input-placeholder,
.cid-tHPaAFuud3 .form-control:focus::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input:focus::-webkit-input-placeholder,
.cid-tHPaAFuud3 .form-control:hover::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input:hover::-webkit-input-placeholder,
.cid-tHPaAFuud3 .form-control:focus::-webkit-input-placeholder,
.cid-tHPaAFuud3 .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHPaAFuud3 .form-control:hover:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:hover:-moz-placeholder,
.cid-tHPaAFuud3 .form-control:focus:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:focus:-moz-placeholder,
.cid-tHPaAFuud3 .form-control:hover:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:hover:-moz-placeholder,
.cid-tHPaAFuud3 .form-control:focus:-moz-placeholder,
.cid-tHPaAFuud3 .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHPaAFuud3 .jq-number__spin:hover,
.cid-tHPaAFuud3 .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tHPaAFuud3 .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHPaAFuud3 .jq-selectbox li,
.cid-tHPaAFuud3 .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHPaAFuud3 .jq-selectbox li:hover,
.cid-tHPaAFuud3 .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHPaAFuud3 .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHPaAFuud3 .jq-number__spin.minus:hover:after,
.cid-tHPaAFuud3 .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHPaAFuud3 .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHPaAFuud3 .jq-number__spin.minus:after,
.cid-tHPaAFuud3 .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHPaAFuud3 input::-webkit-clear-button {
  display: none;
}
.cid-tHPaAFuud3 input::-webkit-inner-spin-button {
  display: none;
}
.cid-tHPaAFuud3 input::-webkit-outer-spin-button {
  display: none;
}
.cid-tHPaAFuud3 input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tHPaAFuud3 H4 {
  color: #103178;
}
.cid-tHPaVdO8tt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHPaVdO8tt nav.navbar {
  position: fixed;
}
.cid-tHPaVdO8tt .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-tHPaVdO8tt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHPaVdO8tt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHPaVdO8tt .dropdown-item:hover,
.cid-tHPaVdO8tt .dropdown-item:focus {
  background: #6592e6 !important;
  color: white !important;
}
.cid-tHPaVdO8tt .dropdown-item:hover span {
  color: white;
}
.cid-tHPaVdO8tt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHPaVdO8tt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHPaVdO8tt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tHPaVdO8tt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHPaVdO8tt .nav-link {
  position: relative;
}
.cid-tHPaVdO8tt .container {
  display: flex;
  margin: auto;
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHPaVdO8tt .container {
    flex-wrap: wrap;
  }
}
.cid-tHPaVdO8tt .container-fluid {
  flex-wrap: nowrap;
}
@media (max-width: 991px) {
  .cid-tHPaVdO8tt .container-fluid {
    flex-wrap: wrap;
  }
}
.cid-tHPaVdO8tt .iconfont-wrapper {
  color: #000000 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHPaVdO8tt .dropdown-menu,
.cid-tHPaVdO8tt .navbar.opened {
  background: #ffffff !important;
}
.cid-tHPaVdO8tt .nav-item:focus,
.cid-tHPaVdO8tt .nav-link:focus {
  outline: none;
}
.cid-tHPaVdO8tt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHPaVdO8tt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHPaVdO8tt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHPaVdO8tt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHPaVdO8tt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHPaVdO8tt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHPaVdO8tt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tHPaVdO8tt .navbar.opened {
  transition: all 0.3s;
}
.cid-tHPaVdO8tt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHPaVdO8tt .navbar .navbar-logo img {
  width: auto;
}
.cid-tHPaVdO8tt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHPaVdO8tt .navbar.collapsed {
  justify-content: center;
}
.cid-tHPaVdO8tt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHPaVdO8tt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHPaVdO8tt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.4rem);
  }
}
.cid-tHPaVdO8tt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHPaVdO8tt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHPaVdO8tt .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-tHPaVdO8tt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHPaVdO8tt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHPaVdO8tt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHPaVdO8tt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHPaVdO8tt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHPaVdO8tt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHPaVdO8tt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHPaVdO8tt .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-tHPaVdO8tt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHPaVdO8tt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHPaVdO8tt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHPaVdO8tt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHPaVdO8tt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHPaVdO8tt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
@media (max-width: 991px) and (max-width: 767px) {
  .cid-tHPaVdO8tt .navbar .navbar-brand {
    width: calc(100% - 31px);
  }
}
.cid-tHPaVdO8tt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHPaVdO8tt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHPaVdO8tt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHPaVdO8tt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHPaVdO8tt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHPaVdO8tt .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tHPaVdO8tt .dropdown-item.active,
.cid-tHPaVdO8tt .dropdown-item:active {
  background-color: transparent;
}
.cid-tHPaVdO8tt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHPaVdO8tt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHPaVdO8tt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHPaVdO8tt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHPaVdO8tt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHPaVdO8tt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHPaVdO8tt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHPaVdO8tt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHPaVdO8tt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tHPaVdO8tt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #000000;
}
.cid-tHPaVdO8tt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHPaVdO8tt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPaVdO8tt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPaVdO8tt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHPaVdO8tt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPaVdO8tt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHPaVdO8tt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHPaVdO8tt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPaVdO8tt .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tHPaVdO8tt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHPaVdO8tt .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-tHPaVdO8tt .navbar {
    height: 70px;
  }
  .cid-tHPaVdO8tt .navbar.opened {
    height: auto;
  }
  .cid-tHPaVdO8tt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHPaVeIVxN {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/detalhe-da-planta-de-arroz-ao-por-do-sol-em-valencia-com-a-plantacao-fora-de-foco-graos-de-arroz-na-semente-da-planta-1920x1191.jpg");
}
.cid-tHPaVeIVxN .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHPaVeIVxN .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHPaVeIVxN .mbr-section-title {
  color: #ffffff;
}
.cid-tHPaVeIVxN .mbr-text,
.cid-tHPaVeIVxN .mbr-section-btn {
  color: #ffffff;
}
.cid-tHPbb5Kk1Y {
  padding-top: 5rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tHPbu35Mkd {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHPbu35Mkd .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHPbu35Mkd .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHPbu35Mkd .item {
  padding-bottom: 2rem;
}
.cid-tHPbu35Mkd .item-wrapper {
  position: relative;
}
.cid-tHPbu35Mkd .item-wrapper .icon-wrapper {
  pointer-events: none;
  position: absolute;
  width: 60px;
  height: 60px;
  font-size: 22px;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  opacity: 0;
  color: #ffffff;
  transform: translateX(-50%) translateY(-50%);
  background-color: #1b1b1b;
  transition: 0.2s;
}
.cid-tHPbu35Mkd .item-wrapper:hover .icon-wrapper {
  opacity: 0.7;
}
.cid-tHPbu35Mkd .carousel-control,
.cid-tHPbu35Mkd .close {
  background: #1b1b1b;
}
.cid-tHPbu35Mkd .carousel-control-prev {
  margin-left: 2.5rem;
}
.cid-tHPbu35Mkd .carousel-control-prev span {
  margin-right: 5px;
}
.cid-tHPbu35Mkd .carousel-control-next {
  margin-right: 2.5rem;
}
.cid-tHPbu35Mkd .carousel-control-next span {
  margin-left: 5px;
}
.cid-tHPbu35Mkd .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  font-family: 'Moririse2';
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-tHPbu35Mkd .close::before {
  content: '\e91a';
}
.cid-tHPbu35Mkd .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-tHPbu35Mkd .carousel-control {
  display: flex;
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-tHPbu35Mkd .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHPbu35Mkd .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-tHPbu35Mkd .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tHPbu35Mkd .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 3px;
}
.cid-tHPbu35Mkd .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-tHPbu35Mkd .carousel-indicators li.active,
.cid-tHPbu35Mkd .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-tHPbu35Mkd .carousel-indicators li::after,
.cid-tHPbu35Mkd .carousel-indicators li::before {
  content: none;
}
.cid-tHPbu35Mkd .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-tHPbu35Mkd .carousel-indicators {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .cid-tHPbu35Mkd .carousel-indicators {
    margin-bottom: 3.625rem !important;
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
}
@media (max-width: 767px) {
  .cid-tHPbu35Mkd .carousel-indicators {
    display: none;
  }
}
.cid-tHPbu35Mkd .carousel-inner {
  display: flex;
  align-items: center;
}
.cid-tHPbu35Mkd .carousel-inner > .active {
  display: block;
}
.cid-tHPbu35Mkd .carousel-control.left {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tHPbu35Mkd .carousel-control.right {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tHPbu35Mkd .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 768px) {
  .cid-tHPbu35Mkd .carousel-control,
  .cid-tHPbu35Mkd .carousel-indicators,
  .cid-tHPbu35Mkd .modal .close {
    position: fixed;
  }
}
@media (max-width: 767px) {
  .cid-tHPbu35Mkd .mbr-slider .carousel-control {
    top: auto;
    bottom: 20px;
  }
  .cid-tHPbu35Mkd .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tHPbu35Mkd .carousel-indicators .active,
.cid-tHPbu35Mkd .carousel-indicators li {
  width: 7px;
  height: 7px;
  margin: 3px;
  background: #000000;
  opacity: 0.5;
  border: 4px solid #000000;
}
.cid-tHPbu35Mkd .carousel-indicators .active {
  background: #fff;
}
.cid-tHPbu35Mkd .carousel-indicators li {
  max-width: 15px;
  max-height: 15px;
  border-radius: 50%;
}
.cid-tHPbu35Mkd .modal {
  padding-left: 0 !important;
  position: fixed;
  overflow: hidden;
  padding-right: 0 !important;
}
.cid-tHPbu35Mkd .modal-dialog {
  margin: 0 auto;
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-tHPbu35Mkd .modal-content {
  border-radius: 0;
  border: none;
  background: transparent;
}
.cid-tHPbu35Mkd .modal-body {
  padding: 0;
  display: flex;
  align-items: center;
}
.cid-tHPbu35Mkd .modal-body img {
  width: 100%;
  object-fit: contain;
  max-height: calc(100vh - 1.75rem);
}
.cid-tHPbu35Mkd .carousel {
  width: 100%;
}
.cid-tHPbu35Mkd .modal-backdrop.in {
  opacity: 0.8;
}
.cid-tHPbu35Mkd .modal.fade .modal-dialog {
  transition: margin-top 0.3s ease-out;
}
.cid-tHPbu35Mkd .modal.fade .modal-dialog,
.cid-tHPbu35Mkd .modal.in .modal-dialog {
  transform: none;
}
.cid-tHPbu35Mkd .mbr-gallery .item-wrapper {
  cursor: pointer;
}
.cid-tHPbu35Mkd H6 {
  text-align: center;
}
.cid-tHPaVg0kFk {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #6ec7f2;
}
.cid-tHPaVg0kFk .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHPaVg0kFk .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHPaVgDdvv {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-tHPaVgDdvv img {
  width: 120px;
  margin: auto;
}
.cid-tHPaVgDdvv .card {
  transition: all 0.3s;
  height: fit-content;
  padding: 1rem 0;
  opacity: 0.7;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .cid-tHPaVgDdvv .card {
    max-width: 12.5%;
  }
}
.cid-tHPaVhjmur {
  padding-top: 75px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tHPaVhjmur .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tHPaVhjmur .btn {
  border-radius: 30px;
  height: 50px;
  padding: 0 2rem;
}
.cid-tHPaVhjmur textarea {
  min-height: 150px;
  padding: 1rem 1.5rem!important;
}
@media (max-width: 767px) {
  .cid-tHPaVhjmur .form-row {
    flex-direction: column;
  }
}
.cid-tHPaVhjmur h4 {
  margin-bottom: 2rem;
}
.cid-tHPaVhjmur .form-control,
.cid-tHPaVhjmur .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  border-radius: 30px;
}
.cid-tHPaVhjmur .form-control,
.cid-tHPaVhjmur .field-input {
  padding: 0.5rem 1.5rem;
  height: 51px;
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  border-radius: 30px;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHPaVhjmur .form-control::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input::-webkit-input-placeholder,
.cid-tHPaVhjmur .form-control::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHPaVhjmur .form-control:-moz-placeholder,
.cid-tHPaVhjmur .field-input:-moz-placeholder,
.cid-tHPaVhjmur .form-control:-moz-placeholder,
.cid-tHPaVhjmur .field-input:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHPaVhjmur .form-control:hover,
.cid-tHPaVhjmur .field-input:hover,
.cid-tHPaVhjmur .form-control:focus,
.cid-tHPaVhjmur .field-input:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5 !important;
  color: #103178;
  box-shadow: none;
  outline: none;
}
.cid-tHPaVhjmur .form-control:hover::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input:hover::-webkit-input-placeholder,
.cid-tHPaVhjmur .form-control:focus::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input:focus::-webkit-input-placeholder,
.cid-tHPaVhjmur .form-control:hover::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input:hover::-webkit-input-placeholder,
.cid-tHPaVhjmur .form-control:focus::-webkit-input-placeholder,
.cid-tHPaVhjmur .field-input:focus::-webkit-input-placeholder {
  color: #5b6c8f;
}
.cid-tHPaVhjmur .form-control:hover:-moz-placeholder,
.cid-tHPaVhjmur .field-input:hover:-moz-placeholder,
.cid-tHPaVhjmur .form-control:focus:-moz-placeholder,
.cid-tHPaVhjmur .field-input:focus:-moz-placeholder,
.cid-tHPaVhjmur .form-control:hover:-moz-placeholder,
.cid-tHPaVhjmur .field-input:hover:-moz-placeholder,
.cid-tHPaVhjmur .form-control:focus:-moz-placeholder,
.cid-tHPaVhjmur .field-input:focus:-moz-placeholder {
  color: #5b6c8f;
}
.cid-tHPaVhjmur .jq-number__spin:hover,
.cid-tHPaVhjmur .jq-number__spin:focus {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #ffffff;
  box-shadow: none;
  outline: none;
}
.cid-tHPaVhjmur .jq-number__spin {
  background-color: #f0f2f5;
  border-color: #f0f2f5;
  color: #103178;
  transition: 0.4s;
  box-shadow: none;
  outline: none;
}
.cid-tHPaVhjmur .jq-selectbox li,
.cid-tHPaVhjmur .jq-selectbox li {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHPaVhjmur .jq-selectbox li:hover,
.cid-tHPaVhjmur .jq-selectbox li.selected {
  background-color: #f0f2f5;
  color: #000000;
}
.cid-tHPaVhjmur .jq-selectbox:hover .jq-selectbox__trigger-arrow,
.cid-tHPaVhjmur .jq-number__spin.minus:hover:after,
.cid-tHPaVhjmur .jq-number__spin.plus:hover:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHPaVhjmur .jq-selectbox .jq-selectbox__trigger-arrow,
.cid-tHPaVhjmur .jq-number__spin.minus:after,
.cid-tHPaVhjmur .jq-number__spin.plus:after {
  border-top-color: #f0f2f5;
  border-bottom-color: #f0f2f5;
}
.cid-tHPaVhjmur input::-webkit-clear-button {
  display: none;
}
.cid-tHPaVhjmur input::-webkit-inner-spin-button {
  display: none;
}
.cid-tHPaVhjmur input::-webkit-outer-spin-button {
  display: none;
}
.cid-tHPaVhjmur input::-webkit-calendar-picker-indicator {
  display: none;
}
.cid-tHPaVhjmur H4 {
  color: #103178;
}
