@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;1,100;1,200&display=swap');

*,* ::after, *::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
}
body{
    font-family: 'Poppins', sans-serif;
    
}

.modal {
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    z-index: 50;
    animation: modal 2s 3s forwards;
    position: fixed;
    visibility: hidden;
    opacity: 0;

}

.contenido {
    margin: auto;
    width: 40%;
    height: 30%;
    background: white;
    border-radius: 10px;
    border: 2px solid rgb(36, 36, 36);
}

.contenido img {
    height: 80px;
    width: 100px;
    margin: 10px auto;
    display: flex;
}

.contenido h2 {
    text-align: center;
    padding-top: 30px;
    color: #ec8805;
}

.contenido p {
    padding: 5px 20px;
    font-size: 14px;
    text-align: center;
    color: #ffffff;
}

.contenido span {
    font-weight: 600;
}

#cerrar {
    display: none;
}

#btn-cerrar i {
    font-size: 25px;
    
    font-weight: bold;
    padding: 8px 10px;
}

#cerrar + label {
    position: fixed;
    color: #ffff;
    z-index: 51;
    background: rgba(199, 84, 84, 0.479);
    height: 40px;
    width: 40px;
    line-height: 40px;
    border-radius: 50%;
    right: 10px;
    top: 10px;
    cursor: pointer;
    animation: modal 2s 3s forwards;
    visibility: hidden;
    opacity: 0;
}

#cerrar:checked + label, #cerrar:checked ~ .modal {
    display: none;
}

@keyframes modal {
    100% {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .contenido {
    width: 80%;
    height: auto;
    background: rgb(1, 3, 39);
    border: 5px solid rgb(36, 36, 36);
    }

    #cerrar + label {
        top: 20px;
        right: 20px;
    }
    
}

@media (min-width: 769px) {

    .modal {
        display: none;
    }
    .contenido, #cerrar + label {
        display: none;
    }
}

/*BARRA DE NAVEGACION  */
.menu {
    background-color: rgba(17, 17, 17, 0.945);
    height: 75px;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    z-index: 2;
}

.menu .logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    
}
.logo {
    color: #fff;
    font-size: 25px;
    padding: 0 60px;

    
}

.logo img {
    height: 40px;
    width: 45px;
    margin: 0 8px;
    padding-bottom: 2px;

}
.menu_items {
    display: flex;
    list-style: none;
    margin-right: 30px;
}

.menu_items li {
    margin: 0 5px;
}

.menu_items li a {
    padding: 7px 13px;
    text-decoration: none;
    font-size: 14px;
    display: block;
    color: #fff;
}

.menu_items .act {
    color: orangered;
}
 
.menu_items li a:hover {
    color: orangered;
}

.menu_items li:hover, li.active {
    border-bottom: 2px solid orangered;
    transition: .6s ;
}

.btn_menu {
    margin-right: 30px;
    font-size: 25px;
    color: #fff;
    cursor: pointer;
    display: none;
}

ul.show {
    top: 65px;
}

@media screen and (max-width:952px) {
    .logo {
        font-size: 15px;
        padding-left: 25px;
    }
    .menu_items li a {
        font-size: 16px;
    }
}

@media screen and (max-width:858px) {
    .menu {
        height: 65px;
    }
    .btn_menu {
        display: inline-flex;
    
    }
    .menu_items {
        position: fixed;
        width: 100vw;
        height: calc(40% - 65px);
        background: #414141;
        top: -100vh;
        text-align: center;
        transition: all .4s;
        flex-direction: column;
        box-shadow: 0px 10px 10px rgba(0, 0, 0, 0.9);

    }

    .menu_items li {
        margin: 30px 0 0 0;
        line-height: 30px;
    }
    .menu_items li:hover {
        background: rgb(252, 122, 0);
        border-radius: 1px;
    }

    .menu_items li a {
        font-size: 14px;
        color: #fff;

    }

    .menu_items li a:hover {
        color: #fcfcfc;
    }
    .logo {
        font-size: 15px;
        padding-left: 35px;
       
    }
}

@media screen and (max-width:858px) and (orientation: landscape) {
    .menu_items li {
        margin: 5px 0 0 0;
    }
    .menu_items {
        overflow: scroll;
        height: calc(60% - 65px);
    }
}
/* header  */
header {
    width: 100%;
    height: 250px;
    background: linear-gradient(90deg, rgba(12, 12, 12, 0.674), rgba(252, 185, 40, 0.574)), url(/geo-crist/bg_head.PNG);
    background-repeat: no-repeat;
    background-size: cover;
    
}

header h1 {
    color: white;
    padding-top: 100px;
    font-size: 30px;
    text-align: center;
}

/* SOCIAL ASIDE */

.social-aside {
    height: 300px;
    width: 300px;
    margin: 840px 0;
    z-index: 1;
    position: absolute;
    
}

.ul {
    margin-left: 0;
    width: 53%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    cursor: pointer;
    /* position: fixed; */
    
    
}

.li {
    position: relative;
    transform: translateX(-90px);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    list-style: none;
    padding: 12px;
    margin: 10px 0;
    transition: .5s;
    width: 150px;
    border-radius: 0 200px 200px 0;
    font-size: 12px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.9);
}

.li:hover:nth-child(1) {
    background: #05beec;
}
.li:hover:nth-child(2) {
    background: #050505;
}
.li:hover:nth-child(3) {
    background: linear-gradient(90deg, rgba(170, 9, 157, 0.674), rgba(245, 133, 4, 0.574));
}
.li:hover:nth-child(4) {
    background: #1348f5;
}
.li:hover:nth-child(5) {
    background: #ec0505;
}

.li:hover {
    transform: translateX(0);
}

.a {
    font-weight: bold;
    color: #d3d3d2;
    text-decoration: none;
    /* padding-left: 10px; */
    
}

.ul i {
    margin-left: 15px;
    padding: 10px 10px;
    border-radius: 50%;
    color: #000000;
    background: #fd9f11;
}

.ul i:hover {
    background: #ffffff;
}

.icon {
    font-size: 20px;
}

#lin {
    position: relative;
    left: 25px;
}

#twi {
    position: relative;
    left: 31px;
}

#ins{
    position: relative;
    left: 12px;
}

#fac {
    position: relative;
    left: 13px;
}

#you {
    position: relative;
    left: 18px;
}

/* SOCIAL ASIDE */



.concepto {
    display: flex;
    flex-direction: column;
    
}

.concepto h2 {
    font-size: 20px;
    padding: 10px;

}

.concepto p {
    text-align: justify;
    font-size: 15px;
}

.concep {
    background: #ffffff;
    margin: 0 30rem;
    padding: 0 30px;
}

.concep .ruta {
    background: #434444;
    height: 50px;
    padding-top: 15px;
    color: #d2d3d3;
}

.concep .ruta .rut {
    padding-left: 20px ;
    
}

.concep .ruta a {
    text-decoration: none;
    color: #b5db0a;
}

.concep span {
    font-weight: 800;
}

.concep .nam {
    font-size: 12px;
    text-align: center;
    font-style: italic;
    font-weight: bold;
}

.concep .visor {
    padding: 10px;
    background: #e6be0e;
    border-radius: 10px;
    margin: 10px 550px;
    border: none;
}

.concep .visorx {
    padding: 10px;
    background: #3a3a3a;
    border-radius: 10px;
    margin: 10px 120px;
}

.concep .visorx a {
    text-decoration: none;
    font-weight: bold;
    color: #fd9904;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}

.concep .visorx:hover {
    background: #ecf006;
}
.concep .visor:hover {
    background: #b5db0a;
}

.concep .visor a {
    text-decoration: none;
    font-weight: bold;
    color: #000000;
}


.mod-gen {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 30vh;
    background: #ffffff;
}


.mod-img img {
    margin: 10px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    height: 300px;
    width: 350px;  
}

.mod-img .im01 {
    margin-left: 250px;
}
/* .mod-gen .mod-3d {
    width: 320px;
    margin: 20px;
    padding: 10px 10px;
    background: #ffffff;
    border-radius: 5px;
    box-shadow: -3px -3px 10px rgb(128, 128, 128),
                3px 3px 2px rgba(223, 223, 223, 0.1);
} */

@media (max-width: 767px) {
    .concepto {
        margin: 2px 20px;
    }

    .concepto model-viewer {
        width: 330px;
        height: 400px;
        
    }

    .mod-3ds {
        margin:20px;
        height: 400px;
    }

    .mod-3d {
        width: 220px;
        
    }
    .concep .visor {
        margin: 10px auto;
    }
    .visorx {
        display: none;
    }
    .concep {
        margin: 0 10px;
        padding: 0 10px;
    }

    .mod-img .im01 {
        margin-left: 10px;
        width: 290px;
    }

    .mod-img .im02 {
        margin-left: 10px;
        width: 290px;
    }

    .social-aside {
        display: none;
    }

}

@media (min-width: 768px) and (max-width: 1023px) {
   
    .concepto model-viewer {
        width: 365px;
        height: 300px;
    }

    .concep {
        margin: 0 10rem;
    }

    .concep .visor {
        margin: 10px auto;
    }

    .mod-img .im01 {
        margin-left: 80px;
    }
    
    .mod-img .im02 {
        margin-left: 80px;
    }
}

@media (min-width: 1024px) and (max-width: 1440px) {
    .concepto model-viewer {
        width: 361px;
        height: 300px;
    }

    .concep {
        margin: 0 8rem;
    }

    .concep .visor {
        margin: 10px auto;
    }
    .mod-img .im01 {
        margin-left: 80px;
        width: 270px;
    }
    .mod-img .im02 {
        width: 270px;

    }
}

@media (min-width: 1041px) {
    .concepto model-viewer {
        width: 361px;
        height: 300px;
    }
}





.mod-3d {

    position: relative;
    width: 365px;
    /* min-width: 420px; */
    height: auto;
    box-shadow: inset 5px 5px 5px rgba(0, 0, 0, 0.2),
                             inset -5px -5px 15px rgba(255, 255, 255, 0.1),
                             5px 5px 15px rgba(0, 0, 0, 0.3),
                             -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 3px solid rgb(236, 236, 236);
    margin: 30px;
}

.mod-3ds {
    position: relative;
    /* min-width: 420px; */
    width: 365px;
    height: auto;

    background: #f1f3f5;
    margin: 30px;
    
}
.mod-3d .unit {
    width: 100%;
    height: 380px;
    background: #000000;
}


.mod-3d p {
    font-size: 10px;
    text-align: center;
    
}

.mod-3d p span {
    font-weight: bold;
    font-size: 15px;
}
.mod-3d .tit {
    justify-content: center;
    text-align: center;
    background: #303030ea;
    border-radius: 10px;
    font-size: 12px;
    padding: 5px;
    color: #fcae06;
}

.mod-3ds .tit {
    justify-content: center;
    text-align: center;
    background: #303030ea;
    border-radius: 10px;
    font-size: 12px;
    padding: 5px;
    color: #fcae06;
    font-weight: normal;
}
.pre-f {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    /*width: 1100px; original*/
    justify-content: center;
    align-items: center;
    /*min-height: 100vh;original*/
    min-height: 20vh;
    /* background: #ebf5fc; original*/
    background: #cecdcd;
}




.pre-f .it {
    width: auto;
    margin: 20px;
    padding: 10px 10px;
    text-align: center;
    background: #707070;
    border-radius: 5px;
    /* box-shadow: -6px -6px 20px rgb(7, 7, 7),
                6px 6px 20px rgba(0, 0, 0, 0.1); */
    
    box-shadow: -3px -3px 10px rgb(128, 128, 128),
                3px 3px 2px rgba(223, 223, 223, 0.1);
}

.pre-f .it:hover {
    background: #f0bb0d;
}

.pre-f .it a {
    text-decoration: none;
    font-size: 12px;
    color: #000000;
    font-weight: 800;
}

/* inicio de tags */
.pre-f {
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 10vh;
    background: #cecdcd;
}

.pre-f .it {
    width: auto;
    margin: 20px;
    padding: 10px 10px;
    text-align: center;
    background: #001842;
    border-radius: 5px;
    box-shadow: -3px -3px 10px rgb(128, 128, 128),
                3px 3px 2px rgba(223, 223, 223, 0.1);
}

.pre-f .it:hover {
    background: #8a8a8a;
}

.pre-f .it a {
    text-decoration: none;
    font-size: 12px;
    color: #ffffff;
    font-weight: 500;
}

.pre-f .it .active {
    color: #ff7300;
}
/* final de tags */


/* PIE DE PAGINA */


.pie-pagina {
    width: 100%;
    background-color: #001842;
    
}

.pie-pagina .gr-1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 50px;
    padding: 45px 0px;
}

.pie-pagina .gr-1 .box figure {
    width: 70%;
    height: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.pie-pagina .gr-1 .box figure img {
    width: 180px;
}

.pie-pagina .gr-1 .box h2 {
    color: white;
    margin-bottom: 25px;
    font-size: 20px;
    text-align: center;
}

.pie-pagina .gr-1 .box p {
    color: #efefef;
    margin-bottom: 10px;
}

.pie-pagina .gr-1 .red-social a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 45px;
    color: #fff;
    margin-right: 10px;
    background-color: #1f2349;
    text-align: center;
    transition: all 300ms ease;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    box-shadow: 6px 6px 15px -2px rgba(0, 0, 0, 0.2), 
               -6px -6px 15px -2px rgba(4, 3, 32, 0.959),
               -6px -6px 15px -2px rgba(20, 2, 2, 0.7);
    
}

.pie-pagina .gr-1 .red-social a:hover {
    box-shadow: inset 3px 3px 6px -1px rgba(0, 0, 0, 0.5), 
                inset -4px -4px 6px -1px rgba(112, 147, 243, 0.884),
                -0.5px -0.5px 0px rgba(255, 255, 255, 0.7),
                0.5px 0.5px 0px rgba(0, 0, 0, 0.15),
                 0px 12px 10px -10px rgba(0, 0, 0, 0.15); 
    background: #72cdf13b;
}
.pie-pagina .gr-1 .red-social i {
    font-size: 20px;
    color: #fafafa;
    transition: transform 0.5s;
    padding-top: 17px;
} 

.pie-pagina .gr-1 .red-social a:hover i {
    transform: scale(0.90)
    
}

.pie-pagina a:hover .fa-linkedin {
    color: rgb(4, 121, 167);
}

.pie-pagina a:hover .fa-x-twitter {
    color: black;
}

.pie-pagina a:hover .fa-instagram {
    color: mediumvioletred;
}

.pie-pagina a:hover .fa-facebook {
    color: rgb(26, 11, 240);
}

.pie-pagina a:hover .fa-youtube {
    color: red;
}


.pie-pagina .gr-2 {
    background-color: #001842;
    padding: 15px 10px;
    text-align: center;
    color: #c57a0a;
} 

.pie-pagina .gr-2 a {
    text-decoration: none;
    padding: 0 20px;
    color: #32a3b1;
    font-size: 12px;
}

.pie-pagina .gr-3 {
    background-color: #010b1b;
    padding: 15px 10px;
    text-align: center;
    color: #c57a0a;
}

.pie-pagina .gr-3 small {
    font-size: 11px;
}

@media screen and (max-width:800px) {
   
    .pie-pagina .gr-1 {
        width: 90%;
        grid-template-columns: repeat(1, 1fr);
        grid-gap: 30px;
        padding: 35px 0px;  
    }
    .pie-pagina figure {
        padding-left: 12rem;
        justify-content: center;
        align-items: center;

    }
    .pie-pagina .gr-1 p {
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .pie-pagina .gr-1 .red-social {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

.btn-wsp {
    position: fixed;
    width: 50px;
    height: 50px;
    line-height: 55px;
    bottom: 30px;
    right: 30px;
    background: #0df053;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.8);
    z-index: 48;
}

.btn-wsp:hover {
    text-decoration: none;
    color: #0df053;
    background: #fff;
    width: 55px;
    height: 55px;
    transition: .5s ease-out;
    box-shadow: 2px 5px 8px rgba(228, 228, 228, 0.8);

}

/*FOOTER END*/