html {
  scroll-behavior: smooth;  
}

.construction-company {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 6vw;
}

.company-image,
.company-content {
  width: 50%;
  height: 100%;
}

.company-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.company-content {
  padding: 0 0 0 50px;
  color: #666;
  line-height: 2;
  font-size: 16px;
}

.company-content a:hover {
  color: #e9010e;
  text-decoration: underline;
}

@media (max-width: 992px) {
  .construction-company {
    flex-direction: column;
    gap: 50px;
  }

  .company-image,
  .company-content {
    width: 100%;
    height: auto;
  }

  .company-content {
    padding: 0;
  }
}

.page-content {
  color: #666;
  line-height: 2;
  font-size: 16px;
}

.page-content img {
  max-width: 100%;
  width: auto;
  display: unset;
}

.page2 .bc svg {
  width: 15px;
  height: 20px;
}

.search_div button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: #ce0021;
  width: 190px;
  border-radius: 6px;
  height: 100%;
  border: none;
}

@media screen and (max-width: 768px) {
  .search_div button {
    width: 60px;
  }
}


