:root {
  --red: #fafafa;
}
.sec-top-contact {
  width: 100%;
  height: auto;
  text-align: center;
}
.sec-top-bg {
  width: 100%;
  height: 500px;
  background-image: url(./images/contact-top-bg2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  background-color: rgba(255, 255, 255, 0.75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 2000px;
  margin: 0 auto;
  
}
.sec-top-bg h1 {
  font-size: 4em;
  font-family: 'josefin';
  margin: 0 auto;
  margin-top: 1.5em;
}
.h2-div {
  width: 100%;
  height: auto;
  text-align: center;
  color: black;
  padding: 4em 0;
  padding-bottom: 0;
  font-family: 'heebo'; 
}
.h2-div h2 {
  /* width: 34ch; */
  margin: 0 auto;
  text-align: center;
}
.sec-form {
  width: 100%;
  height: auto;
  max-width: 2000px;
  padding-bottom: 3em;
  margin: auto;
}
.form-img-div {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  
}
.form-container {
  width: 40%;
  /* max-width: 400px; */
  height: 650px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgb(15, 15, 15);
  z-index: 1;
  
}
.contact-container {
  width: 80%;
  max-width: 400px;
}
.input-box {
  width: 90%;
  height: auto;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 2em;
  justify-content: center;
  
}
.input-box input::placeholder, textarea::placeholder {
  color: rgb(255, 255, 255);
  opacity: 1;
}
.input-box input {
  background-color: rgba(250, 250, 250, 0);
  border-style: none;
  font-family: 'tenor';
  padding-top: 2px;
  outline: none;
  border-bottom: 1px solid #ffffff;
  color: #fff;

}
.input-box input:focus {
  background-color: rgb(33, 33, 33);
  
} 
.img-div {
  width: 60%;
  height: 650px;
  display: flex;
  
}
.img-div img {
  width: 33.333%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

/* Message Imput Box */
#comments {
  width: 100%;
  grid-column: span 2;
  margin-left: 0;
  height: 80px;
  padding: 0.5em;
  background-color: rgba(250, 250, 250, 0);
  border-radius: 2px;
  border-style: none;
  font-family: 'tenor';
  font-size: 1em;
  outline: none;
  border: 1px solid #ffffff;
  color: #ffffff;
}
#comments:focus {
  background-color: rgb(33, 33, 33);
}

input,
select {
  margin: auto;
  height: 40px;
  font-size: 1em;
  width: 100%;
  padding-left: 5px;
}

input:focus {
  background-color: rgb(208, 163, 160);
}

.btn {
  width: 180px;
  height: 50px;
  border-radius: 500px;
  border: none;
  background-color: #fff;
  color: #000;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition: background-color 0.3s ease-in-out;
  padding-top: 2px;
  margin: 0 auto;
  transform: scale(0.8);
}
.btn::after {
  content: '';
  position: absolute;
  width: 190px;
  height: 60px;
  border: 2px solid rgba(255, 255, 255, 1);
  top: -5px;
  left: -5px;
  border-radius: 500px;
  /* border-color: #EFCB4A; */
  border-color: var(--red);
}
 .btn:hover {
  /* background-color: #EFCB4A; */
  background-color: #151515;
}

@media screen and (max-width: 1000px) {
  .sec-top-bg h1 {
    width: 12ch;
    line-height: 1.2em;
    margin-top: 0.5em;
  }
  .h2-div h2 {
    width: 34ch;
  }
  .form-container {
    width: 80%;
  }
  .img-div img:nth-child(2){
    display: none;
  }
  .img-div img:nth-child(3){
    display: none;
  }
  .img-div img:nth-child(1){
    width: 100%;
  }
 
}
@media screen and (max-width: 700px) {
  .sec-top-bg {
    height: 250px;
    font-size: 0.6em;
  }
  .h2-div {
    font-size: 1.1em;
    padding-top: 3em;
  }
  .form-container {
    background-image: url(./images/contact-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-blend-mode: overlay;
  }
  .form-img-div {
    flex-direction: column;
  }
  .img-div {
    display: none;
  }
  .form-container {
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .h2-div {
  
    margin: 0 auto;
    line-height: 2.2em;
    padding-top: 2em;
  }
  .img-div {
    width: 100%;
  }
  .social-container > a {
    width: 25px;
    height: 40px;
  }
}