 
 
 .contact_list {
    width: fit-content;
    display: flex;
    gap: 3rem;
    margin-inline: auto;
    margin-top: 5rem;
    align-items: center;
    justify-content: center;
 }

 .contact_item {
    background:  #2f82ff;
    color: var(--color-g-0);
    color: #fff;
    font-size: 1.7rem;
    border-radius: 50%;
    width: 3rem;
    aspect-ratio: 1/1;
    display: grid;
    place-items: center;
 }
 .address_detail{
   text-align: center;
   margin-top: 4rem;

 }
 .address_detail h2 {
   margin-bottom: 2rem;
 }
 .address_detail ul li {
   margin-bottom: 1rem;
 }
 .address_detail ul li h4 {
   margin-bottom: 0.5rem;
 }

 .location {
   display: flex;
   justify-content: center;
   margin: 7rem 0;
 }
.location iframe {
   width: 100%;
}
 @media screen and (max-width: 600px) {
   .contact_list {
      gap: 1rem;
   }
 }