h1,h2,h3,h4,h5,h6 {
    margin: 0;
}
body {
    background-image: url("/images/bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    margin: 0;
    font-family: "Cairo", sans-serif;

}
.overlay {
    background-color: rgba(0, 0, 0, .82);
    position: absolute;
    height: 100vh;
    width: 100%;
}

section {
    display: flex;
    justify-content: center;
    height: 100vh;
    flex-wrap: wrap;
}
.middle-card{
    position: relative;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    left: 20px;
}
.background {
    position: absolute;
    top: 0;
    width: 450px;
}
.card-contnet {
    
    z-index: 8;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 20px;
    margin-top: 210px;

}
.card-contnet img {
    width: auto;
}
.card-contnet h3 {
    color: white;
    font-size: 36px;
    font-weight: 600;
}
.card-contnet h5 {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.bottom-section {
    display: flex;
    width: 100%;
    z-index: 8;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 50px;
    gap: 10px;
    align-content: flex-start;

}
.bottom-section h5 {
    width: 100%;
    color: #BD9A61;
    text-align: center;
    margin: 0;
    height: fit-content;
    font-size: 18px;
}
.progress-container {
    margin: 0 auto;
    width: 380px;
    text-align: center;
    /* margin-top: -60px; */

  }
  
  .progress {
    padding: 5px;
    background: transparent;
    border-radius: 10px;
    border: 1px solid #BD9A61;
  }
  
  .progress-bar {	
    height: 10px;
    border-radius: 10px; 
    transition: 0.4s linear;  
    transition-property: width, background-color;    
  }
  
  .progress-striped .progress-bar { 	
    background-color: #BD9A61; 
    width: 100%;     
    animation: progressAnimationStrike 8s infinite ;
  }
  

@media(max-width : 600px){
    .background {
        width: 450px;
    }
}

@media(max-width : 500px){
    .background {
        width: 350px;
    }
    .progress-container {
        width: 280px;
        /* margin-top: -80px; */
    }
    .middle-card {
        left: 0;
    }
    .card-contnet{
        margin-top: 60px;
    }
    .card-contnet img{
        width: 70px;
    }
    .card-contnet h3{
        font-size: 30px;
    }
    
}
@media(max-height : 900px){
    
   
    
    .card-contnet{
        margin-top: 120px;
    }
   
    
}
@media(max-height : 1370px){
    
   
    
    .card-contnet{
        margin-top: 20px;
    }
   
    
}
@media(max-height : 1200px){
    
   
    
    .card-contnet{
        margin-top: 110px;
    }

    .bottom-section {
        margin-top: 140px;
    }
   
    
}

@media(max-height : 920px) and  (max-width : 1980px){
    
   
    
    .card-contnet{
        margin-top: 180px;
    }
   
    
}

@media(max-height : 920px) and  (max-width : 500px){
    
   
    
    .card-contnet{
        margin-top: 70px;
    }
   
    
}
@media(max-height : 700px) and  (max-width : 400px){
    
    .card-contnet{
        margin-top: 120px !important;
    }
   
    
}
@media(max-width : 400px){
    .background {
        width: 320px;
    }
    .progress-container {
        width: 280px;
        /* margin-top: -80px; */
    }
    .middle-card {
        left: 0;
    }
    .card-contnet{
        margin-top: 90px;
    }
    .card-contnet img{
        width: 70px;
    }
    .card-contnet h3{
        font-size: 30px;
    }
    
}


@keyframes progressAnimationStrike {
    from { width: 0 }
    to   { width: 100% }
}