*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI';
    user-select: none;
}

:root {
    --considered-screen-width: 100vw;
    --considered-margin-left: 0px;
}

/*/////////////////////////////////////////////////////////////////////////////////////////
//////////////////////////// Configura a página para Desktops. ////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

@media (min-width: 431px) {
    
    :root {
        --considered-screen-width: 430px;
        --considered-margin-left: calc(50vw - (var(--considered-screen-width)/2));
    }

    .Botão-Tela-Cheia {
        display: none;
    }

    #Container-Vídeo-Principal{
        margin-bottom: 40px;
    }

    #Container-Vídeo-Depoimentos{
        margin-bottom: 40px;
    }

}

@media (max-width: 430px) {

    .Botão-Tela-Cheia {
        display: flex;
    }

}

/*/////////////////////////////////////////////////////////////////////////////////////////
////////////////////////////////////// Seção-Inicial //////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Seção-Inicial{
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px;
    background: linear-gradient(165deg, #000000, #4a0816);
    width: var(--considered-screen-width);
    margin-left: var(--considered-margin-left);
}

#Logo-Machado{
    display: block;
    width: 28%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

#Seção-Inicial-Manchete{
    color: #fff;
    text-align: center;
    width: 90%;
    font-size: 21px;
    margin-bottom: 60px;
}

#Seção-Inicial-Submanchete{
    color: #fff;
    font-size: 16px;
    margin-bottom: 30px;
}

.Seção-Inicial-Números{
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    background-color: #fff;
    color: #4a0816;
    height: 40px;
    width: 40px;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.Seção-Inicial-Explicações{
    color: #fff;
    text-align: center;
    width: 90%;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.3;
}

#Explicação-Otimize-Seu-Tempo{
    margin-top: 30px;
    color: #fff;
    text-align: center;
}

#Container-Externo-Vídeo-Principal{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.90);
    height: auto;
    padding: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
    border: 1px solid #9a9a9a;
    justify-content: center;
    align-items: center;
}

#Vídeo-Principal{
    width: 100%;
    height: 100%;
    animation: Teste 12s ease-in infinite;
}

@keyframes Teste {
    
    0% {
      box-shadow: 
        -15px 15px 50px rgba(230, 197, 130, 0.8),
        15px 15px 50px rgba(153, 36, 63, 0.8);
    }
    
    25% {
      box-shadow: 
        -10px 0 20px rgba(230, 197, 130, 0.8),
        10px 0 20px rgba(153, 36, 63, 0.8);
    }
    
    50% {
      box-shadow: 
        -10px -10px 30px rgba(230, 197, 130, 0.8),
        10px -10px 30px rgba(153, 36, 63, 0.8);
    }

    50.001% {
    box-shadow: 
        -10px -10px 30px rgba(230, 197, 130, 0.8),
        10px -10px 30px rgba(153, 36, 63, 0.8);
    }

    75% {
        box-shadow: 
        -10px 0 20px rgba(230, 197, 130, 0.8),
        10px 0 20px rgba(153, 36, 63, 0.8);
    }

    100% {
        box-shadow: 
        -15px 15px 50px rgba(230, 197, 130, 0.8),
        15px 15px 50px rgba(153, 36, 63, 0.8);
    }

}

/*/////////////////////////////////////////////////////////////////////////////////////////
//////////////////////// Seções 1, 2, 3 e 4: Containers Chamada ///////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

.Seções{
    background: linear-gradient(165deg, #000000, #4a0816);
    width: var(--considered-screen-width);
    margin-left: var(--considered-margin-left);
}

.Containers-Externos-Seções{
    display:block;
    padding-top: 20px;
    padding-bottom: 10px;
    cursor: pointer;
}

.Chamadas-Externas-Seções{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

.Números-Externos-Chamadas-Seções{
    font-size: 64px;
    color: #fff;
    margin-right: 20px;
}

.Textos-Externos-Chamadas-Seções{
    font-size: 22px;
    color: #fff;
    padding-top: 14px;
}

.Textos-Botões-Externos-Abertura-Seções{
    background-color: #0aa15b;
    font-size: 14px;
    width: 120px;
    padding-top: 5px;
    padding-bottom: 5px;
    text-align: center;
    color: #f2f2f2;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
    animation: Pulsos-Botões-Externos-Abertura-Seções 3s ease-out infinite;
}

@keyframes Pulsos-Botões-Externos-Abertura-Seções {
    
    0% {
      box-shadow: 0 0 0px 0 #0aa15b;
    }
    
    25% {
      box-shadow: 0 0 0px 5px #489672;
    }
    
    50% {
      box-shadow: 0 0 0px 10px #4a0816;
    }

    50.001% {
        box-shadow: 0 0 0px 0 #0aa15b;
      }

    75% {
        box-shadow: 0 0 0px 5px #489672;
    }

    100% {
        box-shadow: 0 0 0px 10px #4a0816;
    }

}

.Setas-Chamadas-Externas-Seções{
    stroke: #fff;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// Seção 1: Container Interno //////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Container-Interno-Seção-1{
    display:none;
}

#Chamada-Interna-Seção-1{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#Número-Interno-Chamada-Seção-1{
    font-size: 64px;
    color: #fff;
    margin-right: 20px;
}

#Texto-Interno-Chamada-Seção-1{
    font-size: 22px;
    color: #fff;
    padding-top: 14px;
}

#Gestão-Coração-Administração{
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

#Gestão-Ciência-Central{
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

#Sistema-de-Gestão{
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 40px;
    margin-bottom: 40px;
}

#Equação-Fundamental{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#Radical-Simplicidade{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#PDCA{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
}

#SDCA{
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

#Seta-Fechamento-Seção-1{
    display: flex;
    fill: #fff;
    stroke: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #4a0816;
    width: 80px;
    height: 30px;
    box-shadow: 0px 1px 5px rgb(255, 255, 255);
}

/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// Seção 2: Container Interno //////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/


#Container-Interno-Seção-2{
    display:none;
}

#Chamada-Interna-Seção-2{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#Número-Interno-Chamada-Seção-2{
    font-size: 64px;
    color: #fff;
    margin-right: 20px;
}

#Texto-Interno-Chamada-Seção-2{
    font-size: 22px;
    color: #fff;
    padding-top: 14px;
}

#Manchete-Lastro-de-Verdade{
    font-size: 28px;
    color: #fff;
    text-align: center;
    width: 90%;
    margin-top: -20px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

#Observação-Publicação-HBS{
    color: #fff;
    font-size: 14px;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

#Seta-Fechamento-Seção-2{
    display: flex;
    fill: #fff;
    stroke: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #4a0816;
    width: 80px;
    height: 30px;
    box-shadow: 0px 1px 5px rgb(255, 255, 255);
}

/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// Seção 3: Container Interno //////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Container-Interno-Seção-3{
    display:none;
}

#Chamada-Interna-Seção-3{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#Número-Interno-Chamada-Seção-3{
    font-size: 64px;
    color: #fff;
    margin-right: 20px;
}

#Texto-Interno-Chamada-Seção-3{
    font-size: 22px;
    color: #fff;
    padding-top: 14px;
}

#Gráfico{
    display: block;
    width: 90%;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

#Régua-de-Cargos{
    display: block;
    width: 90%;
    margin-top: 40px;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.Containers-Botões-Download-PDFs{
    margin-top: 30px;
    margin-bottom: 30px;
}

#Plataforma{
    display: block;
    width: 100%;
}

#Seta-Fechamento-Seção-3{
    display: flex;
    fill: #fff;
    stroke: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #4a0816;
    width: 80px;
    height: 30px;
    box-shadow: 0px 1px 5px rgb(255, 255, 255);
}

/*////////////////////////// Configurações Padrão Subseções /////////////////////////////*/

.Subseções-Fechadas{
    background: linear-gradient(165deg, #000000, #4a0816);
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 0px;
    border-radius: 20px;
    border: 1px solid #fff;
    padding-top: 20px;
    padding-bottom: 15px;
    cursor: pointer;
    user-select: none;
}

.Manchetes-Subseções-Padrão-Vermelho{
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 20px;
}

.Setas-Abertura-Subseções{
    display: flex;
    stroke: #fff;
    fill: #fff;
    background-color: #4a0816;
    border: 1px solid #fff;
    width: 80px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    margin-left: auto;
    margin-right: auto;
}

.Subseções-Abertas{
    display: none;
    background: linear-gradient(165deg, #fff, #dfdfdf);
    width: 95%;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    border-radius: 30px;
    padding-bottom: 20px;
    user-select: none;
}

.Containers-Manchetes-Subseções-Padrão-Branco{
    background: linear-gradient(165deg, #000, #4a0816);
    border-radius: 30px 30px 0px 0px;
    padding-top: 20px;
    padding-bottom: 20px;
}

.Manchetes-Subseções-Padrão-Branco{
    font-size: 22px;
    color: #fff;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
}

.Setas-Fechamento-Subseções{
    display: flex;
    stroke: #fff;
    fill: #fff;
    background-color: #4a0816;
    width: 80px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.Botões-Padrão-Download-PDFs{
    width: 60%;
    background-color: #4a0816;
    color: #fff;
    font-size: 20px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 5px 5px 5px #282828;
}

/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////// Seção 4: Container Interno //////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Container-Interno-Seção-4{
    display:none;
}

#Chamada-Interna-Seção-4{
    display: flex;
    width: calc(var(--considered-screen-width) * 0.85);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
}

#Número-Interno-Chamada-Seção-4{
    font-size: 64px;
    color: #fff;
    margin-right: 20px;
}

#Texto-Interno-Chamada-Seção-4{
    font-size: 22px;
    color: #fff;
    padding-top: 14px;
}

#Seta-Fechamento-Seção-4{
    display: flex;
    fill: #fff;
    stroke: #fff;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    background-color: #4a0816;
    width: 80px;
    height: 30px;
    box-shadow: 0px 1px 5px rgb(255, 255, 255);
}

#Background-Informações-Completas{
    background-color: #4a0816;
    padding-top: 30px;
    padding-bottom: 20px;
}

#Título-Informações-Completas{
    display: flex;
    font-size: 23px;    
    color: #fff;
    justify-content: center;
}

#Subtítulo-Informações-Completas{
    display: flex;
    font-size: 21px;    
    color: #fff;
    justify-content: center;
}

#Background-Informações-Resumidas{
    background: linear-gradient(170deg, #fff 20%, #ddd 80%);;
    padding-top: 40px;
    margin-bottom: 10px;
    justify-content: center;
}

#Título-Informações-Resumidas{
    display: flex;
    font-size: 23px;    
    color: #4a0816;
    justify-content: center;
}

#Subtítulo-Informações-Resumidas{
    display: flex;
    font-size: 21px;    
    color: #4a0816;
    justify-content: center;
    margin-bottom: 40px;
}

.Containers-Empresas-Informações-Resumidas{
    display: flex;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
}

.Logos-Empresas-Informações-Resumidas{
    width: 20%;
    height: auto;
    object-fit: contain;
    margin-right: 20px;
}

.Descrições-Empresas-Informações-Resumidas{
    width: 100%;
    color: #4a0816;
}

.Títulos-Estatísticas-Padrão-Vermelho{
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    color: #4a0816;
    margin-top: 20px;
}

.Subtítulos-Estatísticas-Padrão-Vermelho{
    font-size: 17px;
    text-align: center;
    color: #4a0816;
    margin-bottom: 20px;
}

#Gráfico-Portes{
    display: flex;
    width: 95%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}

#Gráfico-Setores{
    display: flex;
    width: 95%;
    height: auto;
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

#Data-Atualização-Estatísticas-Padrão-Vermelho{
    width: 95%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    text-align: center;
    color: #4a0816;
}

.Containers-Vídeos-Depoimentos{
    display: block;
    width: 90%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    margin-top: 30px;
    margin-bottom: 30px;
}

.Vídeos-Depoimentos{
    display: block;
    width: 100%;
    height: auto;    
}

/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// Configurações Padrão ////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

/*//////////////////////////////// Botões-Tela-Cheia ////////////////////////////////////*/

.Botões-Tela-Cheia-Depoimentos{
    background: linear-gradient(165deg, #fff, #ddd);
    width: 160px;
    padding: 10px;
    align-items: center;
    margin-right: auto;
    margin-left: auto;
    border-radius: 30px;
    margin-bottom: 20px;
    display: flex;
    cursor: pointer;
}

.Imagens-Tela-Cheia{
    height: 35px;
    width: auto;
    margin-right: 10px;
    margin-left: 10px;
}

.Textos-Tela-Cheia{
    color: #000;
    font-size: 16px;
    user-select: none;
}

/*//////////////////////////////////// Backgrounds //////////////////////////////////////*/

.Backgrounds-Preto-Vermelho{
    background: linear-gradient(165deg, #000000 10%, #4a0816 80%);
    padding-top: 20px;
    padding-bottom: 40px;
}

.Backgrounds-Preto-Vermelho-2{
    background: linear-gradient(170deg, #000000 20%, #4a0816 80%);
    padding-top: 20px;
    padding-bottom: 40px;
}

.Backgrounds-Vermelho-Preto{
    background: linear-gradient(165deg, #4a0816 20%, #000000 80%);
    padding-top: 20px;
    padding-bottom: 40px;
}

.Backgrounds-Preto{
    background-color: #000000;
    padding-top: 20px;
}

.Backgrounds-Vermelho{
    background-color: #4a0816;
    padding-top: 20px;
    padding-bottom: 20px;
}

.Backgrounds-Branco-Cinza{
    background: linear-gradient(165deg, #fff 10%, #d4d4d4 90%);
    padding-top: 20px;
    padding-bottom: 40px;
}

.Backgrounds-Vermelho-Branco{
    background: linear-gradient(165deg, #4a0816 10%, #fff 90%);
    padding-bottom: 20px;
}

.Backgrounds-Preto-Vermelho-Branco{
    background: linear-gradient(165deg, #000000 10%, #4a0816 70%, #fff 90%);
    padding-bottom: 20px;
}

/*/////////////////////////////////////// Textos ////////////////////////////////////////*/

.Manchetes-Internas-Padrão-Branco{
    font-size: 28px;
    color: #fff;
    text-align: center;
    width: 90%;
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.Manchetes-Internas-Padrão-Branco-2{
    font-size: 28px;
    color: #fff;
    text-align: center;
    width: 90%;
    margin-top: 0px;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
}

.Manchetes-Internas-Padrão-Branco-3{
    font-size: 28px;
    color: #fff;
    text-align: center;
    width: 90%;
    margin-top: 80px;
    margin-bottom: 0px;
    padding-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.Manchetes-Internas-Padrão-Vermelho{
    font-size: 28px;
    color: #4a0816;
    text-align: center;
    width: 90%;
    margin-top: 80px;
    margin-bottom: 80px;
    margin-left: auto;
    margin-right: auto;
}

.Tópicos-Internos-Padrão-Vermelho{
    font-size: 24px;
    color: #4a0816;
    text-align: center;
    width: 90%;
    margin-top: 60px;
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
}

.Tópicos-Internos-Padrão-Vermelho-2{
    font-size: 24px;
    color: #4a0816;
    text-align: center;
    width: 90%;
    margin-bottom: 40px;
    margin-left: auto;
    margin-right: auto;
}

.Títulos-Internos-Padrão-Branco{
    font-size: 21px;    
    color: #fff;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

.Textos-Internos-Padrão-Branco{
    font-size: 18px;
    width: 90%;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.Texto-Interno-Branco:visited {
  color: white;
}

.Textos-Internos-Padrão-Vermelho{
    font-size: 18px;
    width: 90%;
    color: #4a0816;
    margin-left: auto;
    margin-right: auto;
}

.Textos-Internos-Padrão-Vermelho-Centralizado{
    font-size: 18px;
    width: 90%;
    color: #4a0816;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.Textos-Internos-Padrão-Vermelho-2{
    font-size: 20px;
    width: 90%;
    color: #4a0816;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.Bullet-Points-Internos-Padrão-Branco{
    font-size: 18px;
    width: 80%;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
}

.Bullet-Points-Internos-Padrão-Vermelho{
    font-size: 18px;
    width: 80%;
    color: #4a0816;
    margin-left: auto;
    margin-right: auto;
}

/*/////////////////////////////////////// Imagens ////////////////////////////////////////*/

.Imagens-Internas-Padrão{
    display: block;
    width: calc(var(--considered-screen-width));
}

.Imagens-Internas-Padrão-2{
    display: block;
    width: 100%;
}

/*//////////////////////////////// Subseções-Cadastro //////////////////////////////////*/

.Subseções-Cadastro{
    width: calc(var(--considered-screen-width) * 0.90   );
    height: auto;
    background: linear-gradient(180deg, #ddd 0%, #fff 70%, #fff 100%);
    margin-top: 40px;
    border-radius: 20px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
}

.Manchetes-Subseções-Cadastro{
    font-size: 22px;
    color: #4a0816;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    line-height: 1.2;
}

.Textos-Subseções-Cadastro{
    font-size: 18px;
    color: #4a0816;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/*/////////////////////////////////////////////////////////////////////////////////////////
////////////////////// Espaço-Final-Container-Botão-Principal /////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Espaço-Final-Container-Botão-Principal{
    background: linear-gradient(165deg, #fff, #ddd);
    width: var(--considered-screen-width);
    margin-left: var(--considered-margin-left);
}


/*/////////////////////////////////////////////////////////////////////////////////////////
///////////////////////////////// Container-Botão-Principal ///////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////*/

#Container-Botão-Principal{
    display: block;
    height: 150px;
    border-radius: 50px 50px 0px 0px;
    background: linear-gradient(165deg, #fff, #ddd);
    width: var(--considered-screen-width);
    margin-left: var(--considered-margin-left);
    padding-top: 10px;
    padding-bottom: 20px;
    position: fixed;
    bottom: 0px;
}

#Explicação-Botão-Principal{
    display: block;
    color: #4a0816;
    width: 85%;
    font-size: 17px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#Botão-Principal{
    display: block;
    height: 60px;
    width: 85%;
    padding-left: 20px;
    padding-right: 20px;
    color: #fff;
    margin-left: auto;
    margin-right: auto;
    margin-top: 10px;
    font-size: 16px;
    border-radius: 10px;
    border: none;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 1);
    background-color: #0aa15b;
}