/* contact_left */
.contact_left h3 {
  text-transform: capitalize;
  font-size: 42px;
  font-weight: 700;
  color: var(--main-color);
}

.contact_left p {
  margin-top: 1rem;
  font-size: 16px;
  line-height: 26px;
}

.company_info {
  margin-top: 2rem;
}

.company_info a {
  display: flex;
  gap: 5px;
  font-size: 18px;
  color: #434343;
  margin-bottom: 1rem;
}
.company_info a:hover {
  color: var(--main-color);
}
.company_info a i {
  margin-top: 3px;
  color: var(--main-color);
  font-size: 25px;
}

.map_wrapper iframe {
  width: 100%;
}

.banner_form {
  background-color: var(--white-color);
  padding: 2rem;
  border-radius: 10px;
  border: 1px solid #ccc;
  border-top: 6px solid var(--main-color);
}

.banner_form h3 {
  text-transform: capitalize;
  font-size: 32px;
  color: var(--main-color);
  font-weight: 700;
  margin-bottom: 1rem !important;
}

.banner_input input,
.banner_input select,
.banner_input textarea {
  width: 100%;
  margin-top: 12px;
  border: 1px solid #ccc;
  padding: 10px;
  outline: none;
}

.banner_input input[type="file"] {
  padding: 10px;
  border: 1px solid #ccc;
  background-color: white;
  width: 100%;
  margin-top: 12px;
  cursor: pointer;
}


.company-info{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}
.company-info a{
    display: flex;
    gap: 3px;
    align-items: center;
    color: #000;
}
.company-info a i{
    color: var(--main-color);
    font-size: 21px;
}
.company-info a:hover{
    color: var(--main-color);
    transition: ;
}
/* 
.custom-file-input input{
    width: 100%;
    margin-bottom: 12px;
    border: 1px solid #ccc;
    padding: 10px;
    outline: none;
}

.custom-file-input {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.custom-file-input input[type="file"] {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  cursor: pointer;
}

.custom-file-label {
  padding: 8px 12px;
  border: 1px solid #ccc;
  display: inline-block;
  background: #f8f8f8;
  cursor: pointer;
} */

@media (max-width: 992px) {
  .banner_form {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .banner_form {
    margin-top: 1rem;
    padding: 1rem;
  }

  .company_info a {
    font-size: 16px;
  }

  .banner_form h3,
  .contact_left h3 {
    font-size: 25px;
  }
  .contact_left p {
    margin: 10px 0 !important;
  }
  .company_info a i {
    font-size: 22px;
  }
}
