.contact_area{
    display: grid;
    grid-template-columns: repeat(2 , 1fr);
    gap: clamp(1.6130rem, 2.6042vw, 3.1250rem); /* 25.81px , 2.6042vw , 50.00px */
}
   .map{
      width: 100%;
      text-align: center;
   }
      .map iframe{
         width: 100%;
         text-align: center;
      }

         
   .contact_area .text_area{
      width: 100%;
      line-height: 2;
   }

@media (max-width: 990px){

   .contact_area{
      display: flex;
      grid-template-columns: unset;
      flex-direction: column;
   }
      .map iframe{
        height: 10.3125rem;
      }


}