@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');


*{
    margin: 0;
    padding: 0;
    outline: 0;
    box-sizing: border-box; 
}

body {
  font-family: 'Roboto', sans-serif;
}

.logo{
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 250px;
  height: 250px;
}

.title {
  font-size: 25px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 56px;
  color: #222;
}

.container{
  display: flex;
  align-items: center;
  margin-bottom: 50px;
}

.production_content {
  padding: 15px;
  width: 100%;
  
}

.production_content h3{
  width: 100%;
  font-size: 36px;
  color: #333333;
}

.production_content ul {
  padding: 10px;
  font-size: 18px;
  font-weight: 400;
  color: #484848;
  list-style: none;
}

.production_content ul li {
  line-height: 25px;
}

.img_production {
  width: 100%;
}

.img_production img {
  border-radius: 10px;
}

.img_delivery {
  width: 100%;
  display: flex;
  justify-content: center;
}


.img_delivery img{
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid #1515;
  
}

.delivery_content {
  padding: 10px;

}

.delivery_content h3 {
  font-size: 36px;
  color: #333333;
}

.delivery_content p {
  padding: 10px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #484848;
}

.medicament_content {
  width: 100%;
  padding: 5%;
}

.medicament_content h3 {
  font-size: 36px;
  color: #333333;
  text-align: center;
}

.medicament_content p {
  padding: 20px;
  line-height: 20px;
  font-size: 18px;
  font-weight: 400;
  color: #484848;
}

.img_medicament {
  display: flex;
  justify-content: center;
  width: 100%;
}

.img_medicament img {
  width: 500px;
  height: 500px;
  border-radius: 50%;
}


@media (max-width: 600px){

  .title {
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 56px;
    color: #222;
  }

  .container{
    display: flex;
    align-items: center;
    flex-direction: column;
    margin-bottom: 50px;
  }

  .production_content h3{
    font-size: 24px;
  }

  .production_content ul {
    padding: 10px;
    font-size: 15px;
    font-weight: 400;
    color: #484848;
    list-style: none;
  }

  .img_production {
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .img_production img {
    width: 350px;
    height: 350px;
    border-radius: 10px;
    
  }

  .img_delivery {
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .img_delivery img{
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 1px solid #1515;
    
  }

  .delivery_content {
    padding: 10px;
  
  }
  
  .delivery_content h3 {
    font-size: 24px;
    text-align: center;
  }
  
  .delivery_content p {
    font-size: 14px;
  }

 
  .medicament_content h3 {
    font-size: 24px;
  }
  
  .medicament_content p {
    font-size: 14px;
  }
  
  .img_medicament {
    display: flex;
    justify-content: center;
    width: 100%;
  }
  
  .img_medicament img {
    width: 350px;
    height: 350px;
    border-radius: 50%;
  }


}