 .contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--bs-page-background);
    height: 100vh;
  }
  .contact-page a {
    color: var(--bs-body-text-color) !important;
    text-decoration: none !important;
  }
  .contact {
    color: var(--bs-body-text-color);
    margin-top: 85px;
  }
  .contact-head {
    overflow-y: hidden;
    display: flex;
    justify-content: center;
  }
  .contact-header {
    margin-bottom: 3rem;
    text-align: center;
    font-family: "Playfair Display";
    font-size: 2.5rem;
  }

  .contact-container {
    display: flex;
    gap: 1.5rem;
    width: 882px;
  }

  .contact-card {
    width: 420px !important;
    max-width: 430px !important;
    height: 9rem;
    max-height: 9rem;
    display: flex;
    padding: 25px;
    border: 1px solid white;
  }
  .contact-body-contents {
        display: flex;
        justify-content: center;
    }
  .contact-pic {
    margin: auto 16px auto 0;
  }
  
  .contact-logo{
    border-radius:60px;  
    height: 95px;
    margin-right: 15px;
  }
  
  .contact-details-container {
    font-size: 16px;
    line-height: 24px;
    display: flex;
    flex-flow: column;
    justify-content: center;
    font-family: 'Gotham';
  }

  .contact-details-container div:first-child {
    margin-top: 4px;
    margin-bottom: 10px;
  }

  @media (min-width: 300px) and (max-width: 900px) {
      
        .contact-container {
            width: 96%;
            justify-content: flex-start;
            overflow-y: scroll;
            max-width: 880px;
            margin: 2% !important;
        }
        
        .contact-card{
            width: 100%;
            padding: 25px 10px;
            max-width: 360px !important;
        }
        .contact-details-container {
            font-size:14px;
        }
        .mob-img{
            height:80px;
        }
        .mob-no-img{
            height:80px;
            margin-top: 21px;
        }
        .contact{
            margin-top: 0px;
        }
    }
    
    @media (min-width: 300px) and (max-width: 500px) {
        .contact-container {
            justify-content: center;
        }
        .contact-body-contents {
            display: flex;
            justify-content: center;
        }
    }
    @media (min-width: 500px) and (max-width: 900px) {
        .contact-container {
            justify-content: flex-start;
        }
    }