footer {
    padding: 4rem 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    height: auto;
    width: 100%;
    background-color: var(--yellow);
  
    .footer-logo-phone {
      display: flex;
      flex-direction: column;
      align-items: center;  
      margin-left: 32px;  
      height: 90%;             

      p{
        margin-top: 32px;
        color: var(--main2);
        margin-bottom: 0;
      }

    }
  
    .footer-logo-phone img {
      height: 200px;
      filter: drop-shadow(4px 4px 4px rgba(0,0,0,0.6));
    }
  
    .footer-logo-phone .footer-phone {
      margin-top: 15px;
      font-size: 1.2rem;
      text-decoration: none;
      color: var(--main2);
  
      &:hover {
        text-decoration: underline;
      }
    }
  
    iframe {
      flex: 1;
      padding: 26px;
      box-sizing: border-box;
    }
  }
  
  @media (max-width: 808px) {
    footer {
      height: auto;
      flex-direction: column;
  
      .footer-logo-phone {
        margin-left: 0;     
        align-items: center;
        width: 90%;
        margin-bottom: 32px;
      }
  
      .footer-logo-phone img {
        width: 80%;
        height: auto;
      }
  
      .footer-logo-phone .footer-phone {
        margin-top: 16px;
        width: 100%;
        text-align: center;
      }
  
      iframe {
        margin-top: 32px;
        flex: unset;
        width: 90%;
        height: 400px;
        padding: 0;
      }
    }
  }
  