
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root{
    --padding-container: 100px 0;
    --color-title: #001A49;
}

html{
    scroll-behavior: smooth;
}

section[id]{
    scroll-margin-top: 70px;
}
body{    
    font-family: 'Poppins', sans-serif; 
}



.container{
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    overflow: hidden;
    padding: var(--padding-container);

}

.hero{
width: 100%;
height: 100vh;
min-height: 600px;
max-height: 800px;
position: relative;
display: grid;
grid-template-rows:100px 1fr ;
 color: #fff ;

}

.hero::before{
    content: "";
    position: absolute ;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(180deg, #0000008c 0%, #0000008c 100%), url('/images/minig.jpg') ;
    background-size: cover;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 95%, 0 80%);
    z-index: -1;
}

/* Nav */

.nav{
    --padding-container:20px;
    
    width: 100%;
    height: 200px;
    display: flex;    
    align-items: center;
    justify-content: space-between;
    transition: all 0.5 ease;  
    
}


.nav.logo{
    width: 500px;
}

.nav_title{
    margin-top: 20px;
    width: 300px;
    }

.nav_img {
        display: block;
        width: 60px;
        color: #fff;        
    }
img.nav_title{
        width: 250px;
        height: 250px;
        margin-left: -50px;
    }



.nav_link{
        margin-left: auto;  
        padding: 40px;
        display:grid ;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        gap: 2em;
    }    
 

.nav_items{
    list-style-type: none ;
    margin: 10px;
} 

.nav_links{
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.5s ease;
}

img.nav_links{
   width: 40px;
}
.nav_links:hover{
    padding: 5px 10px;
    background: #fff;
    color: #000;
    border-radius: 15px;
}
.nav_menu{
    margin-left: auto;
    cursor: pointer;
    display: none;
    color: #fff;
}
.nav_close{
    display: var(--show, none) ;
}

/*modifying hero container*/

.hero_container{
    max-width: 1000px;
    --padding-container:0;
    display: grid;
    grid-auto-rows: max-content;
    align-content: center;
    gap: 1em;
    padding-bottom: 100px;
    text-align: center;
    
}

.hero_title{
    font-size: 3em;
}

.hero_paragraph{
    margin-bottom: auto;
    margin-top: auto;
    
}

.cta {
    display: inline-block;
    background-color: #2091F9;
    justify-self: center;
    color: #fff;
    text-decoration: none;
    padding: 13px 30px;
    border-radius: 32px;
}

/*starting with section about suppliers */





.about{

display: grid;
text-align: center;

}
.subtitle{
    color: var(--color-title);
    font-size: 2rem;
    margin-bottom: 5px;
}

.about_paragraph{
    padding: 20px;
    text-align: center;
}

.about_main{    
    padding-top: 20px;
    display: grid;
    width: 100% ;
    margin: 0 auto;
    gap: 2em ;
    overflow: hidden;
    grid-template-columns: repeat(auto-fit, minmax(350px, auto));
}

.about_icons{
    display: grid;
    gap: 1em;
    justify-items: center;    
    overflow: hidden;
    margin: 20px;    
    border-radius: 10px;
    background-color: #FFF;
    box-shadow: 0px 1px 10px rgba(0,0,0, 0.4);
    cursor: default;
    transition: all 400ms ease;

}


.about_icons:hover{
    box-shadow: 5px 5px 20px rgba(255, 145, 0,4);    
    transform: translateY(-3%);
}

img.about_icon{
    margin-top: 10px;
    width: 200px;
    
}

button {
    margin: 20px;
    
    
  }
  .custom-btn {
    width: 100px;
    height: 40px;
    color: #000000;
    border-radius: 5px;   
    margin-bottom: 10px;
    font-family: 'Lato', sans-serif;
    font-weight: 500;    
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    box-shadow:inset 2px 2px 2px 0px rgba(255,255,255,.5),
     7px 7px 20px 0px rgba(0,0,0,.1),
     4px 4px 5px 0px rgba(0,0,0,.1);
    outline: none;
  }
  
/* 9 */
.btn-9 {
    border: none;
    transition: all 0.3s ease;
    overflow: hidden;
  }
  .btn-9:after {
    position: absolute;
    content: " ";
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
     background-color: #1fd1f9;
  background-image: linear-gradient(315deg, #f89500 0%, #ffffff 74%);
    transition: all 0.3s ease;
  }
  .btn-9:hover {
    background: transparent;
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
    color: #fff;
  }
  .btn-9:hover:after {
    -webkit-transform: scale(2) rotate(180deg);
    transform: scale(2) rotate(180deg);
    box-shadow:  4px 4px 6px 0 rgba(255,255,255,.5),
                -4px -4px 6px 0 rgba(116, 125, 136, .2), 
      inset -4px -4px 6px 0 rgba(255,255,255,.5),
      inset 4px 4px 6px 0 rgba(116, 125, 136, .3);
  }

/*starting with section about kdos */

.knowledge{
    background-color: #ffab00;    
    background-image:  radial-gradient(#ffffff 0.8500000000000001px, transparent 0.8500000000000001px), radial-gradient(#ffffff 0.8500000000000001px, #ffab00 0.8500000000000001px);
    background-size: 34px 34px;
    background-position: 0 0,17px 17px;
    overflow: hidden;

}



div.knowledge_container.container{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    align-items: center;
    

}
p.knowledge_paragraph{
    line-height: 1.7;
    margin-bottom: 15px;   

}

img.knowledge_img{
    width: 350px;
    
       
}

/*carrusel*/



.body_slider{
    width: 100%;
    max-width: 850px;
    position: relative;
    margin: auto;
    overflow: hidden;
    border: 20px solid #ffffff;
    border-radius: 8px;
    box-shadow: 10px 25px 30px rgba(30,30,200,0.3);
    margin-top: 100px;
    margin-bottom: 200px;
    

}

div.carousel{
    margin-top: -20px;
    margin-bottom: -350px;
}

div.wrapper{
    display: flex;
  max-width: 1200px;
  position: relative;
  margin-bottom: -200px;
}

.wrapper i{
    
    top: 50%;
    height: 44px;
    width: 44px;
    color: #FFF;
    cursor: pointer;
    font-size: 1.15rem;
    position: absolute;
    text-align: center;
    line-height: 44px;
    background: #ffae00;
    border-radius: 50%;
    transform: translateY(-50%);
    transition: transform 0.1s linear;
    

}



.wrapper i:active{
  transform: translateY(-50%) scale(0.9);
}

.wrapper i:hover{
  background: #ffae00;
}

.wrapper i:first-child{
  margin-top: 200px;  
  left: 2px;
  display: none;
}

.wrapper i:last-child{
    margin-top: 200px; 
  right: 2px;
}

.wrapper .carousel{
  font-size: 0px;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  scroll-behavior: smooth;
}
.carousel.dragging{
    cursor: grab;
    scroll-behavior: auto;
  }
.carousel.dragging img{
    pointer-events: none;
  }

.carousel img {   
    width: calc( 100% / 1 - 1em);
    min-height: 20vh;
    color: var(--negro);
    transition: all 0.4s ease;     
    box-sizing: border-box;
    margin-left: 10px;
    height: calc( 100% / 2 - 4em) ;
    margin-bottom: 400px;
    
}

.carousel img:first-child{
    margin-left: 10px;
}

/* FOOTER*/

footer{
    width: 100%;
    background-image: url(/images/6125995.jpg);
    color: white;   
    /*mage by <a href="https://www.freepik.com/free-vector/gradient-monochromatic-abstract-background_19381187.htm#page=5&query=background&position=11&from_view=search&track=sph">Freepik</a>
*/
}

.container-footer-all{
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 40px;
}

.container-body{
    display: flex;
    justify-content: space-between;
}

.colum1{
    max-width: 400px;
}

.colum1 h1{
    font-size: 22px;
}

.colum1 p{
    font-size: 20px;
    color: #ffffff;
    margin-top: 20px;
}

.colum2{
    max-width: 400px;
    
}

.colum2 h1{
    font-size: 22px;
}

.row{
    margin-top: 20px;
    display: flex;
}

.row img{
    width: 36px;
    height: 36px;
}

.row label{
    margin-top: 10px;
    margin-left: 20px;
    color: #ffffff;
}

.colum3{
    max-width: 400px;
}

.colum3 h1{
    font-size: 22px;
}

.row2{
    margin-top: 20px;
    display: flex;
}

.row2 img{
    width: 36px;
    height: 36px;
}

.row2 label{
    margin-top: 10px;
    margin-left: 20px;
    max-width: 160px;
}

.container-footer{
    width: 100%;  
    background: #101010;
}

.footer{
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;  
    padding: 20px;
}

.copyright{
    color: #C7C7C7;
}

.copyright a{
    text-decoration: none;
    color: white;
    font-weight: bold;
}

.information a{
    text-decoration: none;
    color: #C7C7C7;
}

/*whatsapp button*/
.float{
	position:fixed;
	width:60px;
	height:60px;
	bottom:40px;
	right:40px;
	background-color:#25d366;
	color:#FFF;
	border-radius:50px;
	text-align:center;
  font-size:30px;
	box-shadow: 2px 2px 3px #999;
  z-index:100;
}
.float:hover {
	text-decoration: none;
	color: #25d366;
  background-color:#fff;
}

.my-float{
	margin-top:16px;
}

/* media queries*/

/*Responsive*/

@media (max-width: 1200px){
    
  

    .nav.logo{
        width: 200px;
    }

    .nav_link--show{
        --show: block;
        opacity:1 ;
        pointer-events:unset ;
        
    }

    .nav_close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
        
    }

    .hero_title{
        font-size: 2.5rem;
        
    }

    .about_main{
        gap: 2em;
    }

 
    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .info_container{
        grid-template-columns: 30px 1fr 30px;
    }

    .info_body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items:center ;
    }

    .info_picture{
        width: 610px;
        height: 500px;
        
    }
    
    .container-body{
        flex-wrap: wrap;
    }
    
    .colum1{
        max-width: 100%;
    }
    
    .colum2,
    .colum3{
        margin-top: 40px;
    }

   
}

@media (max-width:1100px){
    .nav_menu{
        display: block;
        
    }

    .nav_link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events:none ;
        transition: .7s opacity;
    }

    .nav.logo{
        width: 200px;
    }

    .nav_link--show{
        --show: block;
        opacity:1 ;
        pointer-events:unset ;
        
    }

    .nav_close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
        
    }

    .hero_title{
        font-size: 2.5rem;
        
    }

    .about_main{
        gap: 2em;
    }

 
    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .info_container{
        grid-template-columns: 30px 1fr 30px;
    }

    .info_body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items:center ;
    }

    .info_picture{
        width: 610px;
        height: 500px;
        
    }
    
    .container-body{
        flex-wrap: wrap;
    }
    
    .colum1{
        max-width: 100%;
    }
    
    
    .colum3{
        margin-top: 40px;
    }

    
}

@media (max-width:950px){
    .nav_menu{
        display: block;
        
    }

    .nav_link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events:none ;
        transition: .7s opacity;
    }

    .nav.logo{
        width: 200px;
    }

    .nav_link--show{
        --show: block;
        opacity:1 ;
        pointer-events:unset ;
        
    }

    .nav_close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
        
    }

    .hero_title{
        font-size: 2.5rem;
        
    }

    .about_main{
        gap: 2em;
    }

 
    .knowledge__picture{
        grid-row: 1/2;
        justify-self: center;
    }

    .info_container{
        grid-template-columns: 30px 1fr 30px;
    }

    .info_body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items:center ;
    }

    .info_picture{
        width: 610px;
        height: 500px;
        
    }
    
    .container-body{
        flex-wrap: wrap;
    }
    
    .colum1{
        max-width: 100%;
    }
    
    
    .colum3{
        margin-top: 40px;
    }

    
}

@media (max-width:850px){
    .nav_menu{
        display: block;
        
    }

    .nav_link--menu{
        position: fixed;
        background-color: #000;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
        z-index: 100;
        opacity: 0;
        pointer-events:none ;
        transition: .7s opacity;
    }

    .nav.logo{
        width: 200px;
    }

    .nav_link--show{
        --show: block;
        opacity:1 ;
        pointer-events:unset ;
        
    }

    .nav_close{
        position: absolute;
        top: 30px;
        right: 30px;
        width: 30px;
        cursor: pointer;
        
    }

    .hero_title{
        font-size: 2.5rem;
        
    }

    .about_main{
        gap: 2em;
    }

 
    p.knowledge_paragraph{
        line-height: 1.7;
        margin-bottom: 15px;       
    
    }
    
    img.knowledge_img{
        width: 300px;
        justify-content: right;
          
    }

    .info_container{
        grid-template-columns: 30px 1fr 30px;
    }

    .info_body{
        grid-template-columns: 1fr;
        grid-template-rows: max-content max-content;
        gap: 3em;
        justify-items:center ;
    }

    .info_picture{
        width: 610px;
        height: 500px;
        
    }
    
    .container-body{
        flex-wrap: wrap;
    }
    
    .colum1{
        max-width: 100%;
    }
    
    
    .colum3{
        margin-top: 40px;
    }

    div.wrapper{        
        margin-bottom: -150px;
      }
    
}
   
@media (max-width:650px ){

    .hero_title{
        font-size: 2rem;
    }

    .hero_paragraph{
        font-size: 1rem;
    }       

             


      .subtitle{
        font-size: 1.8rem;
    }

    div.knowledge_container.container{
        padding-top: 20px;
        display: grid;
        width: 90% ;
        margin: 0 auto;
        gap: 1em ;
        overflow: hidden;
        grid-template-columns: repeat(auto-fit, minmax(260px, auto));
    }
    p.knowledge_paragraph{
        line-height: 1.7;
        margin-bottom: 15px;   
    
    }
    
    img.knowledge_img{
        width: 350px;
        
           
    }

    div.wrapper{        
      margin-bottom: 50px;
    }

         
}

@media (max-width:550px ){

        .hero_title{
            font-size: 2rem;
        }
    
        .hero_paragraph{
            font-size: 1rem;
        }       

       

          .subtitle{
            font-size: 1.8rem;
        }
    
        div.knowledge_container.container{
            padding-top: 20px;
            display: grid;
            width: 90% ;
            margin: 0 auto;
            gap: 1em ;
            overflow: hidden;
            grid-template-columns: repeat(auto-fit, minmax(260px, auto));
        }
        p.knowledge_paragraph{
            line-height: 1.7;
            margin-bottom: 15px;   
        
        }
        
        img.knowledge_img{
            width: 350px;
            
               
        }
        

        img.nav_links{
            width: 40px;
            margin: auto;
            margin-left: auto;

         }
    
             
    }

@media (max-width:450px ){

        .hero_title{
            font-size: 2rem;
        }
    
        .hero_paragraph{
            font-size: 1rem;
        }

       
        .subtitle{
            font-size: 1.8rem;
        }
    
        div.knowledge_container.container{
            padding-top: 20px;
            display: grid;
            width: 90% ;
            margin: 0 auto;
            gap: 1em ;
            overflow: hidden;
            grid-template-columns: repeat(auto-fit, minmax(260px, auto));
        }
        p.knowledge_paragraph{
            line-height: 1.7;
            margin-bottom: 15px;   
        
        }
        
        img.knowledge_img{
            width: 350px;
            
               
        }

        img.nav_links{
            margin-top: -15px;
            width: 30px;                    
            
         }

       
            
        }

@media (max-width:400px ){

            .hero_title{
                font-size: 2rem;
            }
        
            .hero_paragraph{
                font-size: 1rem;
            }
    
           
            .subtitle{
                font-size: 1.8rem;
            }
        
           
            div.knowledge_container.container{
                padding-top: 20px;
                display: grid;
                width: 90% ;
                margin: 0 auto;
                gap: 1em ;
                overflow: hidden;
                grid-template-columns: repeat(auto-fit, minmax(260px, auto));
            }
            p.knowledge_paragraph{
                line-height: 1.7;
                margin-bottom: 15px;   
            
            }
            
            img.knowledge_img{
                width: 350px;
                
                   
            }
          
            
              img.nav_links{
                margin-top: -15px;
                width: 30px;                    
                
             }             

            
            
                
            }
    
@media (max-width:350px ){

                .hero_title{
                    font-size: 2rem;
                }
            
                .hero_paragraph{
                    font-size: 1rem;
                }
        
               
                .subtitle{
                    font-size: 1.8rem;
                }
            
               
                div.knowledge_container.container{
                    padding-top: 20px;
                    display: grid;
                    width: 90% ;
                    margin: 0 auto;
                    gap: 1em ;
                    overflow: hidden;
                    grid-template-columns: repeat(auto-fit, minmax(260px, auto));
                }
                p.knowledge_paragraph{
                    line-height: 1.7;
                    margin-bottom: 15px;   
                
                }
                
                img.knowledge_img{
                    width: 350px;
                    
                       
                }

                img.nav_links{
                    margin-top: -15px;
                    width: 35px;                    
                    
                 }
        
             
                    
                
                }  
                
              


    