
    .contact {
margin: 40px auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 30px;
padding: 0;
}



/* Socials */
.company .socials {
  display: flex;
  gap: .75rem;
  margin-top: 0;
}
.company .socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(2px);
  transition: transform .15s ease, background .15s ease;
}
.company .socials a:hover {
  transform: translateY(-2px);
  background: rgba(0,0,0,0.1);
}
.company .socials svg {
  width: 20px;
  height: 20px;
  fill: #44508A;
}





.company {
	background: #eee; 
	padding: 50px 50px 40px; 
	margin: 70px 0 0 70px;
  border-radius: 6px;
}
.company .info {
  text-align: center; 
  margin-top: -95px; 
  margin-bottom: 30px; 
  z-index: 1;
}
.company h3 {
	margin-top: 25px;
}

.company a {
	color: rgba(81,81,71,1);
	text-decoration: none;
}
@media only screen and (max-width: 700px){
  .company {
    margin: 50px -4% 0;
	  padding: 50px 5%;
    border-radius: 0;
  }
}	


/* form */

.contactform input,
.contactform textarea { 
  width: 100%; 
  margin-bottom: 20px;
}
.contactform h3 {
   margin-top: 0;
}

.contactform input.cta {
  /* width: 250px; */
   margin-top: 35px;
   border: 0;
   border-radius: 6px;
   line-height: 30px;
   /* background: #44508A; */
   background: #e27f3c;
}


.label1 {
	font: 300 17px/24px 'Poppins', sans-serif; 
	   color: rgba(81,81,71,1);
}

.input1 {
	border: solid 1px #CCC;
	border-radius: 3px;
	background: #f9f9f9;
	 color: #666;
	 font: 400 16px/24px 'Poppins', sans-serif; 
	 padding: 3px 7px;
}
.input1::placeholder {
  color: #f9f9f9;
  opacity: 1; /* Firefox */
}

.input1::-ms-input-placeholder { /* Edge 12 -18 */
  color: #f9f9f9;
}

/* .select1 {
	padding: 4px;
	color: #666;
	font: 400 16px/24px 'Poppins', sans-serif; 
} */


/* recaptcha */

.g-recaptcha-outer{
	margin-bottom: -8px;
	padding-left: 12px;
    text-align: left;
    border-radius: 3px;
    background: #f9f9f9;
    border: solid 1px #CCC;
	overflow: hidden;
}
.g-recaptcha-inner{
    width: 290px;
    height: 74px;
    overflow: hidden;
    margin: 0;
}
.g-recaptcha{
    position:relative;
    left: -2px;
    top: -1px;
}



 /*-------------------------------------------
	  messages
  -------------------------------------------*/
  
  .alert {
	padding: 1.25rem 1.5rem;
	font: 500 19px/1.3 'Roboto', sans-serif;
	/*text-align: center;*/
	border-radius: 10px;
	margin-bottom: 40px;
}

.alert-success {
	background: #668B2B;
	border-color: #668B2B;
	color: #FFF;
}

.alert-danger {
	background: #721c24;
	border-color: #721c24;
	color: #FFF;
}

.alert-secondary {
	background: #1F3B47;
	border-color: #1F3B47;
	color: #FFF;
}

@media ( max-width: 768px ) {
	
	.alert  {
		padding: 1.25rem 15px;
		font-size: 17px;
	}
}
