.Contact {
  height: fit-content;
}
.Contact .container {
  height: fit-content;
}
.Contact .card {
  height: fit-content;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px;
  margin-top: 50px;
  box-shadow: none;
}
.Contact .card iframe {
  border-radius: 15px;
  width: 70%;
  height: 35rem;
}
.contact_details{
  margin-right: 10px;
}
.contact_details h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
.contact_details p {
  font-size: 20px;
  font-weight: 400;
  color: #555555;
  margin-bottom: 10px;
}

.contact_details .col .row {
  justify-content: start;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.contact_details .col .row p {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 0;
}
.get_in_touch {
margin-top: 50px;
}
.get_in_touch .col{
  align-items: center;
}
.get_in_touch h2 {
  color: var(--primary-color);
  font-size: 32px;
  margin-bottom: 10px;
  font-weight: 600;
}
.get_in_touch p {
  font-size: 20px;
  font-weight: 400;
  color: #676767; 
margin-bottom: 20px;}
.get_in_touch form {
  width: 60%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.get_in_touch form input,
.get_in_touch form textarea {
  padding: 15px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-family: poppins;
 
}
.get_in_touch form .row .form_control {
  width: 48%;
}
.form_control {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.get_in_touch form input:focus,
.get_in_touch form textarea:focus {
  outline: none;
  box-shadow: 0 0 5px var(--primary-color);
}
.get_in_touch form input::placeholder,
.get_in_touch form textarea::placeholder {
  color: #999999;
  font-weight: 20;
  
}

.get_in_touch form button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 5px;
  font-weight: 600;
  font-size: 20px;
  cursor: pointer;
}