﻿/**{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

header{
    width: 100%;
    height: 80px;
    background-color: #09192f;
}

header nav{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


.header-icon{
    margin-left: 12px;
}
header nav .link-login{
    margin-right: 12px;
}

header nav .link-login a{
    color: white !important;
    font-size: 20px;
    font-weight: bold;
}

.section-one{
    width: 100%;
    height: calc(80vh - 80px);
}


.section-one .img_background{
    width: 100%;
    height: 100%;
    background-image: url(../.~/assets/images_home/img/img_background.webp);
    background-position: center;
    background-repeat: repeat;
    background-size: 100% 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.section-one .card-section-one{
    width: 320px;
    height: 150px;
    background-color: white;
    position: relative;
    top: 100px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.section-one .card-section-one p:first-child{
    font-size: 20px;
    text-align: center;
    font-weight: bolder;
}

.section-one .card-section-one p:last-child{
    font-size: 30px;
    font-weight: bold;
}

#body_login_modal{
    display: flex;
    justify-content: center;
}

#body_login_modal h2{
    text-align: center;
    font-weight: bold;
}

.form_item{
    display: flex;
    gap: 4px; 
    margin-bottom: 12px;
    align-items: center;   
}

.form_item input{
    border: none;
    padding: 10px;
    border-bottom: 2px solid black;
}

.form_item i{
    font-size: 20px;
}

.item__button{
    text-align: center;
    margin-bottom: 12px;
}

.item__button button{
    font-size: 20px;
    border: none;
    background-color: #1D487F;
    color: white;
    padding: 5px 10px;
    border-radius: 8px;
}

#credict_login{
    text-align: center;
}

#credict_login span{
    color: gray;
}

*/


@font-face {
    font-family: 'Red Hat Display', sans-serif !important;
    src: url(../../assets/fonts/RedHatDisplay-VariableFont_wght.ttf);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    font-size: 62.5%;
    font-family: 'Red Hat Display', sans-serif !important;
}
body {
    font-family: 'Red Hat Display', sans-serif !important;
}

#header_design {
    width: 100%;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

section {
    min-height: 100vh;
    position: relative;
}

#header_design .logo_corportate {
    width: 140px;
    margin-left: 20px;
}

    #header_design .logo_corportate img {
        width: 100%;
        object-fit: cover;
    }


#header_design .menu_nav {
    margin-right: 20px;
    height: 100%;
}

    #header_design .menu_nav ul {
        list-style: none;
        height: 100%;
        margin:0;
    }

        #header_design .menu_nav ul a {
            font-size: 20px;
            color: white;
            text-decoration: none;
            display: flex;
            height: 100%;
            padding: 15px;
            transition: all 0.3s ease-in-out;
            border-radius: 12px;
            cursor: pointer;
        }

            #header_design .menu_nav ul a:hover {
                background-image: linear-gradient(to right, #0d0067, #120474, #160a82, #191190, #1c189f);
            }

#main {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh; /* Ocupar toda la altura de la ventana */
}

#main .section_principal {
    width: 100%;
    height: 100vh;
    background: url("../../assets/images_home/Corporate_back.jpg") 50% 50%;
    background-size: cover;
    display: flex;
    align-items: center;
}

#main .section_principal .principal_content {
    backdrop-filter: blur(20px);
            
    padding: 20px;
    max-width: 1000px;
    min-width: 300px;
}

#main .section_principal .principal_content :where(h1, p) {
    color: white;
}
#main .section_principal .principal_content img{
    margin-bottom: 12px;
}

#main .section_principal .principal_content h1 {
    font-size: 3.8rem;
    margin-bottom: 12px;
}

#main .section_principal .principal_content p {
    font-size: 2rem;
}

#section_about_us {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
}

.section_container {
    width: 80%;
    margin: 0 auto;
}

.section_title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px;
}

    .section_title p {
        position: relative;
        font-size: 30px;
        font-weight: bold;
    }

        .section_title p::before {
            content: "";
            position: absolute;
            display: block;
            width: 200px;
            border: 5px solid #0d0067;
            border-radius: 100px;
            left: calc(50% - 100px);
            bottom: -20px;
        }

.section_content {
    width: 100%;
    min-width: 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-around;
    text-align: center;
}

.card_item {
    width: 250px;
}

.card_item img{
    margin-bottom: 12px;
}

    .card_item h3 {
        font-size: 20px;
        font-weight: bold;
        margin-bottom: 8px;
    }

    .card_item h4 {
        font-size: 20px;
        font-weight: 500;
        margin-bottom: 8px;
    }

    .card_item p {
        font-size: 18px;
        margin: 0;
    }




#section_enterprise {
    width: 100%;
    height: 200px;
    min-height: auto;
    display: grid;
    place-content: center;
}

#section_enterprise {
    background: linear-gradient(rgba(0,0,0,.5),rgba(0,0,0,.5)), url("../../assets/images_home/Corporate_back.jpg");
    background-size: cover;
}

    #section_enterprise p {
        color: white;
        font-size: 4rem;
    }

#section_tecnologys {
    display: grid;
    place-content: center;
    min-height: auto;
    padding: 50px 0;
}

    #section_tecnologys :where(.section_container, .section_content) {
        width: 100%;
    }

    #section_tecnologys .section_content {
        width: 100%;
        display: flex;
        gap: 20px;
        justify-content: space-around;
    }

        #section_tecnologys .section_content .card_img {
            width: 120px;
            height: 100px;
            display: grid;
            place-content: center;
            box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
            transition: 0.5s all ease-in-out;
        }

            #section_tecnologys .section_content .card_img img {
                width: 60px;
                height: 60px;
                object-fit: cover;
            }

            #section_tecnologys .section_content .card_img:hover {
                transform: rotateY(180deg);
            }

#modalLogin section{
    height: auto;
    min-height: auto;
}
#modalLogin .modal-content{
    background-color: rgba(128, 128, 128, 0.179);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    
}

#modalLogin .modal-header h5{
    font-size: 2rem;
    font-weight: bold;
    color: white;
}
#modalLogin .modal-header a{
    cursor: pointer;
}

#modalLogin .modal-header a i{
    color: white;
    font-size: 2rem;
}

#modalLogin .image_container{
    width: 250px;
    margin: 0 auto;
}

#modalLogin .image_container img{
    width: 100%;
    object-fit: cover;
}

#modalLogin .section_form_login h2{
    font-size: 3rem;
    color: white;
    font-weight: bold;
    margin-bottom: 20px;
}

#modalLogin .section_form_login .form_item{
    width: 100%;
    background-color: transparent;
    border: 1px solid white;
    border-radius: 12px;
    margin-bottom: 12px;
    
    display: grid;
    grid-template-columns: auto 30px;
}

#modalLogin .section_form_login .form_item input{
    width: 100%;
    font-size: 1.8rem;
    padding: 10px;
    border: none;
    outline: none;
    background: none;
    color: white;
    font-weight: 600;
}
#modalLogin .section_form_login .form_item .form_icon{
    width: 100%;
    height: 100%;
    display: grid;
    place-content: center;
}

#modalLogin .section_form_login .form_item .form_icon i{
    color: white;
    font-size: 2.2rem;
}

#modalLogin .section_form_login button{
    width: 100%;
    font-size: 2rem;
    font-weight: bold;
    background-color: white;
    color: #0d0067;
    border-radius: 12px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

#modalLogin #credict_login{
    width: 100%;
    text-align: center;
}

#modalLogin #credict_login span{
    font-size: 1.2rem;
    color: white;
    font-weight: bold;
    font-style: italic;
}

.section_job{
    margin-top: 20px;
}

.job_container{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.job_container .card_job{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 280px;
}

.job_container .card_job img{
    width: 250px;
    height: 250px;
    object-fit: cover;
}

.job_container .card_job p{
    text-align: center;
    font-size: 1.6rem;
}

.job_container .card_job p:nth-child(2){
    font-weight: 600;
}

.job_container .card_job p:nth-child(3){
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-weight: 300;
    overflow: hidden;
    line-clamp: 3;
    text-overflow: ellipsis;
}

@media (max-width:700px) {
    #main .section_principal .principal_content {
        backdrop-filter: blur(0px);
    }

    #main .section_principal .principal_content img{
        width: 500px;
        margin-bottom: 20px;
        position: relative;
        top: -50px;
    }

    #main .section_principal .principal_content h1 {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    #main .section_principal .principal_content p {
        font-size: 2rem;
    }
    
}

@media (max-width:500px) {
    #main .section_principal .principal_content {
        backdrop-filter: blur(0px);
    }

    #main .section_principal .principal_content img{
        width: 320px;
        margin-bottom: 20px;
        position: relative;
        top: -30px;
    }
    #main .section_principal .principal_content h1 {
        font-size: 3rem;
        margin-bottom: 12px;
    }

    #main .section_principal .principal_content p {
        font-size: 2rem;
    }
    
}

#videoBG {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -1;
}
