.h-150 {
  height: 150px;
}
.title {
  font-size: 3rem;
  font-weight: 900;
  font-family: "data bold";
}
.box_content {
  width: 85%;
}
.box_text {
  order: 1;
  transition: opacity ease-in 1s, transform ease-in 500ms;
}
.box_img_contact_us {
  order: 2;
}
.img_contact {
  width: 450px;
  height: 450px;
}
.box {
  width: 40px;
  height: 40px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  transition: all ease-in 200ms;
  cursor: pointer;
}
.title_svg {
  position: absolute;
  width: 80px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 10px;
  font-size: 0.5rem;
  background-color: #fff;
  transition: all ease-in 300ms;
  opacity: 0;
  transform: translateY(-10px);
}
.box:hover > .title_svg {
  opacity: 1;
  transform: translateY(-35px);
}
.box > img {
  width: 35px;
  height: 35px;
}
.box_svg > img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

@media screen and (max-width: 800px) {
  .box_img,
  .img_header {
    display: none;
  }
  .box_content {
    flex-direction: column;
  }
  .box_text {
    order: 2;
  }
  .box_img_contact_us {
    order: 1;
  }
}
@media screen and (max-width: 450px) {
  .title {
    font-size: 2rem;
  }
  .box_text > h2,
  .box_contact_us_link > h2 {
    font-size: 1rem;
  }
  .box_contact_us_link {
    gap: 0.3rem;
  }
  .box_contact_us_link > p > span {
    font-size: 0.8rem;
  }
  .box_svg {
    margin-top: 1rem;
  }
  .box_text > p {
    font-size: 0.7rem;
  }
  .box_svg {
    gap: 0.2rem;
  }
  .box {
    width: 35px;
    height: 35px;
  }
  .box > img {
    width: 28px;
    height: 28px;
  }
  .img_contact {
    width: 350px;
    height: 350px;
    object-fit: cover;
  }
}
.info-box {
  background: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  line-height: 2;
  font-size: 15px;
  color: #333;
  text-align: justify;
}

.info-box .contact p {
  margin: 0;
  font-size: 14px;
  color: #444;
}
