.accidents-consequences-card {
  width: 49% ;
  height: 100%;
  background-color: #004F8B;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center; 
  border-radius: 3px;
}

.accidents-consequences-card .accident-consequence-type {
  font-weight: bold;
  font-size: 32px;
  line-height: normal;
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 40px;
  height: 81px;
  width: 80%;
}

.accidents-consequences-card .accident-cause {
  font-weight: normal;
  font-size: 24px;
  line-height: normal;
  text-align: center;  
  color: #FFFFFF;  
  margin-bottom: 34px;
  width: 60%;
}

.accidents-consequences-card .description {
  font-weight: 300;
  font-size: 16px;
  line-height: normal;
  text-align: center;  
  color: #FFFFFF;
  margin-bottom: 25px;
  width: 60%;
}

.accidents-consequences-card .warranty {
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-align: center;  
  color: #FFFFFF;
  width: 60%;
  
}

@media (min-width: 700px) and (max-width: 1271px){ 
    .accidents-consequences-card .accident-consequence-type {
        margin-bottom: 0; 
        height: auto; 
    }
}

@media (max-width: 700px) { 
    .accidents-consequences-card {
        width: 100%;
        height: 335px;
        margin-bottom: 20px;
      }
    
      .accidents-consequences-card .accident-consequence-type {
        height: auto;
        font-size: 28px;
      }
    
      .accidents-consequences-card .accident-cause {
        font-size: 20px;
      }
}

@media (max-width: 360px) { 
  .accidents-consequences-card {
    height: auto; 
  }
} 

