#appzaim .cards {
    padding-bottom: 20px;
};

@media (min-width: 992px) {
    #appzaim .cards .cards__footer {
        font-size: 10px;
        display: none;
    }
}

#appzaim .cards .cards__footer {
   
    display: none;
}

#appzaim .header-logo a.--long img {
    max-width: 45px;
    max-height: 55px;
}

#appzaim .main .main__p {
    margin-left: 10px;
    margin-right: 10px;
}

body {
    background-color: #efefef;
}

#appzaim .cards .cards__button {
    background-color: rgba(13, 41, 56, 0.9);
}

#appzaim .cards .card__wrap {
    box-shadow: none;
}

#appzaim .inner {
  max-width: none !important;}

#appzaim .main {
  background-color: #f2fae6;
  max-width: none !important;
}

.card__container {
  margin: 0px 30px;
}

.main__container {
  padding: 15px 30px;
}

.header-container {
  display: none !important;
}



.marquee {
  width: 100%;
  overflow: hidden;
  background: #fff;
  white-space: nowrap;
  box-sizing: border-box;
  padding: 20px 0;
}

.marquee__content {
  display: inline-flex;
  animation: marqueeAnim 30s linear infinite;
}

.marquee__content span {
  padding-right: 5px; 
}

@keyframes marqueeAnim {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  #appzaim .main .main__p {
    font-size: 13px;
    line-height: 20px;
  }
}