﻿.layout_padding {
    padding-top: 90px;
    padding-bottom: 0px;
}

.what_we_do_section {
    width: 100%;
    float: left;
}

.what_taital {
    width: 100%;
    float: left;
    font-size: 34px;
    color: #060606;
    padding-top: 10px;
    text-transform: uppercase;
    font-weight: bold;
    text-align: center;
}

    .what_taital::after {
        content: '';
        background-color: #ff5a58;
        position: absolute;
        width: 60px;
        text-align: center;
        right: 0;
        top: 0px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        height: 7px;
        left: 0;
        border-radius: 100px;
    }

.what_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #060606;
    margin-left: 0px;
    text-align: center;
    margin-top: 0px;
}

.what_we_do_section_2 {
    width: 100%;
    float: left;
    margin-top: 40px;
}

/* Tornando o box quadrado */
.box_main {
    position: relative;
    width: 100%;
    background-color: #1b5a8d;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: background-color 0.3s ease;
    aspect-ratio: 1 / 1; /* Mantém o box quadrado */
    padding: 10px;
    max-width: 200px; /* Limita a largura máxima para 200px */
    max-height: 200px; /* Limita a altura máxima para 200px */
}

    /* Tornando-o quadrado */
    .box_main::after {
        background-color: #37387f; /* Efeito ao passar o mouse */
    }
    .box_main:hover {
        background-color: #37387f;
    }

    .box_main.active {
        background-color: #37387f;
    }

.icon_1 {
    display: flex; /* Flexbox para centralizar */
    justify-content: center; /* Centraliza a imagem horizontalmente */
    align-items: center; /* Centraliza a imagem verticalmente */
    width: 100%; /* Ocupa 100% da largura do box */
    flex: 1; /* Expande o ícone para preencher o espaço disponível */
    max-height: 70%; /* Limita a altura do ícone, garantindo que não fique excessivamente grande */
}
    .icon_1 img {
        width: 80%; /* Faz a imagem ocupar 100% do espaço disponível */
        height: auto; /* Mantém a proporção da imagem */
        max-width: 120px; /* Limita a largura máxima da imagem */
        margin-bottom: 10px; /* Adiciona um espaço entre o ícone e o texto */
    }
/* Ajuste do tamanho do ícone em telas menores (celulares) */
   
/* Ajuste para telas menores (se necessário) */
@media (max-width: 767px) {
    .icon_1 img {
        width: 35vw; /* Aumenta a porcentagem em telas menores */
        height: 35vw;
    }
}
/* Ajuste do tamanho do texto em telas menores (celulares) */
@media (max-width: 767px) {
    .accounting_text {
        font-size: 1.5rem; /* Aproximadamente 24px */
    }
}


.accounting_text {
    color: #fff;
    font-size: 1.2rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: 10px; /* Ajusta a margem do texto para não ficar muito colado */
}

.lorem_text {
    width: 100%;
    float: left;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
    margin-left: 0px;
}

.moremore_bt_1 {
    width: 170px;
    margin: 0 auto;
    text-align: center;
    margin-top: 30px;
}

    .moremore_bt_1 a {
        width: 100%;
        float: left;
        font-size: 16px;
        color: #ffffff;
        border: 2px solid #ffffff;
        text-align: center;
        padding: 10px 0px;
        border-radius: 40px;
    }

        .moremore_bt_1 a:hover {
            color: #ffffff;
            border: 2px solid #ffffff;
        }

