* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #fff !important;
}

.contact-hero {
  width: 100%;
  height: 70vh;
  background-image: url(../images/contact-b.jpg);
  background-size: cover;
  position: relative;
  background-position: center;
}

.contact-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.inside-contact-hero {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
.inside-contact-hero h1 {
  color: #fff;
  text-transform: uppercase;
  font-size: 55px;
  font-family: baskervville;
  letter-spacing: 1px;
}
.inside-contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.c-contact-section {
  padding: 4rem 2rem;
  width: 100%;
}
.iccs {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.iccs-left {
  width: 45%;
}
.iccs-right {
  width: 50%;
  padding: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
}
.small-heading {
  font-family: mulish;
  font-weight: 600;
  position: relative;
  padding-left: 2.7rem;
  letter-spacing: 1px;
}
.small-heading::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 2px;
  background-color: black;
  top: 50%;
  left: 0;
}
.big-h {
  font-family: Baskervville;
  font-size: 30px;
  margin: 1rem 0;
  font-weight: 600;
  text-transform: uppercase;
}
.big-h + p {
  font-family: mulish;
  line-height: 21px;
}
.contact-form {
  background-color: yellowgreen;
}
.row {
  display: flex;
}
.inside-row {
  margin: 1rem;
  display: flex;
  flex-direction: column;
}
.row input,
.row textarea {
  padding: 0.5rem;
}
.row label {
  margin-bottom: 0.5rem;
}

.details {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.detail-card {
  width: 50%;
  padding: 1rem;
  display: flex;
  align-items: center;
  font-family: mulish;
}
.detail-card img {
  width: 30px;
  margin-right: 1rem;
}

.row {
  width: 100%;
  font-family: mulish;
}
.inside-row {
  margin: 1rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.row input,
.row textarea {
  font-family: mulish;
}

@media (max-width: 900px) {
  .iccs-right {
    padding: 1rem;
  }
  .detail-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .iccs-right {
    width: 60%;
    padding: 2rem;
  }
}

@media (max-width: 765px) {
  .iccs {
    flex-direction: column;
  }
  .iccs-left {
    width: 100%;
  }
  .iccs-right {
    width: 100%;
    padding: 2rem;
  }
  .detail-card {
    flex-direction: unset;
  }
}

@media (max-width: 600px) {
  .iccs-right {
    padding: 0;
  }
}

@media (max-width: 465px) {
  .row {
    flex-direction: column;
  }
  .details {
    flex-direction: column;
  }
  .detail-card {
    width: 100%;
  }
}
