/* 3741 */
  /*  MAIN: Slider Section
----------------------------------------------- */

header{
    /* height: 500px; */
}
.header-img {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
  }

  .parallax-header {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .hero-info {
    position: absolute;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 8;
  }
  .hero-info h2 {
    font-size: clamp(1.2rem, 6vw, 3rem);
    line-height: clamp(1.2rem, 6vw, 3rem);
    text-transform: uppercase;
  }
  .hero-info h1 {
    color: var(--white);
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: clamp(2.2rem, 5vw, 3rem);
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  }
  .hero-info h3 {
    color: var(--white);
    font-size: 1.6rem;
    font-weight: normal;
    margin-top: 2em;
  }
  @supports (-webkit-text-stroke: 3px var(--pill)) {
    .hero-info h2 {
      color: transparent;
      -webkit-text-stroke: 3px var(--pill);
      text-shadow: none;
    }
  }

  .hero-image-header {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    background-image: url('/assets/img/contact.jpg')
  }


.get-in-touch{
    display: flex;
    justify-content:start;
    flex-direction: column;
    gap:20px;
    padding: 0 20px;
}
.formcontact>*{
    margin: 20px 0;
}

.get-in-touch .contact-info-group{
    display: flex;
    flex-direction: row;
    align-content: center;
    align-items: center;
    padding: 1rem 1rem;
    border-radius: 5px;
    color: #ffffff;
    background-color: rgb(48, 79, 71,1);

}

.get-in-touch .contact-icon{
    display: flex;
}
.get-in-touch .contact-icon i{
    font-size: 2rem;
    /* color: var(--primary); */
    color: #ffffff;
}
.get-in-touch .contact-content p {
    padding-left: 10px;
    font-size: 1rem;
    font-weight: 400;
}
.get-in-touch .contact-icon i:hover{
    color: #709d65;
}



.contact-container-form{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    margin: 50px 0;
}






  .contact-container-form  .social-media i{
    font-size: 2.5rem;
    margin: 0 20px;
    color: #bfbfbf;
  }

  .contact-container-form  .social-media i:hover{
  color: var(--primary);
  }





/* RESPONSIVE DESIGN */
/* @media only screen and (max-width: 1199px){

 } */

 @media only screen and (max-width: 991px){

 }


 @media only screen and (max-width: 767px){
    .contact-container-form{
        display: flex;
        flex-direction: column-reverse;
    }
    .get-in-touch{
        padding: 0 ;
    }

 }


 @media only screen and (max-width: 479px) {


    .contact-container-form{
        display: flex;
        flex-direction: column-reverse;
    }

    .get-in-touch{
        padding: 0 ;
    }


 }
