	

.container {

  align-items: center;
  justify-content: center;
  font-family: sans-serif;
}

.card {
  background-color: #fff;
  padding: 1rem;
  border-radius: 5px;
  border: 1px solid #bbb;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0rem;
  width:802px;
  margin:auto;
  margin-bottom:100px
  
}

.left {
  width: 387px;
  overflow: hidden;
  border-radius: 5px;
}

.left img {
  width: inherit;
  object-fit: cover;
  transform: scale(1.0);
}

.right .contact {
  display: flex;
  gap: 1rem;
  margin-right: 1rem;
}
.right {
	
	padding:50px;
}

.right h2 {
	
	   color: #b24b10;
    font-weight: bold;
}
.form, .address {
  display: flex;
  flex-direction: column;
  padding: 1rem 0 0;
}

.form input, textarea {
  width: 100%;
  outline: none;
  background: none;
  border: none;
  border-bottom: 2px solid #000;
  padding: 10px 0;
  margin: 5px 0;
}

.usersubmit input {
  background-color: #1f5ec7;
  color: white;
  font-weight: bold;
  border-radius: 5px;
  border: none;
  width: min-content;
  padding: 15px;
  margin-bottom: 0;
  cursor: pointer;
  transition: 0.3s;
}

.usersubmit input:hover {
  background-color: #b24b10;
}

.address {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

h4 {
  margin-bottom: 5px;
}

@media screen and (max-width: 700px) {
  .card {
    flex-direction: column;
  }
  
  .left {
    width: 60vw;
    height: 40vh;
  }
}

@media screen and (max-width: 350px) {
  .container {
    overflow: hidden;
  }
  .left {
    height: 20vh;
  }
  .contact {
    flex-direction: column;
  }
}

@media only screen and (max-width: 767px){
	.card {
    background-color: #fff;
    padding: 1rem;
    border-radius: 5px;
    border: 1px solid #bbb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0rem;
    width: 100%;
    margin: auto;
    margin-bottom: 100px;
}
	
}
	.email h4, .location h4{
	
	color:#1f5ec7
	}