main {
  margin: 0 auto;
  margin-top: 32px;
  margin-bottom: 50px;

  @media screen and (max-width: 700px) {
    padding: 0 25px;
  }
}

.map {
  /* height: 266px; */
}

iframe {
  width: 100%;
  height: 366px;

  @media screen and (max-width: 390px) {
    height: 140px;
  }
}

.rectangle-box {
  margin-top: 25px;
  border-radius: 25px;
  position: relative;
  padding: 9px;
}

.rectangle-content {
  background-color: #f7f7f7;
  height: 200px;
  width: 100%;
  border-radius: 25px;
  font-size: 24px;
  padding: 28px;

  display: flex;
  justify-content: space-between;
  align-items: center;

  @media screen and (max-width: 1275px) {
    font-size: 20px;
  }

  @media screen and (max-width: 1000px) {
    flex-wrap: wrap;
    height: 270px;
  }

  @media screen and (max-width: 550px) {
    flex-direction: column;
    font-size: 16px;
    padding: 25px 35px;
    align-items: flex-start;
    flex-wrap: nowrap;
  } 
}

.rectangle-content > ul {
  padding-left: 30px;
  font-size: 12px;
}
.rectangle-content > ul > li {
  list-style-type: disc;
}
.rectangle-content > ul > li > span{
  font-size: 24px;
}

.border-top-left {
  position: absolute;
  top: 0;
  left: 0;
}

.border-top-right {
  position: absolute;
  top: 0;
  right: 0;
}

.border-bottom-left {
  position: absolute;
  bottom: 0;
  left: 0;
}

.border-bottom-right {
  position: absolute;
  bottom: 0;
  right: 0;
}

.temp {
  display: block;
  
  @media screen and (max-width: 766px) {
    display: none;
  }
}

.item-content {
  height: 100%;

  @media screen and (max-width: 766px) {
    height: auto;
  }
}