@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Semi+Expanded:wght@100;200;300;400;500;600;700;800;900&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 {
    --principal: #008542;
    --hover: #064933;
    --hover-escuro: #063626;
    --secundaria: #FDC82F;
    --secundaria-hover: #ffd24b;
    --secundaria-hover-apagada: #fcdb7a;
    --inicio: #f3f3f3;
    --bordas: #e9e9e9;
    --texto-principal: #000000;
    --texto-secundario: #4b4b4b;
    --texto-tertiario: #8b8b8b;
    --texto-cabecalho: #111111;
    --texto-placeholder: #e4e4e4;
    --texto-rodape: #313131;
}

.hidden {
    display: none!important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    backface-visibility: hidden;
    text-rendering: geometricPrecision;
    -webkit-font-smoothing: antialiased;
    scrollbar-width: 10px;
    scrollbar-color: #bdbdbd transparent;
}

*::-webkit-scrollbar {
    width: 10px;
}
  
*::-webkit-scrollbar-track {
    background: #ececec;
}
  
*::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    border-radius: 20px;
    border: 1px solid #ececec;
}
html, input, select, button, fieldset, form, textarea{
    font-family: 'Encode Sans Semi Expanded', system-ui, -apple-system, BlinkMacSystemFont, Arial, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica', sans-serif;
    border: none;
    background: none;
}

input, select, textarea {
    color: var(--texto-principal);
    font-size: 11.5pt;
    font-weight: 400;
}

input {
    font-family: 'Encode Sans Semi Expanded', Helvetica, sans-serif;
}

body {
    position: relative;
    min-height: 100vh;
}

html, body, a, p, h1, h2, h3, h4, h5, h6, ul, li {
    color: var(--texto-principal);
    font-weight: 400;
}

h1 {
    font-weight: 800;
}

h2, h3, h4, h5, h6 {
    font-weight: 600;
    font-family: 'Encode Sans Semi Expanded', system-ui, -apple-system, BlinkMacSystemFont, Arial, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica', sans-serif;
}

a, p {
    font-size: 12pt;
    line-height: 18pt;
}

a {
    text-decoration: none;
}

::selection {
    background-color: var(--principal);
    color: #FFF;
}

input:active, input:focus, select:active, select:focus, textarea:active, textarea:focus {
    border-top: none;
    border-left: none;
    border-right: none;
    outline: none;
    transition: border ease 0.1s;
}

textarea {
    resize: none;
}

.container {
    width: calc(100% - 200px);
    height: auto;
    margin: auto;
    overflow: hidden;
    max-width: 1500px;
}

.container-bloqueado {
    width: calc(100% - 200px);
    max-width: 1366px;
    height: auto;
    overflow: hidden;
}

.sombreado {
    box-shadow: 0px 2px 5px #92929250;
}

.encaixado {
    box-shadow: none;
}

header .logotipo {
    margin-left: 100px;
    position: absolute;
    z-index: 9999;
    width: 190px;
    height: 150px;
    overflow: hidden;
    background-color: #fff;
    top: 0;
    border-radius: 0 0 35px 35px;
    box-shadow: 0px 0px 20px #00000024;
}

header .logotipo img {
    width: 170px;
    margin: auto;
    display: flex;
    margin-top: 20px;
}

header {
    width: 100%;
    height: auto;
    position: fixed;
    top: 0;
    z-index: 100;
}

header .superior {
    width: 100%;
    height: 75px;
    overflow: hidden;
    background-color: var(--principal);
}

main .menu {
    width: 100%;
    height: 75px;
    top: 75px;
    overflow: hidden;
    padding-left: 100px;
    padding-right: 100px;
    position: absolute;
}

main .menu ul {
    display: block;
    float: right;
    margin-top: 30px;
}

main .menu ul li {
    float: left;
    list-style: none;
    margin-left: 40px;
}

main .menu ul li a {
    font-size: 13pt;
    color: #FFF;
}

main .menu ul li a:hover {
    color: var(--secundaria-hover);
}

header .superior .dif {
    width: 60%;
    height: 100%;
    overflow: hidden;
    background-color: var(--secundaria);
    border-radius: 0 0 50px 0;
    float: left;
}

.dif-conteudo {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-left: 320px;
}

.dif-conteudo p {
    line-height: 75px;
    font-size: 11.5pt;
    letter-spacing: -0.5px;
    float: left;
}

.dif-conteudo .botoes {
    width: auto;
    height: 75px;
    overflow: hidden;
    float: right;
    margin-right: 30px;
}

.dif-conteudo .botoes a {
    padding: 8px;
    background-color: var(--principal);
    border-radius: 100px;
    width: 32px;
    height: 32px;
    margin-left: 6px;
    display: block;
    float: left;
    margin-top: 18px;
}

.dif-conteudo .botoes a svg {
    float: left;
}

.dif-social {
    width: auto;
    height: auto;
    overflow: hidden;
    float: right;
    margin-top: 20px;
    margin-right: 20px;
}

.dif-social li {
    float: left;
    list-style: none;
    margin-right: 8px;
}

.dif-social li a {
    padding: 7.5px;
    background-color: var(--principal);
    border-radius: 100%;
    display: block;
    width: 32px;
    height: 32px;
    transition: background-color ease 0.2s;
}

.dif-social li a:hover .dif-social-svg {
    fill: var(--secundaria);
}

.dif-social li a svg path {
    fill: #FFF;
}

.inicio {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-image: url('../img/fachada.jpg');
    background-size: cover;
    background-position: bottom right;
}

.bandeira {
    width: auto;
    height: auto;
    overflow: hidden;
    float: right;
    margin-right: 100px;
}

.bandeira img {
    width: auto;
    height: 65px;
    margin-top: 10px;
}

.bandeira a {
    color: #FFF;
    background-color: var(--hover);
    border-radius: 30px;
    padding: 8px 20px;
    font-size: 11pt;
    float: left;
    margin-right: 35px;
    margin-top: 20px;
}

.bandeira a:hover {
    color: var(--secundaria);
}

.dica-rolar {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-top: calc(100vh - 90px);
}

.dica-rolar img {
    height: 100px;
    margin: auto;
    display: block;
}

.titulo-esquerdo {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 50px 0 50px 0;
}

.titulo-esquerdo .det1 {
    width: 130px;
    height: 75px;
    background-color: var(--principal);
    clip-path: polygon(0% 0%, 75% 0%, 100% 50%, 75% 100%, 0% 100%);
    float: left;
}

.titulo-esquerdo .det2 {
    width: 90px;
    height: 75px;
    background-color: var(--principal);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    float: left;
}

.titulo-esquerdo .det3 {
    width: 90px;
    height: 75px;
    background-color: var(--secundaria);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    float: left;
}

.titulo-esquerdo .det4 {
    width: 90px;
    height: 75px;
    background-color: var(--secundaria);
    clip-path: polygon(75% 0%, 100% 50%, 75% 100%, 0% 100%, 25% 50%, 0% 0%);
    float: left;
}

.titulo-esquerdo h2 {
    float: left;
    font-size: 25pt;
    margin: 0 20px 0 20px;
    line-height: 75px;
    text-transform: uppercase;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, Arial, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

.titulo-direito {
    width: 100%;
    height: auto;
    overflow: hidden;
    margin: 50px 0 50px 0;
}

.titulo-direito .det1 {
    width: 130px;
    height: 75px;
    background-color: var(--principal);
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 25% 100%, 0% 50%);
    float: right;
}

.titulo-direito .det2 {
    width: 90px;
    height: 75px;
    background-color: var(--principal);
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    float: right;
}

.titulo-direito .det3 {
    width: 90px;
    height: 75px;
    background-color: var(--secundaria);
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    float: right;
}

.titulo-direito .det4 {
    width: 90px;
    height: 75px;
    background-color: var(--secundaria);
    clip-path: polygon(100% 0%, 75% 50%, 100% 100%, 25% 100%, 0% 50%, 25% 0%);
    float: right;
}

.titulo-direito h2 {
    float: right;
    font-size: 25pt;
    margin: 0 20px 0 20px;
    line-height: 75px;
    text-transform: uppercase;
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, Arial, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica', sans-serif;
    font-weight: 700;
    letter-spacing: -1px;
}

.botao-rotas {
    width: auto;
    height: auto;
    display: block;
    padding: 10px 40px;
    border: 1px solid var(--principal);
    border-radius: 50px;
    float: right;
    font-size: 12pt;
    margin-right: 100px;
    margin-top: 10px;
    color: var(--principal);
}

.botao-rotas:hover {
    background-color: var(--principal);
    color: #FFF;
}

.mapa-iframe {
    width: 100%;
    height: 400px;
}

.banner1 {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-image: url(../img/banner-premmia.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-bottom: 10px;
}

.banners {
    margin: 80px 0;
}

.credito-imagens {
    font-size: 9pt;
    color: var(--texto-rodape);
    text-align: center;
}

.beneficios {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.beneficios .quadros {
    width: 33.3333333333%;
    height: auto;
    overflow: hidden;
    float: left;
    padding: 20px 30px;
    margin: 50px 0;
}

.beneficios .quadros svg {
    width: 70px;
}

.beneficios .quadros svg path {
    fill: var(--principal);
}

.beneficios .quadros .traco {
    width: 80px;
    height: 12px;
    overflow: hidden;
    background-color: var(--secundaria);
    margin-top: 10px;
    border-radius: 3px;
}

.beneficios .quadros h3 {
    font-size: 17pt;
    font-weight: 700;
    margin: 20px 0;
}

.beneficios .quadros p {
    font-size: 12pt;
}

.comunicacao {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 40px 60px;
}

.comunicacao .quadros {
    width: calc(33.333333% - 40px);
    height: auto;
    overflow: hidden;
    float: left;
    margin: 20px;
    padding: 20px;
}

.comunicacao .borda {
    width: 130px;
    height: 130px;
    display: block;
    margin: 15px auto 30px auto;
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 100%;
}

.comunicacao .quadros svg {
    width: 65px;
    height: 65px;
}

.comunicacao .quadros svg path {
    fill: var(--principal);
}

.comunicacao .quadros p {
    text-align: center;
    font-weight: 500;
    font-size: 14pt;
    letter-spacing: -0.5px;
    color: var(--principal);
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, Arial, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica', sans-serif;
}

.comunicacao .dica {
    font-size: 10pt !important;
    color: #000 !important;
    line-height: 1.3;
    display: block;
    max-width: 300px;
    margin: auto;
}

.comunicacao .quadros .botao {
    width: fit-content;
    height: auto;
    padding: 10px 35px;
    border-radius: 100px;
    background-color: var(--secundaria);
    color: var(--principal);
    display: block;
    margin: auto;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 11pt;
    letter-spacing: -0.5px;
}

.comunicacao .quadros .botao:hover {
    background-color: var(--secundaria-hover);
}

.comunicacao .mensagem {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 20px;
}

.comunicacao .mensagem h2 {
    font-size: 22pt;
    text-align: center;
    font-weight: 400;
    margin-top: 70px;
    margin-bottom: 40px;
}

.input {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 13px;
    border-bottom: 2px solid var(--secundaria);
    background-color: #f5f5f5;
    margin-bottom: 15px;
    margin-top: 5px;
    border-radius: 5px;
}

.input:active, .input:focus, select:active, select:focus, textarea:active, textarea:focus {
    border-bottom: 2px solid var(--principal);
}

.fieldset-inteiro {
    width: calc(100% - 20px);
    margin: 10px;
    height: auto;
    overflow: hidden;
}

.fieldset-metade {
    width: calc(50% - 20px);
    height: auto;
    overflow: hidden;
    float: left;
    margin: 0 10px;
}

.mensagem .botao {
    width: auto;
    float: right;
    background-color: var(--principal);
    padding: 10px 22px;
    border-radius: 100px;
    margin-top: 10px;
    color: #FFF;
    border: 2px solid var(--principal);
    cursor: pointer;
    font-size: 10pt;
}

.mensagem .botao:hover {
    background-color: var(--hover);
    border: 2px solid var(--hover);
}

footer {
    width: 100%;
    height: 110px;
    overflow: hidden;
    padding: 35px 110px;
    border-radius: 0 80px 0 0;
    background-color: var(--hover);
}

footer p, footer a {
    text-align: left;
    font-size: 10pt;
    color: #fff;
    line-height: 1.4;
}

.copyright {
    width: auto;
    height: auto;
    overflow: hidden;
    float: left;
}

.creditos {
    font-size: 9pt;
}

.creditos a {
    font-size: 9pt;
    font-weight: 600;
}

.creditos a:hover {
    text-decoration: underline;
}

.rodape-social {
    width: auto;
    height: auto;
    overflow: hidden;
    float: right;
}

.rodape-social li {
    float: left;
    list-style: none;
    margin-right: 10px;
}

.rodape-social li a {
    padding: 10px;
    background-color: #000000;
    border-radius: 100%;
    display: block;
    width: 38px;
    height: 38px;
    transition: background-color ease 0.2s;
}

.bt-rodape:hover {
    color: #fff;
}

.rodape-social li a:hover {
    background-color: var(--hover-escuro);
}

.rodape-social li a svg {
    width: 18px;
    height: 18px;
}

.rodape-social li a svg path {
    fill: #fff;
}

.det-mobile {
    width: calc(100% - 40px);
    height: 10px;
    overflow: hidden;
    background-color: var(--secundaria);
    background: rgb(0,133,66);
    background: linear-gradient(90deg, rgba(0,133,66,1) 0%, rgba(253,200,47,1) 23%);
    margin: 0 20px 0 20px;
    display: none;
    border-radius: 3px;
}

.barra-mobile {
    width: 100%;
    height: 75px;
    overflow: hidden;
    background-color: #FFF;
    position: fixed;
    bottom: 0;
    z-index: 999999;
    box-shadow: 0px 0px 20px #00000024;
    display: none;
}

.img-serv-mobile {
    display: none;
}

.botao-barra-mobile {
    width: 20%;
    height: auto;
    overflow: hidden;
    display: block;
    padding: 11px 0;
    float: left;
}

.botao-barra-mobile svg {
    width: 35px;
    height: auto;
    display: block;
    margin: auto;
}

.botao-barra-mobile svg path {
    fill: var(--principal);
}

.botao-barra-mobile .wpp {
    width: 30px;
}

.botao-barra-mobile p {
    font-size: 8pt;
    font-weight: 500;
    text-align: center;
}

header .hamburger {
    width: 80px;
    height: 75px;
    overflow: hidden;
    float: right;
    display: none;
}

header .hamburger svg {
    width: 38px;
    height: 38px;
    display: block;
    margin: auto;
    margin-top: 18px;
}

.menu-mobile {
    width: 100%;
    height: 100vh;
    overflow: hidden;
    display: block;
    background-color: var(--principal);
    position: fixed;
    z-index: 9999999999999999;
    transition: ease right 0.3s;
    overflow: scroll;
    right: -110%;
}

.fecha-mobile {
    width: 100%;
    height: auto;
    overflow: hidden;
    padding: 15px;
    background-color: var(--secundaria);
}

.fecha-mobile svg {
    float: right;
    width: 40px;
    height: 50px;
}

.fecha-mobile svg path {
    fill: var(--principal);
}

.menu-mobile ul {
    list-style: none;
}

.menu-mobile ul li {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.menu-mobile ul li a {
    color: #FFF;
    font-weight: 600;
    padding: 25px 5px;
    margin: 0 20px;
    border-bottom: 1px solid var(--secundaria-hover-apagada);
    display: block;
}

.fim {
    border-bottom: transparent!important;
}

.exibir-mobile {
    right: 0!important;
}

.nm-site {
    width: fit-content;
    height: auto;
    overflow: hidden;
    float: left;
    font-size: 16pt;
    color: var(--principal);
    margin: 13px 7px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.historia {
    text-align: justify;
}

@media screen and (max-width: 1200px) {
    .dif-conteudo p {
        display: none;
    }

    .beneficios .quadros {
        padding: 20px 10px;
    }

    .comunicacao .quadros {
        padding: 0;
    }

    .container {
        width: calc(100% - 100px);
    }

    .carousel img {
        height: 380px;
    }
}

@media screen and (max-width: 1065px) {
    main .menu {
        display: none;
    }

    .comunicacao .mensagem {
        padding: 0;
    }
    
    .comunicacao .quadros p {
        font-size: 13pt;
    }

    .botao-rotas {
        display: none;
    }

    a, p, .beneficios .quadros p {
        font-size: 11pt;
    }

    .comunicacao .mensagem h2 {
        font-size: 18pt;
    }

    .barra-mobile {
        display: block;
    }

    footer {
        margin-bottom: 75px;
    }

    .dica-rolar {
        display: none;
    }
    
    .grecaptcha-badge {
        bottom: 105px!important;
    }
}

@media screen and (max-width: 960px) {
    .dif-social {
        display: none;
    }

    .bandeira a {
        display: none;
    }

    header {
        box-shadow: 0px 0 20px #00000024;
    }

    header .superior .dif {
        background-color: #FFF;
        border-radius: 0;
        width: calc(100% - 80px);
    }

    header .logotipo {
        box-shadow: none;
        height: 75px;
        border-radius: 0;
        margin-left: 25px;
        width: auto;
    }

    header .logotipo img {
        margin-top: 0;
        width: 120px;
        margin: 0;
    }

    .beneficios .quadros {
        padding: 20px 0px;
        width: 100%;
        margin: 25px 0;
    }

    .comunicacao {
        padding: 0;
        margin-bottom: 50px;
    }

    .img-serv-desktop {
        display: none;
    }

    .img-serv-mobile {
        display: inline;
    }

    .carousel img {
        height: max-content;
    }

    .bandeira {
        display: none;
    }

    .dif-conteudo {
        padding-left: 0;
    }

    .inicio {
        height: 65vh;
    }

    header .hamburger {
        display: inline;
    }
}

@media screen and (max-width: 770px) {
    .comunicacao .quadros {
        width: 100%;
        margin: 0;
        border: 1px solid var(--texto-placeholder);
        border-radius: 30px;
        padding: 10px 30px;
        margin-bottom: 30px;
    }

    .fieldset-inteiro, .fieldset-metade {
        width: 100%;
        margin: 0;
    }

    .comunicacao .quadros p {
        text-align: left;
        max-width: unset;
    }

    .comunicacao .borda {
        width: 100px;
        height: 100px;
        margin: 15px 0 30px 0;
    }

    .comunicacao .quadros svg {
        width: 40px;
        height: 40px;
    }

    .comunicacao .quadros .botao {
        margin-left: 0;
        margin-right: 0;
    }

    .titulo-esquerdo .det1 {
        width: 80px;
        height: 60px;
    }

    .titulo-esquerdo .det2, .titulo-esquerdo .det3, .titulo-esquerdo .det4 {
        width: 60px;
        height: 60px;
    }

    .titulo-direito .det1 {
        width: 80px;
        height: 60px;
    }

    .titulo-direito .det2, .titulo-direito .det3, .titulo-direito .det4 {
        width: 60px;
        height: 60px;
    }

    .titulo-esquerdo h2, .titulo-direito h2 {
        font-size: 22pt;
        line-height: 60px;
    }

    .comunicacao .quadros .botao {
        padding: 8px 30px;
        font-size: 10pt;
    }

    .beneficios .quadros h3 {
        font-size: 16pt;
    }

    footer {
        border-radius: 0 60px 0 0;
    }
}

@media screen and (max-width: 660px) {
    footer {
        padding: 20px 50px;
        height: auto;
    }
    
    .copyright {
        width: 100%;
    }

    .rodape-social {
        float: none;
        width: 100%;
        padding-top: 20px;
        display: flex;
        justify-content: center;
    }

    footer p, footer a {
        text-align: center;
        font-size: 9pt;
    }

    .creditos, .creditos a {
        font-size: 7.5pt;
    }

    .container {
        width: calc(100% - 50px);
    }

    .titulo-esquerdo .det1, .titulo-esquerdo .det2, .titulo-esquerdo .det3, .titulo-esquerdo .det4 {
        display: none;
    }

    .titulo-direito .det1, .titulo-direito .det2, .titulo-direito .det3, .titulo-direito .det4 {
        display: none;
    }

    .titulo-esquerdo h2, .titulo-direito h2 {
        float: left;
    }

    .det-mobile {
        display: block;
    }

    .botao-barra-mobile svg {
        width: 26px;
        height: auto;
        margin-top: 3px;
    }

    .botao-barra-mobile .wpp {
        width: 22px;
    }
    
    .botao-barra-mobile p {
        font-size: 7.5pt;
    }

    .titulo-esquerdo h2, .titulo-direito h2 {
        font-size: 20pt;
    }

    .beneficios .quadros svg, .beneficios .quadros .traco {
        width: 60px;
    }

    .beneficios .quadros .traco, .det-mobile {
        height: 9px;
    }

    .banners {
        margin: 40px 0;
    }

    .beneficios .quadros .traco {
        display: none;
    }

    .comunicacao .quadros {
        padding: 10px 25px;
    }
}

/* PARA O CARROSEL ABAIXO DA HISTORIA */

#carousel,
.carousel,
.slide {
  width: 100%;
  position: relative;
  margin: 0 auto;
  margin-top: 2%;
}

.carousel img {
    width: 100%;
    object-fit: cover;
}

span {
  display: none;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}

/*Duração da transição entre as imagens*/
.carousel .carousel-item {
    transition-duration: 1s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  -webkit-transform: none;
  transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 7%;
  color: #fff;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: no-repeat 50% / 100% 100%;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 2%;
  left: 0;
  z-index: 15;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  box-sizing: content-box;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 3px;
  margin-left: 3px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}