﻿.extralight {
    font-weight: 200;
}

.light {
    font-weight: 300;
}

.regular {
    font-weight: 400;
}

.medium {
    font-weight: 500;
}

.bold {
    font-weight: 700;
}

.black {
    font-weight: 800;
}

@-moz-keyframes pulseBtn {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        -moz-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
    }
}

@-webkit-keyframes pulseBtn {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        -moz-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
    }
}

@-o-keyframes pulseBtn {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        -moz-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
    }
}

@keyframes pulseBtn {
    to {
        -webkit-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        -moz-box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
        box-shadow: 0 0 0 30px rgba(103, 151, 1, 0);
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: VAGRoundedStdBold !important;
    font-size: 18px;
    color: #fff;
    overflow-x: hidden;
    letter-spacing: 1px;
}

.body-franquia {
    width: 75%;
}

@media only screen and (max-width: 1200px) {
    .body-franquia {
        width: 70%;
    }
}

@media only screen and (max-width: 992px) {
    .body-franquia {
        width: 100%;
    }
}

section {
    padding: 120px 60px;
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    section {
        padding: 60px 15px !important;
    }
}

.form-group {
    margin-bottom: 7px;
}

label {
    font-size: 12px;
    margin-bottom: 0px;
}

p {
    line-height: 1.4;
}

    p:last-child {
        margin-bottom: 0;
    }

a {
    color: #fff;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    word-wrap: break-word;
}

    a:hover,
    a:focus {
        text-decoration: none;
        color: #202226;
    }

ul {
    margin-bottom: 0;
}

h1,
h2,
h3 {
    font-family: VAGRoundedStdBold !important;
    margin: 0;
    line-height: 1.3;
}

*::-moz-selection {
    background: rgba(32, 34, 38, 0.75);
    color: #fff;
    text-shadow: none !important;
}

*::selection {
    background: rgba(32, 34, 38, 0.75);
    color: #fff;
    text-shadow: none !important;
}

.display-block {
    display: block;
}

.display-flex {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: initial;
    -moz-flex-flow: initial;
    flex-flow: initial;
}

    .display-flex:before,
    .display-flex:after {
        display: none;
    }

.flex-list {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: row wrap;
    -moz-flex-flow: row wrap;
    flex-flow: row wrap;
}

.flex-align-start {
    -webkit-align-items: flex-start;
    -moz-align-items: flex-start;
    align-items: flex-start;
}

.flex-align-end {
    -webkit-align-items: flex-end;
    -moz-align-items: flex-end;
    align-items: flex-end;
}

.flex-stretch {
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
}

.flex-reverse {
    -webkit-flex-direction: row-reverse;
    -moz-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.flex-column {
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    flex-direction: column;
}

.flex-nowrap {
    -webkit-flex-wrap: nowrap;
    -moz-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.flex-wrap {
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
}

.flex-start {
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
}

.flex-end {
    -webkit-justify-content: flex-end;
    -moz-justify-content: flex-end;
    justify-content: flex-end;
}

.flex-center {
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
}

.flex-space-between {
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}

.flex-space-around {
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    justify-content: space-around;
}

.flex-self-center {
    -webkit-align-self: center;
    -moz-align-self: center;
    align-self: center;
}

.flex-self-end {
    -webkit-align-self: flex-end;
    -moz-align-self: flex-end;
    align-self: flex-end;
}

.inblock {
    display: inline-block;
    vertical-align: middle;
}

.va-t {
    vertical-align: top;
}

.img-centro {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.bdr {
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.bdr2x {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.bdr3x {
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}

.bdr50 {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.ovh {
    overflow: hidden;
}

.rel {
    min-height: 0;
    position: relative;
}

.z1 {
    z-index: 1;
}

.z2 {
    z-index: 2;
}

.z3 {
    z-index: 3;
}

.pd5 {
    padding: 5px;
}

.pd10 {
    padding: 10px;
}

.pd15 {
    padding: 15px;
}

.pd30 {
    padding: 30px;
}

.pd60 {
    padding: 60px;
}

.pd90 {
    padding: 90px;
}

.p10 {
    padding-top: 10px;
    padding-bottom: 10px;
}

.p15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.p30 {
    padding-top: 30px;
    padding-bottom: 30px;
}

.p60 {
    padding-top: 60px;
    padding-bottom: 60px;
}

.p90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
}

.p120 {
    padding-top: 120px;
    padding-bottom: 120px;
}

.p150 {
    padding-top: 150px;
    padding-bottom: 150px;
}

.p180 {
    padding-top: 180px;
    padding-bottom: 180px;
}

.pt30 {
    padding-top: 30px;
}

.pt60 {
    padding-top: 60px;
}

.pt90 {
    padding-top: 90px !important;
}

.pt120 {
    padding-top: 120px;
}

.pt180 {
    padding-top: 180px;
}

.pr120 {
    padding-right: 120px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb60 {
    padding-bottom: 60px;
}

.pb90 {
    padding-bottom: 90px;
}

.pb120 {
    padding-bottom: 120px;
}

.pb150 {
    padding-bottom: 150px;
}

.pb180 {
    padding-bottom: 180px;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pt0 {
    padding-top: 0 !important;
}

.pr0 {
    padding-right: 0 !important;
}

.pl0 {
    padding-left: 0 !important;
}

.p0 {
    padding: 0 !important;
}

.m10 {
    margin: 10px;
}

.ml5 {
    margin-left: 5px;
}

.ml15 {
    margin-left: 15px;
}

.ml30 {
    margin-left: 30px;
}

.mr5 {
    margin-right: 5px;
}

.mr10 {
    margin-right: 10px;
}

.mr15 {
    margin-right: 15px;
}

.mr30 {
    margin-right: 30px;
}

.mt5 {
    margin-top: 5px;
}

.mt15 {
    margin-top: 15px;
}

.mt30 {
    margin-top: 30px;
}

.mt60 {
    margin-top: 60px;
}

.mt90 {
    margin-top: 90px;
}

.mb5 {
    margin-bottom: 5px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb-60 {
    margin-bottom: -60px;
}

.m0 {
    margin: 0 !important;
}

.ml0 {
    margin-left: 0 !important;
}

.mr0 {
    margin-right: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.bd0 {
    border: 0 !important;
}

.br0 {
    border-right: 0 !important;
}

.bl0 {
    border-left: 0 !important;
}

.uppercase {
    text-transform: uppercase;
}

.lts1 {
    letter-spacing: 1px;
}

.lts2 {
    letter-spacing: 2px;
}

.lts3 {
    letter-spacing: 3px;
}

.lts4 {
    letter-spacing: 4px;
}

.lts5 {
    letter-spacing: 5px;
}

.fz0 {
    font-size: 0;
}

.fz10 {
    font-size: 10px;
}

.fz12 {
    font-size: 12px;
}

.fz14 {
    font-size: 14px;
}

.fz18 {
    font-size: 18px;
}

.fz24 {
    font-size: 24px;
}

.fz30 {
    font-size: 30px;
}

.fz36 {
    font-size: 36px;
}

.fz44 {
    font-size: 44px;
}

.fz48 {
    font-size: 48px;
}

.fz60 {
    font-size: 60px;
}

.fz72 {
    font-size: 72px;
}

.fz90 {
    font-size: 90px;
}

.branco {
    color: #fff;
}

    .branco a:not(:hover):not(.botao-principal) {
        color: #fff;
    }

.cor-texto {
    color: #fff;
}

.cor-primaria {
    color: #202226;
}

.cor-secundaria {
    color: #f117ab;
}

.cor-terciaria {
    color: #fff;
}

.cor-neutra {
    color: #fff;
}

.cor-positiva {
    color: #19b955;
}

.bg-branco {
    background: #fff;
}

.bg-primario {
    background-color: #202226;
}

.bg-primario-light {
    background-color: #666c79;
}

.bg-secundario {
    background-color: #f117ab;
}

.bg-terciario {
    background-color: #fff;
}

.bg-quartenario {
    background-color: #41454b;
}

.bg-neutro {
    background-color: #fff;
}

.bg-padrao {
    // background: url("../images/bg-padrao.jpg") repeat;
    background-size: auto;
}

.bg-positivo {
    background: #19b955;
}

.box-shadow {
    -webkit-box-shadow: 0 0 45px -10px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 45px -10px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 45px -10px rgba(0, 0, 0, 0.25);
}

.border {
    border: 5px solid #202226;
}

.branco .border {
    border-color: #fff;
}

.visible-xxs {
    display: none !important;
}

.layer-relative {
    position: relative !important;
}

.hcenter {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots {
    display: block;
    width: 100%;
    height: 15px;
    margin: 15px 0 0;
    text-align: center;
}

    .slick-dots li {
        position: relative;
        display: inline-block;
        vertical-align: top;
        width: 15px;
        height: 15px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

        .slick-dots li button {
            display: block;
            width: 100%;
            height: 100%;
            font-size: 0;
            border: 0;
            outline: none;
            border: 0 solid #202226;
            background: #fff;
            -webkit-border-radius: 8px;
            -moz-border-radius: 8px;
            border-radius: 8px;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
            -webkit-appearance: none;
            appearance: none;
        }

            .slick-dots li button:hover {
                background: #fff;
            }

        .slick-dots li.slick-active button {
            background: #202226;
        }

.branco .slick-dots li button {
    background: #fff;
}

.branco .slick-dots li:hover button {
    background: #f117ab;
}

.branco .slick-dots li.slick-active button {
    background: #202226;
}

.bg-neutro .slick-dots li button {
    background: #fff;
}

.bg-neutro .slick-dots li:hover button {
    background: #8f9092;
}

.bg-neutro .slick-dots li.slick-active button {
    background: #202226;
}

.dots-primaria .slick-dots li button {
    background: rgba(255, 255, 255, 0.75);
}

.dots-primaria .slick-dots li:hover button {
    background: #fff;
}

.dots-primaria .slick-dots li.slick-active button {
    background: #fff;
}

.dots-relative .slick-dots {
    position: relative;
    padding: 30px 0 35px;
}

.dots-absolute .slick-dots {
    position: absolute;
    bottom: 30px;
}

@media only screen and (min-width: 992px) {
    .dots-lateral .slick-dots {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 100%;
        right: auto;
        padding: 0 15px;
    }

        .dots-lateral .slick-dots li {
            display: block;
            margin: 10px 0;
        }
}

.slick-prev,
.slick-next {
    z-index: 1;
    width: 50px;
    height: 50px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    display: block;
    cursor: pointer;
    line-height: 1;
    text-align: center;
    color: transparent;
    padding: 0;
    font-size: 0;
    margin: auto;
    border: none;
    outline: none;
    background: none;
}

    .slick-prev:before,
    .slick-next:before {
        content: "\f104";
        font-family: "Font Awesome\ 5 Pro";
        font-weight: 900;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-weight: 300;
        font-size: 30px;
        line-height: 46px;
        color: #202226;
        border: 2px solid #202226;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        border-radius: 50%;
        background: transparent;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        display: block;
    }

    .slick-prev:hover:before,
    .slick-next:hover:before {
        color: #fff;
        background: #202226;
    }

.seta-branca .slick-prev:before,
.seta-branca .slick-next:before {
    border-color: #fff;
    background-color: #fff;
    color: #fff;
}

.seta-branca .slick-prev:hover:before,
.seta-branca .slick-next:hover:before {
    border-color: #fff;
    background: #fff;
    color: #202226;
}

.seta-superior .slick-prev,
.seta-superior .slick-next {
    top: -85px;
    right: 75px;
    bottom: auto;
    left: auto;
    height: 30px;
}

    .seta-superior .slick-prev:before,
    .seta-superior .slick-next:before {
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        line-height: 30px;
    }

.slick-next {
    left: auto;
    right: 15px;
}

    .slick-next:before {
        content: "\f105";
    }

.home .container .slick-next {
    right: 15px;
}

.slick-slideshow {
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .slick-slideshow .slick-dots {
        position: absolute;
        right: 0;
        bottom: 0;
        left: 0;
        padding: 15px 0;
        background: rgba(0, 0, 0, 0.6);
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        -webkit-transform: translateY(100%);
        -moz-transform: translateY(100%);
        transform: translateY(100%);
    }

        .slick-slideshow .slick-dots button {
            border: 1px solid #fff;
            background-color: transparent;
        }

        .slick-slideshow .slick-dots li:hover button {
            background: rgba(255, 255, 255, 0.5);
        }

        .slick-slideshow .slick-dots li.slick-active button {
            background: #fff;
        }

    .slick-slideshow .slick-prev,
    .slick-slideshow .slick-next {
        left: 0;
        height: 75px;
        background: rgba(0, 0, 0, 0.6);
        -webkit-border-top-right-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 0;
        -webkit-border-top-left-radius: 0;
        -moz-border-radius-topright: 5px;
        -moz-border-radius-bottomright: 5px;
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-topleft: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        transition: all 0.2s;
        -webkit-transform: translateX(-100%);
        -moz-transform: translateX(-100%);
        transform: translateX(-100%);
    }

        .slick-slideshow .slick-prev:before,
        .slick-slideshow .slick-next:before {
            border: 0;
            background: none;
            font-size: 36px;
            line-height: 75px;
            height: 100%;
            width: 100%;
            color: #fff;
        }

        .slick-slideshow .slick-prev:hover,
        .slick-slideshow .slick-next:hover {
            background: #000;
        }

    .slick-slideshow .slick-next {
        left: auto;
        right: 0;
        -webkit-border-top-right-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-top-left-radius: 5px;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomright: 0;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-topleft: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        -webkit-transform: translateX(100%);
        -moz-transform: translateX(100%);
        transform: translateX(100%);
    }

    .slick-slideshow:hover .slick-prev,
    .slick-slideshow:hover .slick-next {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

    .slick-slideshow:hover .slick-dots {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }

@media only screen and (max-width: 480px) {
    .slick-slideshow .slick-prev,
    .slick-slideshow .slick-next {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
        background: none;
        width: 30px;
    }

    .slick-slideshow .slick-dots {
        display: none !important;
    }
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

.fancybox-wrap {
    max-width: calc(100% - 76px);
}

.fancybox-inner {
    max-width: 100%;
}

.fancybox-overlay {
    background: rgba(0, 0, 0, 0.85) !important;
}

.fancybox-close {
    right: -36px !important;
    top: 0 !important;
    background-color: #202226;
    -webkit-border-top-right-radius: 5px;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 5px;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
}

    .fancybox-close:hover {
        background-color: #f117ab;
    }

.form div[class*="col-"] {
    padding: 15px;
}

.form-inline {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: stretch;
    -moz-align-items: stretch;
    align-items: stretch;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    justify-content: center;
    -webkit-flex-flow: initial;
    -moz-flex-flow: initial;
    flex-flow: initial;
}

    .form-inline input {
        border: 2px solid #fff;
        border-right: 0;
        -webkit-border-top-right-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-top-left-radius: 5px;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomright: 0;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-topleft: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
        width: 100%;
        font-size: 12px;
    }

        .form-inline input:focus {
            border-color: #fff;
        }

            .form-inline input:focus ~ button {
                color: #fff;
                background: #fff;
            }

    .form-inline button {
        margin: 0;
        border: 0;
        padding: 0 15px;
        font-weight: 700;
        background: #fff;
        color: #fff;
        -webkit-border-top-right-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 0;
        -webkit-border-top-left-radius: 0;
        -moz-border-radius-topright: 5px;
        -moz-border-radius-bottomright: 5px;
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-topleft: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

        .form-inline button:before {
            display: none;
        }

.custom-select__option {
    font-size: 14px;
    padding: 7px 10px;
    border-color: #fff;
}

.custom-select__option--value {
    font-size: 14px;
    height: 50px;
    border: 2px solid #fff;
    background: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .custom-select__option--value:focus {
        border-color: #202226;
    }

    .custom-select__option--value.touched {
        border-color: #19b955;
    }

    .custom-select__option--value.error {
        border-color: #ff2823;
    }

.custom-select__dropdown {
    border-width: 2px;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 0;
    z-index: 3;
}

.custom-select__option-wrap {
    max-height: 140px;
}

    .custom-select__option-wrap::-webkit-scrollbar {
        width: 7px;
        background: rgba(0, 0, 0, 0.3);
    }

    .custom-select__option-wrap::-webkit-scrollbar-thumb {
        width: 7px;
        background: #202226;
        -webkit-border-radius: 7px;
        -moz-border-radius: 7px;
        border-radius: 7px;
    }

.custom-select__input {
    border-top: 0;
    border-bottom-width: 2px;
    height: 50px;
    font-size: 14px;
}

.check-list {
    margin: 20px 0;
}

    .check-list li {
        display: block;
        margin: 0;
        text-indent: -28px;
        padding-left: 28px;
        line-height: 1.5;
    }

        .check-list li:before {
            font-family: "Font Awesome\ 5 Pro";
            font-weight: 900;
            -moz-osx-font-smoothing: grayscale;
            -webkit-font-smoothing: antialiased;
            display: inline-block;
            font-style: normal;
            font-variant: normal;
            text-rendering: auto;
            line-height: 1;
            display: initial;
            content: "\f00c";
            font-weight: 300;
            color: inherit;
            font-size: 24px;
            margin-right: 10px;
            position: relative;
            top: 4px;
        }

        .check-list li + li {
            margin-top: 10px;
        }

    .check-list.seta li:before {
        content: "\f054";
        font-size: 12px;
        color: inherit;
        top: -1px;
    }

    .check-list.duas-colunas {
        zoom: 1;
    }

        .check-list.duas-colunas:before,
        .check-list.duas-colunas:after {
            content: "";
            display: table;
        }

        .check-list.duas-colunas:after {
            clear: both;
        }

@media only screen and (min-width: 1200px) {
    .check-list.duas-colunas li {
        float: left;
        width: 50%;
        margin: 5px 0 !important;
    }
}

.totop,
.square-icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    z-index: 1;
    width: 2.5em;
    height: 2.5em;
    line-height: 2.5;
    border: 0px solid #f117ab;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background: #202226;
    color: #fff;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

a:hover .totop,
a:hover .square-icon {
    background: #fff;
    color: #202226;
}

.totop.border,
.square-icon.border {
    background-color: transparent;
    color: currentColor;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 1px solid currentColor;
}

.cor-secundaria .totop,
.cor-secundaria .square-icon,
.totop.cor-secundaria,
.square-icon.cor-secundaria {
    background: #2e3137;
}

.cor-terciaria .totop,
.cor-terciaria .square-icon,
.totop.cor-terciaria,
.square-icon.cor-terciaria {
    background: #fff;
}

.branco .totop,
.branco .square-icon {
    border: 1px solid #fff;
    background: #fff;
    color: #202226;
}

.branco a:hover .totop,
.branco a:hover .square-icon {
    color: #fff;
    background: transparent;
}

.item-icone {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    -moz-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-flex-flow: initial;
    -moz-flex-flow: initial;
    flex-flow: initial;
}

    .item-icone > div {
        text-align: left;
        padding: 15px;
        max-width: calc(100% - 45px);
        max-width: -moz-calc(100% - 45px);
        max-width: -webkit-calc(100% - 45px);
    }

    .item-icone .fz24 + div {
        max-width: calc(100% - 60px);
        max-width: -moz-calc(100% - 60px);
        max-width: -webkit-calc(100% - 60px);
    }

    .item-icone .fz30 + div {
        max-width: calc(100% - 75px);
        max-width: -moz-calc(100% - 75px);
        max-width: -webkit-calc(100% - 75px);
    }

    .item-icone .fz36 + div {
        max-width: calc(100% - 90px);
        max-width: -moz-calc(100% - 90px);
        max-width: -webkit-calc(100% - 90px);
    }

    .item-icone .img + div,
    .item-icone img + div {
        max-width: calc(100% - 150px);
        max-width: -moz-calc(100% - 150px);
        max-width: -webkit-calc(100% - 150px);
    }

    .item-icone strong {
        display: block;
        margin: 0 0 5px !important;
    }

    .item-icone + .item-icone {
        margin-top: 30px;
    }

@media only screen and (max-width: 992px) {
    .item-icone.block-sm > div {
        max-width: 100% !important;
        text-align: center;
    }
}

@media only screen and (max-width: 768px) {
    .item-icone.block-xs > div {
        max-width: 100% !important;
        text-align: center;
    }
}

@media only screen and (max-width: 480px) {
    .item-icone.block-xxs > div {
        max-width: 100% !important;
        text-align: center;
    }
}

hr {
    width: 100%;
    border-color: #fff;
}

    hr.ou {
        z-index: 0;
        position: relative;
        overflow: visible;
        margin-bottom: 30px;
    }

        hr.ou:before {
            content: "ou";
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            line-height: 1;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 12px;
            padding: 0 15px;
            background: #41454b;
        }

    hr.menor {
        margin-top: 10px;
        width: 50px;
    }

    hr.vertical {
        width: 1px;
        height: 50px;
        border: 0;
        background: #202226;
        display: block;
        margin-right: auto;
        margin-left: auto;
    }

.branco hr {
    border-color: #fff;
}

.tab-pane .panel {
    text-align: left;
    background: none;
    border: 0;
    margin: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    border: 2px solid #fff;
}

    .tab-pane .panel + .panel {
        margin-top: 15px;
    }

.tab-pane .titulo-panel {
    position: relative;
    padding: 20px 20px 20px 45px;
    display: block;
    border-bottom-color: transparent;
    line-height: 1;
    font-weight: 700;
    font-size: 18px;
}

    .tab-pane .titulo-panel:before {
        content: "\f129";
        font-family: "Font Awesome\ 5 Pro";
        font-weight: 900;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-size: 24px;
        position: absolute;
        top: 17px;
        left: 17px;
        margin: auto;
    }

    .tab-pane .titulo-panel.collapsed {
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
    }

    .tab-pane .titulo-panel:not(.collapsed) {
        color: #202226;
        border-bottom-color: transparent;
    }

.tab-pane .corpo-panel {
    position: relative;
    margin: 0;
    padding: 0 30px 0 45px;
    -webkit-transition: all 0.35s;
    -moz-transition: all 0.35s;
    transition: all 0.35s;
}

.pagination {
    font-size: 14px;
}

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        opacity: 1;
        border-color: #fff;
    }

    .pagination > li > a,
    .pagination > li > span {
        padding-top: 0;
        padding-bottom: 0;
        color: #fff;
        border: 1px solid;
        border-color: #dedede;
        border-color: #fff;
        margin: 0;
        width: 3em;
        height: 3em;
        line-height: 3;
        text-align: center;
    }

        .pagination > li > a:hover,
        .pagination > li > span:hover,
        .pagination > li > a:focus,
        .pagination > li > span:focus {
            color: #202226;
            border-color: #fff;
            background: ligthen(#fff, 5);
        }

    .pagination > li + li > a,
    .pagination > li + li > span {
        border-left: 0;
    }

    .pagination > li:first-child > a,
    .pagination > li:first-child > span {
        -webkit-border-top-right-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        -webkit-border-bottom-left-radius: 5px;
        -webkit-border-top-left-radius: 5px;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomright: 0;
        -moz-border-radius-bottomleft: 5px;
        -moz-border-radius-topleft: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 5px;
        border-top-left-radius: 5px;
    }

    .pagination > li:last-child > a,
    .pagination > li:last-child > span {
        -webkit-border-top-right-radius: 5px;
        -webkit-border-bottom-right-radius: 5px;
        -webkit-border-bottom-left-radius: 0;
        -webkit-border-top-left-radius: 0;
        -moz-border-radius-topright: 5px;
        -moz-border-radius-bottomright: 5px;
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-topleft: 0;
        border-top-right-radius: 5px;
        border-bottom-right-radius: 5px;
        border-bottom-left-radius: 0;
        border-top-left-radius: 0;
    }

    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus {
        background: #202226;
        border-color: #202226;
        color: #fff;
    }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
        -moz-opacity: 0.75;
        -khtml-opacity: 0.75;
        -webkit-opacity: 0.75;
        opacity: 0.75;
    }

.nav-tabs {
    font-size: 0;
    margin: 30px 0 60px;
}

    .nav-tabs li {
        display: inline-block;
        vertical-align: middle;
        margin: 5px;
    }

    .nav-tabs a {
        padding: 12px 15px;
        position: relative;
        display: block;
        background: none;
        font-weight: 700;
        color: #fff;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        text-transform: uppercase;
        font-size: 12px;
    }

        .nav-tabs a:after {
            content: "";
            position: absolute;
            right: 0;
            left: 0;
            top: 100%;
            margin: auto;
            width: 1px;
            height: 25px;
            background: #202226;
            -webkit-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s;
            -webkit-transform-origin: top;
            -moz-transform-origin: top;
            transform-origin: top;
            -webkit-transform: scale(1, 0);
            -moz-transform: scale(1, 0);
            transform: scale(1, 0);
            pointer-events: none;
        }

        .nav-tabs a:hover {
            color: #202226;
        }

    .nav-tabs .pull-right {
        margin-right: 0;
        margin-left: 10px;
    }

        .nav-tabs .pull-right a {
            color: #202226;
            background: transparent;
            border: 1px solid #202226;
        }

            .nav-tabs .pull-right a:after {
                display: none;
            }

            .nav-tabs .pull-right a:hover {
                background: #202226;
                color: #fff;
            }

    .nav-tabs .active a {
        color: #202226;
    }

        .nav-tabs .active a:after {
            -webkit-transform: scale(1, 1);
            -moz-transform: scale(1, 1);
            transform: scale(1, 1);
        }

@media only screen and (max-width: 992px) {
    .nav-tabs .active a {
        color: #fff;
        background: #202226;
    }

        .nav-tabs .active a:after {
            display: none;
        }
}

@media only screen and (max-width: 768px) {
    .nav-tabs {
        text-align: center;
    }

        .nav-tabs li {
            float: none !important;
        }

            .nav-tabs li:not(.pull-right) a {
                font-size: 12px;
                padding-right: 15px;
                padding-left: 15px;
            }

            .nav-tabs li.pull-right {
                margin-left: 0;
                margin-right: 10px;
            }
}

.div {
    position: relative;
    overflow: hidden;
}

    .div:after {
        content: "";
        position: absolute;
        top: 100%;
        left: 0;
        width: 120%;
        height: 230px;
        background: #202226;
        -webkit-transform: rotate(-8deg);
        -moz-transform: rotate(-8deg);
        transform: rotate(-8deg);
        display: block;
        pointer-events: none;
        -webkit-transform-origin: top left;
        -moz-transform-origin: top left;
        transform-origin: top left;
    }

.div-primaria.div:after {
    background: #202226;
}

.div-secundaria.div:after {
    background: #f117ab;
}

.div-neutra.div:after {
    background: #fff;
}

.div-right.div:after {
    -webkit-transform-origin: top right;
    -moz-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    transform: rotate(8deg);
    left: auto;
    right: 0;
}

.div-top.div:after {
    top: auto;
    bottom: 100%;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    transform: rotate(8deg);
}

.div.div-top-right {
    padding-top: 200px;
}

@media only screen and (max-width: 768px) {
    .div.div-top-right {
        padding-top: 120px;
    }
}

.div.div-top-bottom:before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 120%;
    height: 200px;
    background: #fff;
    -webkit-transform: rotate(8deg);
    -moz-transform: rotate(8deg);
    transform: rotate(8deg);
    display: block;
    pointer-events: none;
    -webkit-transform-origin: top left;
    -moz-transform-origin: top left;
    transform-origin: top left;
}

.titulo-principal {
    position: relative;
    display: block;
    z-index: 1;
    margin: 30px 0;
    line-height: 1;
    word-wrap: break-word;
    font-size: 24px;
}

.botao-principal {
    z-index: 1;
    position: relative;
    display: inline-block;
    vertical-align: middle;
    padding: 20px 45px;
    margin: 30px auto;
    border: 0 solid #202226;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
    letter-spacing: 2px;
    font-size: 18px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 0 0 0 rgba(57, 230, 34, 0.5);
    -moz-box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.5);
    box-shadow: 0 0 0 0 rgba(230, 126, 34, 0.5);
    -webkit-animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
    -moz-animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
    animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
    -webkit-animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
    -moz-animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
    animation: pulseBtn 1.15s infinite cubic-bezier(0.65, 0, 0, 1);
}

    .botao-principal i {
        display: inline-block;
        vertical-align: bottom;
    }

    .botao-principal:focus {
        color: #fff;
    }

    .botao-principal:hover {
        background: #e3314e;
        -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
        -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
    }

    .botao-principal:first-child {
        margin-top: 0;
    }

    .botao-principal:last-child {
        margin-bottom: 0;
    }

    .botao-principal + .botao-principal {
        margin-top: 0;
        margin-left: 15px;
    }

    .botao-principal.terciario {
        background: #fff;
        color: #202226;
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
        padding: 15px 30px;
        font-size: 14px;
    }

        .botao-principal.terciario:hover {
            background: #f117ab;
            color: #fff;
        }

    .botao-principal.neutro {
        background: #fff;
        color: #202226;
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
        padding: 15px 30px;
        font-size: 14px;
    }

        .botao-principal.neutro:hover {
            background: #f117ab;
            color: #fff;
        }

    .botao-principal.inverso {
        z-index: 1;
        position: relative;
        display: inline-block;
        vertical-align: middle;
        padding: 20px 45px;
        margin: 30px auto;
        border: 0 solid #202226;
        -webkit-border-radius: 5px;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background: #202226;
        color: #fff;
        font-weight: 700;
        letter-spacing: 1px;
        letter-spacing: 2px;
        font-size: 18px;
        text-align: center;
        cursor: pointer;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
        -webkit-box-shadow: 0 0 0 0 rgba(32, 34, 38, 0.5);
        -moz-box-shadow: 0 0 0 0 rgba(32, 34, 38, 0.5);
        box-shadow: 0 0 0 0 rgba(32, 34, 38, 0.5);
    }

        .botao-principal.inverso:hover {
            background: #fff;
            color: #202226;
            -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
            -moz-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
            box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
        }

    .botao-principal.sem-efeito {
        -webkit-animation: none;
        -moz-animation: none;
        animation: none;
    }

    .botao-principal.btn-block {
        padding-right: 15px;
        padding-left: 15px;
    }

@media only screen and (min-width: 992px) {
    .botao-principal.inline {
        margin: 0 0 0 60px;
    }
}

@media only screen and (max-width: 480px) {
    .botao-principal {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.logo-franquia {
    position: absolute;
    top: 30px;
    left: 60px;
    display: inline-block;
    vertical-align: middle;
    -webkit-border-top-right-radius: 0;
    -webkit-border-bottom-right-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius-topright: 0;
    -moz-border-radius-bottomright: 5px;
    -moz-border-radius-bottomleft: 5px;
    -moz-border-radius-topleft: 0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-left-radius: 0;
    z-index: 999;
}

@media only screen and (max-width: 992px) {
    .logo-franquia {
        left: 0;
        right: 0;
        padding-right: 15px;
        padding-left: 15px;
    }

        .logo-franquia img {
            display: block;
            max-width: 100%;
            margin-left: auto;
            margin-right: auto;
        }
}

#banner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100vh;
    max-height: 1080px;
    background: url("../images/new/bg-header.jpg") no-repeat center center;
    background-size: cover;
    text-align: left;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
}

    #banner:before {
        content: "";
        display: block;
        z-index: 0;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
        -moz-opacity: 0.5;
        -khtml-opacity: 0.5;
        -webkit-opacity: 0.5;
        opacity: 0.7;
        pointer-events: none;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
        transition: all 0.5s;
    }

    #banner .intro {
        padding: 150px 60px 60px 60px;
    }

    #banner .titulo-principal {
        font-size: 42px;
        line-height: 42px;
        letter-spacing: 0px;
        font-weight: 600;
    }

    #banner .img-banner {
        position: absolute;
        right: 60px;
        bottom: 60px;
        z-index: 2;
    }

        #banner .img-banner .layer {
            position: absolute !important;
            right: 0;
            left: 0;
            top: auto !important;
            bottom: 80%;
            margin: auto;
            max-width: 90%;
            pointer-events: none;
        }

    #banner ul {
        margin: 15px 0 30px 0;
    }

        #banner ul li {
            list-style: none;
        }

            #banner ul li i {
                margin-right: 5px;
            }

#produtos-e-parceiros .slick-slide img {
    max-height: 220px;
}

@media only screen and (max-width: 1200px) {
    #banner {
        text-align: center !important;
    }

        #banner .titulo-principal {
            font-size: 32px;
            line-height: 32px;
        }

            #banner .titulo-principal:after {
                margin-left: auto;
            }

        #banner > div {
            width: 100%;
            max-width: 100%;
            flex: none !important;
        }

        #banner .img-banner {
            display: none;
        }
}

@media only screen and (max-width: 992px) {
    #banner {
        max-height: none;
        min-height: 1px;
        height: auto;
        padding: 150px 30px 30px;
    }

        #banner .pd60 {
            padding: 0;
        }

        #banner .fz24 {
            font-size: 18px;
        }

        #banner .fz60 {
            font-size: 36px;
        }

        #banner .titulo-principal {
            text-align: center;
        }

        #banner .subtitulo {
            text-align: center;
        }

    .btn-acao {
        display: none !important;
    }
}

@media only screen and (max-width: 768px) {
    #banner {
        padding-right: 15px;
        padding-left: 15px;
    }

        #banner .titulo-principal {
            font-size: 30px;
            line-height: 30px;
        }

        #banner .intro {
            padding: 55px 15px 55px 15px;
        }
}

@media only screen and (max-width: 480px) {
    #banner .fz30 {
        font-size: 18px;
    }

    #banner .titulo-principal {
        font-size: 28px;
        line-height: 28px;
    }

    #banner .intro {
        padding: 45px 0;
    }
}

#quem-somos {
    overflow: hidden;
    background-size: cover;
    background-size: none;
    background-color: #f89224;
}

    #quem-somos .titulo-principal {
        font-size: 38px;
    }

    #quem-somos .rel.pd90:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        background: #b72027;
        pointer-events: none;
        width: 100vw;
        z-index: -1;
    }

@media only screen and (max-width: 1200px) {
    #quem-somos .rel.pd90 {
        font-size: 18x;
    }
}

@media only screen and (max-width: 480px) {
    #quem-somos .rel.pd90 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.item-diferencial {
    position: relative;
    z-index: 1;
    height: 100%;
    padding: 45px 30px 30px;
    height: 100%;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .item-diferencial p {
        color: #202226;
    }

    .item-diferencial:before {
        content: "";
        z-index: -1;
        pointer-events: none;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        border: 2px solid #b72027;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        border-radius: 10px;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

    .item-diferencial .square-icon {
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        margin: auto;
        background-color: #b72027;
        font-size: 30px;
        margin-top: -38px;
    }

@media only screen and (max-width: 480px) {
    .item-diferencial {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.item-diferencial.mercado:before {
    background: #fff;
    border: 0;
    -webkit-box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 5px 30px -5px rgba(0, 0, 0, 0.25);
}

.item-diferencial.mercado .square-icon {
    font-size: 24px;
    margin-top: -30px;
}

.item-diferencial.mercado:hover {
    color: #fff;
}

    .item-diferencial.mercado:hover:before {
        background: #fff;
    }

@media only screen and (min-width: 768px) and (max-width: 1380px) {
    .item-diferencial {
        padding-right: 15px;
        padding-left: 15px;
    }

        .item-diferencial .fz72 {
            font-size: 48px;
        }

        .item-diferencial .fz24 {
            font-size: 24px;
        }
}

#mercado {
    background: #fff;
}

    #mercado h1,
    #mercado h2,
    #mercado h3,
    #mercado h4,
    #mercado span,
    #mercado p {
        color: #414141;
    }

    #mercado .titulo-principal {
        font-size: 42px;
    }

@media only screen and (max-width: 1200px) {
    #mercado .row > .pd30 {
        padding-right: 15px;
        padding-left: 15px;
    }
}

#modelos {
    z-index: 1;
    background-color: #efefef;
    background-size: cover;
}

    #modelos:before {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        height: 20px;
        // background: url("../images/div.png") no-repeat center center;
        background-size: auto;
    }

@media only screen and (max-width: 768px) {
    #modelos {
        padding-top: 120px;
    }
}

.item-modelo {
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #373b41;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.15);
}

    .item-modelo .ribbon {
        display: inline-block;
        vertical-align: middle;
        position: relative;
        padding: 15px 30px;
        background: #202226;
        color: #fff;
        line-height: 1;
    }

        .item-modelo .ribbon:before,
        .item-modelo .ribbon:after {
            content: "";
            position: absolute;
            top: 0;
            right: 100%;
            height: 0;
            width: 0;
            border: 24px solid #202226;
            border-right: 0;
            border-left: 15px solid transparent;
        }

        .item-modelo .ribbon:after {
            right: auto;
            left: 100%;
            border-left: 0;
            border-right: 15px solid transparent;
        }

    .item-modelo > ul {
        display: block;
        width: 100%;
    }

        .item-modelo > ul li {
            display: block;
            padding: 15px 15px;
            -webkit-border-radius: 5px;
            -moz-border-radius: 5px;
            border-radius: 5px;
        }

            .item-modelo > ul li:nth-child(odd) {
                background: #2e3137;
            }

    .item-modelo .slick-1item {
        width: 100%;
    }

        .item-modelo .slick-1item .slick-dots {
            margin: auto;
            bottom: 15px;
        }

@media only screen and (max-width: 1200px) {
    .item-modelo {
        padding-right: 15px;
        padding-left: 15px;
    }

        .item-modelo .ribbon {
            font-size: 14px;
            padding-right: 10px;
            padding-left: 10px;
        }

            .item-modelo .ribbon:before,
            .item-modelo .ribbon:after {
                border-width: 22px;
            }
}

#depoimentos .slick-dots {
    position: absolute;
    bottom: -5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
    width: auto;
    background: #fff;
    padding-right: 30px;
    padding-left: 30px;
}

.item-depoimento {
    position: relative;
    padding: 60px 120px;
    border: 5px solid #fff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 40px 30px 0;
}

    .item-depoimento:before,
    .item-depoimento:after {
        content: "\f10d";
        font-family: "Font Awesome\ 5 Pro";
        font-weight: 900;
        -moz-osx-font-smoothing: grayscale;
        -webkit-font-smoothing: antialiased;
        display: inline-block;
        font-style: normal;
        font-variant: normal;
        text-rendering: auto;
        line-height: 1;
        font-weight: 300;
        font-size: 60px;
        color: #fff;
        line-height: 90px;
        height: 90px;
        width: 60px;
        background: #fff;
        position: absolute;
        top: 30px;
        left: 0;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        transform: translateX(-50%);
    }

    .item-depoimento:after {
        content: "\f10e";
        left: auto;
        top: auto;
        bottom: 30px;
        right: 0;
        -webkit-transform: translateX(50%);
        -moz-transform: translateX(50%);
        transform: translateX(50%);
    }

    .item-depoimento .img {
        z-index: 1;
        position: absolute;
        top: 0;
        right: 0;
        left: 0;
        width: 3em;
        height: 3em;
        line-height: 3;
        margin: auto;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        transform: translateY(-50%);
    }

        .item-depoimento .img:before {
            content: "";
            z-index: -1;
            pointer-events: none;
            background: #fff;
            position: absolute;
            top: -30px;
            right: -30px;
            bottom: -30px;
            left: -30px;
            margin: auto;
            height: 10px;
        }

        .item-depoimento .img img {
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            border: 5px solid #202226;
            z-index: 2;
            -webkit-border-radius: 50%;
            -moz-border-radius: 50%;
            border-radius: 50%;
        }

@media only screen and (max-width: 1200px) {
    .item-depoimento {
        padding-right: 60px;
        padding-left: 60px;
    }
}

@media only screen and (max-width: 480px) {
    .item-depoimento {
        padding: 45px 15px 30px;
        margin-right: 15px;
        margin-left: 15px;
    }

        .item-depoimento:before,
        .item-depoimento:after {
            font-size: 30px;
            line-height: 60px;
            height: 60px;
            width: 30px;
        }

        .item-depoimento .mb30 {
            margin-bottom: 15px;
        }
}

#cta {
    background-image: url(../../assets/img/seja-franqueado/bg-footer.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

    #cta .botao-principal {
        margin-top: 0;
    }

    #cta .titulo-principal {
        font-size: 32px;
    }

    #cta.cta-footer::after {
        background: none;
    }

@media only screen and (max-width: 768px) {
    #cta {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

#diferenciais {
    background-size: cover;
}

    #diferenciais .titulo-principal {
        font-size: 38px;
        color: #f89224;
    }

    #diferenciais:before {
        background: #202226;
    }

    #diferenciais h1,
    #diferenciais h2,
    #diferenciais h3,
    #diferenciais h4,
    #diferenciais span,
    #diferenciais p {
        color: #414141;
    }


    #diferenciais ul li {
        color: #f89224;
    }

@media only screen and (max-width: 768px) {
    #diferenciais {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

#produtos-e-parceiros {
    z-index: 1;
    background-color: #202226;
    // background: url("../images/bgprodutos.jpg") no-repeat center center;
    background-size: cover;
}

footer {
    background: #2e3137;
    border-top: 1px solid #41454b;
    font-size: 14px;
}

    footer i {
        font-size: 24px;
        margin: 0 5px;
    }

        footer i:hover {
            font-size: 24px;
            margin: 0 5px;
            color: #f117ab;
        }

.toast {
    position: fixed;
    left: 0;
    bottom: 30px;
    z-index: 999;
    max-width: 400px;
    margin: auto;
    text-align: left;
    line-height: 1.5;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -moz-opacity: 0.8;
    -khtml-opacity: 0.8;
    -webkit-opacity: 0.8;
    opacity: 0.8;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    transform: translateX(-100%);
    font-size: 14px;
    padding: 15px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .toast.alert-dismissable .close,
    .toast.alert-dismissible .close {
        position: absolute;
        top: 0;
        right: 0;
        padding: 3px 10px;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        opacity: 1;
    }

    .toast:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        opacity: 1;
    }

    .toast.active {
        -webkit-transform: translateX(30px);
        -moz-transform: translateX(30px);
        transform: translateX(30px);
    }

.alert-success {
    color: #202226;
    background: rgba(255, 255, 255, 0.95);
    border: #f117ab;
    border-radius: 6px;
}

.side-form {
    position: fixed;
    top: 0;
    right: 0;
    width: 25%;
    height: 100%;
    height: 100vh;
    background: url("../images/new/bg-doguinhos.png") no-repeat center center, #41454b;
    background-size: cover;
    z-index: 999;
    -webkit-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.3);
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

    .side-form .titulo-principal:after {
        display: none;
    }

    .side-form .content {
        padding: 30px;
        max-height: 100%;
        width: 100%;
        overflow-y: auto;
    }

        .side-form .content::-webkit-scrollbar {
            width: 7px;
            background: rgba(0, 0, 0, 0.3);
        }

        .side-form .content::-webkit-scrollbar-thumb {
            width: 7px;
            background: #202226;
            -webkit-border-radius: 7px;
            -moz-border-radius: 7px;
            border-radius: 7px;
        }

@media only screen and (min-width: 992px) and (max-width: 1380px) {
    .side-form .content {
        padding-right: 15px;
        padding-left: 15px;
    }
}

.side-form .content > div {
    margin: auto;
    display: block;
    max-width: 500px;
}

.side-form .close {
    z-index: 9;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 60px;
    width: 90px;
    height: 90px;
    line-height: 90px;
    color: #ff2823;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    -moz-opacity: 0.5;
    -khtml-opacity: 0.5;
    -webkit-opacity: 0.5;
    opacity: 0.5;
    text-align: center;
    -webkit-transform: translateX(100%);
    -moz-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .side-form .close:hover {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -moz-opacity: 1;
        -khtml-opacity: 1;
        -webkit-opacity: 1;
        opacity: 1;
    }

#check-form:checked ~ .content .side-form {
    z-index: 9999;
    width: 100%;
}

    #check-form:checked ~ .content .side-form .close {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        transform: translateX(0);
    }

@media only screen and (max-width: 1200px) {
    .side-form {
        width: 30%;
    }
}

@media only screen and (max-width: 992px) {
    .side-form {
        display: none !important;
    }
}

.popup {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.25);
    height: 100%;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
}

    .popup .overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        margin: auto;
        z-index: 1;
    }

    .popup .content {
        width: 100%;
        max-height: 100%;
        overflow: auto;
    }

        .popup .content > div {
            z-index: 2;
            position: relative;
            background: #41454b;
            -webkit-border-radius: 10px;
            -moz-border-radius: 10px;
            border-radius: 10px;
            -webkit-box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
            -moz-box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.5);
            width: 100%;
            max-width: 800px;
            padding: 60px;
            margin: 60px auto;
            display: block;
        }

    .popup .close {
        z-index: 9;
        position: absolute;
        top: 0;
        right: 0;
        font-size: 30px;
        width: 60px;
        height: 60px;
        line-height: 60px;
        color: #ff2823;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=75)";
        -moz-opacity: 0.75;
        -khtml-opacity: 0.75;
        -webkit-opacity: 0.75;
        opacity: 0.75;
        text-align: center;
        text-shadow: none;
        -webkit-transition: all 0.3s;
        -moz-transition: all 0.3s;
        transition: all 0.3s;
    }

        .popup .close:hover {
            color: #ff2823;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            -moz-opacity: 1;
            -khtml-opacity: 1;
            -webkit-opacity: 1;
            opacity: 1;
        }

#check-popup-ligue:checked ~ .popup.popup-ligue {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    visibility: visible;
}

#check-popup-exit:checked ~ .popup.popup-exit {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0s;
    -moz-transition: all 0s;
    transition: all 0s;
    z-index: 99999;
}

#check-popup-after:checked ~ .popup.popup-after {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    visibility: visible;
}

@media only screen and (max-width: 992px) {
    .popup .content > div {
        width: auto;
        max-width: none;
        margin: 60px 15px;
    }
}

@media only screen and (max-width: 768px) {
    .popup .content > div {
        padding: 30px;
    }
}

@media only screen and (max-width: 480px) {
    .popup .content > div {
        padding: 30px 15px 15px;
    }

    .popup .close {
        width: 48px;
        height: 48px;
        line-height: 48px;
        font-size: 24px;
    }
}

#sticky-wrapper {
    height: 0 !important;
}

.topo-mobile {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -moz-opacity: 0;
    -khtml-opacity: 0;
    -webkit-opacity: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(-100%);
    -moz-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    width: 100%;
    position: fixed;
    top: 0px;
    display: none;
}

    .topo-mobile .botao-principal {
        padding-right: 15px;
        padding-left: 15px;
    }

.is-sticky .topo-mobile {
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -moz-opacity: 1;
    -khtml-opacity: 1;
    -webkit-opacity: 1;
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
}

@media only screen and (max-width: 480px) {
    .topo-mobile .botao-principal {
        font-size: 12px;
        letter-spacing: 1px;
    }

    .topo-mobile .fonte-destaque.fz24 {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1380px) {
    .container.grande {
        width: 1350px;
    }

    .container {
        width: 1350px;
    }
}

@media only screen and (min-width: 1530px) {
    .container.grande {
        width: 1500px;
    }
}

@media only screen and (max-width: 1380px) {
    .fz72 {
        font-size: 60px;
    }
}

@media only screen and (max-width: 1200px) {
    .w100p-md {
        width: 100%;
    }

    .fz0-md {
        font-size: 0;
    }

    .block-md {
        display: block;
    }

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

    #topo .container {
        width: 100%;
    }
}

#mobile-form {
    display: none;
}

@media only screen and (max-width: 992px) {
    .topo-mobile-active {
        display: flex !important;
    }

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

    .block-sm {
        display: block !important;
    }

    .column-sm {
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        flex-direction: column;
    }

    .justify-center-sm {
        -webkit-justify-content: center;
        -moz-justify-content: center;
        justify-content: center;
    }

    .w100p-sm {
        width: 100% !important;
        max-width: 100% !important;
    }

    .p0-sm {
        padding: 0;
    }

    .fz12-sm {
        font-size: 12px;
    }

    .m-a-sm {
        margin: 0 auto 5px;
    }

    .fz18 {
        font-size: 16px;
    }

    .fz48 {
        font-size: 36px;
    }

    .p180 {
        padding: 120px 0;
    }

    #mobile-form {
        display: block;
        text-align: left;
    }

    #banner .intro {
        padding-top: 60px;
        padding-bottom: 15px;
    }
}

@media only screen and (max-width: 768px) {
    .fancybox-skin,
    .fancybox-outer,
    .fancybox-inner,
    .fancybox-wrap {
        left: 0 !important;
        width: auto !important;
        height: auto !important;
        max-width: 100%;
    }

    .fancybox-close {
        top: -36px !important;
        right: 0 !important;
        -webkit-border-top-right-radius: 0;
        -webkit-border-bottom-right-radius: 0;
        -webkit-border-bottom-left-radius: 0;
        -webkit-border-top-left-radius: 5px;
        -moz-border-radius-topright: 0;
        -moz-border-radius-bottomright: 0;
        -moz-border-radius-bottomleft: 0;
        -moz-border-radius-topleft: 5px;
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
        border-bottom-left-radius: 0;
        border-top-left-radius: 5px;
    }

    .fz18 {
        font-size: 16px;
    }

    .fz24:not(.square-icon) {
        font-size: 18px;
    }

    .fz30 {
        font-size: 24px;
    }

    .fz36 {
        font-size: 30px;
    }

    .fz48 {
        font-size: 36px;
    }

    .fz60,
    .fz72 {
        font-size: 48px;
    }

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

        .text-center-xs hr {
            margin-left: auto;
            margin-right: auto;
        }

    .block-xs {
        display: block !important;
    }

    .column-xs {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .row-xs {
        margin-left: -15px;
        margin-right: -15px;
    }

    .w100p-xs {
        width: 100%;
    }

    .m-a-xs {
        margin: 0 auto 5px;
    }

    .m0-xs {
        margin: 0;
    }

    .p0-xs {
        padding: 0;
    }

    .pt120 {
        padding-top: 90px;
    }

    .pb120 {
        padding-bottom: 90px;
    }

    .p120,
    .p180 {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .pb180 {
        padding-bottom: 90px;
    }

    .mt90 {
        margin-top: 30px;
    }

    .slick-prev {
        left: 15px;
    }

    .slick-next {
        right: 15px;
    }

    .pd15-xs {
        padding: 15px;
    }

    #banner .intro {
        padding-top: 120px;
    }
}

@media only screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .visible-xxs {
        display: block !important;
    }

    .col-xxs-12 {
        width: 100%;
    }

    .col-xxs-offset-0 {
        margin-left: 0;
    }

    .hidden-xxs {
        display: none !important;
    }

    .block-xxs {
        display: block !important;
    }

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

    .w-a-xxs {
        width: auto !important;
        max-width: none !important;
    }

    .m-a-xxs {
        margin: 0 auto 5px;
    }

    .fz48 {
        font-size: 30px;
    }

    .fz36 {
        font-size: 24px;
    }

    .fz44 {
        font-size: 30px;
    }

    .tab-pane .titulo-panel {
        font-size: 14px;
        padding-left: 45px;
    }

        .tab-pane .titulo-panel:before {
            left: 15px;
        }

    .tab-pane .corpo-panel {
        padding-left: 15px;
        padding-right: 15px;
    }

    #rodape .pd60 {
        padding: 60px 15px;
    }

    .home .pd30 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .hidden-sm {
        display: none !important;
    }
}

#juntos {
    background: url("../images/new/bg-yellow.jpg") no-repeat center center;
    background-size: cover;
}

    #juntos .overlay {
        background: rgb(183 84 0 / 50%);
    }

    #juntos h2 {
        font-size: 48px;
    }

#depoimentos {
    z-index: 1;
    background-color: #efefef;
    background-size: cover;
}

    #depoimentos .titulo-principal {
        font-size: 38px;
        margin: 0;
    }

    #depoimentos .subtitulo {
        font-size: 34px;
        margin-bottom: 30px;
    }

    #depoimentos .testimonial-text {
        color: #8f8f8f;
    }

    #depoimentos .testimonial-author {
    }

.icon-cards {
    position: relative;
    width: 60vw;
    height: 40vw;
    max-width: 380px;
    max-height: 250px;
    margin: 0;
    color: white;
    perspective: 1000px;
    transform-origin: center;
}

#closeSideForm i {
    position: absolute;
    font-size: 38px;
    cursor: pointer;
}

.card-depoimentos {
    font-size: 13px;
    padding: 0 15px;
}

    .card-depoimentos p {
        margin-top: 15px;
    }

#investimento {
    background: #b72027;
}

    #investimento .titulo-principal {
        font-size: 38px;
        color: #f89224;
    }

.table {
    color: #fff;
    background: rgb(149 22 28);
    border-radius: 10px;
}

    .table th, .table td {
        text-align: left;
        vertical-align: middle;
        border-top: 1px solid #e1535a;
    }
