.sub-navigations-page-another-style__main {
  min-height: calc(100vh - 75px - 41px - 55px);
  width: 100%;
  flex: 1;
  background-color: #f2f2f2;
  z-index: -1;
}

.sub-navigations-page-another-style__container {
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #f2f2f2;
}

.sub-navigations-page-another-style__content-wrapper {
  padding: 30px;
  /* background-color: #fff; */
}

.sub-navigations-page-another-style__sub-navigations-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 2%;
  list-style-type: none;
}

.sub-navigations-page-another-style__sub-navigation-item {
  width: 32%;
  background-color: #00a8a6;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: calc(100vw - 98vw);
  border-radius: 5px;
  overflow: hidden;
}

.sub-navigations-page-another-style__sub-navigation-link {
  display: flex;
  flex-direction: column;
  /* align-items: center; */
  align-items: flex-start;
  justify-content: space-between;
  text-decoration: none;
  cursor: pointer;
  font-weight: 400;
  color: #fff;
  transition: background-color 0.3s;
}

.sub-navigations-page-another-style__sub-navigation-link:hover {
  color: #d2c988;
}

/* styles for image teg */
.sub-navigations-page-another-style__sub-navigation-image {
  display: block;
  width: 100%;
  height: fit-content;
  object-fit: contain;
}

/* styles for image as background  */
/* .sub-navigations-page-another-style__sub-navigation-image {
  width: 100%;
  height: 240px;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
} */

.sub-navigations-page-another-style__sub-navigation-name {
  display: block;
  padding: 15px 20px;
  /* text-align: center; */
  text-align: left;
  font-size: 22px;
}

@media screen and (max-width: 992px) {
  .sub-navigations-page-another-style__sub-navigation-item {
    width: 49%;
  }
}

@media screen and (max-width: 768px) {
  .sub-navigations-page-another-style__sub-navigation-item {
    width: 100%;
  }

  .sub-navigations-page-another-style__content-wrapper {
    padding: 20px;
  }

  .sub-navigations-page-another-style__sub-navigation-link {
    font-size: 15px;
  }

  .sub-navigations-page-another-style__sub-navigation-name {
    padding: 10px;
    font-size: 18px;
  }
}