:root {
    --blue-ddsh: #00aeef;
    --grey-ddsh: #4c515c;
    --black-ddsh: #111827;
    --bg-white-light: #fafaf9;
    --bg-black-light: #14110f;
    --bg-blue-subtle_: #e9f2ff;
    --bg-blue-subtle: #e6f7fc;
    --bg-blue-primary: #0c66e4;
}

* {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.4;
    /*font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal; */
    /* font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; */
    box-sizing: border-box;
    color: var(--black-ddsh);
}



html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
    width: 100%;
    background-color: var(--bg-white-light);
}

.btn-primary {
    background-color: var(--blue-ddsh);
}

#app {
    width: 100%;
    min-height: 100vh;
    display: grid;
    grid-template-areas: "sidebar main other"
        "sidebar main other";
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto;
    position: relative;
}

#sidebar {
    grid-area: sidebar;
    border-right: 1px solid var(--grey-ddsh);
    padding: 0 1rem;
    position: sticky;
    height: 100vh;
    top: 0;
    left: 0;
}

#main {
    display: flex;
    flex-direction: column;
    grid-area: main;
    width: 100%;
    border-right: 1px solid var(--grey-ddsh);
}

section {
    padding: 0 1rem;
}

footer {
    padding: 0 1rem;
    grid-area: other;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

#hero {
    width: 100%;
}

#hero_text h1 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--bg-black-light);
}

#hero_cta,
#hero_text,
#hero_img {
    padding: 0.5rem 0;
}

#hero_img img {
    border-radius: 1rem;
}


#service_text {
    padding: 1rem 0;
    text-align: center;
}

.section_title {
    text-align: center;
    color: var(--blue-ddsh);
    font-size: 36px;
    font-weight: 700;
}

.service_item_text {
    color: var(--grey-ddsh);
}
.service_item li {
    color: var(--grey-ddsh);
}

#menu_wrapper {
    display: flex;
    flex-direction: column;
}


.valor_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem
}

.contact_item {
    margin: 0;
}

.contact_wrapper h3,
.rs_wrapper h3 {
    margin: 0;
}

#logo_wrapper {
    background-color: #000000;
}

.logo_img {
    height: 50px;
}

#btn_menu_wrapper {
    display: none;
}

#cta_wrapper {
    display: flex;
    flex-direction: column;
}

/**/
.btn-black {
    background-color: var(--bg-black-light);
    color: #FFFFFF;
}

.btn-black:hover {
    background-color: var(--black-ddsh);
    color: #FFFFFF;
}

.menu_item {
    color: var(--black-ddsh)
}

#service {
    padding-top: 1rem;
    padding-bottom: 1rem;
    margin: 1rem 0;
}

.service_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
    gap: 0.5rem;
}

.service_item {
    border-radius: 0.5rem;
    background-color: var(--bg-blue-subtle);
    color: var(--blue-ddsh);
    border: solid 1px var(--blue-ddsh);
    box-shadow: 0 2px 6px rgba(0, 174, 239, 0.2);
}

.service_item img {
    border-radius: 0.5rem 0.5rem 0 0;
}

.service_item_content {
    padding: 0.5rem;
}

#vision {
    height: calc(100vh/3);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#vision p {
    text-align: center;
}

#valor {
    padding: 1rem 0.5rem;
}

.valor_item {
    padding: 0.5rem;
    border-radius: 0.5rem;
    background-color: var(--bg-white-light);
    border: solid 1px var(--blue-ddsh);
    background-color: var(--bg-blue-subtle);
    box-shadow: 0 2px 8px rgba(0, 174, 239, 0.2);
}

.valor_item p {
    display: none;
    text-align: center;
}
.valor_item.visible_ p{
    display: flex;
}

.valor_item i {
    color: var(--blue-ddsh);
}


.valor_item h3 {
    color: var(--blue-ddsh);
    text-align: center;
    transition: all;
    transition-duration: 0.2ms;
}

.valor_item h3:hover {
    transform: translateX(10px);
    text-decoration: underline;
}

#objective {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#client {
    padding-top: 1rem;
    padding-bottom: 1rem;
    width: 100%;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bg-blue-subtle);
}

.logo_wrapper {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    overflow: auto;
    gap: 1rem;
    white-space: nowrap;
    scrollbar-width: none;
}

section {
    min-height: calc(100vh / 2);
}

#hub {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 0;
}

.hub_wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
}

.hub_item {
    padding: 0 0.5rem;
}

.hub_item p,
.hub_item a {
    margin: 0;
}

#statistic_wrapper{
    display: flex;
}
.statistic_item{
    flex: 1;
    text-align: center;
}
.statistic_item h3{
    margin: 0;
    font-weight: 700;
}
.statistic_item p{
    margin: 0;
}
#slogan{
    background-color: #F5F5F5;
    padding: 1rem 0;
}
#slogan h3{
    text-align: center;
    font-weight: 700;
}

#loader_wrapper{
    position: fixed;
    height: 100%;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    background-color: #00000054;
    z-index:999999;
}


/**/

@media (max-width:768px) {
    section {
    min-height: calc(100vh / 3);
}
    #sidebar {
        background-color: #000000;
    }

    #hero_text h1 {
        font-size: 28px;
    }

    .section_title {
        font-size: 28px;
    }

    #app {

        width: 100%;
        min-height: 100vh;
        display: grid;
        grid-template-areas: "sidebar"
            "main"
            "other";
        grid-template-columns: auto;
        grid-template-rows: auto 1fr auto;
        position: relative;
    }

    #hero {
        width: 100%;
    }

    #sidebar {
        width: 100%;
        height: auto;
        border-right: 1px solid var(--grey-ddsh);
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        flex-wrap: wrap;
        padding: 0;
    }

    #logo_wrapper {
        width: 50%;
    }

    #btn_menu_wrapper {
        display: flex;
        min-width: 50%;
        justify-content: end;
        align-items: center;
        padding: 0.5rem;
        background-color: #000000;
    }

    #btn_menu_wrapper i {
        color: #FFFFFF
    }

    #menu_wrapper {
        background-color: var(--blue-ddsh);
        position: fixed;
        right: 0;
        width: 100% !important;
        height: auto;
        display: flex;
        flex-direction: column;
        padding: 0.5rem;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
        box-shadow: var(--bs-box-shadow) !important;
    }

    .menu_item {
        color: #FFFFFF;
        font-size: 24px;
        font-weight: 700;
        text-align: end;
        transition: all;
        transition-duration: 0.2s;
    }

    #menu_wrapper {
        width: 100%;
        display: none;
        flex-direction: column;
    }

    .visible {
        display: flex !important;
        width: 100%;
        flex-direction: column;
    }

    #cta_wrapper {
        display: none;
    }

    .valor_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        background-color: #000000;
        padding-bottom: 1rem;
    }

    footer p,
    footer i,
    footer h3 {
        color: #FFFFFF;
    }

    .service_wrapper {
        grid-template-columns: repeat(1, 1fr);
    }
.phone_number{
    color: #FFFFFF!important;
    text-decoration: none!important;
}

}