footer {
    display: flex;
    justify-content: space-between;
 }
  
 .brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
 }
  
 .copyright {
    font-weight: normal;
    color: #909090;
    margin-bottom: 0px;
 }
  
 /* Desktop */
 @media (min-width: 1024px) {
    footer {
        padding: 40px max(10%) 60px max(10%);
    }
    .copyright{
        font-size: 14px;
    }
    .copyright-mobile {
        display: none;
    }
    .footer-logo {
        width: 165px;
        height: 33px;
    }
 }
  
 /* Tablet */
 @media (min-width: 768px) and (max-width: 1023px) {
    footer {
        padding: 35px max(19%) 60px max(19%);
    }
    .copyright{
        font-size: 12px;
    }
  
    .copyright-mobile {
        display: none;
    }
  
    .footer-logo {
        width: 140px;
        height: 28px;
    }
 }
  
 /* Mobile */
 @media (max-width: 767px) {
    footer {
        padding: 40px 7.4% 60px 7.4%;
        flex-direction: column;
        gap: 30px;
    }
    .copyright{
        display: none;
    }
    .footer-logo {
        width: 110px;
        height: 22px;
    }
  
    .copyright-mobile {
        font-size: 12px;
        font-weight: normal;
        color: #909090;
        margin-bottom: 0px;
    }
 }
  
  
 /* about-us */
 .us-heading {
    font-weight: bold;
    color: #03867C;
 }
  
 .us {
    font-weight: normal;
    color: #909090;
 }
  
 .us-container{
    margin-bottom: 24px;
 }
  
 .about>div:last-child{
    margin-bottom: 0px;
 }
  
  
    /* Desktop */
    @media (min-width: 1024px) {
        .us-heading {
            font-size: 16px;
            line-height: 24px;
            margin: 0px
        }
  
        .us {
            font-size: 14px;
            line-height: 24px;
            margin: 0px
        }
    }
  
    /* Tablet */
    @media (min-width: 768px) and (max-width: 1023px) {
        .us-heading {
            font-size: 16px;
            line-height: 24px;
            margin: 0px
        }
  
        .us {
            font-size: 14px;
            line-height: 24px;
            margin: 0px
        }
    }
  
    /* Mobile */
    @media (max-width: 767px) {
        .us-heading {
            font-size: 16px;
            line-height: 24px;
            margin: 0px
        }
  
        .us {
            font-size: 14px;
            line-height: 24px;
            margin: 0px
        }
    }
 