#recommendations {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    background-image: linear-gradient(to right, rgb(20, 95, 99), rgb(38, 178, 186));
    padding: 50px;
    font-family: 'Assistant', sans-serif;
}

#recommendations h2 {
    color: white;
    font-size: clamp(26px, 3vw, 30px);
    font-weight: 200;
}

#recommendations p {
    color: white;
    font-weight: 100;
    font-size: clamp(18px, 3vw, 20px);
}

#txt {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#txt span {
    font-weight: 200;
    float: left;
    color: white;
}

#quoteA {
    width: 50%;
}

   @media (max-width: 1300px) {
    #quoteA {
       width: 100%;
     }
   }

#quoteA img {
    width: 60px;
    float: right;
}

   @media (max-width: 1300px) {
    #quoteA img {
       width: 30px;
     }
   }

#quoteB {
    width: 50%;
}

   @media (max-width: 1300px) {
    #quoteB {
       width: 100%;
     }
   }

#quoteB img {
    width: 60px;
    float: left;
}

   @media (max-width: 1300px) {
    #quoteB img {
       width: 30px;
     }
   }