html {
    scroll-behavior: smooth;
  }

  .max-t {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3; /* number of lines to show */

    -webkit-box-orient: vertical;
 }

 .bg-blackk {
  background-image: linear-gradient(to right top, #3FA8F4, black);
}

.bg-white {
  background-image: linear-gradient(to right top, white, #009EF7);
}

.bg-grey {
  background-image: linear-gradient(to right top, white, #999999);
}

.bg-fade {
  background-image: linear-gradient(to right top, #01C3C3, green);
}

.hidden{
display: none;
}


.ml-5, .mx-5 {
  margin-left: 3rem!important;
}

@media (min-width: 768px){
.ml-md-0, .mx-md-0 {
  margin-left: 0!important;
}
}