@charset "utf-8";
.container-fluid {
  background-image: -webkit-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: -moz-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: -o-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
}
navbar.navbar-expand-lg.navbar-light.bg-light {
  background-image: -webkit-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: -moz-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: -o-linear-gradient(
    270deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
  background-image: linear-gradient(
    180deg,
    rgba(168, 168, 168, 1) 0%,
    rgba(255, 255, 255, 1) 33.68%,
    rgba(255, 255, 255, 1) 58.02%,
    rgba(168, 168, 168, 1) 100%
  );
}
.col-lg-6 {
  padding-left: 100px;
  padding-top: 30px;
}
.whattapp {
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: Arial, sans-serif;
  background: linear-gradient(#e6e5e5, #bbbbbb);
}
.contact-container {
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
}
.contact-left {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.contact-left-title h2 {
  font-weight: 600;
  color: #000000;
  font-size: 40px;
  margin-bottom: 5px;
}
.contact-left-title hr {
  border: none;
  width: 120px;
  height: 5px;
  background-color: #000000;
  border-radius: 10px;
  margin-bottom: 20px;
}
.contact-inputs {
  border: none;
  width: 400px;
  height: 50px;
  outline: none;
  padding-left: 25px;
  font-weight: 500;
  color: #666;
  border-radius: 50px;
}
.contact-left textarea {
  height: 140px;
  padding-top: 15px;
  border-radius: 20px;
}
.contact-inputs:focus {
  border: 2px solid #ff994f;
}
.contact-inputs::placeholder {
  color: #a9a9a9;
}
.contact-left button {
  display: flex;
  align-items: center;
  padding: 15px 30px;
  font-size: 16px;
  color: #fff;
  gap: 10px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(90deg, #ff994f, #fa6d86);
  cursor: pointer;
}
.contact-left button img {
  height: 15px;
}
contact-right img {
  width: 500px;
}
@media (max-width: 800px) {
  .contact-inputs {
    width: 80vw;
  }
  .contact-right {
    display: none;
  }
}
