
     section.contact_moty  {
        display: flex;
        flex-direction: column;
        align-items: center;
        max-width: 920px;
        margin: 0 auto;
        position:relative;
        margin-top:100px;
      }
      .Image_gnomo {
        display: flex;
        position: absolute;
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events:none;
      }
      .Image_on_top img {
        width: 100%;
        height: auto;
        object-fit: contain;
      }
      .moty_contact_container {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        justify-items: center;
        width: 100%;
        gap:1rem;
      }
      .contact_block{
        display: flex;
        flex-direction: column;
        align-items: center;
        background-color: #4d4a4a;
        padding: 0;
        margin: 0;
        width: 100%;
        border-radius: 15px;
        justify-content: space-between;
        padding: 1rem 1rem 1.5rem;
        & h3, & p, & a{
          margin:0;
          padding:0;
        }
        & h3{
           font-size: 1.5rem; 
        }
        & p{
          font-size: 1rem;
          text-align: center;
        }
        & a{
            font-size: 1.2rem;
            background-color: #ff4f4f;
            padding: 3px 8px;
            border-radius: 11px;
            margin-top: 10px;
            transition: all 0.3s ease;
        }
        & a:hover{
            color: #ff4f4f;
            background-color: white;
        }
        & img:not(.Image_gnomo img) {
          width: 48px;
          height: 48px;
          margin-bottom: 0.5rem;
        }
      }
      
     @media (max-width: 1024px) {
      .moty_contact_container {
        grid-template-columns: 1fr;
        padding: 10px;
      }
      .Image_gnomo {
        left: 13%;
        width: 150px;
      }
      .contact_moty > h2{
          z-index:1;
      }
    }