@charset "utf-8";

::-webkit-scrollbar {
    display: none;
}


*{
    padding: 0;
    margin: 0px;
    font-family: 'Times New Roman', Times, serif; 
    box-sizing: border-box;
}

@font-face{
    font-family: 'diogenes';
    src: url(TIPOGRAFIAS/DIOGENES.ttf);
    font-weight: normal;
    font-style: normal;
}


body {
    box-sizing: border-box;
    max-height: 100vh;
    max-width: 100vw;
    overflow-x: hidden;
    
}

.fondo {
    background-color: black;
    color: #FFF;
    max-width: 1440px;
    min-width: 100%;
}

@media screen and (max-width: 1440px) {
    /* Barra de redes sociales */

    .redesSociales {
        box-sizing: border-box;
        display: flex;
        justify-content: end;
        margin: auto;
        max-height: 100%;
        padding-top: 5px;    
        padding-bottom: 7px;
    }

    .redesSociales .logos{
       margin-right: 1vw;
        gap: 15px;
        display: flex;
        justify-content: space-between;
    }

    .logos a img {
        width: 20px;
    }

    .logos a:hover {
        opacity: 0.7;
        transition: 1s;
    }


    

    /* Barra de navegacion con logo en el centro */
    nav {
        box-sizing: border-box;
        height: 100px;
        min-width: 100%;
        max-width: 100%;
        display: flex;
        background-color: #FFF;
        box-shadow: 0px 3px 10px rgba(245, 245, 245, 1);
    }

    .menu {
        box-sizing: border-box;
        list-style: none; 
        margin: 0; 
        padding: 0;
        display: flex;
        width: 100%;
        justify-content: space-around;   
    }
    
    .menu li {
        display: inline-flex;
        align-items: center;
        
    }

    .menu .li {
        box-sizing: border-box;
        width: 141px;
        justify-content: center;
    }
    
    .menu li a {
        text-decoration: none;
        color: black;
        font-size: 18px; 
        font-weight: bold;
        text-shadow: 5px 5px 5px rgb(148, 148, 148);
        display: block;
        text-align: center;
    }

    @media screen and (max-width: 992px){
        .menu li a {
            font-size: 16px;
            transition: 2s;
        }
        
    }

    @media screen and (max-width: 830px){
        .menu li a {
            font-size: 14px;
            transition: 2s;
        }
        
    }


    .circuloblanco {
        background-color: #FFF;
        width: 200px;
        height: auto;
        position: relative;
        margin-top: -100px;
        z-index: 3;
    }

    .liLogo img{
        width: 100%;
        height: auto;
        margin-top: 0px;
        border-bottom-left-radius: 50%;
        border-bottom-right-radius: 50%;
        position: relative;
        filter: drop-shadow(5px 10px 20px rgba(255, 255, 255, 0.3));
        display: block;
        position: absolute;
        
    }

    #logo2{
        position: absolute;
        width: 100%;
        height: auto;
        filter: drop-shadow(5px 10px 20px rgba(57, 56, 56, 0.7));
        display: block;
    }
    
    .menu a:hover {
        color: rgba(230, 0, 0, 0.8);
        transition: 0.5s;
        font-size: 1.3rem;
    }

    .menu a::after {
        color: #111;
    }


     /* transicion1 */
     .trans1 {
        max-width: 100%;
        height: 700px;

     }
     .transicion1 {
        box-sizing: border-box;
        background-image: url(Imagenes_Index//transiciones/transicion2-modified.jpg);
        background-position: center;
        background-repeat: no-repeat;
        background-size: 100%;
        width: 100%;
        height:  100%;
        margin: 110px auto;
        mask-image: radial-gradient(black 70%, transparent);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .containerTrans1 {
        background-color: rgba(255, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 70px;
        box-shadow: 0px 20px 50px rgba(255, 0, 0, 0.8);     
    }

    .containerTrans1 a {
        text-decoration: none;
        color: #FFF; 
        margin: auto;
    }

    .containerTrans1 h3 {
        font-family: 'diogenes';
        margin: auto;
        font-weight: 700;
        font-size: 40px;
        text-shadow: 5px 3px 10px rgba(148, 148, 148, 0.7);
       
    }
   

    .containerTrans1 a h3:hover{
      font-size: 45px;
      transition: 0.5s ease-in-out;
      font-weight: 1500;
    }

    @media screen and (max-width: 1390px){
        .trans1 {
            height: 500px;
            transition: 3s;
         }
    }

    @media screen and (max-width: 1000px){
        .trans1 {
            height: 400px;
            transition: 3s;
         }

    }


    /* Cartas de servicios Kickboxing boxeo y k1 */
    .servicios {
        display: grid;
        margin: 110px auto;
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas:   
                                "kick boxeo k1"
                                "kick boxeo k1"
                                "kick boxeo k1";
        gap: 15px;
        max-width: 95vw;      
        max-height: auto;                  
    }
    
    .servicios article {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: black;
        color: white;
        border: solid #505050 2px;
        border-radius: 10px;
        box-shadow: 10px 5px 60px rgba(148, 148, 148, 0.5);
        padding: 10px;
        
    }
    
    .servicios article picture {
        width: 300px;
        height: auto;
    }
    
    .servicios article picture img{
        width: 100%;
        height: 100%;
        mask-image: linear-gradient(black 80%, transparent);
    }
    
    .servicios article p {
        width: 90%;
        text-align: justify;
        padding: 5px;
        align-self: center;
        font-size: 18px;
    }
    
    .servicios .kickboxing{
        grid-area: kick;
    }
    
    .servicios .boxeo{
        grid-area: boxeo;
    }
    
    .servicios .k1{
        grid-area: k1;
    }
    .servicios:hover>
        :not(:hover){
            filter: grayscale(100%);
            transition: 0.5s ease-in;
        }
        .servicios article:hover {
            transition: 0.5s;
            box-shadow: 10px 5px 30px rgba(148, 148, 148, 1);
            translate: 0% -0.5%;
        }
    
    @media  screen and (max-width: 1024px) {
        .servicios{
            grid-template-areas: 
                                "kick kick kick"
                                "boxeo boxeo boxeo"
                                "k1 k1 k1";
           
        }
    
        .servicios article {
            width: 50vw;
            margin-left: auto;
            margin-right: auto;
        }
        
    }
    
    @media  screen and (max-width: 500px) {
       
        .servicios article {
            width: 90vw;
            margin-left: auto;
            margin-right: auto;
        }
    
        
    }
    

   
    /* transicion2 */
    .trans2 {
        max-width: 100%;
        height: 700px;
        overflow-x: hidden;
     }

    .transicion2 {
        box-sizing: border-box;
        background-image: url(Imagenes_Index/transiciones/transicion3-modified.jpg);
        background-position: end;
        background-repeat: no-repeat;
        background-size: 100%;
        width: 100%;
        height: 100%;
        mask-image: radial-gradient(black 70%, transparent);
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .containerTrans2 {
        /* background-color: rgba(239, 184, 16, 0.8); */
        background-color: rgba(255, 0, 0, 0.7);
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        height: 70px;
        /* box-shadow: 0px 20px 50px rgba(239, 184, 16, 0.8); */
        box-shadow: 0px 20px 50px rgba(255, 0, 0, 0.8);  
    }


    .containerTrans2 h3 {
        font-family: 'diogenes';
        margin: auto;
        font-weight: 700;
        font-size: 30px;
        text-shadow: 5px 3px 10px rgba(148, 148, 148, 0.7);
        animation: scrolling 15s linear infinite;
    }
    @keyframes scrolling {
        0% { transform: translateX(1440px);
                 }
     
        100% { transform: translateX(-130%) }
        }
      

    @media screen and (max-width: 1390px){
        .trans2 {
            height: 500px;
            transition: 3s;
         }
    }

    @media screen and (max-width: 1000px){
        .trans2 {
            height: 400px;
            transition: 3s;
         }

    }

  

    /* Quines somos */
    .card {
        margin: 110px auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .card .card-body {
        background-color: #111;
        color: #FFF;
        text-align: justify;
    }

    .card .card-body p {
        font-size: 18px;
        text-align: center;
    }

    /* Instalaciones */
    .instalaciones {
        width: 100vw;
        margin-bottom: 110px;
    }

    .instalaciones .video {
        width: 100%;
        max-height: 800px;
        filter: opacity(70%);
    }



    @media screen and (max-width: 768px){
        .instalaciones {
            margin-bottom: 50px;
        }
    }

    .instalciones-container .inst img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 2px solid whitesmoke;
        border-radius: 20px;
        transition: all 0.5s ease;
        filter: grayscale(75%);
        object-position: center;
    }


    .inst img:hover{
        object-fit: cover;
        z-index: 2;
        width: 35vw;
        min-height: 100px;
        filter: grayscale(0%);
    }

    /* footer */
    footer {
        background-color: rgba(245, 245, 245, 1);;
     
    }

    footer iframe {
        width: 100%;
        height: 300px;
        z-index: 4;
       
    }

    .footer-1 {
        max-width: 100%;
        height: 150%;
        position: relative;
        color: #111;
    } 

    .footer-info {
        width: 100%;
        height: 60%;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 25px;
        
    }

    .info {
        width: fit-content;
        height: fit-content;
        display: flex;
        gap: 10px;
    }

    .info img {
        max-width: 4.5rem;
        height: auto;
    }

   
    .info p {
      margin: auto;
      font-weight: bold;
    }

    .RRSS {
        display: flex;
        gap: 20px;
       
    }

    .RRSS a img{
        width: 35px;
        height: auto;
        filter: grayscale(30%);
    }
    

    .RRSS a img:hover{
        opacity: 0.7;
        transition: 0.3s ease-in;
        
    }

    hr{
        width: 2px;
        height: 100px;
        border-radius: 50px;
        background-color: #111;
        display: inline-flex;
        flex-direction: column;
    }
    .legal {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        margin: 50px 3px;
          
    }

    .politica-Y-terminos {
        width: 100%;
        display: flex;
        justify-content: start;
        align-items: flex-end;
        gap: 10px;
    }

    .politica-Y-terminos a {
        text-decoration: none;
        color: black;
        font-size: 16px;
    }

    .politica-Y-terminos a:hover {
        opacity: 0.7;
        transition: 0.3s ease-in;
    }


    .legal .copyright{
        box-sizing: content-box;
        width: 99%;
        margin: 0;
        text-align: end;
        font-size: 16px;
        
    }


                                                                                                          /* TABLET */
    @media screen and (max-width: 960px) {

        .menu a:hover {
            color: rgba(230, 0, 0, 0.8);
            transition: 0.5s;
            font-size: 1rem;
        }

     

      .politica-Y-terminos a {
        font-size: 12px;
      }  

      .legal .copyright {
        font-size: 12px;
      }

      .containerTrans2 h3 {
        font-size: 24px;
    }

    @keyframes scrolling {
        0% { transform: translateX(768px);
                 }
      
        100% { transform: translateX(-130%) }
        }

      
    }

 @media  screen and (max-width: 768px) {

    .legal {
        margin: 30px 3px;
         
    }

    footer iframe {
        height: 180px;
    ;
    }

 }
    
    @media screen and (max-width: 743px){
        .menu a:hover {
            color: rgba(230, 0, 0, 0.8);
            transition: 0.5s;
            font-size: 0.95rem;
        }

        .politica-Y-terminos a {
            font-size: 12px;
          }  
    
          .legal .copyright {
            font-size: 12px;
          }
    
          .containerTrans2 h3 {
            font-size: 22px;
        }
    
        @keyframes scrolling {
            0% { transform: translateX(744px);
                     }
                     
            100% { transform: translateX(-110%) }
            }
            
          
    }


                                                                              /* MOVIL 480 */
            @media screen and (max-width: 630px){
                /* nav */
                nav {
                    height: 80px;
                }
             

                .circuloblanco {
                    width: 120px;
                    margin-top: -80px;
                    margin-left: -3.55px;
                }
                
                .menu li a {     
                    font-size: 11px; 
                }
            
                .menu li a:hover {
                    font-size: small;
                    transition: 0.3s;
                }
            

                /* trans1 */
                
                .trans1 {
                    max-height: 234px;
                }

                .transicion1 {
                   margin: 0px auto;
                }

                .containerTrans1 {
                    height: 45px;
                }


                .containerTrans1 a h3 {
                  font-size: 20px;
                  font-weight: 600;
                  
                }

                .containerTrans1 a h3:hover{
                    font-size: 30px;
                    transition: 0.5s ease-in-out;
                    font-weight: 700;
                  }

                   /* Cartas de servicios Kickboxing boxeo y k1 */
                .servicios article picture{
                    width: 260px;
                }

                .servicios {
                    margin-top: 50px;
                    margin-bottom: 50px;
                }

                .servicios article p {
                    font-size: 16px;
                }

                /* TRans2 */

                .trans2 {
                    height: 15em;
                    max-height: 234px;
                }

                .containerTrans2 {
                    height: 50px;
                }

                .containerTrans2 h3 {
                    font-size: 14px;
                    font-weight: 600;
                }
                @keyframes scrolling {
                    0% { transform: translateX(490px);
                            }
                            
                    100% { transform: translateX(-110%) }
                    }

                /* card */

                .card .card-img-top{
                    width: 200px;
                }

                .card .card-body p {
                    font-size: 16px;
                    text-align: justify;
                }

                /* footer */

                footer iframe {
                    max-height: 130px;
                }


                .footer-info {
                    height: 20%;
                    gap: 5px;
                    
                }

                .info {
                    width: fit-content;
                    height: fit-content;
                    display: flex;
                    gap: 7px;
                }

                .info img {
                    max-width: 4rem;
                    height: auto;
                    
                }
                .info p {
                font-size: small;
                }

                .RRSS {
                    gap: 10px;
                }

                .RRSS a img{
                    width: 25px;
                }
                
                .legal {
                    margin: 20px 3px;  
                    flex-wrap: wrap;  
                }

                .politica-Y-terminos {
                    width: 100%;
                    display: flex;
                    justify-content: center;
                    align-items: flex-end;
                    gap: 10px;
                }

                .politica-Y-terminos a {
                    font-size: 14px;
                    
                }

                .politica-Y-terminos a:hover {
                    opacity: 0.7;
                    transition: 0.3s ease-in;
                }

                .legal .copyright{
                    display: flex;
                    justify-content: center;
                    text-align: end;
                    font-size: 15px;
                    
                }


                }


                @media screen and (max-width: 480px){
                    nav {
                        height: 80px;
                    }

                    .menu {
                        flex-direction: column;
                        flex-wrap: wrap;
                        align-items: center;
                    }

                    .menu .li {
                        width: 90px;
                        height: 40px;
                        min-width: 20px;
                    
                    }

                

                    ul li:nth-child(3) {
                        /* order: -1; */
                        display: block;
                        margin-top: 80px;
                        margin-left: 0px;
                    
                      }

                      .containerTrans2 h3 {
                        font-size: 10px;
                        font-weight: 600;
                    }

                    .card {
                        margin: 50px auto;
                    }

                    
                    .info img {
                        width: 35px;
                        height: 35px;
                    }
                    .info p {
                        font-size: 10px;
                    }

                    .legal {
                       gap: 10px;
                    }

                    .legal .politica-Y-terminos a{
                        font-size: 11px;
                    }

                    .legal .copyright {
                        font-size: 11px;
                    }
                    
            
                    }

             
          
                

                /* One Plus 9 pro */
                @media screen and (max-width: 360px){

                    .trans1, .trans2 {
                        max-height: 180px;
                    }

                    .servicios {
                        margin: 50px auto;
                    }

                    .containerTrans2 h3 {
                        font-size: 10px;
                    }


                    @keyframes scrolling {
                        0% { transform: translateX(370px);
                                }
                                
                        100% { transform: translateX(-110%) }
                        }
                    

                    }

                    @media screen and (max-width: 349px){
                        
                        .footer-info .info p {
                            font-size: 8px;
                        }

                        .legal.copyright {
                            font-size: 9px;
                        }
                    }

                    @media screen and (max-width: 317px){
                        .menu .li a {
                            font-size: 9px;
                        }

                        .footer-info .info p {
                            font-size: 7px;
                        }

                        .legal .copyright {
                            font-size: 10px;
                        }
                    }

                    
                }