.slider{
    width: 940px;
    max-width: 100vw;
    height: 470px;
    margin: auto;
    position: relative;
    overflow: hidden;
	border-radius:8px;
	margin-top:10px;
	margin-bottom:10px;
}
.slider .list{
    position: absolute;
    width: max-content;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    transition: 1s;
}
.slider .list img{
    width: 940px;
    max-width: 100vw;
    height: 100%;
    object-fit: cover;
}
.slider .buttons1{
    position: absolute;
    top: 45%;
    left: 5%;
    width: 90%;
    display: flex;
    justify-content: space-between;
}
.slider .buttons1 button{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #fff5;
    color: #fff;
    border: none;
    font-family: monospace;
    font-weight: bold;
}
.slider .dots{
    position: absolute;
    bottom: 10px;
    left: 0;
    color: #fff;
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
}
.slider .dots li{
    list-style: none;
    width: 10px;
    height: 10px;
    background-color: #fff;
    margin: 10px;
    border-radius: 20px;
    transition: 0.5s;
}
.slider .dots li.active{
    width: 30px;
}
@media screen and (max-width: 1069px){
    .slider{
		width: 100%;
        height: 300px;
    }
}
.stats-grid1 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 10px; 
  padding: 10px;
}

.stat-box1 {
  	background-color: #363a43;
	outline: 1px solid #434852;
  color: #fff;
  text-align: center;
  padding: 12px 8px;
  gap: 4px; 
  border-radius: 8px;
  box-shadow: 0 0 4px rgba(0,0,0,0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat-box1 i {
  font-size: 32px;
  color: #888;
  margin-bottom: 4px;
  display: block;
}

.stat-number1 {
  font-size: 24px;
  color: #4db2c4;
  font-weight: bold;
  margin-bottom: 2px;
}

.stat-label1 {
  font-size: 14px;
  color: #ccc;
}

.stat-link1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.stat-link1:hover i {
  color: #ff5050;
}

.stat-link1:hover .stat-label1 {
  color: #fff;
}