* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  scrollbar-width: none;
}
::-webkit-scrollbar {
  width: 10px; /* width of the scrollbar */
}
::-webkit-scrollbar-track {
  background: #ffffff; /* color of the track */
}
::-webkit-scrollbar-thumb {
  background: #CBDB29;
}

.container {
  width: 96%;
  background: #fff;
  padding: 30px 0 30px 0;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
}

.back-wrapper {
  display: flex;
  padding: 14px 0 10px 0;
}

.back-img {
  width: 31px;
  height: 31px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  /*background: url("images/Specialised/BackIcon.png");*/
  background-repeat: no-repeat;
  background-size: cover;
  cursor: pointer;
}

/* Upper Heading of cards  */

.heading-wrapper h2 {
  display: flex;
  height: 70px;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  color: #000;
  font-family: "Azo Sans Med";
  font-size: 35px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.cards-wrapper {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
}

/* Cards */

.text_decoration {
  text-decoration: none;
}
.card {
  width: 100%;
  height: 378px;
  flex-shrink: 0;
  background: url(images/Home/Databases/Specialised\ Database.png);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 33px 15px 33px 33px;
}
.card-change {
  background: url("images/Home/Databases/EBSCO.png");
}

.card h3 {
  height: 98%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Med";
  font-size: 40px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.card p {
  flex-shrink: 0;
  color: #fff;
  font-family: "Azo Sans Reg";
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
  margin-top: 8px;
  padding-right: 40px;
}

.mg-tp {
  margin-top: 63px;
}

.art .cards-wrapper .card h3 {
  font-size: 35px;
}

/* Media Queries */

@media (max-width: 1370px) {
  .card {
    height: 350px;
  }

  .card h3 {
    font-size: 34px;
  }

  .card p {
    padding-right: 20px;
  }

  .art .cards-wrapper .card h3 {
    font-size: 30px;
  }
}

@media (max-width: 1100px) {
  .cards-wrapper {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .card {
    padding-left: 18px;
  }
  .card p {
    padding-right: 0;
    font-size: 17px;
  }

  .card h3 {
    font-size: 30px;
  }

  .art .cards-wrapper .card h3 {
    font-size: 27px;
  }

  .heading-wrapper h2 {
    font-size: 32px;
  }
}

@media (max-width: 800px) {
  .art .cards-wrapper .card h3 {
    font-size: 25px;
  }
}

@media (max-width: 710px) {
  .cards-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 400px) {
  .card {
    padding-left: 12px;
    padding-right: 12px;
  }

  .heading-wrapper h2 {
    font-size: 26px;
  }

  .card h3 {
    font-size: 26px;
  }

  .card p {
    font-size: 16px;
  }

  .card {
    height: 300px;
  }
}

@media (max-width: 350px) {
  .card {
    padding-left: 8px;
    padding-right: 8px;
  }

  .art .cards-wrapper .card h3 {
    font-size: 22px;
  }

  .card h3,
  .heading-wrapper h2 {
    font-size: 22px;
  }

  .art .cards-wrapper .card h3 {
    font-size: 20px;
  }

  .card p {
    font-size: 15px;
  }
}