
/*==================| Site Hero |=================*/
.site-hero{
    position: relative;
    width: 100%;
    height:50%;
    background: url('../images/cta.jpg');
    background-size: cover;    
} 


.site-hero::after{
    content:'';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgb(0,0,0,0.6);
   opacity: 0.8;
}
.site-hero .hero-text{
   position: relative;
   top:-5em;
   color: #fff;
   padding: 10em 0;
   z-index: 10;
   animation: slideInFromLeft 3s ease-in;
}
.site-hero h1{
    font-size: 5rem;
    font-weight: bold;   
}
.site-hero p{
   font-size: 2rem;
   margin: .5em;
   padding: .5em 0;
}
.site-hero,
.bg-parallax{
    background-attachment:fixed;
}
/*---------------------------------------------------------------*/

/*==================| Contact |==========================*/
 
.contact  .social {margin-top: 1em;}
.contact  .social a{
    margin-top: 1em;
    color: var(--primary-color);
    padding: 0 1em;
}
.contact  .social .fa{font-size: 2rem;}
.contact .contact-info ul{margin-top: 1em;}
.contact .contact-info ul li a{color: var(--primary-color);}
.contact .contact-form{margin-top: 1em;}
.contact .contact-form input[type='text'],input[type='email']{
    margin-top: 1em;
    padding: 1em 2em;
    border:.2em solid var(--primary-color);
    width: 100%;
  
}
.contact .contact-form input:focus{outline: none;}
textarea{
    margin-top: 1em;
    padding: 1em 2em;
    border:.2em solid var(--primary-color);
    width: 100%;
   
}
.contact .contact-form .btn-primary{
    width:50%
}
textarea:focus{outline: none;}
/*-----------------------------------------------------------*/
/*---------------------------------------------------------------*/
/*-----------------------------------------------------------*/
 
/*Tablets and under */
 
@media only screen and (min-width:700px) {
     
   
    .contact-content{
     display:grid;
     grid-template-columns:50% 50%;
     gap: 4em;
 }
 }
