/*
    Paleta de Cores
    #0d0d0d
    #8c7916
    #bfa41f
    #f2d027
    #f2f2f2

*/
/*
    Importação de fontes.
    font-family: 'Montserrat', sans-serif;
*/

.qsomos{
    display: flex;
    flex-wrap: wrap;
    background-color: #F2D027;
    color: #0D0D0D;
    
}
.container.qsmos-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 50px;
    margin-bottom: 50px;
    align-items: center;
    gap: 20px;
}
.qscontent{
    display: flex;
    flex-direction: column;
}
.qstitle{
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
}
.qstxt{
    max-width: 500px;
    width: 100%;
    text-align: justify;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
}
.qscarousel{
    display: flex;
}
@media (max-width:500px) {
  .qscarousel{
    width: 350px;
  }
}


/***Galeria de Imagens***/
.pic-ctn {
    width: 400px;
    height: 200px;
  }
  
  @keyframes display {
    0% {
        transform: translateX(200px);
        opacity: 0;
      }
      10% {
        transform: translateX(0);
        opacity: 1;
      }
      20% {
        transform: translateX(0);
        opacity: 1;
      }
      30% {
        transform: translateX(-200px);
        opacity: 0;
      }
      100% {
        transform: translateX(-200px);
        opacity: 0;
      }
  }
  
  .pic-ctn {
    position: relative;
    width: 400px;
    height: 300px;
  }
  .pic{
    width: 500px;
    height: 400px;
    object-fit: contain;
  }
  
  .pic-ctn > img {
    position: absolute;
    top: 0;
    left: calc(50% - 100px);
    opacity: 0;
    animation: display 15s ease infinite;
  }
  
  img:nth-child(2) {
    animation-delay: 3s;
  }
  img:nth-child(3) {
    animation-delay: 6s;
  }
  img:nth-child(4) {
    animation-delay: 9s;
  }
  img:nth-child(5) {
    animation-delay: 12s;
  }


  .n2-ss-slider .n2-ss-layer:not([data-sstype=col]) {
    align-self: var(--ssselfalign);
    pointer-events: none;
}
  