/* baptized by AI by ur boy frank*/

.fancy-quote-container {
  padding: 3rem 2rem !important;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: rgb(23,24,31);
  background: linear-gradient(180deg, rgba(23,24,31,1) 0%, rgba(25,27,34,1) 50%, rgba(23,24,31,1) 100%);
  border-radius: 1rem;
  font-family: var(--heading-font-family);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.fancy-quote {
  border-radius: 1rem;
  padding: 0 0 20px 0;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fancy-quote-container .default-content-wrapper{
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 1rem;
}

.fancy-quote-container .default-content-wrapper h4{
    max-width: 100%;
    align-self: center;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 0.75rem;
    font-family: var(--heading-font-family);
    letter-spacing: -1px;
}

.fancy-quote-container .default-content-wrapper h6{
    max-width: 100%;
    align-self: center;
    text-align: center;
    margin-top: 0.75rem;
    font-size: 1.15rem;
    font-weight: 400;
    font-family: var(--heading-font-family);
    letter-spacing: -1px;
}

.fancy-quote-container .default-content-wrapper h5{
    max-width: 100%;
    align-self: center;
    text-align: center;
    font-size: 1.35rem;
    font-weight: 400;
    margin: 0;
    font-family: var(--heading-font-family);
    letter-spacing: -1px;
}

.fancy-quote-container .default-content-wrapper h6 img{
    width: 150px;
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 0.75rem;
}

.fancy-quote img{
    width: 50px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-radius: 1rem;
}

.fancy-quote-container a{
    text-decoration: none;
    color: #62a814;
    transition: .25s ease;
}

.fancy-quote-container a:hover{
    color: #406E0C;
}

.fancy-quote-container p{
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 300;
}

@media (max-width: 1296px) {
  .fancy-quote-container {
    padding: 2rem 1rem !important;
    margin: 0.25rem 1rem;
  }
  
  .fancy-quote {
    padding: 1rem;
  }
  
  .quote-text {
    font-size: 1.25rem;
  }
  
  .quote-logo {
    max-width: 150px;
  }
}

@media (max-width: 768px) {
  .fancy-quote-container {
    padding: 2rem 1rem !important;
    margin: 0.25rem 1rem;
  }
  
  .fancy-quote {
    padding: 1rem;
  }
  
  .quote-text {
    font-size: 1.25rem;
  }
  
  .quote-logo {
    max-width: 150px;
  }
}