.explore_container {
  margin-top: 50px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
}

.explore_container .info {
  min-width: 210px;
  width: 210px;
  margin: 10px;
}

.explore_container .info h1 {
  font-size: 30px;
  line-height: 40px;
  margin-bottom: 10px;
}

.explore_container .info p {
  font-size: 14px;
  line-height: 20px;
  color: #555;
  margin-bottom: 10px;
}

.explore_container .info button {
  padding: 10px 30px;
  font-size: 16px;
  font-weight: 400;
  background-color: green;
  color: #fff;
  border: none;
  border-radius: 20px;
  cursor: pointer;
}

.explore_container .image-container {
  width: 100%;
  display: flex;
  height: 255px;
  justify-content: space-evenly;
  align-items: flex-end;
  gap: 10px;
}

.explore_container .image {
  position: relative;
  width: 250px;
  height: 220px;
  background-color: rgb(214, 247, 236);
  border-radius: 20px;
}

.explore_container .image img {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: auto;
  width: 70%;
  height: auto;
}

.explore_container .image:first-child {
  box-shadow: rgba(0, 0, 0, 0.15) 0px 15px 25px, rgba(0, 0, 0, 0.05) 0px 5px 10px;
}

.explore_container .image:first-child span {
  position: absolute;
  width: 22px;
  height: 22px;
  background-color: rgb(41, 40, 40);
  border-radius: 50%;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: auto;
}

.explore_container .image p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 30px;
}

@media (max-width: 1050px) {
  .explore_container {
    gap: 0;
  }

  .explore_container .image-container {
    overflow-x: scroll;
    height: 275px;
    padding-bottom: 15px;
  }

  .explore_container .image-container::-webkit-scrollbar {
    display: none;
  }

  .image-container .image {
    min-width: 250px;
  }
}

@media (max-width: 550px) {
  .explore_container {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 30px;
  }

  .explore_container .info {
    flex: 1;
    width: auto;
    min-width: auto;
  }
}