.warranty {
  padding: 3rem 20px;
}

.warranty-content {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  align-items: center;
  gap: 25px;
}

.warranty-content .left {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.warranty-content .left .box {
  padding: 10px;
  background-color: #fffbf7;
  height: 160px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.warranty-content .left .box img {
   width: 60px;
  margin-bottom: 10px;
}

.warranty-content .left .box:hover img {
  transform: translateY(-8px);
}

.warranty-content .left .box h4 {
  font-size: 15px;
  text-align: center;
}





.warranty-content .right {}

.warranty-content .right h2 {
  margin-bottom: 10px;
}

.warranty-content .right p {
  margin-bottom: 10px;
  text-align: left;
}











@media screen and (max-width:768px) {
  .warranty-content {
    grid-template-columns: 1fr;
  }

  .warranty-content .right h2 {
    /* text-align:center; */
  }

  .warranty-content .right p {
    margin-bottom: 10px;
    /* text-align:center; */
  }

}



@media screen and (max-width:576px) {
  .warranty {
    padding: 20px 20px;
  }

  .warranty-content .left {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .warranty-content .left .box {
    height: 125px;
  }
  .warranty-content .left .box h4 {
    font-size: 13px;
  }

  .warranty-content .left .box img {
    width: 40px;
  }


}