body{
    margin: 0px;
    padding: 0px;
    /* display: flex;
    justify-content: center; */
    align-items: center;
    min-height: 100vh;
    font-family: sans-serif; 
}
.stats{
    margin-top: 100px;
	display: flex;
	flex-direction: column;
	background-color: white;
}
.numbers{
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	flex-wrap: wrap;
	margin:20px;
}
.numbers .nohead{
	text-align: center;
	color: #444;
	font-size: 44px;
	font-weight: 600;
}
.numbers hr{
	width:400px;
	border: 2px solid rgb(246, 142, 255);
	background: rgb(246, 142, 255);
}
.no{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.no .titls{
    margin-bottom: 30px;
display: flex;
justify-content: space-between;
align-items: center;
width: 80%;
}
.no .titls .stat{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}
.no .titls .stat .odometer{
	font-size: 55px;
	font-weight: bold;
	letter-spacing: 4px;
}
.no .titls .stat h3{
    margin: 0;
	font-size: 25px;
}
#odometer3{
    margin-top: 30px;
}
.s1 {
    position: relative;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 50px;
}
.s2 {
    position: relative;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 50px;
}
.s3 {
    position: relative;
    margin-top: 20px;
    width: 100%;
    margin-bottom: 50px;
}
.startups_heightBox{
    height: 150px;
}
.wrap{
justify-content: center;
align-items: center;
width: 100%;
}
.startups_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    width: 90%;
}

.startups_container .startups_box{
    position: relative;
    width: 350px;
    padding: 40px;
    background: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.514);
    border-radius: 30px;
    margin: 20px;
    box-sizing: border-box;
    overflow: hidden;
    text-align: center;
}

.startups_container .startups_box::before{
    content: '';
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(255,255,255,.2);
    z-index: 2;
    pointer-events:none;
}

.startups_container .startups_box .startups_icon{
    position: relative;
    width: 80px;
    height: 80px;
    color: #fff;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0px auto;
    border-radius: 50%;
    font-size: 40px;
    font-weight: 700;
    transition: 1s;
}

.startups_container .startups_box:nth-child(1) .startups_icon{
    box-shadow: 0 0 0 0 #21D4FD;
    background: #21D4FD;
    /* background-image: linear-gradient(19deg, #21D4FD 0%, #B721FF 100%); */
}

.startups_container .startups_box:nth-child(1):hover .startups_icon{
    box-shadow: 0 0 0 400px #21D4FD;
}

.startups_container .startups_box:nth-child(2) .startups_icon{
    box-shadow: 0 0 0 0 #2196f3;
    background: #2196f3;
}

.startups_container .startups_box:nth-child(2):hover .startups_icon{
    box-shadow: 0 0 0 400px #2196f3;
}

.startups_container .startups_box:nth-child(3) .startups_icon{
    box-shadow: 0 0 0 0 #B721FF;
    background: #B721FF;
}

.startups_container .startups_box:nth-child(3):hover .startups_icon{
    box-shadow: 0 0 0 400px #B721FF;
}

.startups_container .startups_box .startups_content{
    position: relative;
    z-index: 1;
    transition: 0.5s;
}

.startups_container .startups_box:hover .startups_content{
    color: #fff;
}

.startups_container .startups_box .startups_content h3{
    font-size: 20px;
    margin: 10px 0;
    padding: 0;
}

.startups_container .startups_box .startups_content p{
    margin: 0;
    padding: 0;
}

.startups_container .startups_box .startups_content a{
    display: inline-block;
    padding: 10px 20px;
    background: #fff;
    border-radius: 4px;
    text-decoration: none;
    color: #000;
    font-weight: 500;
    margin-top: 20px;
    border-radius: 30px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
footer{
    margin-top: 150px;
}
@media(max-width: 900px){
    .no .titls .stat h3{
        font-size: 20px;
    }
 
}
@media(max-width: 750px){
    .no .titls .stat .odometer{
        font-size: 45px;
    }
    #odometer3{
        margin-top: 20px;
    }
    .no .titls .stat h3{
        font-size: 15px;
    }
    .numbers .nohead{
        font-size: 40px;
    }
}
@media(max-width: 550px){
    .no .titls .stat .odometer{
        font-size: 30px;
    }
    .no .titls .stat{
        margin-bottom: 10px;
    }
    #odometer3{
        margin-top: 20px;
    }
    .no .titls .stat h3{
        font-size: 13px;
    }
    .numbers hr{
        width: 70%;
    }
}
@media(max-width: 450px){
    .no .titls .stat .odometer{
        font-size: 30px;
        letter-spacing: normal;
    }
    .no .titls{
        margin-bottom: 10px;
    }
    .no .titls .stat{
        margin-bottom: 10px;
    }
    #odometer3{
        margin-top: 20px;
    }
    #odometer2{
        margin-top: 5px;
    }
    #odometer6{
        margin-top: 0px;
    }
    .no .titls .stat h3{
        font-size: 12px;
        text-align: center;
        margin: 0 5px;
    }
    .numbers .nohead{
        font-size: 35px;
    }
}
@media(max-width: 360px){
    .no .titls .stat .odometer{
        letter-spacing: normal;
    }
    .no .titls .stat h3{
        text-align: center;
    }
    .numbers .nohead{
        font-size: 30px;
    }
}
@media(max-width: 320px){
    #odometer3{
        margin-top: 40px;
    }
}
nav .btn{
    border-radius: 50%;
    width: 45px;
    height: 45px;
  }
  .usr{
    display: flex;
    flex-direction: column;
    margin-top: 110px;
    justify-content: center;
    align-items: center;
  }
  .btn i{
      font-size: 42px;
  }
   .drop{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 20px;
    visibility: hidden;
    opacity: 0;
    transition: 0.7s ease-in-out;
  }
  .drop a{
    color: black;
    padding-top: 20px;
    padding-right: 10px;
    padding-left:10px ;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
  }
  .drop a:hover{
    color: rgb(99, 99, 99);
  }
  .drop #log_out{
    padding-bottom: 20px;
  }
  #user{
     margin: 6px 0px;
  }
  .usr:hover .drop{
    visibility:visible;
    opacity: 1;
  }
  
  