.kluge-box {
  width: 100%;
  margin-bottom: 40px;
  border-radius: 14px;
  box-shadow: 0 6px 20px 0 rgba(0, 0, 0, 0.17);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.kluge-box img {
  width: 100%;
  height: auto;
  border-radius: 14px 14px 0 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  object-fit: cover;
  object-position: center;
}
.kluge-box .img {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background-color: #fff;
  border-radius: 14px 14px 0 0;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (max-width: 1024px) {
  .kluge-box .img {
    width: 100%;
    border-radius: 14px 14px 0 0;
    height: 180px;
  }
}
.kluge-box .img img {
  min-width: 100%;
  max-width: 100%;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  width: 100%;
  height: 100%;
  border-radius: 14px 14px 0 0;
  object-fit: cover;
  object-position: center;
}
.kluge-box .main-cont {
  background-color: #ffffff;
  width: 100%;
  padding: 30px;
  border-radius: 14px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.kluge-box .main-cont .title {
  width: 100%;
  color: #04242F;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1024px) {
  .kluge-box .main-cont .title {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
.kluge-box .main-cont .text {
  width: 100%;
  color: #04242F;
  font-weight: normal;
  margin-top: 15px;
  margin-bottom: 15px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media (max-width: 1024px) {
  .kluge-box .main-cont .text {
    margin-top: 10px;
    margin-bottom: 0;
  }
}
