@import url(header.css);
@import url(footer.css);
@import url(scrollBar.css);

h1 {
  margin: 0;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(270deg, rgb(37, 43, 45) 0%, rgb(0, 0, 0) 74%);
  font-size: 14px;
  background: linear-gradient(270deg, rgb(37, 43, 45) 0%, rgb(0, 0, 0) 74%);
  font-family: 'Poppins',serif;
}
.container {
  width: 80%;
  margin: 50px auto;
}
.contact-box {
  background: #fff;
  display: flex;
}
.contact-left {
  flex-basis: 60%;
  padding: 40px;
  
}
.contact-right {
  flex-basis: 40%;
  padding: 40px;
  background: linear-gradient(270deg, rgb(153 14 14) 0%, rgb(103 10 10) 52.06%, rgb(0 0 0) 100%);
  color: #fff;
}
.contact-right h3{
  letter-spacing: 0.2em;
}
.container h2 {
  margin-bottom: 10px;
  color:white;
}
.container p {
  margin-bottom: 40px;
  color:white;
}
.input-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.input-row .input-group {
  flex-basis: 45%;
}
input {
  width: 100%;
  border: none;
  border-bottom: 1px solid #ccc;
  outline: none;
  padding-block-end: 5px;
}
textarea {
  width: 100%;
  border: 1px solid #ccc;
  outline: none;
  padding: 10px;
  resize:none;
  height:80px;
}
label {
  margin-bottom: 6px;
  display: block;
}
.send-button{
  text-decoration: none;
    color: black;
    border: 1px solid currentColor;
    padding: 0.8em 2.4em;
    box-shadow: 4px 4px 10px rgb(254 0 0);
    font-weight: 500;
    font-size: 1em;
    line-height: 1.5em;
    letter-spacing: 0.2em;
    width: 11em;
    margin-top: 2em;
}
.contact-left h3 {
  font-weight: 600;
  margin-bottom: 30px;
}
.contact-right h3 {
  color: white;
  font-weight: 600;
  margin-bottom: 30px;
}
tr td:first-child {
  padding-right: 20px;
}
tr td {
  padding-block-start: 20px;
}
.map {
  margin-block-start: 20px;
}
.map iframe {
  border-radius: 10px;
  border-color: black;
}
@media only screen and (max-width: 600px) {
  .contact-box {
    display: block;
  }
  .input-row {
    display: block;
  }
  .name-ph {
    margin-bottom: 15px;
  }
  .email-ph {
    margin-bottom: 15px;
  }
  
}
