body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Xanh Mono', monospace;
  font-size: 2rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-2 {
  font-family: 'Xanh Mono', monospace;
  font-size: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-4 {
  font-family: 'Xanh Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Xanh Mono', monospace;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.75rem;
}
.display-7 {
  font-family: 'Tenor Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 1.6rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 1.4rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.35rem + (2 - 1.35) * ((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.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.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))));
  }
  .display-7 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* 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: #5aa314 !important;
}
.bg-success {
  background-color: #ffffff !important;
}
.bg-info {
  background-color: #ffffff !important;
}
.bg-warning {
  background-color: #f2c814 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5aa314 !important;
  border-color: #5aa314 !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: #2f560b !important;
  border-color: #2f560b !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #2f560b !important;
  border-color: #2f560b !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-info,
.btn-info:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-success,
.btn-success:active {
  background-color: #ffffff !important;
  border-color: #ffffff !important;
  color: #808080 !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: #545454 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #808080 !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #f2c814 !important;
  border-color: #f2c814 !important;
  color: #070500 !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: #ffffff !important;
  background-color: #a68809 !important;
  border-color: #a68809 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #070500 !important;
  background-color: #a68809 !important;
  border-color: #a68809 !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: #5aa314;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #2f560b !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: #5aa314 !important;
  border-color: #5aa314 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffffff;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #d4d4d4 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #808080 !important;
  background-color: #ffffff !important;
  border-color: #ffffff !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #f2c814;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #a68809 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #070500 !important;
  background-color: #f2c814 !important;
  border-color: #f2c814 !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: #5aa314 !important;
}
.text-secondary {
  color: #ffffff !important;
}
.text-success {
  color: #ffffff !important;
}
.text-info {
  color: #ffffff !important;
}
.text-warning {
  color: #f2c814 !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: #284809 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #cccccc !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #cccccc !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #cccccc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #987d08 !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: #5aa314;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #ffffff;
}
.alert-warning {
  background-color: #f2c814;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5aa314;
  border-color: #5aa314;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #5aa314;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9ae94d;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdf5d5;
}
.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: 'Xanh Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.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: #5aa314 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Xanh Mono', monospace;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5aa314;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5aa314;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5aa314;
}
.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: #5aa314;
  border-bottom-color: #5aa314;
}
.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: #5aa314 !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: #ffffff !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='%235aa314' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-sFHoAfPmXB {
  padding-top: 12rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/chatgpt20image202920de20mar.20de2020262022-18-1536x1024.png");
}
.cid-sFHoAfPmXB .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sFHoAfPmXB .image-wrap img {
    display: block;
    margin: auto;
    width: 60%;
  }
}
.cid-sFHoAfPmXB .mbr-section-title {
  color: #ffffff;
}
.cid-sFHoAfPmXB .mbr-text,
.cid-sFHoAfPmXB .mbr-section-btn {
  color: #fff0b0;
}
.cid-sFHvmoQ5Jg {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sFHvmoQ5Jg .row {
  align-items: center;
}
@media (max-width: 991px) {
  .cid-sFHvmoQ5Jg .row {
    flex-direction: column-reverse;
  }
  .cid-sFHvmoQ5Jg .image-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sFHvmoQ5Jg .card-wrapper {
    padding: 0 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sFHvmoQ5Jg .card-wrapper {
    padding-right: 2rem;
  }
}
.cid-sFHvmoQ5Jg .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sFHvmoQ5Jg .card-title {
  text-align: justify;
  color: #103476;
}
.cid-sFHvmoQ5Jg .mbr-text,
.cid-sFHvmoQ5Jg .mbr-section-btn {
  text-align: left;
}
.cid-sFHuaHz0Qy {
  padding-top: 3rem;
  padding-bottom: 7rem;
  background-color: #0074b8;
}
.cid-sFHuaHz0Qy .card-wrapper {
  background: #e4ebf7;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sFHuaHz0Qy .card-wrapper {
    padding: 4rem;
  }
}
.cid-sFHuaHz0Qy .mbr-text,
.cid-sFHuaHz0Qy .mbr-section-btn {
  color: #103476;
}
.cid-sFHuaHz0Qy .card-title,
.cid-sFHuaHz0Qy .card-box {
  text-align: left;
  color: #000000;
}
.cid-vh09VerX1I {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vh09VerX1I img,
.cid-vh09VerX1I .item-img {
  width: 100%;
}
.cid-vh09VerX1I .item:focus,
.cid-vh09VerX1I span:focus {
  outline: none;
}
.cid-vh09VerX1I .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vh09VerX1I .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vh09VerX1I .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vh09VerX1I .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vh09VerX1I .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vh09VerX1I .mbr-section-title {
  color: #232323;
}
.cid-vh09VerX1I .mbr-text,
.cid-vh09VerX1I .mbr-section-btn {
  text-align: left;
}
.cid-vh09VerX1I .item-title {
  text-align: left;
}
.cid-vh09VerX1I .item-subtitle {
  text-align: center;
}
.cid-vgIdfxO7Dc {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/chatgpt20image201920de20abr.20de2020262022-43-2-1536x1024.png");
}
.cid-vgIdfxO7Dc .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgIdfxO7Dc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vgIdfxO7Dc .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vgIdfxO7Dc img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vgIdfxO7Dc .text-wrapper {
    padding: 2rem;
  }
}
.cid-vgID108zBH {
  padding-top: 3rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vgID108zBH img,
.cid-vgID108zBH .item-img {
  width: 100%;
}
.cid-vgID108zBH .item:focus,
.cid-vgID108zBH span:focus {
  outline: none;
}
.cid-vgID108zBH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vgID108zBH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vgID108zBH .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vgID108zBH .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vgID108zBH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vgID108zBH .mbr-section-title {
  color: #232323;
}
.cid-vgID108zBH .mbr-text,
.cid-vgID108zBH .mbr-section-btn {
  text-align: left;
}
.cid-vgID108zBH .item-title {
  text-align: left;
}
.cid-vgID108zBH .item-subtitle {
  text-align: left;
}
.cid-vh023ThBus {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/chatgpt20image201620de20abr.20de2020262022-31-11-1024x1536.png");
}
.cid-vh023ThBus .mbr-fallback-image.disabled {
  display: none;
}
.cid-vh023ThBus .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vh023ThBus .card-wrapper {
  background: #22a5e5;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vh023ThBus .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vh023ThBus .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vh023ThBus .card-wrapper {
    padding: 4rem;
  }
}
.cid-vh023ThBus .mbr-text,
.cid-vh023ThBus .mbr-section-btn {
  color: #ffffff;
}
.cid-vh023ThBus .card-title,
.cid-vh023ThBus .card-box {
  text-align: left;
}
.cid-sFHujWGouW {
  padding-top: 4rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/chatgpt20image202920de20mar.20de2020262022-11-40-1671x940.png");
}
.cid-sFHujWGouW .mbr-media {
  position: relative;
}
.cid-sFHujWGouW .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-sFHujWGouW .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-sFHujWGouW .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-sFHujWGouW .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-sFHujWGouW .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-sFHujWGouW .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-sFHujWGouW .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-sFHujWGouW .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-sFHujWGouW .mbr-section-title {
  color: #ffffff;
}
.cid-sFHujWGouW .mbr-section-subtitle {
  color: #ffe885;
}
.cid-sFHujWGouW .mbr-section-subtitle DIV {
  text-align: justify;
}
.cid-vfASVE8ibG {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #d1dae9;
}
.cid-vfASVE8ibG .mbr-fallback-image.disabled {
  display: none;
}
.cid-vfASVE8ibG .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vfASVE8ibG .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vfASVE8ibG .row {
  flex-direction: row-reverse;
}
.cid-vfASVE8ibG img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vfASVE8ibG .text-wrapper {
    padding: 2rem;
  }
}
.cid-vh01zYJRMj {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-vh01zYJRMj .line {
  background-color: #6592e6;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-vh01zYJRMj .mbr-text {
  color: #103476;
}
.cid-vgIoFqi98G {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/chatgpt20image201320de20abr.20de2020262020-37-53-1536x1024.png");
}
.cid-vgIoFqi98G .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgIoFqi98G .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgIoFqi98G .card-wrapper {
  background: #4479d9;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vgIoFqi98G .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vgIoFqi98G .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vgIoFqi98G .card-wrapper {
    padding: 4rem;
  }
}
.cid-vgIoFqi98G .mbr-text,
.cid-vgIoFqi98G .mbr-section-btn {
  color: #ffffff;
}
.cid-vgIoFqi98G .card-title,
.cid-vgIoFqi98G .card-box {
  text-align: left;
}
.cid-vhyTgb3XeO {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #103476;
}
.cid-vhyTgb3XeO .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhyTgb3XeO .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (min-width: 1500px) {
  .cid-vhyTgb3XeO .container {
    max-width: 1400px;
  }
}
.cid-vhyTgb3XeO .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-vhyTgb3XeO .row {
  justify-content: center;
}
.cid-vhyTgb3XeO .card-text {
  color: #ffffff;
}
.cid-vhyTgb3XeO .card-title,
.cid-vhyTgb3XeO .iconfont-wrapper {
  color: #fafafa;
}
.cid-vhyTgb3XeO .mbr-section-title {
  color: #ffe161;
}
.cid-vgJq8NU2QX {
  padding-top: 1rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-vgJq8NU2QX .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgJq8NU2QX .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vgJq8NU2QX .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-vgJq8NU2QX img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-vgJq8NU2QX .text-wrapper {
    padding: 2rem;
  }
}
.cid-vgJq8NU2QX .mbr-description {
  text-align: justify;
}
.cid-vgPC3bxPPT {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #fdd510;
}
.cid-vgPC3bxPPT .mbr-fallback-image.disabled {
  display: none;
}
.cid-vgPC3bxPPT .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vgPC3bxPPT .timeline-element {
  position: relative;
}
.cid-vgPC3bxPPT .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vgPC3bxPPT .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vgPC3bxPPT .mbr-section-title,
.cid-vgPC3bxPPT .mbr-section-subtitle,
.cid-vgPC3bxPPT .timeline-date {
  text-align: center;
}
.cid-vgPC3bxPPT .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #6592e6;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-vgPC3bxPPT .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-vgPC3bxPPT .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-vgPC3bxPPT .row:after {
  content: "";
  position: absolute;
  background-color: #6592e6;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-vgPC3bxPPT .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-vgPC3bxPPT .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vgPC3bxPPT .timeline-date-wrapper,
  .cid-vgPC3bxPPT .timeline-text-wrapper,
  .cid-vgPC3bxPPT .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-vgPC3bxPPT .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-vgPC3bxPPT .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-vgPC3bxPPT .timeline-date-wrapper,
  .cid-vgPC3bxPPT .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vgPC3bxPPT .timeline-date-wrapper,
  .cid-vgPC3bxPPT .timeline-text-wrapper,
  .cid-vgPC3bxPPT .image-wrapper {
    padding: 2rem;
  }
}
.cid-vh11v9MQu3 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vh11v9MQu3 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vh11v9MQu3 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vh11v9MQu3 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vh11v9MQu3 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vh11v9MQu3 .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-vh11v9MQu3 .bg-linkedin:hover {
  background: #005582;
}
.cid-vh11v9MQu3 .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-vh11v9MQu3 .bg-behance:hover {
  background: #0045cc;
}
.cid-vh11v9MQu3 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vh11v9MQu3 [class^="socicon-"]:before,
.cid-vh11v9MQu3 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-sFGMfPD7iT {
  padding-top: 13rem;
  padding-bottom: 16rem;
  background-image: url("../../../assets/images/testeira-2000x1125.png");
}
.cid-sFGMfPD7iT .mbr-section-title {
  text-align: center;
  color: #353535;
}
.cid-sFGMfPD7iT .mbr-text,
.cid-sFGMfPD7iT .mbr-section-btn {
  text-align: center;
  color: #5f6366;
}
.cid-vhzLqmuWFf {
  background-color: #ffffff;
}
.cid-vhzLqmuWFf .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhzLqmuWFf .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhzLqmuWFf .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vhzLqmuWFf .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhzLqmuWFf .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vhzLqmuWFf .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhzLqmuWFf .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhhOy0kmXa {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-image: url("../../../assets/images/chatgpt20image202820de20abr.20de2020262020-12-33-1536x1024.png");
}
.cid-vhhOy0kmXa .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhhOy0kmXa .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhhOy0kmXa .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhhOy0kmXa .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vhhOy0kmXa .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhhOy0kmXa .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vi85ZS6ftD {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-vi85ZS6ftD img,
.cid-vi85ZS6ftD .item-img {
  width: 100%;
}
.cid-vi85ZS6ftD .item:focus,
.cid-vi85ZS6ftD span:focus {
  outline: none;
}
.cid-vi85ZS6ftD .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-vi85ZS6ftD .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-vi85ZS6ftD .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-vi85ZS6ftD .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-vi85ZS6ftD .mbr-section-btn {
  margin-top: auto !important;
}
.cid-vi85ZS6ftD .mbr-section-title {
  color: #232323;
}
.cid-vi85ZS6ftD .mbr-text,
.cid-vi85ZS6ftD .mbr-section-btn {
  text-align: left;
}
.cid-vi85ZS6ftD .item-title {
  text-align: left;
}
.cid-vi85ZS6ftD .item-subtitle {
  text-align: left;
}
.cid-vi7E4fdycN {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #feff99;
}
.cid-vhFtigR3YY {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-image: url("../../../assets/images/chatgpt20image202820de20abr.20de2020262018-52-9-1536x1024.png");
}
.cid-vhFtigR3YY .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhFtigR3YY .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhFtigR3YY .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vhFtigR3YY .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhFtigR3YY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vhFtigR3YY .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhFtigR3YY .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhbK6Vxkgr {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fdd80f;
}
.cid-vhbK6Vxkgr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhbK6Vxkgr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhbK6Vxkgr .card-box {
  z-index: 10;
  position: relative;
}
@media (min-width: 1500px) {
  .cid-vhbK6Vxkgr .container {
    max-width: 1400px;
  }
}
.cid-vhbK6Vxkgr .card {
  margin: auto;
}
.cid-vhbK6Vxkgr .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #103476;
  margin-bottom: 2rem;
}
.cid-vhbK6Vxkgr .item-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-vhbK6Vxkgr .row {
  justify-content: center;
}
.cid-vhFahWSioi {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #fdd80f;
}
.cid-vhFahWSioi .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhFahWSioi .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhFahWSioi .card-wrapper {
  background: #fdd80f;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .cid-vhFahWSioi .card-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vhFahWSioi .card-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vhFahWSioi .card-wrapper {
    padding: 4rem;
  }
}
.cid-vhFahWSioi .mbr-text,
.cid-vhFahWSioi .mbr-section-btn {
  color: #232323;
  text-align: left;
}
.cid-vhFahWSioi .card-title,
.cid-vhFahWSioi .card-box {
  text-align: center;
  color: #232323;
}
.cid-vibwPXaxkq {
  background-image: url("../../../assets/images/georgia-1537x1023.png");
}
.cid-vibwPXaxkq .mbr-fallback-image.disabled {
  display: none;
}
.cid-vibwPXaxkq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vibwPXaxkq .mbr-section-title {
  color: #f2c814;
}
.cid-vi7P0wNsXI {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/chatgpt20image202820de20abr.20de2020262018-52-9-1536x1024.png");
}
.cid-vi7P0wNsXI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi7P0wNsXI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi88w4NCpV {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #5aa314;
}
.cid-vi88w4NCpV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vi88w4NCpV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vi88w4NCpV .content-wrapper {
  background: #5aa314;
}
@media (max-width: 991px) {
  .cid-vi88w4NCpV .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-vi88w4NCpV .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-vi88w4NCpV .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-vi88w4NCpV .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-vi88w4NCpV .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-vi88w4NCpV .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vi88w4NCpV .mbr-text,
.cid-vi88w4NCpV .mbr-section-btn {
  color: #ffffff;
}
.cid-vibOIMjaYD {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #5aa314;
}
.cid-vibzBpxuX8 {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-vibzBpxuX8 .mbr-fallback-image.disabled {
  display: none;
}
.cid-vibzBpxuX8 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vibzBpxuX8 .bg-twitter {
  background: #1da1f2;
  color: #ffffff;
}
.cid-vibzBpxuX8 .bg-twitter:hover {
  background: #0c85d0;
}
.cid-vibzBpxuX8 .bg-linkedin {
  background: #0077b5;
  color: #ffffff;
}
.cid-vibzBpxuX8 .bg-linkedin:hover {
  background: #005582;
}
.cid-vibzBpxuX8 .bg-behance {
  background: #0056ff;
  color: #ffffff;
}
.cid-vibzBpxuX8 .bg-behance:hover {
  background: #0045cc;
}
.cid-vibzBpxuX8 .iconfont-wrapper {
  display: inline-block;
  font-size: 32px;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  transition: all 0.3s ease-in-out;
}
.cid-vibzBpxuX8 [class^="socicon-"]:before,
.cid-vibzBpxuX8 [class*=" socicon-"]:before {
  line-height: 55px;
  padding: .6rem;
}
.cid-vhWTKEkArG {
  display: flex;
  background-image: url("../../../assets/images/empreender20para20pertencer201-2000x1125.png");
}
.cid-vhWTKEkArG .mbr-overlay {
  background-color: #353535;
  opacity: 0.5;
}
.cid-vhWTKEkArG .content-wrap {
  padding: 5rem 1rem;
}
@media (min-width: 768px) {
  .cid-vhWTKEkArG {
    align-items: flex-start;
  }
  .cid-vhWTKEkArG .row {
    justify-content: flex-start;
  }
  .cid-vhWTKEkArG .content-wrap {
    width: 51%;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-vhWTKEkArG .content-wrap {
    min-width: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vhWTKEkArG {
    -webkit-align-items: center;
    align-items: center;
  }
  .cid-vhWTKEkArG .mbr-row {
    -webkit-justify-content: center;
    justify-content: center;
  }
  .cid-vhWTKEkArG .content-wrap {
    width: 100%;
  }
}
.cid-vhWTKEkArG .mbr-section-title {
  color: #ffffff;
  text-align: justify;
}
.cid-vhWTKEkArG .mbr-text,
.cid-vhWTKEkArG .mbr-section-btn {
  color: #ffffff;
  text-align: justify;
}
.cid-vhWGMevgkr {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #c4efb8;
}
.cid-vhWGMevgkr .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhWGMevgkr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhWGMevgkr .row {
  flex-direction: row-reverse;
}
@media (max-width: 991px) {
  .cid-vhWGMevgkr .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhWGMevgkr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vhWGMevgkr .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhWGMevgkr .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhWCGVvuUp {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-image: url("../../../assets/images/chatgpt20image202820de20abr.20de2020262018-52-9-1536x1024.png");
}
.cid-vhWCGVvuUp .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhWCGVvuUp .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 991px) {
  .cid-vhWCGVvuUp .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-vhWCGVvuUp .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .cid-vhWCGVvuUp .text-wrapper {
    padding: 0 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhWCGVvuUp .text-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-viesImgdFF {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #5aa314;
}
.cid-viesImgdFF iframe,
.cid-viesImgdFF img,
.cid-viesImgdFF video {
  width: 100%;
}
.cid-viesImgdFF .mbr-media {
  position: relative;
}
.cid-viesImgdFF .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-viesImgdFF .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-viesImgdFF .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-viesImgdFF .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  height: 100%;
  width: 100%;
}
@media (max-width: 767px) {
  .cid-viesImgdFF .modalWindow {
    width: 100vw;
    height: 100vh;
  }
}
.cid-viesImgdFF .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-viesImgdFF .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-viesImgdFF .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;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-viesImgdFF .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-viesImgdFF .mbr-section-title {
  color: #ddf1af;
}
.cid-viedJUxFSQ {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #dfebb2;
}
.cid-vie3fUDzWI {
  background-image: url("../../../assets/images/quadro202-1672x941.png");
}
.cid-vie3fUDzWI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vie3fUDzWI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVKuN2rwV {
  padding-top: 1rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/chatgpt20image202620de20abr.20de2020262020-47-45-1537x1023.png");
}
.cid-vhVKuN2rwV .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhVKuN2rwV .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhVKuN2rwV .item {
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
  flex-direction: column;
}
.cid-vhVKuN2rwV .icon-box {
  margin-bottom: 1rem;
  text-align: center;
  display: inline-block;
}
.cid-vhVKuN2rwV .text-box {
  text-align: center;
}
.cid-vhVKuN2rwV span {
  font-size: 10rem;
  color: #6592e6;
  font-weight: bold;
  display: block;
}
@media (max-width: 991px) {
  .cid-vhVKuN2rwV .card {
    margin-bottom: 2rem;
  }
  .cid-vhVKuN2rwV .card-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-vhVKuN2rwV span {
    font-size: 21vw;
  }
}
.cid-vhVKuN2rwV .item .icon-box .step-number {
  color: #ffffff;
}
.cid-vhVKuN2rwV .icon-title,
.cid-vhVKuN2rwV .mbr-section-btn,
.cid-vhVKuN2rwV .item .icon-box .step-number {
  color: #ffffff;
  text-align: center;
}
.cid-vhWB5yLug9 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #498a2f;
}
.cid-vhWB5yLug9 blockquote {
  border-color: #c4efb8;
  border-radius: 4px;
  background-color: #498a2f;
}
.cid-vhWB5yLug9 .mbr-text {
  color: #ffffff;
}
.cid-vhWB5yLug9 .mbr-section-title {
  color: #c4efb8;
}
.cid-vhLpf4DbBI {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #e43f3f;
}
.cid-vhLpf4DbBI .mbr-fallback-image.disabled {
  display: none;
}
.cid-vhLpf4DbBI .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-vhLpf4DbBI .timeline-element {
  position: relative;
}
.cid-vhLpf4DbBI .timelines-container {
  display: flex;
  flex-wrap: wrap;
}
.cid-vhLpf4DbBI .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-vhLpf4DbBI .mbr-section-title,
.cid-vhLpf4DbBI .mbr-section-subtitle,
.cid-vhLpf4DbBI .timeline-date {
  text-align: center;
}
.cid-vhLpf4DbBI .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #ffffff;
  margin-left: -9px;
  padding: 0;
}
@media (max-width: 767px) {
  .cid-vhLpf4DbBI .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-vhLpf4DbBI .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-vhLpf4DbBI .row:after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-vhLpf4DbBI .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-vhLpf4DbBI .row:after {
    height: calc(100% + 28px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-vhLpf4DbBI .timeline-date-wrapper,
  .cid-vhLpf4DbBI .timeline-text-wrapper,
  .cid-vhLpf4DbBI .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-vhLpf4DbBI .mbr-timeline-date {
    text-align: left !important;
  }
  .cid-vhLpf4DbBI .mbr-timeline-title {
    text-align: left;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-vhLpf4DbBI .timeline-date-wrapper,
  .cid-vhLpf4DbBI .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-vhLpf4DbBI .timeline-date-wrapper,
  .cid-vhLpf4DbBI .timeline-text-wrapper,
  .cid-vhLpf4DbBI .image-wrapper {
    padding: 2rem;
  }
}
.cid-vhLpf4DbBI .mbr-section-title {
  color: #ffffff;
}
.cid-vhLpf4DbBI .mbr-timeline-title {
  color: #ffffff;
}
.cid-vhLpf4DbBI .mbr-text {
  color: #ffffff;
}
