/*Default style*/
.dark-bg {
  background-color: rgb(0, 0, 0);
}
.secondary-heading {
  text-align: center;
  font-size: 26px;
  color: #8d7339;
  line-height: 1.5;
  font-weight: bold;
}
.padding-100 {
  padding: 30px 100px;
}
.grid--3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 30px;
  row-gap: 30px;
}
.sidebar-floating-img {
  width: 30%;
  position: absolute;
  right: -100px;
  top: -60px;
  opacity: 50%;
  transform: rotate(50deg);
  overflow: hidden;
}
/*Default style*/

.contact-form input,
.contact-form textarea {
  background-color: transparent;
  border: 1px solid rgb(137, 116, 0);
}

.contact-section {
  display: flex;
  gap: 150px;
  justify-content: center;
  align-items: center;
}

.contact-form {
  width: 40%;
}

.contact-details ul li {
  list-style: none;
  color: rgb(162, 162, 162);
  padding: 10px 0;
}

@media only screen and (max-width: 600px) {
  /*Default Style*/
  .padding-100 {
    padding: 50px 20px;
  }
  /*Default Style*/
  .contact-section {
    flex-direction: column;
    gap: 50px;
  }

  .contact-form {
    width: 100%;
  }
}
