@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;
    background: #ffffffee;
    
}

.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: 50px 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: orange;
}

.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 11px;
}

#cerrar + label {
    position: fixed;
    color: #ffff;
    z-index: 51;
    background: rgba(247, 147, 147, 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: 4;
}

.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 {
    /* border-radius: 50px; */
    margin: 0 5px;
}

.menu_items li a {
    padding: 7px 13px;
    text-decoration: none;
    font-size: 14px;
    display: block;
    color: #fff;
}

.menu_items li:hover, li.active {
    border-bottom: 2px solid #e94c0e ;
    /* background-color: rgb(252, 122, 0); */
    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);
    }
}



.wrapper {
    /* margin: 0 25rem; */
    padding:10px 30px;
    background: url(/geo-log/log-box01.jpg);
    min-height: 30vh;
    background-blend-mode: darken;
    background-color: rgba(105, 68, 0, 0.849);
    background-size: cover;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    
}

.text-box {
    color: white;
    padding-bottom: 30px;
}

.text-box h2 {
    font-size: 25px;
    margin-left: 80px;
    padding-top: 150px;
    color: rgb(255, 187, 0);
}

.text-box p {
    font-size: 16px;
    margin: 0px 60px;
    padding-left: 40px;
}




.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 */
.grup-geo {
    display: flex;
    flex-direction: column; 
    
}

.grup-geo h2 {
   color: #ff9100;
   font-size: 20px;
   
}

 .grup-geo p {
    color: #000000;
    font-size: 15px;
    text-align: justify;
 }

 .grup-geo .rqd-an {
    font-size: 12px;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
 }

.grup-geo model-viewer {
    width: 98%;
    height: 500px;
    
}

.grup-bag {
    background: #ffffff;
    /* background: #0dcef03d; */
    margin: 0 30rem;
    padding: 0 10px;
    
}

.grup-bag span {
    font-weight: bold;
}

.grup-geo .ruta {
    background: #434444;
    height: 50px;
    padding-top: 15px;
    margin-bottom: 20px;
    color: #d2d3d3;
}

.grup-geo .ruta .rut {
    padding-left: 20px ;
    
}

.grup-geo .ruta a {
    text-decoration: none;
    color: #b5db0a;
}

.grup-bag .visorz {
    padding: 10px;
    background: #3a3a3a;
    border-radius: 10px;
    
}

.grup-bag .visorz a {
    text-decoration: none;
    font-weight: bold;
    color: #fd9904;
    font-family: 'Poppins', sans-serif;
    font-size: 10px;
}

.grup-bag .visorz:hover {
    background: #7e5f03;
}
@media (max-width: 500px) {

    .wrapper {
        min-height: 50px;
    }
    
    .grup-bag {
        margin: 0 20px;
    }

    .grup-bag model-viewer {
        width: 100%;
        height: 300px;
    }

    .grup-bag .rqd {
        width: 100%;
        height: 500px;
    }
    .grup-bag .rqd img {
        margin: 10px 0;
        width: 100%;
        height: 400px;
    }
    .grup-bag .clas {
        width: 100%;
        height: 120px;
    }
    .grup-bag .clas img {
        
        width: 60%;
        height: 120px;
    }
    .grup-bag .visorz {
        margin: 0 70px;
    }

    .text-box {
        padding: 10px 40px;
    }
    .text-box h2 {
        text-align: center;
        align-items: center;
        display: flex;
        padding-top: 30px;
        margin-top: 20px;
        margin: 30px 20px;
    }
    .social-aside {
        display: none;
    }
}

@media (min-width: 501px) and (max-width:1024px) {
    .grup-bag {
        margin: 0px 100px;

    }
    .grup-bag model-viewer {
        width: 100%;
        height: 400px;
    }

    .grup-bag .rqd img {
        margin: 2px 50px;
    }
    .grup-bag .clas {
        width: 100%;
        height: 120px;
    }
    .grup-bag .clas img {
        
        width: 230px;
        height: 120px;
        margin: 0px 300px;
    }
    .grup-bag .visorz {
        margin: 0 310px;
    }
}

@media (min-width: 1025px) and (max-width:1440px) {
    .grup-bag .rqd img {
        margin: 2px 150px;
    }

    .grup-bag .clas {
        width: 100%;
        height: 120px;
    }
    .grup-bag .clas img {
        
        width: 220px;
        height: 120px;
        margin: 0px 300px;
    }

    .grup-bag .visorz {
        margin: 0 250px;
    }
}

@media (min-width: 1441px) {
    .grup-bag {
        margin: 0px 350px;

    }
    .grup-bag model-viewer {
        width: 100%;
        height: 400px;   
    }
    .grup-bag .visorz {
        margin: 0 500px;
    }
    .grup-bag .nam {
        text-align: center;
    }
    .grup-bag .clas {
        width: 100%;
        height: 120px;
    }
    .grup-bag .clas img {
        
        width: 220px;
        height: 120px;
        margin: 0px 480px;
    }
    .text-box h2 {
        text-align: center;
        align-items: center;
        display: flex;
        margin-left: 330px;
    }
}

.tg {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 0px;
    width: 100%;
    /* background: #2b2a2aee; */
}

.tg .mtg {
    position: relative;
    min-width: 320px;
    height: 440px;
    box-shadow: inset 7px 7px 7px rgba(0, 0, 0, 0.5),
                 inset -5px -5px 15px rgba(15, 15, 15, 0.1),
                 5px 5px 15px rgba(0, 0, 0, 0.3),
                 -5px -5px 15px rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin: 30px;
    
}

.mtg p {
    text-align: center;
    font-size: 20px;
    color: #001842;
}

.mtg model-viewer {
    width: 100%;
    height: 380px;
}

.rqd img {
    width: 520px;
    height: 605px;
    margin: 5px 40rem;
}

.rqd p {
    color: #000000;
    padding-top: 2px;
    padding-bottom: 30px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
}

.clas {
    width: 280px;
    height: 190px;
    margin-bottom: 30px;
}

.clas img {
    margin: 0 65px;
    width: 100px;
}

.clas p {
    color: #000000;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding-bottom: 30px;
}
.core-beta {
    
    border-radius: 20px;
    
}

.grup-bag .nam{
    color: #000000;
    font-weight: bold;
    font-size: 12px;
}

.grup-bag .alpha {
    font-size: 25px;
}

/* 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 */


/*FOOTER START*/
.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;
    }
}

/*FOOTER END*/

.btn-wsp {
    position: fixed;
    width: 55px;
    height: 55px;
    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.3);
    z-index: 4;
}

.btn-wsp:hover {
    text-decoration: none;
    color: #0df053;
    background: #fff;
}

/*FOOTER END*/