@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@100;400;700;900&display=swap');
@import url("../css/menu.css");
* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

:root {
  /* Colors */
  --brand-color: hsl(46, 100%, 50%);
  --black: hsl(0, 0%, 0%);
  --white: hsl(0, 0%, 100%);
  --red_apx: #0B616B;
  --gris_apx_uno: #242424;
  --gris_apx_dos: #f2f8f9;
  --shadow_apx: rgba(0, 0, 0, 0.15) 0px 6px 20px -6px;
}

a {
    text-decoration: none;
} 

h1 {
    font-size: 30px;
    font-weight: 700;
}

/*

h2 {
    font-size: 24px;
    font-weight: 400;
}

p  {
    font-size: 20px;
    font-weight: 100;
}

@media (min-width: 700px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }
}*/


::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 6px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: var(--red_apx);
}

.main {
  margin-top: -37px;
}

@media (min-width: 700px) {
    .main {
      margin-top: -62px;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    z-index: 0;
    height: 100%;
}
/***********************************************************************************************/

.box_brands {
    width: 100%;
    padding: 30px 0 10px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    position: fixed;
    background: #fff;
    top: 70px;
}

.brand_marka {
    height: 50px;
    width: 150px;
    object-fit: contain;
}

/**/
.brand_mark {
    position: fixed;
    width: 70px;
    height: auto;
    right: 0;
    bottom: 100px;
    background: #fff;
    box-shadow: var(--shadow_apx);
    padding: 10px 10px 10px 20px;
    border-radius: 16px 0 0 16px;
}   

    .brand_mark h3 {
        font-size: 11px;
        text-align: center;
        margin-bottom: 5px;
        color: var(--red_apx);
    }

    .brand_mark img {
        height: 100%;
        width: 100%;
    }

/*    */

/***********************************************************************************************/
/*our brands*/
.our_clients {
    height: auto;
    width: 100%;
    box-sizing: border-box;
}

.text_clients_title {
    text-align: center;
    padding: 20px;
}

.text_clients_title h2 {
    margin-bottom: 15px;
    color: var(--red_apx);
}

.text_clients_title p {
    line-height: 2em;
}

.box_logos_clients {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    margin: 20px;
}

.logs_clients {
    width: 150px;
    height: 70px;
    margin: 10px;
    object-fit: contain;
    padding: 8px;
    filter: saturate(0%);
    opacity: 0.3;
    transition: 0.3s ease;
    transform: scale(1)
}

.logs_clients:hover {
    filter: saturate(100%);
    opacity: 1;
    transform: scale(1.05)
}


/***********************************************************************************************/
/*footer*/

footer {
    width: 100%;
    box-sizing: border-box;
    height: auto;
    padding: 20px 0px;
    background: var(--gris_apx_uno);
    z-index: 999;
}

.cont_poweredby {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contac_foot_container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

    .footer_logo {
        height: 150px;
        width: 100%;
        box-sizing: border-box;
        padding: 10px;

    }

        .footer_logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }

.contact_footer_cont{
    box-sizing: border-box;
    width: 100%;
    color: var(--gris_apx_dos);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
    
    .ofi_admin {
        box-sizing: border-box;
        width: 100%;    
        padding: 20px;
        text-align: center;
    }

    .ofi_operativ {
        box-sizing: border-box;
        width: 100%;       
        padding: 20px;
        text-align: center;
    }

    .ofi_admin a, .ofi_operativ a {
        color: #fff;
        text-decoration: none;
    }

        .i_foot {
            margin-right: 10px;
            text-decoration: none;
            margin-top: 5px;
        }

        .i_foot i {
            color: #fff;
            margin-right: 10px;
        }


.powered_apex_container {
    width: 80%;
    border-top: solid 1px var(--gris_apx_dos);
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px 0;
}

.powered_apex_group {
    text-align: center;
    font-weight: 400;
    text-decoration: none;
    color: var(--gris_apx_dos);
    cursor: pointer;
    font-weight: 400;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    padding: 20px;
}

    .grupo_apex_foot {
        height: 50px;
        margin-left: 10px;
    }

    .powered_apex_group a {
        text-align: center;
    }

@media (min-width:500px){
    .contact_footer_cont {
        display: flex;
        flex-wrap: wrap;
        flex-direction: row;

    }
        .ofi_admin {
            width: 50%;
            text-align: left;
        }

        .ofi_operativ {
            width: 50%;
            text-align: left;
        }

    .contac_foot_container {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 80%;
        margin: auto;
    }

        .footer_logo {
            width: 30%;
            align-items: flex-end;
        }

        .contact_footer_cont {
            width: 70%;
            display: flex;
            justify-content: flex-end;
        }

    .powered_apex_container {
        flex-direction: column;
    }
}

@media (min-width:700px){
    .footer_logo {
            width: 30%;
            align-items: flex-end;
        }

        .contact_footer_cont {
            width: 70%;
            display: flex;
            justify-content: flex-end;
        }

        .ofi_admin {
            width: 200px;
            text-align: left;
        }

        .ofi_operativ {
            width: 200px;
            text-align: left;
        }
}

@media (min-width:900px){
    .ofi_admin {
        width: 250px;
    }

    .ofi_operativ {
        width: 250px;
    }
}

@media (min-width:1100px){
    .ofi_admin {
        width: 300px;
    }

    .ofi_operativ {
        width: 300px;
    }
}
/*********/

/*elegirnos*/

.elegirnos {
    width: 100%;
    padding: 40px 0;
    background-color: #0b616b;
opacity: 1;
background-image: radial-gradient(#06525a 2px, #0b616b 2px);
background-size: 40px 40px;
}

.elegirnos_box {
    margin: auto;
    width: 60%;
    height: auto;
    color: var(--white);
    text-align: center;
}

.elegirnos_box i {
    font-size: 6em;
    margin-bottom: 20px;
}

.elegirnos_box h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
}

.elegirnos_box p {
    font-size: 1.5em;
}

.elegirnos_box h3 {
    font-size: 1.5em;
}

.elegirnos_cards {
    height: auto;
    width: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.elegirnos_icons {
    width: 100%;
    max-width: 350px;
    margin: 25px;
    border-radius: 16px;
    padding: 25px;
    border: solid 1px var(--white);
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
}

.elegirnos_icons p {
    margin-top: 15px;
}