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