:root{
  --clr-blue-dark : rgb(7,35,41);
}

div.course{
  padding: 16%;
  padding-top: 80px;
  padding-bottom: 0px;
}
div.course h1{
  text-align: center;
  color: yellow;
  background-color: black;
}
div.course p{
  /* padding: 20%;
  padding-top: 0;
  padding-bottom: 0; */
  text-align: justify;
  line-height: 30px;
}

/* Font */
/* @import url('https://fonts.googleapis.com/css?family=Quicksand:400,700'); */

h1 {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
}

.card_image img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.card_content{
  margin: 1rem;
  background-color: var(--clr-blue-dark);
}
.card_content a{
  text-decoration: none;
}

.card_content h2{
  font-size: 40px;
}
.card_content p{
  font-size: 20px;
}
.btn {
  color: #ffffff;
  padding: 0.8rem;
  font-size: 14px;
  text-transform: uppercase;
  border-radius: 4px;
  font-weight: 400;
  display: block;
  width: 100%;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.2);
  /* background: transparent; */
  /* background-color:rgb(216, 216, 38); */
  background-color: rgb(11, 63, 93);
}

.btn:hover {
  /* background-color: rgba(255, 255, 255, 0.12); */
  background-color: rgb(199, 199, 33);
  /* background: linear-gradient(to bottom left, #088862 40%, #07b37f 100%); */
}

ul.cards {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-top: 40px;
}

li.cards_item {
  display: flex;
  padding: 1rem;
  border-radius: 0.5rem;
  /* padding:  0 20%; */
}

/* .cards_item:hover{
  transform: scale(1.05);
} */

@media (min-width: 40rem) {
  /* div.course{
    padding: 0px;
  } */
  .cards_item {
    width: 50%;
  }
}

@media (min-width: 56rem) {
  /* div.course{
    padding: 0px;
  } */
  .cards_item {
    width: 33.3333%;
  }
}

.card {
  /* background-color: white; */
  background-color: var(--clr-blue-dark);
  border-radius: 0.50rem;
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.card_content {
  padding: 1rem;
  /* background: linear-gradient(to bottom left, #EF8D9C 40%, #FFC39E 100%); */
  /* background: linear-gradient(to bottom left, #69b4e6 40%, #3999d1 100%); */
  background-color: var(--clr-dark-blue);
  /* box-shadow: 6px 2px 6px 2px  rgb(14, 182, 204); */
  
}
.card_content h2{
  font-size: 14px;
}
.card_content p{
  font-size: 12px;
}

.card_title {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: capitalize;
  margin: 0px;
}

.card_text {
  color: #ffffff;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 1.25rem;    
  font-weight: 400;
}
.made_by{
  font-weight: 400;
  font-size: 13px;
  margin-top: 35px;
  text-align: center;
}