:root {
  --h-object-section-max-width: 1360px;
  --container-padding: 20px;
  --item-margin: 10px;
  --item-count: 4;
}

.home_object {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
  margin-top: -180px;
}

.home_object_sz {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: calc(100% - var(--container-padding));
  max-width: var(--h-object-section-max-width);
}

.home_object_i {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(20% - (var(--item-margin) * 2));
  height: 220px;
  margin: 0 var(--item-margin);
  background: transparent linear-gradient(325deg, #A1C854 0%, #CCE990 100%) 0% 0% no-repeat padding-box;
  border-radius: 0 80px 80px 80px;
  text-decoration: none;
  opacity: 1;
}

.home_object_i span:nth-child(1) {
  display: flex;
  justify-content: center;
  width: calc(100% - var(--container-padding));
  max-width: 200px;
  margin-top: 50px;
}

.home_object_i span:nth-child(1) img {
  height: 70px;
}

.home_object_i span:nth-child(2) {
  display: block;
  width: calc(100% - var(--container-padding));
  max-width: 200px;
  margin-top: 14px;
  font-family: 'Noto_Bold', sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.1;
  color: #004D33;
  text-align: center;
  text-decoration: none;
}

/* Tablet */
@media (max-width: 1024px) {
  .home_object {
    margin-bottom: -150px;
    margin-top: -30px;
  }

  .home_object_i {
    width: calc(50% - (var(--item-margin) * 2));
    height: 220px;
    margin-bottom: var(--item-margin);
  }

  .home_object_i span:nth-child(1) {
    margin-top: 40px;
  }

  .home_object_i span:nth-child(1) img {
    height: 55px;
  }

  .home_object_i span:nth-child(2) {
    font-size: 17px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .home_object {
    top: -100px;
    margin-bottom: -100px;
    position: relative;
  }

  .home_object_sz {
    flex-direction: column;
    align-items: center;
  }

  .home_object_i {
    width: calc(100% - (var(--item-margin) * 2));
    max-width: 280px;
    height: 200px;
    margin: 0 var(--item-margin) 15px var(--item-margin);
  }

  .home_object_i span:nth-child(1) {
    margin-top: 35px;
  }

  .home_object_i span:nth-child(1) img {
    height: 50px;
  }

  .home_object_i span:nth-child(2) {
    font-size: 16px;
    margin-top: 12px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .home_object {
    top: -20px;
    margin-bottom: -20px;
  }

  .home_object_i {
    height: 140px;
    border-radius: 0 60px 60px 60px;
  }

  .home_object_i span:nth-child(1) {
    margin-top: 30px;
  }

  .home_object_i span:nth-child(1) img {
    height: 45px;
  }

  .home_object_i span:nth-child(2) {
    font-size: 15px;
    margin-top: 10px;
  }
}
