.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #7ac142;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  }
  body{
    margin: 0;
    padding: 0;
    overflow-x: hidden;  
    /* overflow-y: scroll; */
    font-family: Arial, sans-serif;
  }

  .title{
    display: block;
    text-align: center;
    margin-top: 5%;
    font-weight: bold;
    font-family: monospace;
    font-size: xx-large;
    opacity: 0;
    animation: fade .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .topbar{
    display: flex;
    background-color: #17a5eb;
    width: 100vw;
    height: 4rem;
    margin: 0;
    padding: 0;
    box-shadow: black 0px 0px 2px 0px;
  }

  .logo{
    align-self: center;
    background-image: url('https://kaiseducation.com/wp-content/uploads/2023/07/kais-education.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    
    width: 4rem;
    height: 3rem;
    margin-left: 1rem;
  }

  .mainContainer{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    /* width: 80vw; */
    /* background-color: #7ac142; */
    margin: 0 2rem;
    /* flex-wrap: wrap; */
    /* height: 100vh; */
    
  }

  .topcontainer{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    justify-content: space-between;
    width: 80vw;
    /* background-color: #7ac142; */
    max-width: 1280px;
    width: 100%;
    margin: 0 2rem;
    flex-wrap: wrap;
    height: 16rem;

    /* display: flex;
    max-width: 1280px;
    justify-content: space-between;
    width: 80%;
    margin: 0 auto; */

  }

  .bottomcontainer{
    display: flex;
    /* flex-direction: column; */
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 1280px;
    /* width: 80vw; */
    /* background-color: #7ac142; */
    /* margin: 2rem; */
    flex-wrap: wrap;
  }

  .panel{
    flex: 1;
    width: 80%;
    max-width: 1280px;
    border: rgb(221, 221, 221) 1px solid;
    box-shadow: black 0px 1px 3px 0px;
    padding: 1rem;
    aspect-ratio: 1/1;
    border-radius: 1rem;
    margin: 1rem;
  }

  .mainTable{
    /* border: #000000 1px solid; */
    color: #5B5D5B;
  }
  
  tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 50, .02);
    color: #5B5D5B;
  }

  .service-list{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    border: 1px solid #000000;
    padding: 0.75rem;
    /* background-color: #7ac142; */
    margin: 1rem;
  }

  .sitem{
    text-align: center;
        
    }

    .topleft{
        border-top: none;
        border-left: none;
        background-color: white;
        min-width: 8rem;
        min-height: 1.2rem;
        padding: 1rem 0;
    }
  /* .service-item{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    border-right: 1px solid #eee;
    padding: 0.75rem;
    background-color: #7ac142; 
    margin: 1rem;
  } */

  .service-name{
    padding: 2rem;
    font-weight: bold;
  }

  .service-image{
    width: 5rem; 
    aspect-ratio: 1/1; 
    text-align: center; 
    align-content:center;
    margin:1rem;
    background-color: aqua;
  }

  /* .service-row{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-align: center;
    border-right: 1px solid #eee;
    background-color: #7ac142; 
     margin: 1rem; 
  } */

  .temp{
    height: 10rem;
  }
  .temp2{
    /* height: min-content; */
    aspect-ratio: auto;
  }

  .checkmark {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #fff;
    stroke-miterlimit: 10;
    margin: 10% auto;
    box-shadow: inset 0px 0px 0px #7ac142;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
  }
  
  .checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
  }

@media screen and (max-width: 800px) {
    .mainContainer{
        flex-direction: column;
    }
}
  
  @keyframes stroke {
    100% {
      stroke-dashoffset: 0;
    }
  }
  @keyframes scale {
    0%, 100% {
      transform: none;
    }
    50% {
      transform: scale3d(1.1, 1.1, 1);
    }
  }
  @keyframes fill {
    100% {
      box-shadow: inset 0px 0px 0px 30px #7ac142;
    }
  }

  @keyframes fade {
    100% {
      opacity: 1;
    }
  }