@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,500,600,700);

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: .4;
}

body {
    font-family: Montserrat;
    font-style: normal;
    line-height: 1.5;
}

.mbr-fonts-style {
    font-family: 'Montserrat', sans-serif !important;
}

.mbr-section-title {
    font-style: normal;
    line-height: 1.2;
}

.mbr-section-subtitle {
    line-height: 1.3;
}

.mbr-text {
    font-style: normal;
    line-height: 1.6;
}

.display-1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
}

.display-1>.mbr-iconfont {
    font-size: 4.8rem;
}

.display-2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
}

.display-2>.mbr-iconfont {
    font-size: 2.88rem;
}

.display-4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
}

.display-4>.mbr-iconfont {
    font-size: 1.4rem;
}

.display-5 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
}

.display-5>.mbr-iconfont {
    font-size: 1.92rem;
}

.display-7 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
}

.display-7>.mbr-iconfont {
    font-size: 1.6rem;
}

/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
    .display-1 {
        font-size: 2.4rem;
        font-size: calc(1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
    }

    .display-2 {
        font-size: 1.44rem;
        font-size: calc(1.28rem + (1.8 - 1.28) * ((100vw - 20rem) / (48 - 20)));
        line-height: calc(1.4 * (1.28rem + (1.8 - 1.28) * ((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: 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 {
    border-radius: .25rem;
    font-weight: 400;
    border-width: 2px;
    font-style: normal;
    letter-spacing: normal;
    margin: .4rem .8rem;
    white-space: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    display: -webkit-inline-flex;
    display: inline-flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    word-break: break-word;
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
}

.btn-sm {
    font-weight: 400;
    letter-spacing: normal;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
}

.btn-md {
    font-weight: 400;
    letter-spacing: normal;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
}

.btn-md:after {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: relative;
    opacity: 0;
    font-size: inherit;
    text-align: center;
    transition: all .3s;
    margin-left: -1.5rem;
    padding-left: .5rem;
}

.btn-md:hover {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.btn-md:hover:after {
    transition: all .3s;
    opacity: 1;
    margin-left: 0;
}

.btn-lg {
    font-weight: 400;
    letter-spacing: normal;
    margin: .4rem .8rem !important;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    padding: 0.8rem 2rem;
    border-radius: 0.25rem;
}

.bg-primary {
    background-color: #336b44 !important;
}

.bg-success {
    background-color: #336b44 !important;
}

.bg-info {
    background-color: #188ef4 !important;
}

.bg-warning {
    background-color: #c1c1c1 !important;
}

.bg-danger {
    background-color: #444444 !important;
}

.btn-primary,
.btn-primary:active,
.btn-primary.active {
    background-color: #336b44 !important;
    border-color: #336b44 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-primary.disabled,
.btn-primary:disabled {
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #336b44 !important;
    border-color: #336b44 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-secondary.disabled,
.btn-secondary:disabled {
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-info,
.btn-info:active,
.btn-info.active {
    background-color: #188ef4 !important;
    border-color: #188ef4 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #0966b7 !important;
    border-color: #0966b7 !important;
}

.btn-info.disabled,
.btn-info:disabled {
    color: #ffffff !important;
    background-color: #0966b7 !important;
    border-color: #0966b7 !important;
}

.btn-success,
.btn-success:active,
.btn-success.active {
    background-color: #336b44 !important;
    border-color: #336b44 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-success.disabled,
.btn-success:disabled {
    color: #ffffff !important;
    background-color: #1a3723 !important;
    border-color: #1a3723 !important;
}

.btn-warning,
.btn-warning:active,
.btn-warning.active {
    background-color: #c1c1c1 !important;
    border-color: #c1c1c1 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #9b9b9b !important;
    border-color: #9b9b9b !important;
}

.btn-warning.disabled,
.btn-warning:disabled {
    color: #ffffff !important;
    background-color: #9b9b9b !important;
    border-color: #9b9b9b !important;
}

.btn-danger,
.btn-danger:active,
.btn-danger.active {
    background-color: #444444 !important;
    border-color: #444444 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #1e1e1e !important;
    border-color: #1e1e1e !important;
}

.btn-danger.disabled,
.btn-danger:disabled {
    color: #ffffff !important;
    background-color: #1e1e1e !important;
    border-color: #1e1e1e !important;
}

.btn-white {
    color: #333333 !important;
}

.btn-white,
.btn-white:active,
.btn-white.active {
    background-color: #ffffff !important;
    border-color: #ffffff !important;
    transition: all .5s;
    color: #808080 !important;
}

.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
    transition: all .5s;
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-white.disabled,
.btn-white:disabled {
    color: #808080 !important;
    background-color: #d9d9d9 !important;
    border-color: #d9d9d9 !important;
}

.btn-black,
.btn-black:active,
.btn-black.active {
    background-color: #333333 !important;
    border-color: #333333 !important;
    transition: all .5s;
    color: #ffffff !important;
}

.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
    transition: all .5s;
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-black.disabled,
.btn-black:disabled {
    color: #ffffff !important;
    background-color: #0d0d0d !important;
    border-color: #0d0d0d !important;
}

.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
    background: none !important;
    border-color: #122618 !important;
    color: #122618 !important;
}

.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
    background: none !important;
    border-color: #122618 !important;
    color: #122618 !important;
}

.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
    background: none !important;
    border-color: #08589e !important;
    color: #08589e !important;
}

.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
    color: #ffffff !important;
    background-color: #188ef4 !important;
    border-color: #188ef4 !important;
}

.btn-info-outline.disabled,
.btn-info-outline:disabled {
    color: #ffffff !important;
    background-color: #188ef4 !important;
    border-color: #188ef4 !important;
}

.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
    background: none !important;
    border-color: #122618 !important;
    color: #122618 !important;
}

.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-success-outline.disabled,
.btn-success-outline:disabled {
    color: #ffffff !important;
    background-color: #336b44 !important;
    border-color: #336b44 !important;
}

.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
    background: none !important;
    border-color: #8e8e8e !important;
    color: #8e8e8e !important;
}

.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
    color: #ffffff !important;
    background-color: #c1c1c1 !important;
    border-color: #c1c1c1 !important;
}

.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
    color: #ffffff !important;
    background-color: #c1c1c1 !important;
    border-color: #c1c1c1 !important;
}

.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
    background: none !important;
    border-color: #111111 !important;
    color: #111111 !important;
}

.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
    color: #ffffff !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
}

.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
    color: #ffffff !important;
    background-color: #444444 !important;
    border-color: #444444 !important;
}

.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
    background: none !important;
    border-color: #000000 !important;
    color: #000000 !important;
}

.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-black-outline.disabled,
.btn-black-outline:disabled {
    color: #ffffff !important;
    background-color: #333333 !important;
    border-color: #333333 !important;
}

.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
    background: none;
    border-color: #ffffff;
    color: #ffffff;
}

.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
    color: #333333;
    background-color: #ffffff;
    border-color: #ffffff;
}

.btn-underline {
    padding: .5rem;
    display: -webkit-inline-flex;
    display: inline-flex;
    font-weight: 400;
    -webkit-align-items: center;
    align-items: center;
    position: relative;
    transition: all .3s;
}

.btn-underline .mbr-iconfont {
    color: inherit;
    padding-right: .5rem;
}

.btn-underline:after {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: relative;
    padding-left: .3rem;
}

.btn-underline:hover {
    filter: brightness(85%);
}

.btn-underline:hover:after {
    transition: all .3s;
    padding-left: .5rem;
}

.text-primary {
    color: #336b44 !important;
}

.text-secondary {
    color: #336b44 !important;
}

.text-success {
    color: #336b44 !important;
}

.text-info {
    color: #188ef4 !important;
}

.text-warning {
    color: #c1c1c1 !important;
}

.text-danger {
    color: #444444 !important;
}

.text-white {
    color: #ffffff !important;
}

.text-black {
    color: #000000 !important;
}

a.text-primary:hover,
a.text-primary:focus {
    color: #122618 !important;
}

a.text-secondary:hover,
a.text-secondary:focus {
    color: #122618 !important;
}

a.text-success:hover,
a.text-success:focus {
    color: #122618 !important;
}

a.text-info:hover,
a.text-info:focus {
    color: #08589e !important;
}

a.text-warning:hover,
a.text-warning:focus {
    color: #8e8e8e !important;
}

a.text-danger:hover,
a.text-danger:focus {
    color: #111111 !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #b3b3b3 !important;
}

a.text-black:hover,
a.text-black:focus {
    color: #4d4d4d !important;
}

.alert-success {
    background-color: #336b44;
}

.alert-info {
    background-color: #188ef4;
}

.alert-warning {
    background-color: #c1c1c1;
}

.alert-danger {
    background-color: #444444;
}

.mbr-section-btn a.btn:hover,
.mbr-section-btn a.btn:focus {
    box-shadow: none !important;
}

.mbr-gallery-filter li.active .btn {
    background-color: #336b44;
    border-color: #336b44;
    color: #ffffff;
}

.mbr-gallery-filter li.active .btn:focus {
    box-shadow: none;
}

.btn-form {
    border-radius: .25rem;
}

.btn-form:hover {
    cursor: pointer;
}

a,
a:hover {
    color: #336b44;
}

.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
    color: #67b77f;
}

.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
    color: #67b77f;
}

.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
    color: #dbedfd;
}

.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: #b7b7b7;
}

/* Scroll to top button*/
.scrollToTop_wraper {
    opacity: 0 !important;
}

.mbr-arrow-up a {
    width: 61px;
    height: 61px;
}

#scrollToTop a {
    background: #188ef4;
}

#scrollToTop a i:before {
    content: '';
    position: absolute;
    height: 40%;
    top: 25%;
    background: #ffffff;
    width: 3%;
    left: calc(50% - 1px);
}

#scrollToTop a i:after {
    content: '';
    position: absolute;
    display: block;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    width: 40%;
    height: 40%;
    left: 30%;
    bottom: 30%;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

/* Others*/
.note-check a[data-value=Rubik] {
    font-style: normal;
}

.mbr-arrow {
    background-color: transparent;
    opacity: .7;
    transition: .3s;
    text-align: center;
    width: auto;
}

.mbr-arrow:hover {
    opacity: 1;
}

.mbr-arrow a {
    display: block;
}

.mbr-arrow a i {
    color: #188ef4;
    top: auto !important;
    left: auto !important;
}

@media (max-width: 767px) {
    .mbr-arrow {
        display: none;
    }

    #myModal {
        padding-right: 0px !important;
    }

    #myModal .modal-card {
        margin: 0rem;
        padding: 1.2rem 0rem;
    }
}

.form-control-label {
    position: relative;
    cursor: pointer;
    margin-bottom: .357em;
    padding: 0;
}

.alert {
    color: #ffffff;
    border-radius: 0;
    border: 0;
    font-size: .875rem;
    line-height: 1.5;
    margin-bottom: 1.875rem;
    padding: 1.25rem;
    position: relative;
}

.alert.alert-form::after {
    background-color: inherit;
    bottom: -7px;
    content: "";
    display: block;
    height: 14px;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    width: 14px;
}

.form-control {
    background-color: #f5f5f5;
    box-shadow: none;
    color: #565656;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.43;
    min-height: 3.5em;
    padding: 1.07em .5em;
}

.form-control>.mbr-iconfont {
    font-size: 1.6rem;
}

.form-control,
.form-control:focus {
    border: 1px solid #e8e8e8;
}

.form-active .form-control:invalid {
    border-color: red;
}

.mbr-overlay {
    background-color: #000;
    bottom: 0;
    left: 0;
    opacity: .5;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 0;
}

blockquote {
    font-style: italic;
    padding: 10px 0 10px 20px;
    font-size: 1.09rem;
    position: relative;
    border-color: #336b44;
    border-width: 3px;
}

ul,
ol,
pre,
blockquote {
    margin-bottom: 2.3125rem;
}

pre {
    background: #f4f4f4;
    padding: 10px 24px;
    white-space: pre-wrap;
}

.inactive {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    pointer-events: none;
    -webkit-user-drag: none;
    user-drag: none;
}

.mbr-section__comments .row {
    -webkit-justify-content: center;
    justify-content: center;
}

/* Forms */
.mbr-form .btn {
    margin: .4rem 0;
}

@media (max-width: 767px) {
    .btn {
        font-size: .75rem !important;
    }

    .btn .mbr-iconfont {
        font-size: 1rem !important;
    }
}

/* Social block */
.btn-social {
    font-size: 20px;
    border-radius: 50%;
    padding: 0;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    position: relative;
    border: 2px solid #c0a375;
    border-color: #336b44;
    color: #232323;
    cursor: pointer;
}

.btn-social i {
    top: 0;
    line-height: 44px;
    width: 44px;
}

.btn-social:hover {
    color: #fff;
    background: #336b44;
}

.btn-social+.btn {
    margin-left: .1rem;
}

.input-wrap input {
    border-radius: 0rem;
    width: 100%;
    padding: .5rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid #efefef;
}

.input-main textarea {
    background-color: #ffffff;
    padding: .5rem 1rem;
    border: 1px solid #efefef;
    border-radius: 0;
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
    bottom: initial !important;
}

html,
body {
    height: auto;
    min-height: 100vh;
}

.dropup .dropdown-toggle::after {
    display: none;
}

.cid-rae7RRiuEp .dropdown-item:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    display: inline-block;
    width: 16px;
    position: absolute;
    right: 1rem;
    top: 30%;
    line-height: 1;
    font-size: inherit;
    vertical-align: middle;
    text-align: center;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rae7RRiuEp .nav-item,
.cid-rae7RRiuEp .nav-link,
.cid-rae7RRiuEp .navbar-caption {
    font-weight: normal;
}

.cid-rae7RRiuEp .nav-item:focus,
.cid-rae7RRiuEp .nav-link:focus {
    outline: none;
}

.cid-rae7RRiuEp .nav-item .novidades {
    text-decoration: underline;
    text-underline-position: under;
    text-decoration-color: #fdd11f;
}

.cid-rae7RRiuEp .nav-item a.novidades:hover {
    color: #fdd11f !important;
}

@media (min-width: 992px) {
    .cid-rae7RRiuEp .dropdown-item:hover:before {
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }

    .cid-rhiGSVtlQ6 .full-screen .container {
        padding-right: 0;
        padding-left: 0;
    }

    .novidades-mkt .container {
        max-width: 50% !important;
    }
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    width: auto;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item::after {
    right: 1rem;
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item.dropdown-toggle:before {
    display: none;
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
    margin-left: -1.8rem;
    padding-right: 1rem;
    font-size: inherit;
}

.cid-rae7RRiuEp .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
    display: inline-block;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    transition: all 0.25s ease-in-out;
}

.cid-rae7RRiuEp .collapsed .dropdown-menu .dropdown-item:before {
    display: none;
}

.cid-rae7RRiuEp .collapsed .dropdown .dropdown-menu .dropdown-item {
    padding: 0.235em 1.5em 0.235em 1.5em !important;
    transition: none;
    margin: 0 !important;
}

.cid-rae7RRiuEp .navbar {
    min-height: 77px;
    transition: all .3s;
    background: #000000;
    background: none;
}

.cid-rae7RRiuEp .navbar.opened {
    transition: all .3s;
    background: #313130 !important;
}

.cid-rae7RRiuEp .navbar .dropdown-item {
    padding: .235rem 2.5rem .235rem 1.5rem;
}

.cid-rae7RRiuEp .navbar .navbar-collapse {
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    z-index: 1;
}

.cid-rae7RRiuEp .navbar.collapsed .nav-item .nav-link::before {
    display: none;
}

.cid-rae7RRiuEp .navbar.collapsed.opened .dropdown-menu {
    top: 0;
}

.cid-rae7RRiuEp .navbar.collapsed .dropdown-menu {
    background: transparent !important;
}

.cid-rae7RRiuEp .navbar.collapsed .dropdown-menu .dropdown-submenu {
    left: 0 !important;
}

.cid-rae7RRiuEp .navbar.collapsed .dropdown-menu .dropdown-item:after {
    right: auto;
}

.cid-rae7RRiuEp .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: .25rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 55%;
}

.cid-rae7RRiuEp .navbar.collapsed ul.navbar-nav li {
    margin: auto;
}

.cid-rae7RRiuEp .navbar.collapsed .dropdown-menu .dropdown-item {
    padding: .25rem 1.5rem;
    text-align: center;
    -webkit-justify-content: center;
    justify-content: center;
}

.cid-rae7RRiuEp .navbar.collapsed .icons-menu {
    padding-left: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
}

@media (max-width: 991px) {

    .cid-raeaEkxfqm iframe,
    .blog-content iframe {
        width: 100% !important;
    }

    .blog-content img,
    .cid-raeaEkxfqm img {
        width: 100% !important;
        height: auto !important;
    }

    .cid-raeaEkxfqm .icon-wrap img {
        width: 55% !important;
    }

    .cid-rae7RRiuEp .navbar .nav-item .nav-link::before {
        display: none;
    }

    .cid-rae7RRiuEp .navbar.opened .dropdown-menu {
        top: 0;
    }

    .cid-rae7RRiuEp .navbar .dropdown-menu {
        background: transparent !important;
    }

    .cid-rae7RRiuEp .navbar .dropdown-menu .dropdown-submenu {
        left: 0 !important;
    }

    .cid-rae7RRiuEp .navbar .dropdown-menu .dropdown-item:after {
        right: auto;
    }

    .cid-rae7RRiuEp .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
        margin-left: .25rem;
        border-top: 0.35em solid;
        border-right: 0.35em solid transparent;
        border-left: 0.35em solid transparent;
        border-bottom: 0;
        top: 55%;
    }

    .cid-rae7RRiuEp .navbar .navbar-logo img {
        max-width: 100px;
        height: auto !important;
        max-height: 100%;
    }

    .cid-rae7RRiuEp .navbar ul.navbar-nav li {
        margin: auto;
    }

    .cid-rae7RRiuEp .navbar .dropdown-menu .dropdown-item {
        padding: .25rem 1.5rem !important;
        text-align: center;
        -webkit-justify-content: center;
        justify-content: center;
    }

    .cid-rae7RRiuEp .navbar .navbar-brand {
        -webkit-flex-shrink: initial;
        flex-shrink: initial;
        -webkit-flex-basis: auto;
        flex-basis: auto;
        word-break: break-word;
    }

    .cid-rae7RRiuEp .navbar .navbar-toggler {
        -webkit-flex-basis: auto;
        flex-basis: auto;
    }

    .cid-rae7RRiuEp .navbar .icons-menu {
        padding-left: 0;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .novidades-mkt .container {
        max-width: 80% !important;
    }

    .novidades-mkt img.img-ajust {
        width: 100% !important;
        height: auto !important;
    }
}

.cid-rae7RRiuEp .navbar.navbar-short {
    background: #313130 !important;
    min-height: 60px;
    /*height: 60px;*/
}

.cid-rae7RRiuEp .navbar.navbar-short .navbar-logo img {
    max-width: 100px;
    height: auto !important;
    max-height: 100%;
}

.cid-rae7RRiuEp .navbar.navbar-short .navbar-brand {
    padding: 0;
}

.cid-rae7RRiuEp .navbar-brand {
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    -webkit-align-items: center;
    align-items: center;
    margin-right: 0;
    padding: 0;
    transition: all .3s;
    word-break: break-word;
    z-index: 1;
}

.cid-rae7RRiuEp .navbar-brand .navbar-caption {
    line-height: inherit !important;
    font-size: 0.65rem;
    word-wrap: break-word !important;
    text-align: center !important;
    width: 55% !important;
    font-weight: 600;
}

.cid-rae7RRiuEp .navbar-brand .navbar-logo a {
    outline: none;
}

.cid-rae7RRiuEp .dropdown-item.active,
.cid-rae7RRiuEp .dropdown-item:active {
    background-color: transparent;
}

.cid-rae7RRiuEp .nav-dropdown .link.dropdown-toggle {
    margin-right: 1.667em;
}

.cid-rae7RRiuEp .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
    margin-right: 0;
    padding: 0.667em 1.667em;
}

.cid-rae7RRiuEp .navbar.navbar-expand-lg .dropdown .dropdown-menu {
    background: #000000;
}

.cid-rae7RRiuEp .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
    margin: 0;
    left: 100%;
}

.cid-rae7RRiuEp .navbar .dropdown.open>.dropdown-menu {
    display: block;
}

.cid-rae7RRiuEp ul.navbar-nav {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}

.cid-rae7RRiuEp .navbar-buttons {
    text-align: center;
}

.cid-rae7RRiuEp button.navbar-toggler {
    outline: none;
    width: 31px;
    height: 20px;
    cursor: pointer;
    transition: all .2s;
    position: relative;
    -webkit-align-self: center;
    align-self: center;
}

.cid-rae7RRiuEp button.navbar-toggler .hamburger span {
    position: absolute;
    right: 0;
    width: 30px;
    height: 2px;
    border-right: 5px;
    background-color: #739873;
}

.cid-rae7RRiuEp button.navbar-toggler .hamburger span:nth-child(1) {
    top: 0;
    transition: all .2s;
}

.cid-rae7RRiuEp button.navbar-toggler .hamburger span:nth-child(2) {
    top: 8px;
    transition: all .15s;
}

.cid-rae7RRiuEp button.navbar-toggler .hamburger span:nth-child(3) {
    top: 8px;
    transition: all .15s;
}

.cid-rae7RRiuEp button.navbar-toggler .hamburger span:nth-child(4) {
    top: 16px;
    transition: all .2s;
}

.cid-rae7RRiuEp nav.opened .hamburger span:nth-child(1) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rae7RRiuEp nav.opened .hamburger span:nth-child(2) {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .25s;
}

.cid-rae7RRiuEp nav.opened .hamburger span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    transition: all .25s;
}

.cid-rae7RRiuEp nav.opened .hamburger span:nth-child(4) {
    top: 8px;
    width: 0;
    opacity: 0;
    right: 50%;
    transition: all .2s;
}

.cid-rae7RRiuEp .navbar-dropdown {
    padding: .5rem 1rem;
    position: fixed;
}

.cid-rae7RRiuEp a.nav-link {
    -webkit-justify-content: center;
    justify-content: center;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    font-size: small !important;
    font-weight: 700 !important;
}

.cid-rae7RRiuEp .mbr-iconfont {
    font-size: 1rem;
    color: #ffffff;
    display: inline-flex;
}

.cid-rae7RRiuEp .mbr-iconfont:before {
    padding: .5rem;
    border: 2px solid;
    border-radius: 100px;
}

.cid-rae7RRiuEp .soc-item {
    margin: .5rem .3rem;
}

.cid-rae7RRiuEp .icons-menu {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
    padding-left: 1rem;
    text-align: center;
    -webkit-align-items: center;
    align-items: center;
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {
    .cid-rae7RRiuEp .navbar {
        height: 77px;
    }

    .cid-rae7RRiuEp .navbar.opened {
        height: auto;
    }

    .cid-rae7RRiuEp .nav-item .nav-link:hover::before {
        width: 175%;
        max-width: calc(100% + 2rem);
        left: -1rem;
    }
}

.cid-rae7PIrvmd {
    padding-top: 120px;
    padding-bottom: 120px;
}

.cid-rae7PIrvmd .mbr-section-title,
.cid-rae7PIrvmd .mbr-section-subtitle {
    color: #000000;
}

.cid-rae7PIrvmd .mbr-section-text {
    color: #232323;
}

.cid-rae7PIrvmd .mbr-text,
.cid-rae7PIrvmd .typed-text,
.cid-rae7PIrvmd .mbr-section-text {
    letter-spacing: 0.03rem;
}

.cid-rae7PIrvmd .btn {
    margin-left: 4px !important;
}

.cid-rae7PIrvmd .animated-element {
    color: #1dc9cb;
}

.cid-rae7PIrvmd .typed-cursor {
    opacity: 1;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
    color: #1dc9cb;
}

.cid-rae7PIrvmd .mbr-figure {
    border-radius: .25rem;
    overflow: hidden;
}

@media (max-width: 991px) {
    .cid-rae7PIrvmd .mbr-figure {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {

    .cid-rae7PIrvmd .typed-text,
    .cid-rae7PIrvmd .mbr-section-subtitle,
    .cid-rae7PIrvmd .mbr-section-text,
    .cid-rae7PIrvmd .mbr-section-btn {
        text-align: center !important;
    }
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-webkit-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@-moz-keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.cid-rae7PIrvmd .mbr-section-subtitle,
.cid-rae7PIrvmd .typed-text B {
    color: #ffffff;
}

.cid-rae7PIrvmd .mbr-section-text,
.cid-rae7PIrvmd .mbr-section-btn {
    color: #ffffff;
}

.cid-raeaEkxfqm {
    padding-top: 4rem;
    padding-bottom: 1rem;
    background-color: #ffffff;
}

.cid-raeaEkxfqm .count {
    text-align: left;
    word-break: inherit;
}

.cid-raeaEkxfqm .mbr-section-subtitle {
    color: #8d97ad;
}

.cid-raeaEkxfqm .mbr-content-title {
    color: #8d97ad;
    text-align: left;
}

.cid-raeaEkxfqm .panel-item {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-raeaEkxfqm .card {
    word-wrap: break-word;
}

.cid-raeaEkxfqm .mbr-iconfont {
    font-size: 50px;
    color: #232323;
    padding-right: 1rem;
}

@media (max-width: 991px) {
    .cid-raeaEkxfqm .panel-item {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-raf1W94Wv4 {
    padding-top: 90px;
    padding-bottom: 90px;
}

.cid-raf1W94Wv4 .mbr-section-title {
    color: #336b44;
}

.cid-raf1W94Wv4 .mbr-section-subtitle {
    color: #333333;
}

.cid-raf1W94Wv4 .btn {
    margin: 0 0 .5rem 0;
}

@media (max-width: 768px) {

    .cid-raf1W94Wv4 h2,
    .cid-raf1W94Wv4 h3 {
        text-align: center !important;
    }

    .cid-raf1W94Wv4 .mbr-section-btn {
        text-align: center !important;
    }
}

.cid-raeZcqAwTu {
    padding-top: 90px;
    padding-bottom: 10px;
    background-color: #ffffff;
}

.cid-raeZcqAwTu .mbr-iconfont {
    font-size: 50px;
    transition: color .3s;
    padding: 1.5rem;
}

.cid-raeZcqAwTu .mbr-section-title {
    margin: 0;
}

.cid-raeZcqAwTu .mbr-section-subtitle {
    color: #8d97ad;
}

.cid-raeZcqAwTu .card-img span {
    color: #1dc9cb;
}

.cid-raeZcqAwTu .row-item {
    margin-bottom: 2rem;
}

.cid-raeZcqAwTu .row-item:hover .wrapper {
    background: linear-gradient(90deg, #477956ad, #477956);
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    transition: all 0.3s;
}

.cid-raeZcqAwTu .row-item:hover .wrapper i {
    color: black !important;
}

.cid-raeZcqAwTu .row-item:hover .card-img span {
    color: #000000 !important;
}

.cid-raeZcqAwTu .row-item:hover .mbr-card-title {
    color: #fdd11f !important;
}

.cid-raeZcqAwTu .wrapper {
    padding: 1.5rem 1.5rem;
    background: rgba(232, 232, 232, 0.61);
    border-radius: 15px;
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}

.cid-raeZcqAwTu .wrapper img {
    width: 35%;
}

.cid-raeZcqAwTu .mbr-card-title {
    font-weight: 600;
    color: #336b44;
    line-height: 1.3 !important;
}

.cid-raeoC4MUqr {
    background-color: #fffefd;
    padding-top: 80px;
    padding-bottom: 50px;
}

.cid-raeoC4MUqr .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-raeoC4MUqr .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-raeoC4MUqr .text-content {
    padding-right: 1.5rem;
    padding-right: 0;
    padding-left: 1.5rem;
}

.cid-raeoC4MUqr .main-row {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}

.cid-raeoC4MUqr .mbr-section-title {
    color: #336b44;
    font-weight: 600;
}

.cid-raeoC4MUqr .mbr-text {
    color: #8d97ad;
}

/* .cid-raeoC4MUqr .mbr-figure img {
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
  border-radius: .25rem;
} */
.cid-raeoC4MUqr .counter-container {
    padding-top: 1rem;
}

.cid-raeoC4MUqr .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-raeoC4MUqr .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-raeoC4MUqr .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #336b44;
}

@media (max-width: 991px) {
    .cid-raeoC4MUqr .main-row {
        margin: 0;
    }

    .cid-raeoC4MUqr .mbr-section-title,
    .cid-raeoC4MUqr .mbr-text,
    .cid-raeoC4MUqr .list,
    .cid-raeoC4MUqr .mbr-section-btn {
        text-align: center !important;
    }

    .cid-raeoC4MUqr .text-content {
        padding: 0;
    }
}

.cid-raeoDgWfJ3 {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-raeoDgWfJ3 .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-raeoDgWfJ3 .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-raeoDgWfJ3 .text-content {
    padding-right: 1.5rem;
}

.cid-raeoDgWfJ3 .mbr-text {
    color: #8d97ad;
}

.cid-raeoDgWfJ3 .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-raeoDgWfJ3 .counter-container {
    padding-top: 1rem;
}

.cid-raeoDgWfJ3 .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-raeoDgWfJ3 .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-raeoDgWfJ3 .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #336b44;
}

@media (max-width: 991px) {
    .cid-raeoDgWfJ3 .main-row {
        margin: 0;
    }

    .cid-raeoDgWfJ3 .mbr-section-title,
    .cid-raeoDgWfJ3 .mbr-text,
    .cid-raeoDgWfJ3 .list,
    .cid-raeoDgWfJ3 .mbr-section-btn {
        text-align: center !important;
    }

    .cid-raeoDgWfJ3 .text-content {
        padding: 0;
    }
}

.cid-raeoDQkHRb {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-raeoDQkHRb .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-raeoDQkHRb .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-raeoDQkHRb .text-content {
    padding-right: 1.5rem;
    padding-right: 0;
    padding-left: 1.5rem;
}

.cid-raeoDQkHRb .main-row {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}

.cid-raeoDQkHRb .mbr-text {
    color: #8d97ad;
}

.cid-raeoDQkHRb .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-raeoDQkHRb .counter-container {
    padding-top: 1rem;
}

.cid-raeoDQkHRb .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-raeoDQkHRb .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-raeoDQkHRb .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #336b44;
}

@media (max-width: 991px) {
    .cid-raeoDQkHRb .main-row {
        margin: 0;
    }

    .cid-raeoDQkHRb .mbr-section-title,
    .cid-raeoDQkHRb .mbr-text,
    .cid-raeoDQkHRb .list,
    .cid-raeoDQkHRb .mbr-section-btn {
        text-align: center !important;
    }

    .cid-raeoDQkHRb .text-content {
        padding: 0;
    }
}

.cid-raeoEobgGG {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-raeoEobgGG .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-raeoEobgGG .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-raeoEobgGG .text-content {
    padding-right: 1.5rem;
}

.cid-raeoEobgGG .mbr-text {
    color: #8d97ad;
}

.cid-raeoEobgGG .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-raeoEobgGG .counter-container {
    padding-top: 1rem;
}

.cid-raeoEobgGG .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-raeoEobgGG .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-raeoEobgGG .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #336b44;
}

@media (max-width: 991px) {
    .cid-raeoEobgGG .main-row {
        margin: 0;
    }

    .cid-raeoEobgGG .mbr-section-title,
    .cid-raeoEobgGG .mbr-text,
    .cid-raeoEobgGG .list,
    .cid-raeoEobgGG .mbr-section-btn {
        text-align: center !important;
    }

    .cid-raeoEobgGG .text-content {
        padding: 0;
    }
}

.cid-rafKOMvZt2 {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-rafKOMvZt2 .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-rafKOMvZt2 .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-rafKOMvZt2 .text-content {
    padding-right: 1.5rem;
    padding-right: 0;
    padding-left: 1.5rem;
}

.cid-rafKOMvZt2 .main-row {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}

.cid-rafKOMvZt2 .mbr-text {
    color: #8d97ad;
}

.cid-rafKOMvZt2 .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-rafKOMvZt2 .counter-container {
    padding-top: 1rem;
}

.cid-rafKOMvZt2 .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-rafKOMvZt2 .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-rafKOMvZt2 .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #188ef4;
}

@media (max-width: 991px) {
    .cid-rafKOMvZt2 .main-row {
        margin: 0;
    }

    .cid-rafKOMvZt2 .mbr-section-title,
    .cid-rafKOMvZt2 .mbr-text,
    .cid-rafKOMvZt2 .list,
    .cid-rafKOMvZt2 .mbr-section-btn {
        text-align: center !important;
    }

    .cid-rafKOMvZt2 .text-content {
        padding: 0;
    }
}

.cid-rafKQ0NqlM {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-rafKQ0NqlM .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-rafKQ0NqlM .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-rafKQ0NqlM .text-content {
    padding-right: 1.5rem;
}

.cid-rafKQ0NqlM .mbr-text {
    color: #8d97ad;
}

.cid-rafKQ0NqlM .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-rafKQ0NqlM .counter-container {
    padding-top: 1rem;
}

.cid-rafKQ0NqlM .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-rafKQ0NqlM .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-rafKQ0NqlM .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #188ef4;
}

@media (max-width: 991px) {
    .cid-rafKQ0NqlM .main-row {
        margin: 0;
    }

    .cid-rafKQ0NqlM .mbr-section-title,
    .cid-rafKQ0NqlM .mbr-text,
    .cid-rafKQ0NqlM .list,
    .cid-rafKQ0NqlM .mbr-section-btn {
        text-align: center !important;
    }

    .cid-rafKQ0NqlM .text-content {
        padding: 0;
    }
}

.cid-rafKQwL0J5 {
    padding-top: 160px;
    padding-bottom: 120px;
    background-color: #efefef;
}

.cid-rafKQwL0J5 .mbr-overlay {
    background: linear-gradient(90deg, #21b968, #1ec5bf);
}

.cid-rafKQwL0J5 .mbr-section-btn {
    margin-left: -0.8rem;
}

.cid-rafKQwL0J5 .text-content {
    padding-right: 1.5rem;
    padding-right: 0;
    padding-left: 1.5rem;
}

.cid-rafKQwL0J5 .main-row {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
}

.cid-rafKQwL0J5 .mbr-text {
    color: #8d97ad;
}

.cid-rafKQwL0J5 .mbr-figure img {
    -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.3);
    border-radius: .25rem;
}

.cid-rafKQwL0J5 .counter-container {
    padding-top: 1rem;
}

.cid-rafKQwL0J5 .counter-container ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.cid-rafKQwL0J5 .counter-container ul li {
    margin-bottom: 1rem;
    list-style: none;
}

.cid-rafKQwL0J5 .counter-container ul li:before {
    font-family: MobiriseIcons !important;
    content: '\e966';
    position: absolute;
    left: 0px;
    padding-top: 2px;
    display: inline-block;
    text-align: center;
    margin: 4px 10px;
    line-height: 10px;
    transition: all .2s;
    width: 16px;
    height: 16px;
    font-size: 16px !important;
    font-weight: 500;
    background: none;
    color: #188ef4;
}

@media (max-width: 991px) {
    .cid-rafKQwL0J5 .main-row {
        margin: 0;
    }

    .cid-rafKQwL0J5 .mbr-section-title,
    .cid-rafKQwL0J5 .mbr-text,
    .cid-rafKQwL0J5 .list,
    .cid-rafKQwL0J5 .mbr-section-btn {
        text-align: center !important;
    }

    .cid-rafKQwL0J5 .text-content {
        padding: 0;
    }
}

.cid-raf4YRVmZ2 {
    padding-top: 135px;
    padding-bottom: 135px;
    background-image: url("../../../assets/images/mbr-1920x1277.jpg");
}

.cid-raf4YRVmZ2 .mbr-section-title {
    margin: 0;
    text-align: right;
}

.cid-raf4YRVmZ2 .mbr-section-subtitle,
.cid-raf4YRVmZ2 .mbr-text {
    color: #8d97ad;
}

.cid-raf4YRVmZ2 .row-item {
    padding-bottom: 2rem;
}

@media (max-width: 767px) {

    .cid-raf4YRVmZ2 .card-img,
    .cid-raf4YRVmZ2 .mbr-text,
    .cid-raf4YRVmZ2 .mbr-card-title,
    .cid-raf4YRVmZ2 .mbr-section-subtitle,
    .cid-raf4YRVmZ2 .mbr-section-title,
    .cid-raf4YRVmZ2 .underline,
    .cid-raf4YRVmZ2 .mbr-section-btn {
        text-align: center !important;
    }
}

.cid-raf4YRVmZ2 .mbr-text,
.cid-raf4YRVmZ2 .mbr-section-btn {
    text-align: left;
    color: #efefef;
}

.cid-raeZz20F8R {
    padding-top: 90px;
    padding-bottom: 90px;
    background-color: #ffffff;
}

.cid-raeZz20F8R .mbr-overlay {
    background: #efefef;
}

.cid-raeZz20F8R .mbr-section-subtitle {
    color: #8d97ad;
}

.cid-raeZz20F8R .client-name {
    color: #8d97ad;
}

.cid-raeZz20F8R .wrap-img {
    padding-bottom: 1rem;
}

.cid-raeZz20F8R .wrap-img img {
    max-width: 100%;
}

.cid-raeZz20F8R .card-box p {
    color: #8d97ad;
    margin: 0;
    padding-bottom: 1.5rem;
}

.cid-raf51BdTTU {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #ffffff;
}

.cid-raf51BdTTU .mbr-text {
    color: #8d97ad;
}

.cid-raf51BdTTU .blockquote-quote svg {
    height: 40px;
    width: 40px;
    fill: #8d97ad;
}

.cid-raf51BdTTU .signature>span {
    color: #336b44;
}

@media (max-width: 767px) {
    .cid-raf51BdTTU .blockquote-quote {
        text-align: left;
    }

    .cid-raf51BdTTU .signature {
        text-align: left;
    }
}

.cid-raenWOqkM0 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.cid-raenWOqkM0 .mbr-overlay {
    background: #ffffff;
}

.cid-raenWOqkM0 .mbr-text a {
    font-weight: 600;
}

.cid-raenWOqkM0 .mbr-text a:hover {
    color: #fdd11f !important;
}

.cid-raeo7xTW5r {
    padding-top: 60px;
    padding-bottom: 60px;
    background-color: #333333;
}

@media (max-width: 767px) {
    .cid-raeo7xTW5r .content {
        text-align: center;
    }

    .cid-raeo7xTW5r .content>div:not(:last-child) {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767px) {
    .cid-raeo7xTW5r .media-wrap {
        margin-bottom: 1rem;
    }
}

.cid-raeo7xTW5r .media-wrap .mbr-iconfont-logo {
    font-size: 7.5rem;
    color: #f36;
}

.cid-raeo7xTW5r .media-wrap img {
    height: 6rem;
}

.cid-raeo7xTW5r .mbr-text {
    color: #8d97ad;
}

.cid-raeo7xTW5r .p-title {
    font-size: 17px;
    color: #ffffff;
}

.cid-raeo7xTW5r .p-title span {
    color: #111111;
}

.cid-raeo7xTW5r .title-card {
    font-size: 1.3rem;
}

.cid-raeo7xTW5r .social-media ul {
    margin: 0;
    padding: 0;
    margin-bottom: 8px;
}

.cid-raeo7xTW5r .social-media ul li {
    margin-right: .5rem;
    display: inline-block;
    margin-bottom: .5rem;
}

.cid-raeo7xTW5r .footer-menu {
    margin-bottom: 0;
    display: flex;
    -webkit-justify-content: flex-end;
    justify-content: flex-end;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
}

.cid-raeo7xTW5r .footer-menu__item {
    font-size: 18px;
    padding-right: 1.5rem;
}

.cid-raeo7xTW5r .footer-menu__item:last-child {
    padding-right: 0;
}

.cid-raeo7xTW5r .copyright {
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}

.cid-raeo7xTW5r .copyright img {
    margin-right: 10px;
    width: 150px;
    max-width: 80%;
}

.cid-raeo7xTW5r .icon-transition span {
    color: #ffffff;
    display: flex;
    padding: 1rem;
    border-radius: 50%;
    background-color: #f4f8fa;
    transition: all 0.3s ease-out 0s;
    font-size: 15px;
    color: #336542;
    border: 2px solid #336542;
}

.cid-raeo7xTW5r .icon-transition span:hover {
    background-color: #c1c1c1;
}

@media (max-width: 767px) {
    .cid-raeo7xTW5r .footer-lower .copyright {
        margin-bottom: 1rem;
        text-align: center;
    }
}

.cid-raeo7xTW5r .footer-lower hr {
    margin: 1rem 0;
    border-color: #efefef;
}

@media (max-width: 767px) {
    .cid-raeo7xTW5r .footer-menu {
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.cid-raeo7xTW5r H5 {
    color: #efefef;
}

.cid-raeo7xTW5r .copyright>p {
    color: #ffffff;
    text-align: right;
}

.cid-rhiGSVtlQ6 .modal-body .close {
    background: #1b1b1b;
}

.cid-rhiGSVtlQ6 .modal-body .close span {
    font-style: normal;
}

.cid-rhiGSVtlQ6 .carousel-inner>.active,
.cid-rhiGSVtlQ6 .carousel-inner>.next,
.cid-rhiGSVtlQ6 .carousel-inner>.prev {
    display: table;
}

.cid-rhiGSVtlQ6 .carousel-control .icon-next,
.cid-rhiGSVtlQ6 .carousel-control .icon-prev {
    margin-top: -18px;
    font-size: 40px;
    line-height: 27px;
}

.cid-rhiGSVtlQ6 .carousel-control:hover {
    background: #1b1b1b;
    color: #fff;
    opacity: 1;
}

@media (max-width: 767px) {
    .cid-rhiGSVtlQ6 .container .carousel-control {
        margin-bottom: 0;
    }
}

.cid-rhiGSVtlQ6 .boxed-slider {
    position: relative;
    padding: 93px 0;
}

.cid-rhiGSVtlQ6 .boxed-slider>div {
    position: relative;
}

.cid-rhiGSVtlQ6 .container img {
    width: 100%;
}

.cid-rhiGSVtlQ6 .container img+.row {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 2;
}

.cid-rhiGSVtlQ6 .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.cid-rhiGSVtlQ6 .mbr-table-cell {
    padding: 0;
}

.cid-rhiGSVtlQ6 .container .carousel-indicators {
    margin-bottom: 3px;
}

.cid-rhiGSVtlQ6 .carousel-caption {
    top: 50%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cid-rhiGSVtlQ6 .mbr-overlay {
    z-index: 1;
}

.cid-rhiGSVtlQ6 .container-slide.container {
    width: 100%;
    min-height: 100vh;
    padding: 0;
}

.cid-rhiGSVtlQ6 .carousel-item {
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
    -o-transition: -o-transform 0.6s ease-in-out;
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}

@media (max-width: 576px) {
    .cid-rhiGSVtlQ6 .carousel-item .container {
        width: 100%;
    }
}

.cid-rhiGSVtlQ6 .carousel-item-next.carousel-item-left,
.cid-rhiGSVtlQ6 .carousel-item-prev.carousel-item-right {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.cid-rhiGSVtlQ6 .active.carousel-item-right,
.cid-rhiGSVtlQ6 .carousel-item-next {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.cid-rhiGSVtlQ6 .active.carousel-item-left,
.cid-rhiGSVtlQ6 .carousel-item-prev {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-control {
    top: 50%;
    width: 70px;
    height: 70px;
    margin-top: -1.5rem;
    font-size: 35px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    transition: all .3s;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-control.carousel-control-prev {
    left: 0;
    margin-left: 2.5rem;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-control.carousel-control-next {
    right: 0;
    margin-right: 2.5rem;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-control .mbr-iconfont {
    font-size: 2rem;
}

@media (max-width: 767px) {
    .cid-rhiGSVtlQ6 .mbr-slider .carousel-control {
        top: auto;
        bottom: 1rem;
    }
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators {
    position: absolute;
    bottom: 0;
    margin-bottom: 1.5rem !important;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators li {
    max-width: 20px;
    width: 20px;
    height: 20px;
    max-height: 20px;
    margin: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: 2px solid #fff;
    border-radius: 50%;
    opacity: .5;
    transition: all .3s;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators li.active,
.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators li:hover {
    opacity: .9;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators li::after,
.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators li::before {
    content: none;
}

.cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators.ie-fix {
    left: 50%;
    display: block;
    width: 60%;
    margin-left: -30%;
    text-align: center;
}

@media (max-width: 576px) {
    .cid-rhiGSVtlQ6 .mbr-slider .carousel-indicators {
        display: none !important;
    }
}

.cid-rhiGSVtlQ6 .mbr-slider>.container img {
    width: 100%;
}

.cid-rhiGSVtlQ6 .mbr-slider>.container img+.row {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    z-index: 2;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cid-rhiGSVtlQ6 .mbr-slider>.container .carousel-indicators {
    margin-bottom: 3px;
}

@media (max-width: 576px) {
    .cid-rhiGSVtlQ6 .mbr-slider>.container .carousel-control {
        margin-bottom: 0;
    }
}

.cid-rhiGSVtlQ6 .mbr-slider .mbr-section {
    padding: 0;
    background-attachment: scroll;
}

.cid-rhiGSVtlQ6 .mbr-slider .mbr-table-cell {
    padding: 0;
}

.cid-rhiGSVtlQ6 .carousel-item .container.container-slide {
    position: initial;
    width: auto;
    min-height: 0;
}

.cid-rhiGSVtlQ6 .full-screen .slider-fullscreen-image {
    min-height: 100vh;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.cid-rhiGSVtlQ6 .full-screen .slider-fullscreen-image.active {
    display: -o-flex;
}

.cid-rhiGSVtlQ6 .full-screen .container {
    width: auto;
    padding-top: 9rem;
    padding-bottom: 4rem;
}

.cid-rhiGSVtlQ6 .full-screen .carousel-item .container.container-slide {
    min-width: 100%;
    min-height: 100vh;
    padding: 0;
}

.cid-rhiGSVtlQ6 .full-screen .carousel-item .container.container-slide img {
    display: none;
}

.cid-rhiGSVtlQ6 .mbr-background-video-preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.cid-rhiGSVtlQ6 .mbr-overlay~.container-slide {
    z-index: auto;
}

.barrafixa {
    position: fixed;
    background-color: rgba(51, 107, 68, .9);
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99999999;
}

@media only screen and (max-width: 767px) {
    .modal-dialog-adjust {
        max-width: 100% !important;
    }
}

@media only screen and (min-width: 768px) {
    .modal-dialog-adjust {
        max-width: 60% !important;
        height: auto !important;
    }
}

.barrafixa span {
    font-weight: bold;
    font-size: 0.7rem;
}

.barrafixa a {
    font-weight: bold;
    font-size: 0.7rem;
}

.barrafixa .btn-contato {
    color: #000;
    font-weight: bold;
    background-color: #fdd11f;
    padding: 0.5rem 1rem !important;
    margin: .4rem .4rem !important;
    font-size: 0.6rem !important;
    /*width: 75%;*/
}

@media (max-width: 1025px) {
    .barrafixa a {
        font-size: 5pt !important;
        width: 100% !important;
    }

    .cid-rae7RRiuEp .navbar-brand .navbar-caption {
        font-size: 0.6rem !important;
    }
}

.cid-rae7RRiuEp .navbar .navbar-logo img {
    max-width: 100px;
    height: auto !important;
    max-height: 100%;
}

@media (max-width: 768px) {
    .barrafixa-responsiva {
        display: flex !important;
        z-index: 9999999;
    }

    .barrafixa {
        display: none !important;
    }

    .navbar-caption-wrap {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .barrafixa .col-md-2 {
        max-width: 14.666667% !important;
    }

    .cid-raf1W94Wv4,
    .cid-raf4YRVmZ2,
    .cid-raenWOqkM0,
    .mbr-section-hero {
        background-attachment: fixed !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-size: cover !important;
    }

    #myModal .modal-card {
        margin: 1rem;
        padding: 1.5rem 0rem;
    }

    #myModal .modal-content {
        max-height: 500px;
    }

}

.barrafixa-responsiva {
    position: fixed;
    right: 0;
    bottom: 0;
    margin: 10px;
    background-color: #336b44;
    color: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: none;
    justify-content: center;
    align-items: center;
}

.phishing {
    background-color: rgba(0, 0, 0, .8);
    z-index: 999999999;
}

.phishing .modal-content {
    border-radius: 0;
}

.phishing h4 {
    font-weight: 500;
    font-size: 18pt;
    text-align: center;
}

.phishing h5 {
    font-size: 14pt;
    text-align: center;
}

.phishing p {
    font-weight: 500;
    color: #336b44 !important;
    font-size: 11pt;
}

.phishing .close,
#myModal .close {
    position: absolute;
    top: 0;
    right: 0;
    margin: 5px;
}

#myModal .close {
    color: white;
    padding: 0.15rem 0.4rem;
    border-radius: 25px;
    background-color: #232323;
    border: 1px solid black;
}

#myModal .modal-content {
    overflow-y: scroll;
    overflow-x: hidden;
}

.phishing .modal-body {
    position: relative;
}

.modal_descricoes {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
}

.modal_descricoes .content {
    background-color: white;
    max-width: 80%;
    width: 700px;
}

.funcionalidades .row-item {
    cursor: pointer;
}

.direitos {
    margin-bottom: 40px;
}

.copyright {
    justify-content: center;
    align-items: center;
}

@media (max-width:992px) {
    .navbar-collapse {
        width: 100%;
        background-color: #313130;
        margin-left: -16px;
        margin-right: -16px;
    }
}

.text-warning {
    color: #fdd11f !important;
}

a.barra i:hover {
    color: #fff !important;
}

a.barra span:hover {
    color: #fff !important;
}

a.btn-con:hover {
    color: #477a56 !important;
    background-color: #fff !important;
}

a.text-white:hover,
a.text-white:focus {
    color: #6aa06a !important;
}

a.h-footer:hover {
    color: #fdd11f !important;
}

.img-card-size {
    height: 300px;
}

.div-card-size {
    width: 100%;
    margin: 0 auto !important;
    overflow: hidden;
    position: relative;
    height: 400px;
}

a.h-color h4:hover {
    color: #336b44 !important;
}

.mbr-section-full2 {
    display: table !important;
    height: 100vh !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    table-layout: fixed !important;
    width: 100% !important;
}

.mbr-table-cell-v {
    display: table-cell !important;
    float: none !important;
    padding-bottom: 0 !important;
    padding-top: 0 !important;
    position: relative !important;
    vertical-align: middle !important;
    width: 100% !important;
}

.heading-title-v {
    text-align: center !important;
    font-size: 35px !important;
    color: #fdad01 !important;
    font-weight: 500;
}

.btn-group {
    background-color: #025d7a !important;
    border-color: #025d7a !important;
    color: #ffffff !important;
    font-size: 1rem !important;
}

.btn-group:hover {
    color: #ffffff !important;
    background-color: #01242f !important;
    border-color: #01242f !important;
}

@media (min-width: 768px) {
    .col-md-offset-2 {
        margin-left: 16.66667% !important;
    }
}

.bg-gradient {
    padding-top: 6rem;
    padding-bottom: 6rem;
    background: linear-gradient(90deg, rgb(51, 51, 51) 0%, rgb(11, 88, 11) 50%, rgb(51, 51, 51) 100%);
}

.bg-gradient h1 {
    line-height: 1.4 !important;
}

.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(70, 120, 85, 0.32) !important;
}

.btn-primary.focus,
.btn-primary:focus {
    box-shadow: 0 0 0 0.2rem rgba(51, 101, 66, 0.46) !important;
}

#cursos {
    padding: 4rem 0rem !important;
    background-color: #f9f9f9 !important;
}

.blog-section {
    padding: 4rem 0rem;
    background-color: #f9f9f9;
}

.blog-section .title {
    color: rgb(69, 119, 84);
    font-weight: 600;
}

.blog-section .card-title {
    color: rgb(69, 119, 84);
    font-weight: 700;
    text-transform: none;
    line-height: 15px;
}

.blog-section .card-title:hover,
.blog-section .card-title:active {
    color: #daaf00;
    text-decoration: underline;
}

.blog-section .card,
.blog-section .card:hover {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.blog-section .card {
    border: 1px solid #b5b5b5;
}

.blog-section .card-footer {
    border-bottom: 1px solid #b5b5b5;
}

.blog-section .card-footer small {
    color: rgb(69, 119, 84) !important;
    font-weight: 600;
}

.blog-section img.card-img-top {
    border-top: 1px solid #b5b5b5;
    border-right: 1px solid #b5b5b5;
    border-left: 1px solid #b5b5b5;
}

.post-recents .card-color {
    border: 1px solid #b5b5b5;
    padding: 0.5rem 1rem;
    background-color: rgb(238, 238, 238);
}

.post-recents .card-color a.card-title {
    font-size: smaller !important;
    line-height: 1 !important;
}

.postagens-section {
    padding: 3rem 0rem;
    background-color: #f9f9f9;
}

.blog-content {
    padding: 4rem 0rem;
}

.postagens-section .sidebar .card-header,
.blog-content .sidebar .card-header {
    background-color: #437653 !important;
    color: #ffffff !important;
    text-align: center !important;
    font-weight: 500;
}

.sidebar ul li a:hover {
    color: #437653 !important;
}

.cid-s2Rb25Y4ap {
    padding-top: 2rem;
    padding-bottom: 2rem;
    background: linear-gradient(180deg, rgba(56, 135, 80, 1) 0%, rgba(51, 107, 68, 1) 50%, rgba(26, 51, 34, 1) 100%);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social {
    font-size: 1rem;
    color: #336542;
    margin-left: .5rem;
    margin-right: .5rem;
    background: #f1f1f1;
    padding: .6rem;
    border-radius: 25px;
}

.cid-s2Rb25Y4ap .mbr-iconfont-social:hover {
    background: rgb(218, 218, 218);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-twitter:hover,
.cid-raeo7xTW5r .icon-transition span.fa-twitter:hover {
    color: rgb(29, 161, 242);
    border: 1px solid rgb(29, 161, 242);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-facebook:hover,
.cid-raeo7xTW5r .icon-transition span.fa-facebook:hover {
    color: rgb(66, 103, 178);
    border: 1px solid rgb(66, 103, 178);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-whatsapp:hover,
.cid-raeo7xTW5r .icon-transition span.fa-whatsapp:hover {
    color: rgb(37, 211, 102);
    border: 1px solid rgb(37, 211, 102);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-linkedin:hover,
.cid-raeo7xTW5r .icon-transition span.fa-linkedin:hover {
    color: rgb(40, 103, 178);
    border: 1px solid rgb(40, 103, 178);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-instagram:hover,
.cid-raeo7xTW5r .icon-transition span.fa-instagram:hover {
    color: rgb(225, 48, 108);
    border: 1px solid rgb(225, 48, 108);
}

.cid-s2Rb25Y4ap .mbr-iconfont-social.fa-youtube:hover,
.cid-raeo7xTW5r .icon-transition span.fa-youtube:hover {
    color: rgb(255, 0, 0);
    border: 1px solid rgb(255, 0, 0);
}

.cid-s2Rb25Y4ap .underline {
    /*  padding-top: .5rem;*/
    padding-bottom: .5rem;
}

.cid-s2Rb25Y4ap .underline .line {
    width: 5rem;
    height: 3px;
    background: #252525;
    display: inline-block;
}

.cid-s2Rb25Y4ap .social-list a:focus {
    text-decoration: none;
}

@media (max-width: 767px) {
    .cid-s2Rb25Y4ap .mbr-iconfont-social {
        margin-left: .2rem;
        margin-right: .2rem;
    }
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #336b44;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
    top: 80%;
    animation: pulse 1.2s infinite;
}

.my-float {
    margin-top: 16px;
    color: #FFF !important;
}


.float:hover {
    animation: none;
}


@-webkit-keyframes pulse {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(3, 54, 10, 0.808);
    }

    70% {
        -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

@keyframes pulse {
    0% {
        -moz-box-shadow: 0 0 0 0 rgba(44, 204, 71, 0.644);
        box-shadow: 0 0 0 0 rgba(44, 204, 84, 0.616);
    }

    70% {
        -moz-box-shadow: 0 0 0 10px rgba(44, 204, 71, 0.644);
        box-shadow: 0 0 0 10px rgba(44, 204, 71, 0.644);
    }

    100% {
        -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
        box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    }
}

.grecaptcha-badge {
    opacity: 0 !important;
    /*Joga para o lado esquerdo*/
    position: absolute;
    left: -250px;
    transform: rotate(-180deg);
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 800px;
    }
}