.content {
    height: 150px;
    position: relative;
    border-bottom: 2px solid;
  }
  
  .header {
    height: 150px;
    /* background: rgb(159, 47, 193); */
    z-index: 0;
    position: relative;
    border-bottom: 2px solid;
    z-index: 1;
  }
  
  .circle-border {
    width: 60px;
    height: 62px;
    border-radius: 50%;
    bottom: -32px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    border: 2px solid;
    z-index: 0;
  }
  .circle {
    width: 60px;
    height: 60px;
    background: rgb(255, 0, 242);
    border-radius: 50%;
    bottom: -30px;;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 30px;
    line-height: 60px;
    z-index: 2;
  }
  
  .footer {
    height: 1px;
    background: #f0f;
  }



  /* ================================= */
 

/* THE END OF THE IMPORTANT STUFF */

/* Basic Styling */
body {
background: #4B79A1;
background: -webkit-linear-gradient(to left, #4B79A1 , #283E51);
background: linear-gradient(to left, #4B79A1 , #283E51);        
}
h1 {
  text-align: center;
  font-size: 2.4em;
  color: #ffffff;
}
.container {
  display: block;
  text-align: center;
}
h3 {
  display: inline-block;
  position: relative;
  text-align: center;
  font-size: 1.5em;
  color: #ffffff;
}

}
@-webkit-keyframes leftRight {
  0%    { -webkit-transform: translateX(0)}
  25%   { -webkit-transform: translateX(-10px)}
  75%   { -webkit-transform: translateX(10px)}
  100%  { -webkit-transform: translateX(0)}
}
@keyframes leftRight {
  0%    { transform: translateX(0)}
  25%   { transform: translateX(-10px)}
  75%   { transform: translateX(10px)}
  100%  { transform: translateX(0)}
}

/* ================= */

table {
  width: 100%;
  //   container size
  width: min(900px, 100%-3rem);
  margin-inline: auto;
  //using border-collapse default border of table and padding will be disappear.
  border-collapse: collapse;
  border-spacing: 2rem;
  box-shadow: 0px 20px 30px rgba(0, 0, 0, 0.05);
  border-radius: 20px;

  th,
  td,
  caption {
    padding: 1rem;
  }

  th {
    &:nth-child(1) {
      background: #ffffff;
      border-radius: 20px 0 0 0;
      border-right: 7px solid #fff;
    }
    &:nth-child(2) {
      background: #ffffff;
    }
    &:nth-child(3) {
      background: #e3f4df;
      border-radius: 0 20px 0 0;
      border-left: 7px solid #fff;
    }
  }
  td {
    border-bottom: 2px dashed #eeeded;
    font-weight: 400;
    font-size: 16px;
    color: #ffffff;
  }
  tr:last-child {
    td {
      border-bottom: none;
    }
  }
  col:nth-child(2) {
    background: #ffffff;
  }
}
caption,
th,
td {
  text-align: center;
}

// Responsive Table
@media (max-width: 650px) {
  td {
    display: grid;
    gap: 2.5rem;
    //td conetent and before content width get equal width
    grid-template-columns: 1fr 1fr;
    padding: 2rem 2rem;
  }
  td:first-child{
    padding-top:2rem;
  }
    td:last-child{
    padding-top:2rem;
  }
  //on mobile we will show th using pseduo after class using HTML date-cell aatribute of td
  th {
    display: none;
  }
  td::before {
    content: attr(data-cell);
    font-weight: bold;
    font-size: 16px;
    text-transform: capitalize;
    padding: 0.5rem 1rem;
  }

  td:nth-of-type(1)::before {
    background: #e3f4df;
  }
  td:nth-of-type(2)::before {
    background: #e5f4fb;
  }
  td:nth-of-type(3)::before {
    content: attr(data-cell);
    background: #fffaee;
  }
}
