/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --color-success:     #00941b;
    --color-danger:      #e73d3d;
    --color-dark-green:  #235f39;
    --color-purple:      #ad2566;
    --color-dark-green:  #235f39;
    --color-green:       #287444;
    --color-light-green: #cdd632;
    --color-dark-gray:   #575656;
    --color-gray:        #bcbcbc;
    --color-light-gray:  #f0f2f5;
    --color-white:       #FFFFFF;
}

.has-color-purple {
    color: var(--color-purple);
}

.has-color-dark-green {
    color: var(--color-dark-green);
}

.has-color-green {
    color: var(--color-green);
}

.has-color-light-green {
    color: var(--color-light-green);
}

.has-color-dark-gray {
    color: var(--color-dark-gray);
}

.has-color-gray {
    color: var(--color-gray);
}

.has-color-light-gray {
    color: var(--color-light-gray);
}

.has-color-white {
    color: var(--color-white);
}

.has-color-success {
    color: var(--color-success);
}

.has-color-danger {
    color: var(--color-danger);
}

.has-bg-purple {
    background-color: var(--color-purple);
}

.has-bg-dark-green {
    background-color: var(--color-dark-green);
}

.has-bg-green {
    background-color: var(--color-green);
}

.has-bg-light-green {
    background-color: var(--color-light-green);
}

.has-bg-dark-gray {
    background-color: var(--color-dark-gray);
}

.has-bg-gray {
    background-color: var(--color-gray);
}

.has-bg-light-gray {
    background-color: var(--color-light-gray);
}

.has-bg-white {
    background-color: var(--color-white);
}

.has-bg-success {
    background-color: var(--color-success);
}

.has-bg-danger {
    background-color: var(--color-danger);
}

.has-bg-gradient-green {
    background: rgb(216,223,56);
    background: -o-linear-gradient(left, rgba(216,223,56,1) 10%, rgba(145,164,20,1) 90%);
    background: -webkit-gradient(linear, left top, right top, color-stop(10%, rgba(216,223,56,1)), color-stop(90%, rgba(145,164,20,1)));
    background: linear-gradient(90deg, rgba(216,223,56,1) 10%, rgba(145,164,20,1) 90%);
}

.c-header {
    padding: 30px;
    z-index: 99;
    position: relative;
}

.c-footer,
.site-section:not(.no-padding-top) {
    padding-top: 50px;
}

.c-footer,
.site-section:not(.no-padding-bottom) {
    padding-bottom: 50px;
}

html,
body {
    overflow-x: hidden;
}

body {
    font-size: 16px;
    font-weight: 400;
    font-family: Poppins;
    color: var(--color-dark-gray);
    background-color: var(--color-white);
    text-align: left;
}

* {
    outline-width: 0;
    outline-color: transparent;
    outline: none;
}

a,
a:hover,
a:focus {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    margin-bottom: 0;
}

iframe {
    border: none;
}

button,
input[type="submit"] {
    border: none;
}

.c-navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
}

.c-header .c-navigation {
    margin-top: 30px;
}

.c-header .c-header__brand {
    display: block;
    width: 230px;
}

.c-list {
    padding-left: 20px;
}

.c-list .c-list--item {
    font-size: 1.4rem;
    margin: 15px 0;
    color: var(--color-dark-green);
    position: relative;
    text-align: left;
}

.c-list .c-list--item::before {
    content: '•';
    font-size: 1.2em;
    position: absolute;
    left: -20px;
    top: -3px;
    color: var(--color-purple)
}

.c-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: var(--color-light-gray);
    border-radius: 13px;
    overflow: hidden;
}

.c-tabs .c-tabs__item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
}

.c-tabs .c-tabs__item .c-tabs__link {
    border-radius: 13px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2em;
    color: var(--color-dark-green);
}

.c-tabs .c-tabs__item .c-tabs__link.active {
    font-weight: 700;
    color: var(--color-white);
    background-color: var(--color-purple);
}

.c-table {
    width: 100%;
}

.c-table tr th,
.c-table tr td {
    padding: 0 10px;
}

.c-table tr th:first-of-type,
.c-table tr td:first-of-type {
    width: 50%;
}

.c-table tr th:not(:first-of-type),
.c-table tr td:not(:first-of-type) {
    width: 16.6666666667%;
}

.c-table tr.c-table__title-row.c-table__title-row--with-padding-top td {
    padding-top: 50px;
}

.c-table tbody tr.c-table__title-row td {
    padding: 7px 15px;
}

.c-table tbody tr:not(.c-table__title-row) td {
    padding: 15px 15px;
}

.c-table p {
    margin-bottom: 0;
}

.c-table .c-table__icon {
    font-size: 1.3rem;
}

.c-table .c-table__icon.c-table__icon--check {
    color: var(--color-success);
}

.c-table .c-table__icon.c-table__icon--cross {
    color: var(--color-danger);
}

.c-plan {
    text-align: left;
}

.c-plan .c-plan__title {
    color: var(--color-dark-green);
    font-size: 1.5rem;
    margin-bottom: 5px;
    line-height: 1.1em;
}

.c-plan .c-plan__value {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4em;
    margin-bottom: 10px;
}

.c-plan .c-plan__button {
    display: block;
    width: 150px;
    color: var(--color-white);
    background-color: var(--color-dark-green);
    border-radius: 7px;
}

.c-plan strong {
    font-weight: 700;
}

.c-tooltip {
    display: inline-block;
    color: var(--color-white);
    background-color: rgba(0, 0, 0, 0.8);
    width: 15px;
    height: 15px;
    border-radius: 100%;
    text-align: center;
    line-height: 15px;
    padding: 0;
    font-size: 0.8rem;
    margin-left: 5px;
}

#banner-carousel {
   margin-top: -65px;
}

.c-text {
    line-height: 1.2em;
}

.c-text--thin {
    font-weight: 100;
}

.c-text--extra-light {
    font-weight: 200;
}

.c-text--light {
    font-weight: 300;
}

.c-text--medium {
    font-weight: 500;
}

.c-text--semi-bold {
    font-weight: 600;
}

.c-text--bold {
    font-weight: 700;
}

.c-text--extra-bold {
    font-weight: 800;
}

.c-text--black {
    font-weight: 900;
}

.c-text--italic {
    font-style: italic;
}

.c-text--uppercase {
    text-transform: uppercase;
}

.c-text--xl-2 {
    font-size: 4rem;
}

.c-text--xl {
    font-size: 3rem;
}

.c-text--lg {
    font-size: 2.5rem;
}

.c-text--md {
    font-size: 2rem;
}

.c-text--sm-2 {
    font-size: 1.5rem;
}

.c-text--sm {
    font-size: 1.1rem;
}

.c-text--xs {
    font-size: 1rem;
}

.c-text--justify {
    text-align: justify;
}

.c-text--left {
    text-align: left;
}

.c-text--right {
    text-align: right;
}

.c-text--center {
    text-align: center;
}

.c-text:not(.c-text--no-margin) {
    margin-bottom: 20px;
}

.c-text.c-text--has-margin-top {
    margin-top: 20px;
}

.c-text--space-letters {
    letter-spacing: .07em;
}

@media (max-width: 575.98px) {
    .c-text--xl-2 {
        font-size: 2.3rem;
    }

    .c-text--xl {
        font-size: 1.8rem;
    }

    .c-text--lg {
        font-size: 1.6rem;
    }

    .c-text--md {
        font-size: 1.3rem;
    }

    .c-text--sm {
        font-size: 1rem;
    }

    .c-text--xs {
        font-size: 0.8rem;
    }

    .c-text:not(.c-text--no-margin) {
        margin-bottom: 15px;
    }

    .c-text.c-text--has-margin-top {
        margin-top: 15px;
    }

    .c-text--space-letters {
        letter-spacing: 0;
    }

    .c-header, .c-footer, .site-section:not(.no-padding-bottom) {
        padding-bottom: 30px;
    }
    .c-header, .c-footer, .site-section:not(.no-padding-top) {
        padding-top: 30px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .c-text--xl-2 {
        font-size: 2.8rem;
    }

    .c-text--xl {
        font-size: 2.2rem;
    }

    .c-text--lg {
        font-size: 1.8rem;
    }

    .c-text--md {
        font-size: 1.5rem;
    }

    .c-text--sm {
        font-size: 1.1rem;
    }

    .c-text--xs {
        font-size: 0.8rem;
    }

    .c-text:not(.c-text--no-margin) {
        margin-bottom: 20px;
    }

    .c-text.c-text--has-margin-top {
        margin-top: 20px;
    }

    .c-text--space-letters {
        letter-spacing: 0;
    }

    .c-header, .c-footer, .site-section:not(.no-padding-bottom) {
        padding-bottom: 30px;
    }
    .c-header, .c-footer, .site-section:not(.no-padding-top) {
        padding-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .c-text--xl-2 {
        font-size: 3rem;
    }
    
    .c-text--xl {
        font-size: 2.2rem;
    }

    .c-text--lg {
        font-size: 1.8rem;
    }

    .c-text--md {
        font-size: 1.6rem;
    }

    .c-text--sm {
        font-size: 1.1rem;
    }

    .c-text--xs {
        font-size: 0.8rem;
    }

    .c-text:not(.c-text--no-margin) {
        margin-bottom: 20px;
    }

    .c-text.c-text--has-margin-top {
        margin-top: 20px;
    }

    .c-text--space-letters {
        letter-spacing: 0;
    }

    .c-header, .c-footer, .site-section:not(.no-padding-bottom) {
        padding-bottom: 40px;
    }
    .c-header, .c-footer, .site-section:not(.no-padding-top) {
        padding-top: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .c-text--xl {
        font-size: 2.5rem;
    }

    .c-text--lg {
        font-size: 2rem;
    }

    .c-text--md {
        font-size: 1.8rem;
    }

    .c-text--sm {
        font-size: 1.3rem;
    }

    .c-text--xs {
        font-size: 0.9rem;
    }

    .c-text:not(.c-text--no-margin) {
        margin-bottom: 20px;
    }

    .c-text.c-text--has-margin-top {
        margin-top: 20px;
    }
    
    .c-header, .c-footer, .site-section:not(.no-padding-bottom) {
        padding-bottom: 40px;
    }
    .c-header, .c-footer, .site-section:not(.no-padding-top) {
        padding-top: 40px;
    }
}

.c-button {
    display: block;
    margin: 0 auto;
    color: var(--color-white);
    background-color: var(--color-dark-green);
    width: 300px;
    height: 45px;
    border-radius: 13px;
    font-size: 1.2rem;
}

.c-button.c-button--block {
    width: 100%;
}

.c-button.c-button--sm {
    width: 280px;
    height: 35px;
    font-size: 1.1rem;
    border-radius: 35px;
}

.c-button.c-button--xl {
    height: 80px;
    font-size: 2rem;
    border-radius: 15px;
    font-weight: bold;
    background-color: var(--color-purple);
}

.c-see-more {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
    font-size: 1.1rem;
    text-align: center;
}

.c-see-more:not(.c-see-more--is-loading) .c-see-more__loading {
    display: none;
}

.c-see-more.c-see-more--is-loading .c-see-more__button {
    display: none;
}

.c-see-more svg {
    display: block;
    width: 100px;
    margin: 10px auto 0;
}

.c-see-more svg > path {
    stroke: rgb(216,223,56);
    stroke: linear-gradient(90deg, rgba(216,223,56,1) 10%, rgba(145,164,20,1) 90%);
}

.c-button:not(.c-button--no-margin) {
    margin-top: 50px;
}

.c-label {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 1.2rem;
    text-align: left;
}

.c-label:not([class*=has-color-]) {
    color: var(--color-dark-gray);
}

.c-input,
.c-textarea,
.c-select {
    display: block;
    width: 100%;
    color: var(--color-dark-gray);
    padding: 0 15px;
    border: 1px solid var(--color-dark-green);
    background-color: transparent;
}

.c-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-position: right 20px center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: relative;
    background-image: url('../images/decrement.png');
}

.c-input,
.c-select {
    height: 45px;
    border-radius: 35px;
}

.c-input.is-invalid,
.c-textarea.is-invalid {
    padding-right: calc(1.5em + .75rem);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(.375em + .1875rem) center;
    background-size: calc(.75em + .375rem) calc(.75em + .375rem);
    margin-bottom: 0px;
}

.c-input.is-invalid,
.c-textarea.is-invalid,
.c-select.is-invalid,
.c-radio-group__option input.is-invalid + label,
.c-checkbox-group__option input.is-invalid + label {
    border: 1px solid var(--color-danger);
}

.c-input.is-invalid + .invalid-feedback,
.c-textarea.is-invalid + .invalid-feedback,
.c-select.is-invalid + .invalid-feedback {
    display: block;
    padding-left: 15px;
    margin-bottom: 20px;
    text-align: left;
}

.c-textarea {
    display: block;
    width: 100%;
    color: var(--color-dark-gray);
    border-radius: 20px;
    padding: 5px 15px;
    border: 1px solid var(--color-dark-green);
}

.c-input:not(.c-input--no-margin):not(.is-invalid),
.c-textarea:not(.c-textarea--no-margin):not(.is-invalid),
.c-select:not(.c-select--no-margin):not(.is-invalid),
.c-radio-group:not(.c-radio-group--no-margin),
.c-checkbox-group:not(.c-checkbox-group--no-margin) {
    margin-bottom: 20px;
}

.c-input::-webkit-input-placeholder, .c-textarea::-webkit-input-placeholder {
    color: var(--color-dark-gray);
}

.c-input::-moz-placeholder, .c-textarea::-moz-placeholder {
    color: var(--color-dark-gray);
}

.c-input:-ms-input-placeholder, .c-textarea:-ms-input-placeholder {
    color: var(--color-dark-gray);
}

.c-input::-ms-input-placeholder, .c-textarea::-ms-input-placeholder {
    color: var(--color-dark-gray);
}

.c-input::placeholder,
.c-textarea::placeholder {
    color: var(--color-dark-gray);
}

.c-radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-radio-group .c-label,
.c-radio-group .c-radio-group__option:not(:last-child) {
    margin-right: 25px;
}

.c-radio-group__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
    text-align: left;
}

.c-radio-group__option label {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: 1px solid var(--color-dark-green);
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--color-white);
    font-size: 1.3em;
}

.c-radio-group__option input {
    display: none;
}

.c-radio-group__option input:checked + label {
    background-color: var(--color-dark-green);
}

.c-checkbox-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-checkbox-group .c-label,
.c-checkbox-group .c-checkbox-group__option:not(:last-child) {
    margin-right: 25px;
}

.c-checkbox-group__option {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 0;
    text-align: left;
}

.c-checkbox-group__option label {
    height: 40px;
    width: 40px;
    border-radius: 40px;
    border: 1px solid var(--color-dark-green);
    margin-right: 10px;
    cursor: pointer;
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    color: var(--color-white);
    font-size: 1em;
}

.c-radio-group__option input:not(:checked) + label > i,
.c-checkbox-group__option input:not(:checked) + label > i {
    display: none;
}

.c-radio-group__option input:checked + label > i,
.c-checkbox-group__option input:checked + label > i {
    line-height: 40px;
}

.c-checkbox-group__option input {
    display: none;
}

.c-checkbox-group__option input:checked + label {
    background-color: var(--color-dark-green);
}

.c-checkbox-group__option:not(.c-checkbox-group__option--w100),
.c-radio-group__option:not(.c-radio-group__option--w100) {
    width: 100px;
}

@media (max-width: 575.98px) {
    .c-input,
    .c-select {
        height: 40px;
    }

    .c-input:not(.c-input--no-margin),
    .c-textarea:not(.c-textarea--no-margin),
    .c-radio-group:not(.c-radio-group--no-margin),
    .c-checkbox-group:not(.c-checkbox-group--no-margin) {
        margin-bottom: 15px;
    }

    .c-checkbox-group,
    .c-radio-group__option {
        font-size: 0.9rem;
    }

    .c-radio-group__option label,
    .c-checkbox-group__option label {
        margin-right: 5px;
    }

    .c-radio-group__option label {
        height: 30px;
        width: 30px;
        border-radius: 100%;
    }

    .c-checkbox-group__option label {
        height: 20px;
        width: 20px;
        min-height: 20px;
        min-width: 20px;
        border-radius: 100%;
        font-size: 0.8em;
    }

    .c-radio-group .c-label,
    .c-radio-group .c-radio-group__option:not(:last-child),
    .c-checkbox-group .c-label,
    .c-checkbox-group .c-checkbox-group__option:not(:last-child) {
        margin-right: 10px;
    }

    .c-label {
        font-size: 1rem;
    }

    .c-button:not(.c-button--no-margin) {
        margin-top: 20px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .c-input {
        height: 40px;
    }

    .c-input:not(.c-input--no-margin),
    .c-textarea:not(.c-textarea--no-margin),
    .c-radio-group:not(.c-radio-group--no-margin),
    .c-checkbox-group:not(.c-checkbox-group--no-margin) {
        margin-bottom: 15px;
    }

    .c-checkbox-group,
    .c-radio-group__option {
        font-size: 0.9rem;
    }

    .c-radio-group__option label,
    .c-checkbox-group__option label {
        margin-right: 5px;
    }

    .c-radio-group__option label {
        height: 30px;
        width: 30px;
        border-radius: 100%;
    }

    .c-radio-group .c-label,
    .c-radio-group .c-radio-group__option:not(:last-child),
    .c-checkbox-group .c-label,
    .c-checkbox-group .c-checkbox-group__option:not(:last-child) {
        margin-right: 10px;
    }

    .c-label {
        font-size: 1rem;
    }

    .c-button:not(.c-button--no-margin) {
        margin-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .c-input,
    .c-select {
        height: 40px;
    }

    .c-radio-group__option label {
        height: 40px;
        width: 40px;
        border-radius: 100%;
    }

    .c-label {
        font-size: 1rem;
    }

    .c-button:not(.c-button--no-margin) {
        margin-top: 40px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .c-input {
        height: 40px;
    }

    .c-radio-group__option label {
        height: 40px;
        width: 40px;
        border-radius: 100%;
    }

    .c-label {
        font-size: 1.1rem;
    }

    .c-button:not(.c-button--no-margin) {
        margin-top: 40px;
    }
}

.c-message {
    padding: 30px 50px;
    border: 1px solid var(--color-gray);
    margin-bottom: 30px;
    border-radius: 20px;
    cursor: pointer;
}

.c-message .c-message__text {
    text-align: left;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5em;
    pointer-events: none;
}

.c-quote {
    background-color: var(--color-green);
    padding: 30px 70px;
    margin-bottom: 30px;
    border-radius: 20px;
    height: 250px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.c-quote .c-quote__message {
    position: relative;
    text-align: left;
    font-size: 1.15rem;
    line-height: 1.4em;
    font-style: italic;
}

.c-quote .c-quote__message::before,
.c-quote .c-quote__message::after {
    content: '';
    position: absolute;
    display: inline-block;
    width: 45px;
    height: 45px;
    background: url('../images/quote.png') no-repeat center center;
    background-size: contain;
}

.c-quote .c-quote__message::before {
    top: -20px;
    left: -50px;
}

.c-quote .c-quote__message::after {
    bottom: -20px;
    right: -50px;
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg);
}


.c-quote .c-quote__author {
    margin-bottom: 0;
    font-weight: 600;
    color: var(--color-light-green);
    font-size: 1.5rem;
    text-align: left;
    text-transform: capitalize;
}

.c-quote__author.c-quote__author--sm {
    font-size: 1.3rem;
}

.c-quote__author.c-quote__author--xl {
    font-size: 1.1rem;
}

.c-video-player {
    width: 660px;
    margin-bottom: 20px;
}

@media (max-width: 767.98px) {
    .c-video-player {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .c-message {
        padding: 15px 20px;
        margin-bottom: 15px;
        border-radius: 15px;
        overflow: hidden;

    }

    .c-message .c-message__text {
        font-size: 0.8rem;
    }

    .c-quote {
        padding: 20px 50px;
        margin-bottom: 20px;
        border-radius: 20px;
        height: auto;
    }

    .c-quote .c-quote__message {
        font-size: 1.1rem;
    }

    .c-quote .c-quote__author {
        font-size: 1.3rem;
    }

    .c-quote__author.c-quote__author--sm {
        font-size: 1rem;
    }
    
    .c-quote__author.c-quote__author--xl {
        font-size: 0.9rem;
    }

    .c-quote .c-quote__message::before,
    .c-quote .c-quote__message::after {
        width: 37px;
        height: 37px;
    }

    .c-quote .c-quote__message::before {
        top: -10px;
        left: -40px;
    }

    .c-quote .c-quote__message::after {
        bottom: -10px;
        right: -40px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .c-message {
        padding: 20px 30px;
        margin-bottom: 15px;
        border-radius: 15px;
    }

    .c-message {
        padding: 20px 30px;
        margin-bottom: 20px;
    }

    .c-message .c-message__text {
        font-size: 0.85rem;
    }


}

@media (min-width: 768px) and (max-width: 991.98px) {

    .c-message {
        padding: 20px;
        margin-bottom: 20px;
    }

    .c-message .c-message__text {
        font-size: 0.8rem;
    }

    .c-quote {
        padding: 20px 40px;
        margin-bottom: 20px;
        border-radius: 20px;
        height: 215px;
    }

    .c-quote .c-quote__message {
        font-size: 0.9rem;
    }

    .c-quote .c-quote__author {
        font-size: 1.1rem;
    }

    .c-quote__author.c-quote__author--sm {
        font-size: 0.9rem;
    }
    
    .c-quote__author.c-quote__author--xl {
        font-size: 0.8rem;
    }

    .c-quote .c-quote__message::before,
    .c-quote .c-quote__message::after {
        width: 27px;
        height: 27px;
    }

    .c-quote .c-quote__message::before {
        top: -5px;
        left: -32px;
    }

    .c-quote .c-quote__message::after {
        bottom: -5px;
        right: -32px;
    }

    .c-video-player {
        width: 440px;
    }
    
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .c-message {
        padding: 20px 30px;
        margin-bottom: 20px;
    }

    .c-message .c-message__text {
        font-size: 0.85rem;
    }

    .c-quote {
        padding: 20px 50px;
        margin-bottom: 20px;
        border-radius: 20px;
        height: 230px;
    }

    .c-quote .c-quote__message {
        font-size: 1.1rem;
    }

    .c-quote .c-quote__author {
        font-size: 1.3rem;
    }

    .c-quote__author.c-quote__author--sm {
        font-size: 1.1rem;
    }
    
    .c-quote__author.c-quote__author--xl {
        font-size: 0.9rem;
    }

    .c-quote .c-quote__message::before,
    .c-quote .c-quote__message::after {
        width: 37px;
        height: 37px;
    }

    .c-quote .c-quote__message::before {
        top: -10px;
        left: -40px;
    }

    .c-quote .c-quote__message::after {
        bottom: -10px;
        right: -40px;
    }

    .c-video-player {
        width: 560px;
    }

}

.c-icons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-icons > .i-icon:not(:last-child) {
    margin-right: 5px;
}

.c-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.c-footer__section {
    height: 160px;
}

.c-footer__section .c-footer__address:not(:last-child) {
    margin-right: 30px;
}

.c-footer__section small {
    display: block;
}

.c-footer__section:not(:last-of-type) {
    padding-right: 40px;
}

.c-footer__divider {
    height: 150px;
    width: 2px;
    background-color: rgba(0, 0, 0, 0.2);
}

.c-footer__section:not(:first-of-type) {
    padding-left: 40px;
}

.c-footer__address .c-footer__address-description {
    position: relative;
    padding-left: 35px;
}

.c-footer__address .c-footer__address-description::before {
    content: '';
    position: absolute;
    display: inline-block;
    width: 35px;
    height: 35px;
    left: 0px;
    top: -20px;
    background: url('../images/location_pin.png') no-repeat center center;
    background-size: contain;
}

.c-footer__address .c-footer__address-description span {
    display: block;
    text-align: left;
    font-size: 0.8rem;
}

.c-footer__menu .c-footer__menu-item {
    font-weight: 700;
    line-height: 2em;
}

.i-icon {
    width: 30px;
    height: 30px;
    border-radius: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-transition: opacity 0.3s ease-in-out;
    -o-transition: opacity 0.3s ease-in-out;
    transition: opacity 0.3s ease-in-out;
}

.i-icon:hover {
    color: var(--color-white);
    opacity: 0.8;
}

.c-footer__brand {
    width: 165px;
    margin-bottom: 10px;
}

.i-icon.i-icon__facebook i {
    font-size: 1.2em;
    position: relative;
    bottom: -2px;
    right: -2px;
    -webkit-transform: scaleY(1.2);
        -ms-transform: scaleY(1.2);
            transform: scaleY(1.2);
}

.i-icon.i-icon__instagram i {
    position: relative;
    font-size: 1.2em;
    right: -1px;
    top: -1px;
}

.i-icon.i-icon__youtube i {
    position: relative;
    right: -1px;
}

.c-footer .i-icon:hover {
    color: var(--color-purple);
}

.site-section#assistence_plan ul {
    margin-top: 50px;
}

.site-section#messages h2 {
    position: relative;
}

.site-section#messages h2::after {
    content: '';
    position: absolute;
    display: block;
    width: 180px;
    height: 180px;
    background: url('../images/balloons.png') no-repeat center center;
    background-size: contain;
    left: 300px;
    top: -95px;
}

@media (max-width: 575.98px) {
    .site-section#messages h2::after {
        width: 100px;
        height: 100px;
        left: 170px;
        top: -50px;
    }

    
    .site-section#assistence_plan:not(.no-padding-bottom) {
        padding-bottom: 0px;
    }

    
    .c-footer {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .c-footer__section {
        height: auto;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }

    .c-footer__section:not(:first-of-type) {
        padding-left: 0;
    }
    .c-footer__section:not(:last-of-type) {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .c-footer__section:last-of-type small:not(:first-child):not(.developed-by) {
        margin-left: 10px;
    }

    .c-footer__brand {
        width: 120px;
        margin-bottom: 20px;
    }

    .c-footer__address .c-footer__address-description {
        padding-left: 20px;
    }

    .c-footer__section .c-footer__address {
        width: 125px;
    }

    .c-footer__section .c-footer__address:not(:last-child) {
        margin-right: 0;
    }

    .c-footer__address .c-footer__address-description::before {
        width: 20px;
        height: 20px;
        top: -8px;
    }

    .c-footer__address .c-footer__address-description span {
        font-size: 0.7rem;
    }

    .c-footer__menu .c-footer__menu-item {
        line-height: 1.7em;
        font-size: 1em;
        text-align: center;
    }

    .c-footer__section.d-flex {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .developed-by {
        display: block;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .c-footer__divider {
        display: none;
    }

    .form-row .c-label br {
        display: none;
    }

    .c-button.c-button--xl {
        height: 60px;
        font-size: 1.6rem;
        border-radius: 10px;
    }

    
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .site-section#messages h2::after {
        width: 120px;
        height: 120px;
        left: 210px;
        top: -60px;
    }
    
    .site-section#assistence_plan {
        padding-bottom: 50px;
    }

    .c-footer {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .c-footer__section {
        height: auto;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
    }

    .c-footer__section:not(:first-of-type) {
        padding-left: 0;
    }
    .c-footer__section:not(:last-of-type) {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .c-footer__section:last-of-type small:not(:first-child):not(.developed-by) {
        margin-left: 10px;
    }

    .c-footer__brand {
        width: 140px;
        margin-bottom: 20px;
    }

    .c-footer__address .c-footer__address-description {
        padding-left: 40px;
    }

    .c-footer__section .c-footer__address:not(:last-child) {
        margin-right: 15px;
    }

    .c-footer__address .c-footer__address-description::before {
        width: 40px;
        height: 40px;
        top: -8px;
    }

    .c-footer__address .c-footer__address-description span {
        font-size: 1rem;
    }

    .c-footer__menu .c-footer__menu-item {
        line-height: 1.5em;
        font-size: 1.2em;
        text-align: center;
    }

    .c-footer__section.d-flex {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .developed-by {
        display: block;
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        width: 100%;
        margin-left: 0;
        margin-top: 15px;
    }

    .c-footer__divider {
        display: none;
    }

    .form-row .c-label br {
        display: none;
    }

    .c-button.c-button--xl {
        height: 60px;
        font-size: 1.6rem;
        border-radius: 15px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .site-section#messages h2::after {
        width: 140px;
        height: 140px;
        left: 210px;
        top: -75px;
    }
    .site-section#assistence_plan {
        padding-bottom: 20px;
    }

    .c-footer {
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    }

    .c-footer__section {
        height: 130px;
    }

    .c-footer__section:not(:first-of-type) {
        padding-left: 15px;
    }
    .c-footer__section:not(:last-of-type) {
        padding-right: 15px;
    }
    
    .c-footer__section:last-of-type {
        padding-left: 0;
        margin-top: 30px;
        width: 100%;
        height: auto;
    }

    .c-footer__section:last-of-type small:not(:first-child) {
        margin-left: 10px;
    }

    .c-footer__brand {
        width: 110px;
    }

    .c-footer__address .c-footer__address-description {
        padding-left: 30px;
    }

    .c-footer__section .c-footer__address:not(:last-child) {
        margin-right: 15px;
    }

    .c-footer__address .c-footer__address-description::before {
        width: 30px;
        height: 30px;
        top: -8px;
    }

    .c-footer__menu .c-footer__menu-item {
        line-height: 1.7em;
        font-size: 0.9em;
    }

    .c-footer__divider {
        height: 110px;
    }

    .c-footer .c-footer__divider:last-of-type {
        display: none;
    }
    .c-button.c-button--xl {
        height: 70px;
        font-size: 1.8rem;
        border-radius: 10px;
    }

    .form-row .c-label br {
        display: none;
    }

    .c-radio-group .c-label, .c-radio-group .c-radio-group__option:not(:last-child) {
        margin-right: 15px;
    }

}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .site-section#messages h2::after {
        width: 160px;
        height: 160px;
        left: 240px;
        top: -80px;
    }

    .site-section#assistence_plan {
        padding-bottom: 70px;
    }

    .c-footer__section {
        height: 140px;
    }

    .c-footer__section:not(:first-of-type) {
        padding-left: 25px;
    }
    .c-footer__section:not(:last-of-type) {
        padding-right: 25px;
    }

    .c-footer__brand {
        width: 140px;
    }

    .c-footer__address .c-footer__address-description {
        padding-left: 30px;
    }

    .c-footer__section .c-footer__address:not(:last-child) {
        margin-right: 15px;
    }

    .c-footer__address .c-footer__address-description::before {
        width: 30px;
        height: 30px;
        top: -8px;
    }

    .c-footer__menu .c-footer__menu-item {
        line-height: 1.7em;
        font-size: 0.9em;
    }

    .c-footer__divider {
        height: 130px;
    }
}

.c-features {
    margin: 30px 0;
}

.c-features .c-features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}

.c-features .c-features__item img {
    display: block;
    max-width: 170px;
    margin-bottom: 15px;
}

.c-testimony {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 80px;
}

.c-testimony .c-testimony__picture {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40%;
            flex: 0 0 40%;
    max-width: 40%;
}

.c-testimony .c-testimony__content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 100%;
}

.c-testimony .c-testimony__testimony {
    font-style: italic;
    font-size: 1.5rem;
    margin-bottom: 20px;
    text-align: justify;
}

.c-testimony .c-testimony__author {
    font-size: 2rem;
}

.c-testimony__testimony .c-emoji {
    font-style: normal;
}

#testimony-carousel .carousel-control-next,
#testimony-carousel .carousel-control-prev {
    opacity: 1;
}

#testimony-carousel .carousel-control-next {
    right: -150px;
}

#testimony-carousel .carousel-control-prev {
    left: -150px;
}

#testimony-carousel .carousel-control-prev-icon,
#testimony-carousel .carousel-control-next-icon {
    height: 130px;
    width: 100px;
    background-size: contain;
}

#testimony-carousel .carousel-control-prev-icon {
    background-image: url('../images/arrow_left.png');
}

#testimony-carousel .carousel-control-next-icon {
    background-image: url('../images/arrow_right.png');
}

#plans form {
    margin-bottom: 50px;
}

#app .c-tabs {
    margin-bottom: 50px;
}

#app .c-table {
    margin-bottom: 50px;
}

#app .plans_ctas p {
    line-height: 2em;
}

#map {
    max-height: 500px;
    height: 500px;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 50px;
}

.form-row {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 15px 0;
    margin: 20px 0;
}

.form-row > [class*=col-] {
    padding: 0 30px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    height: 27px;
    width: 27px;
    opacity: 1;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
    background-image: url('../images/increment.png');
    cursor: pointer;
}

#checkout-success {
    padding: 30px 0;
}

#checkout-success:not(.boleto-checkout) h3 {
    margin-bottom: 50px;
}

#checkout-success.boleto-checkout h3,
#checkout-success .actions {
    margin-bottom: 25px;
}

#checkout-success .actions a:hover {
    color: var(--color-purple);
}

#checkout-success .actions p {
    margin-bottom: 10px;
}

.view-enter-active, .view-leave-active {
    -webkit-transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease;
    transition: opacity 0.5s ease-in-out, -webkit-transform 0.5s ease;
    -o-transition: opacity 0.5s ease-in-out, transform 0.5s ease;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease;
    transition: opacity 0.5s ease-in-out, transform 0.5s ease, -webkit-transform 0.5s ease;
}

.view-enter-active {
    -webkit-transition-delay: 0.5s;
         -o-transition-delay: 0.5s;
            transition-delay: 0.5s;
}

.view-enter {
    opacity: 0;
    -webkit-transform: translateY(-100px);
        -ms-transform: translateY(-100px);
            transform: translateY(-100px);
}

.view-enter-to {
    opacity: 1;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.view-leave {
    opacity: 1;
    -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
            transform: translateY(0px);
}

.view-leave-to {
    opacity: 0;
    -webkit-transform: translateY(100px);
        -ms-transform: translateY(100px);
            transform: translateY(100px);
}

.c-ascendent {
    padding: 0 50px;
}

.c-ascendent .c-ascendent__box {
    background-color: var(--color-light-gray);
    padding: 15px 10px;
}

input:-moz-read-only {
    background-color: var(--color-light-gray);
}

:disabled,
input:read-only {
    background-color: var(--color-light-gray);
}

@media (max-width: 575.98px) {
    .c-testimony {
        padding: 0 40px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
    }

    .c-testimony .c-testimony__picture {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 100%;
                flex: 0 0 100%;
        max-width: 140px;
        margin-bottom: 20px;
    }

    .c-testimony .c-testimony__picture img {
        max-width: 100%;
        height: auto;
    }

    .c-testimony .c-testimony__testimony {
        font-size: 1rem;
    }

    .c-testimony .c-testimony__author {
        font-size: 1.4rem;   
    }

    #testimony-carousel .carousel-control-prev {
        left: -15px;
    }

    #testimony-carousel .carousel-control-next {
        right: -15px;
    }
    #testimony-carousel .carousel-control-prev-icon, #testimony-carousel .carousel-control-next-icon {
        height: 80px;
        width: 30px;
    }
    .c-header {
        padding: 20px 0;
    }
    .c-header .c-icons {
        height: 75px;
    }
    .c-header .c-header__brand {
        width: 120px;
        position: absolute;
    }
    .c-header .c-navigation {
        display: none;
    }

    .c-header .c-navigation {
        margin-top: 70px;
    }

    #banner-carousel {
        margin-top: -10px;
    }
    #plans .c-button.c-button--xl {
        margin-top: 20px;
    }
    .form-row {
        margin: 10px 0;
    }
    .form-row .c-label {
        margin-bottom: 10px;
    }
    .form-row > [class*=col-] {
        padding: 0 15px;
    }
    #plans form {
        margin-bottom: 10px;
    }
    .c-input.is-invalid + .invalid-feedback, .c-textarea.is-invalid + .invalid-feedback, .c-select.is-invalid + .invalid-feedback {
        margin-bottom: 10px;
    }
    .c-input.is-invalid, .c-select.is-invalid, .c-textarea.is-invalid {
        margin-bottom: 0px;
    }
    .c-input:not(.c-input--no-margin):not(.is-invalid),
    .c-textarea:not(.c-textarea--no-margin):not(.is-invalid),
    .c-select:not(.c-select--no-margin):not(.is-invalid),
    .c-radio-group:not(.c-radio-group--no-margin),
    .c-checkbox-group:not(.c-checkbox-group--no-margin) {
        margin-bottom: 10px;
    }

    .c-list {
        padding-left: 15px;
    }

    .c-list .c-list--item::before {
        left: -15px;
    }

    .c-list .c-list--item {
        font-size: 1rem;
        margin: 5px 0;
    }

    .site-section#assistence_plan ul {
        margin: 20px 0;
    }

    #assistence_plan h2.c-text--xl {
        font-size: 1.8rem;
    }

    #map {
        max-height: 350px;
        height: 350px;
        margin-top: 30px;
    }

    #map iframe {
        max-height: 400px;
    }

    .c-features {
        margin: 15px 0 50px 0;
        text-align: center;
    }

    .c-features.c-features__item img {
        max-width: 130px;
        margin-bottom: 10px;
    }

    .c-features.c-features__item .c-text--sm-2 {
        font-size: 1.5rem;
    }

    .c-button {
        width: 260px;
    }

    section#about h2 br {
        display: none;
    }

    .c-ascendent {
        padding: 0 10px;
    }

    .c-ascendent .c-ascendent__box {
        padding: 10px 0px;
    }

    .c-checkbox-group__option {
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    }

    .c-label + p {
        margin-top: -10px;
        margin-bottom: 10px;
        font-size: 0.8rem;
    }

    .c-table,
    .c-table tr,
    .c-table tbody, 
    .c-table thead,
    .c-table tfoot {
        max-width: 100vw;
    }

    .c-table tr th:first-of-type, .c-table tr td:first-of-type,
    .c-table tr th:not(:first-of-type), .c-table tr td:not(:first-of-type) {
        width: 33.3333333%;
        max-width: 33.3333333%;
        min-width: 33.3333333%;
    }

    .c-table tbody tr:not(.c-table__title-row) td {
        padding: 10px 10px;
    }

    .c-tabs {
        border-radius: 8px;
    }

    .c-tabs .c-tabs__item .c-tabs__link {
        border-radius: 8px;
        font-size: 4.3vw;
        line-height: 2em;
        padding: .2rem .5rem;
    }

    #app .c-table {
        margin-bottom: 20px;
    }

    #app .plans_ctas p {
        font-size: 3vw;
        font-size: 4vw;
    }

    #app .plans_ctas .c-button {
        height: 30px;
        border-radius: 5px;
        font-size: 3.5vw;
    }

    #app .plans_ctas .col-4 {
        padding-right: 5px;
        padding-left: 5px;
    }

    #plans .c-table p {
        font-size: 0.8rem;
    }

    .c-table__wrapper {
        overflow-x: auto;
    }

    .c-table tbody tr:not(.c-table__title-row) td {
        padding: 10px 10px;
    }

    #plans .c-plan .c-plan__title {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    #plans .c-plan .c-plan__value {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    #plans .c-plan .c-plan__button {
        width: 100px;
        border-radius: 4px;
        font-size: 0.7rem;
    }

    .c-table tr.c-table__title-row.c-table__title-row--with-padding-top td {
        padding-top: 30px;
    }

    .carousel-indicators li {
        background-color: var(--color-green);
    }

    .c-features.c-features__item {
        height: 190px;
        max-height: 190px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .c-testimony {
        padding: 0 10px;
    }

    .c-testimony .c-testimony__picture {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
                flex: 0 0 30%;
        max-width: 30%;
    }

    .c-testimony .c-testimony__picture img {
        max-width: 100%;
        height: auto;
    }

    .c-testimony__content {
        padding-left: 20px;
    }

    .c-testimony .c-testimony__testimony {
        font-size: 1rem;
    }

    .c-testimony .c-testimony__author {
        font-size: 1.4rem;   
    }

    #testimony-carousel .carousel-control-prev {
        left: -60px;
    }

    #testimony-carousel .carousel-control-next {
        right: -60px;
    }
    #testimony-carousel .carousel-control-prev-icon, #testimony-carousel .carousel-control-next-icon {
        height: 70px;
        width: 30px;
    }
    .c-header .c-header__brand {
        width: 120px;
        position: absolute;
    }
    .c-header .c-navigation.c-text--sm {
        font-size: 0.85rem;
    }

    .c-header .c-navigation {
        margin-top: 70px;
    }

    #banner-carousel {
        margin-top: -15px;
    }

    .c-features {
        margin: 20px 0;
    }

    .c-features .c-features__item img {
        max-width: 120px;
        margin-bottom: 15px;
    }

    .c-features .c-features__item .c-text--sm-2 {
        font-size: 1.2rem;
    }

    section#about h2 br {
        display: none;
    }

    .form-row {
        padding: 10px 0;
        margin: 10px 0;
    }

    #plans .c-button.c-button--xl {
        margin-top: 20px;
    }

    #plans form {
        margin-bottom: 30px;
    }

    .c-tabs .c-tabs__item .c-tabs__link {
        border-radius: 10px;
        font-size: 1.5rem;
        line-height: 2em;
    }

    #app .c-table {
        margin-bottom: 30px;
    }

    #app .plans_ctas p {
        font-size: 1.2rem;
    }

    #app .plans_ctas .c-button {
        height: 35px;
        border-radius: 8px;
        font-size: 1rem;
    }

    #plans .c-table p {
        font-size: 0.8rem;
    }

    .c-table tbody tr:not(.c-table__title-row) td {
        padding: 10px 10px;
    }

    #plans .c-plan .c-plan__title {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    #plans .c-plan .c-plan__value {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }

    #plans .c-plan .c-plan__button {
        width: 100px;
        border-radius: 4px;
        font-size: 0.7rem;
    }

    .c-table tr.c-table__title-row.c-table__title-row--with-padding-top td {
        padding-top: 30px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .c-testimony {
        padding: 0 50px;
    }

    .c-testimony .c-testimony__picture {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
                flex: 0 0 30%;
        max-width: 30%;
    }

    .c-testimony .c-testimony__picture img {
        max-width: 100%;
        height: auto;
    }

    .c-testimony__content {
        padding-left: 30px;
    }

    .c-testimony .c-testimony__testimony {
        font-size: 1.2rem;
    }

    .c-testimony .c-testimony__author {
        font-size: 1.6rem;   
    }

    #testimony-carousel .carousel-control-prev {
        left: -70px;
    }

    #testimony-carousel .carousel-control-next {
        right: -70px;
    }
    #testimony-carousel .carousel-control-prev-icon, #testimony-carousel .carousel-control-next-icon {
        height: 100px;
        width: 70px;
    }
    .c-header .c-header__brand {
        width: 100%;
    }
    .c-header .c-navigation.c-text--sm {
        font-size: 0.85rem;
    }

    .c-header .c-navigation {
        margin-top: 15px;
    }

    .c-features {
        margin: 20px 0;
    }

    .c-features .c-features__item img {
        max-width: 150px;
        margin-bottom: 15px;
    }

    .c-list {
        padding-left: 15px;
    }

    .c-list .c-list--item::before {
        left: -15px;
    }

    .c-list .c-list--item {
        font-size: 0.9rem;
        margin: 5px 0;
    }

    .site-section#assistence_plan ul {
        margin-top: 20px;
    }

    #assistence_plan h2.c-text--xl {
        font-size: 2.1rem;
    }
    
    .form-row > [class*=col-] {
        padding: 0 20px;
    }

    
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    .c-testimony {
        padding: 0 100px;
    }

    .c-testimony .c-testimony__picture {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 30%;
                flex: 0 0 30%;
        max-width: 30%;
    }

    .c-testimony .c-testimony__picture img {
        max-width: 100%;
        height: auto;
    }

    .c-testimony__content {
        padding-left: 30px;
    }

    .c-testimony .c-testimony__testimony {
        font-size: 1.2rem;
    }

    .c-testimony .c-testimony__author {
        font-size: 1.6rem;   
    }

    #testimony-carousel .carousel-control-prev {
        left: -70px;
    }

    #testimony-carousel .carousel-control-next {
        right: -70px;
    }
    #testimony-carousel .carousel-control-prev-icon, #testimony-carousel .carousel-control-next-icon {
        height: 110px;
        width: 80px;
    }
    .c-header .c-header__brand {
        width: 200px;
    }
    .c-header .c-navigation.c-text--sm {
        font-size: 1.1rem;
    }
    .c-list .c-list--item {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .site-section#assistence_plan ul {
        margin-top: 40px;
    }
}

@media (min-width: 1200px) and (max-width: 1350px) {
    #testimony-carousel .carousel-control-prev {
        left: -80px;
    }

    #testimony-carousel .carousel-control-next {
        right: -80px;
    }
}

.overlay {
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    position: fixed;
    background: rgba(0, 0, 0, 0.3);
}

.overlay__inner {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.overlay__content {
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}

.spinner {
    width: 75px;
    height: 75px;
    display: inline-block;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.05);
    border-top-color: #fff;
    animation: spin 1s infinite linear;
    border-radius: 100%;
    border-style: solid;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#testimonies .container,
#testimonies .row,
#testimonies .col-12,
#testimonies .carousel,
#testimonies .carousel-inner,
#testimonies .carousel-item {
    height: 100%;
}

@media (max-width: 575.98px) {
    #testimonies {
        height: 495px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    #testimonies {
        height: 250px;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    #testimonies {
        height: 300px;
    }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
    #testimonies {
        height: 300px;
    }
}

@media (min-width: 1200px) {
    #testimonies {
        height: 405px;
    }
}