* {
    box-sizing: border-box;
}
body {
    font-family: sans-serif, CENTURY;
    display: flex;
    flex-direction: column;
    background: linear-gradient(to left top ,rgba(4, 141, 252, 0.6),rgba(0, 45, 81, 0.87));
    color: rgb(2, 106, 140);
}

div, ul, nav, header, footer, a, li, label,body {
    margin: 0;
    padding: 0;
}
/*HEADER SECTION*/
.header{
    background-color: rgb(194, 194, 194);
    display: flex;
    align-items: center;
    container-type: inline-size;
    container-name: header;
    justify-items: center;
}
.mobile-menu-container{
    margin-left: 20px;
    display: block;
    font-variation-settings:
    'Fill' 0,
    'wght' 700,
    'grad' 0,
    'opsz' 48
    ;
}
.header__nav-list{
    list-style: none;
}
.header__nav{
    display: flex;
    justify-content: center;
    background-color: rgb(7, 68, 88);
    position: fixed;
    top: 80px;
    left: 0;
    transition: .2s;
    width: 100%;
}
.header__nav-item a{
    text-decoration: none;
    font-weight: 600;
    color: rgb(255, 255, 255);
    line-height: 80px;
    text-transform: uppercase;
}
.header__nav-item:hover{
    background-color: none;
    color: rgb(41, 102, 122);
    border-radius: 10px;
}
.logo{
    right: 40px;
    width: 70px;
    margin: 10px 20px 0 35vw;
    border-radius: 50px;
}
.header__nav_visible{
    left: 100%;
}

/*HEADER QUERIES*/
@container header (min-width:900px){
    .mobile-menu-container{
        display: none;
    }
    .header{
        background-color: rgb(241, 241, 241);
        display: flex;
        align-items: start;
        justify-items: normal;
    }
    .header__nav{
        background-color: inherit;
        position: relative;
        top: 0;
        left: 0;
        transition: .2s;
    }
    .header__nav-list{
        color: rgb(2, 106, 140);
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        }
    .header__nav-item a{
        color: rgb(2, 106, 140);
        text-decoration: none;
        font-weight: 600;
        line-height: 80px;
        text-transform: uppercase;
        padding: 10px;
        width: max-content;
    }
    .logo{
        width: 100px;
        margin: 10px 20px;
        border-radius: 50px;
    }
}
/*HEADER END*/
/*MAIN*/

.info-container{
    background-image: linear-gradient(#0009,#0009);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.title1{
    font-size: 4em;
    font-weight: 600;
    text-align: center;
    color: rgb(255, 255, 255);
}
.title2{
    width: 100%;
    font-size: 3em;
    font-weight: 500;
    text-align: center;
    align-content: center;
    color: rgb(251, 251, 251);
    background-color: rgb(41, 102, 122)
}
.info-container__item{
    color: rgb(255, 255, 255);
    text-align: center;
    margin: auto;
    padding: 5px;;
    font-size: 20px;
}
.card_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 50vh;
    background: rgba(229, 229, 229, 0.895);
    color: rgb(7, 68, 88);
    border-radius: 8px;
    padding: 20px;
    margin: 10px 60px 60px 60px;
}
.text_cardinfo{
    size: 7.5rem;
    text-align: center;
    margin: auto;
    border-left: 10px;
    border-right: 10px;
    font-size: 2em;
    text-decoration: none;
}
.text_cardinfolink{
    text-decoration: none;
    color: rgb(2, 106, 140);
}
.img_cardinfo{
    width: auto;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border-color: rgb(251, 251, 251);
}
/*Main carousel*/
.galeria .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100%/3)-9px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar{
    display: none;
}
.carousel :where(.card, .img){
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel .no-transition{
    scroll-behavior: auto;
}
.carousel .dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}
.carousel .dragging .card{
    cursor: grab;
    user-select: none;
}
.galeria{
    width: 100%;
    position: relative;
    container-type: inline-size;
    container-name: carousel;
    }
.galeria i{
    height: 50px;
    width: 50px;
    background-color: rgb(255, 255, 255);
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}
.galeria i:first-child{
    left: 5px
}
.galeria i:last-child{
    right: 5px;
}
.carousel .card{
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    background-color: transparent;
    border-radius: 8px;
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    cursor: pointer;
}
.card .img_galeria  img{
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgb(255, 255, 255);
}
/*MAIN QUERIES*/
@container carousel (max-width:900px){
    .galeria .carousel{
        grid-auto-columns: calc((100%/2)-9px);
    }
}
@container carousel (max-width:600px){
    .galeria .carousel{
        grid-auto-columns: 100%;
    }
}
/*END MAIN*/

/*FORMS*/
/*form contactanos*/
.form{
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    background: rgba(229, 229, 229, 0.895);
    color: rgb(2, 106, 140);
    border-radius: 10px;
    margin: 10px 60px 60px 60px;
    min-height: 50vh;
    container-name: form;
    container-type: inline-size;
}
.form__form{
    padding: 12px;
    max-width: 500px;
    width: 100%;
}
.form_title{
    text-align: center;
}
.form__input-container :is(input,textarea){
    width: 100%;
    padding: 9px 6px;
    font-size: 16px;
    margin: 4px;
    border: none;
    box-shadow: 2px 3px 9px rgb(2, 106, 140);
}
.form__input-container textarea{
    resize: none;
    min-height: 120px;
    font-family: inherit;
}
.form__input-container input[type="submit"]{
    padding: 12PX;
    background-color: rgb(2, 106, 140);
    color: rgb(255, 255, 255);
}
.form__input-container input[type="file"]{
    padding: 12PX;
    background-color: rgb(2, 106, 140);
    color: rgb(255, 255, 255);
    font-family: inherit;
}
/*end form contactanos*/
/*form bolsa de trabajo*/
.form2{
    background-image:linear-gradient(#0009,#0009), url(../imagenes/FONDO.jpg);
    background-position: center;
    color: rgb(255, 255, 255);
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    container-name: form2;
    container-type: inline-size;
    display: grid;
}
.form_title{
    font-size: 3em;
}
.form_p{
    font-size: 20rem;
    font-weight: 400;
}
/*end form bolsa de trabajo*/
/*Menu contacto*/
.menu_contacto{
    width: 70px;
    height: 130px;
    position: fixed;
    bottom: 20px;
    left: 10px;
    z-index: 5;
    container-name: contactomenu;
    container-type: inline-size;
}
#menu-contacto{
    z-index: 10;
}
.menu_contacto-item{
    width: 60px;
    height: 60px;
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    position: absolute;
    border-radius: 50%;
    bottom: 0;
    border-color: rgba(0, 45, 81, 0.87);
    border: 8px;
    transition: transform 300ms;
}
.menu_contacto-item img{
    width: 40px;
    height: 40px;
}
.menu_contacto-item:hover{
    background-color: rgb(194, 194, 194);
    color: rgb(255, 255, 255);
}
.menu-active .menu_contacto-item:nth-child(2){
    transform: translateY(-70px);
}
.menu-active .menu_contacto-item:nth-child(3){
    transform: translateY(-140px);
}
.menu-active .menu_contacto-item:nth-child(4){
    transform: translateY(-210px);
}
/*media queries contacto menu*/

/*end forms*/
/*footer*/
.footer{
    height:50px;
    background-color: rgba(0, 0, 0, 0.895);
    color: rgb(41, 102, 122);
    text-align: center;
    align-content: center;
}