html, body{
    overflow-x: hidden;
}

button:focus{
    outline: none;
}

i{
    font-style: normal;
}




.menu{
    border: none;
    background: none;
    font-size: 23px;
}

.main-main-menu{
    position: fixed;
    bottom: 0;
    width: 100%;
    top: 0;
    background: rgba(0, 0, 0, 0.322);
}


.main-menu{
    position: fixed;
    bottom: 0;
    top: 53%;
    left: 0;
    right: 0;
    background: white;
    height: 45%;
    border-top-left-radius: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    z-index: 1000;
}


.nav-btns{
    border:none;
    background: none;
    font-family: 'Poppins';
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    margin-top: 10px;
    padding-bottom: 10px;
    margin-left: 10px;
    cursor: pointer;
}

.nav-btns:hover{
    color: #4783FC;
}

.nav-icon-btn i{
    font-size: 17px;
}

.nav-icon-btn{
    border:none;
    margin-right: 10px;
    border-radius: 5px;
    cursor: pointer;
    background: none;
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 15px;
}

.nav-icon-btn:hover{
    color: #4783FC;
}

.main{
    padding-top:100px;
    font-family: 'Poppins';
    padding-left: 200px;
    padding-bottom: 30px;

}


.main h1{
    font-weight: 700;
    font-size: 60px;
}

.main p{
    font-weight: 500;
    font-size: 16px;
    padding-left: 50px;
    color: rgb(134, 134, 134);
    font-family: 'Montserrat';
}

.main img{
    width: 500px;
    margin-top: -90px;
}


.blu-btn-round{
    border: none;
    height: 40px;
    padding-left: 25px;
    padding-right: 25px;
    background: #4783FC;
    color: white;
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 13px;
    border-radius: 50px;
    cursor: pointer;
    text-transform: uppercase;
}

.blu-btn-round:hover{
    background: rgb(62, 111, 211);
}

.products{
    margin-top: 150px;
}


.products p{
    font-weight: 500;
    font-size: 16px;
    color: rgb(134, 134, 134);
    font-family: 'Montserrat';
}

.products-btn{
    margin-top: 50px;
}

.title{
    font-family: 'poppins';
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 25px;
}

.products h3{
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 16px;
}

.products h4{
    font-family: 'Montserrat';
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 16px;
    margin-top: 10px;
    color: #4783FC;
}

.product-img{
    height: 300px;
    width: 250px;
    background-size: cover;
    margin-bottom: 20px;
    
}






.cont{
    padding-left: 200px;
    padding-top: 100px;
    margin-bottom: 150px;
}

.cont h3{
    margin-top: 120px;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 45px;
}

.cont p{
    font-weight: 500;
    font-size: 16px;
    color: rgb(134, 134, 134);
    font-family: 'Montserrat';
    width: 500px;
}



.para{
    font-weight: 500;
    font-size: 16px;
    color: rgb(134, 134, 134);
    font-family: 'Montserrat';
    padding-left: 120px;
    padding-right: 120px;
}

.bigger{
    margin-top: 120px;
    font-family: 'Poppins';
    font-weight: 700;
    letter-spacing: 1.5px;
    font-size: 45px;
}



.big-icon:before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 132, 233, 0.5)), to(#4783FC));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: initial; /* reset Font Awesome's display:inline-block */
}







.group 			  { 
    position:relative; 
    margin-bottom:45px; 
  }
  input 				{
    font-size:18px;
    padding:10px 10px 10px 5px;
    display:block;
    width:300px;
    border:none;
    border-bottom:1px solid rgb(160, 168, 175);
    background: transparent;
  }
  input:focus 		{ outline:none; }
  
  /* LABEL ======================================= */
  label 				 {
    color:#999; 
    font-size:18px;
    font-weight:normal;
    position:absolute;
    pointer-events:none;
    left:15px;
    top:10px;
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  
  /* active state */
  input:focus ~ label, input:valid ~ label 		{
    top:-20px;
    font-size:14px;
    color:#4783FC;
  }
  
  /* BOTTOM BARS ================================= */
  .bar 	{ position:relative; display:block; width:300px; }
  .bar:before, .bar:after 	{
    content:'';
    height:2px; 
    width:0;
    bottom:1px; 
    position:absolute;
    background:#4783FC; 
    transition:0.2s ease all; 
    -moz-transition:0.2s ease all; 
    -webkit-transition:0.2s ease all;
  }
  .bar:before {
    left:50%;
  }
  .bar:after {
    right:50%; 
  }
  
  /* active state */
  input:focus ~ .bar:before, input:focus ~ .bar:after {
    width:50%;
  }
  
  /* HIGHLIGHTER ================================== */
  .highlight {
    position:absolute;
    height:60%; 
    width:100px; 
    top:25%; 
    left:0;
    pointer-events:none;
    opacity:0.5;
  }
  
  /* active state */
  input:focus ~ .highlight {
    -webkit-animation:inputHighlighter 0.3s ease;
    -moz-animation:inputHighlighter 0.3s ease;
    animation:inputHighlighter 0.3s ease;
  }
  
  /* ANIMATIONS ================ */
  @-webkit-keyframes inputHighlighter {
      from { background:#4783FC; }
    to 	{ width:0; background:transparent; }
  }
  @-moz-keyframes inputHighlighter {
      from { background:#4783FC; }
    to 	{ width:0; background:transparent; }
  }
  @keyframes inputHighlighter {
      from { background:#4783FC; }
    to 	{ width:0; background:transparent; }
  }





.p{
    font-family: 'Montserrat';
    color: rgb(148, 157, 167);
    margin-top: -20px;
    margin-bottom: 40px;
}


.my-color{
    color: #4783FC;
}



footer{
    font-size: 13px;
    padding-bottom:20px;
    padding-top: 20px;
    font-family: 'Montserrat';
}

footer button{
    font-size: 20px;
    margin-top: -20px;
    border: none;
    background: none;
}

footer p{
    font-weight: 500;
}




#scrolly{
    width: 1000px;
    height: 190px;
    overflow: auto;
    overflow-y: hidden;
    margin: 0 auto;
    white-space: nowrap
}

#scrolly img{
    margin: 20px 10px;
    display: inline;
}




.nav-min-main{
    background-color: #0c0c0c5d;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    font-family: 'Montserrat';
    z-index: 1000;
  }
  
  #hidder{
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: none;
  }
  
  .nav-min{
    z-index: 1000;
    position: fixed;
    top: 100%;
    bottom: 0;
    background-color: white;
    left: 0;
    right: 0;
    color: black;
    padding-top: 30px;
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    box-shadow:  0 0 15px 2px #4f5251;
    transition: 5s;
  } 
  
  .min-btns{
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
    margin-top: 25px;
    background: none;
    border: none;
    font-weight: 800;
    font-size: 17px;
    font-family: 'Poppins';
  }
  
  .min-social{
    left: 32px;
    position: fixed;
    top: 90%;
  }
  
  .min-social button{
    font-size: 25px;
    height: 40px;
    width: 40px;
    border: none;
    background: none;
    margin-right: 10px;
  }
  
  




/* px */
@media (min-width: 600px){
    .mobile{
        display: none;
    }

    .icons{
        transition: 0.5s;
        cursor: pointer;
    }
    .icons:hover{
        color: #4783FC;
        font-size: 23px;
    }
}

/* mobile */
@media (max-width: 600px){

    
    footer{
        font-size: 13px;
        padding-bottom:20px;
        padding-top: 20px;
        font-family: 'Montserrat';
        text-align: center;
    }

    .pc{
        display: none;
    }

    .main{
        padding-top:40px;
        font-family: 'Poppins';
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 30px;

    }


    .main h1{
        font-weight: 700;
        font-size: 30px;
        padding-top: 20px;
    }

    .main p{
        font-weight: 500;
        font-size: 16px;
        padding-left: 0px;
        color: rgb(134, 134, 134);
        font-family: 'Montserrat';
    }

    .main img{
        width: 100%;
        margin-top: 0px;
    }


    .blu-btn-round{
        border: none;
        height: 40px;
        width: 100%;
        background: #4783FC;
        color: white;
        font-weight: 700;
        letter-spacing: 1.5px;
        font-size: 13px;
        border-radius: 50px;
        cursor: pointer;
        text-transform: uppercase;
    }

    
    .products{
        margin-top: 150px;
        margin-left: 10px;
    }


    .products p{
        font-weight: 500;
        font-size: 16px;
        color: rgb(134, 134, 134);
        font-family: 'Montserrat';
    }

    .products-btn{
        margin-top: 50px;
    }

    .product-img{
        height: 300px;
        width: 250px;
        background-size: cover;
        margin-bottom: 20px;
        margin-left: 70px;
        margin-top: 20px;
    }

    .para{
        font-weight: 500;
        font-size: 16px;
        color: rgb(134, 134, 134);
        font-family: 'Montserrat';
        padding-left: 0px;
        padding-right: 0px;
    }
    

    .cont{
        padding-left: 30px;
        padding-right: 30px;
        padding-top: 0px;
        margin-bottom: 150px;
    }

    .cont h3{
        margin-top: 30px;
        font-family: 'Poppins';
        font-weight: 700;
        letter-spacing: 1.5px;
        font-size: 35px;
    }

    .cont p{
        font-weight: 500;
        font-size: 16px;
        color: rgb(134, 134, 134);
        font-family: 'Montserrat';
        width: 100%;
    }

    .icons{
        font-size: 30px;
        padding-top: 20px;
        color: #4783FC;
    }

    
    .nav-btns{
        border:none;
        background: none;
        font-family: 'Poppins';
        font-weight: 600;
        text-transform: uppercase;
        font-size: 14px;
        letter-spacing: 1.5px;
        margin-top: 7%;
        margin-left: 0;
        padding-bottom: 0px;
        cursor: pointer;
        width: 100%;
        border-radius: 10px;
    }

    .nav-link{
        height: 40%;
    }

    

}



