* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: "Rubik", sans-serif;
}


 
.parent {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    padding: 10px;
    margin-bottom: 30px;
}


.heading {
  display: flex;
  /* position: fixed; */
  /* top: 99px; */
  gap: 10px;
  z-index: 99;
  /* box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); */
  border-radius: 10px;
  padding: 10px;
  background-color: white;
}

.heading-btn {
  background: none;
  border: none;
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #007ab3;
  border-bottom: 2px solid transparent;
}

#all-btn {
    border-bottom: 2px solid #f39c12;
}
#design-btn {
    border-bottom: 2px solid white;
}
#codes-btn {
    border-bottom: 2px solid white;
}
#other-btn {
    border-bottom: 2px solid white;
} 

.image {
    width: 100%;
    position: relative;
}

.image img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.heart {
    color: white;
    position: absolute;
    top: 5px;
    right: 10px;
    border: none;
    background-color: transparent;
}

.heart:focus {
    color: red;
}

.basic {
    font-weight: bold;
    font-size: 20px;
}

.certificate-course {
    width: 80%;
    font-size: 17px;
    color: gray;
}

.three-elements {
    display: flex;
    gap: 20px;
    width: 100%;
}

.element {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 100%;
}

/* .icons {
    display: flex;
    justify-content: center;
    border: 1px solid black;
    border-radius: 8px;
    padding: 10px;
    font-size: 12px;
    background-color: #007ab3;
    color: white;
    border: none;
} */

.element-text {
    font-weight: 700;
}

.join-now {
    border: none;
    text-decoration: none;
    border-radius: 10px;
    background-color: #007ab3;
    color: white;
    font-weight: 700;
    padding: 10px;
    text-align: center;
}


.for-design {
    width: 80%;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    /* margin-top: 60px; */
}

.for-Design-heading {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    padding-bottom:10px;
}

.Design-boxes {
    width: 100%;
    display: flex;
    justify-content: space-between;
    gap: 25px;
}

.Design {
    width: 100%;
    display: flex;
    gap: 10px;
}

.Design-text {
    font-weight: bold;
    font-size: 20px;
}

.four-Design {
    display: flex;
    flex-direction: column;
    width: 340px;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    /* background-color: rgb(221, 221, 221); */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.four-Design p {
    margin-bottom: 0;
}



.for-programming {
    width: 80%;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    /* margin-top: 30px; */
}

.for-programming-heading {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    padding-left: 10px;
}

.programming-boxes {
    width: 100%;
    display: flex;
    gap: 35px;
    overflow-x: scroll;
    padding: 10px;
    padding-right: 10px;
}

.programming-boxes::-webkit-scrollbar {
  background-color: white;
  border: 1px solid gray;
  border-radius: 10px;
  scroll-behavior: smooth;
  height: 10px;
}

.programming-boxes::-webkit-scrollbar-thumb {
  background: #007ab3;
  border-radius: 11px;
}

.programming-text {
    font-weight: bold;
    font-size: 20px;
}

.four-programming {
    display: flex;
    flex-direction: column;
    min-width: 342px;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    /* background-color: rgb(221, 221, 221); */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.four-programming p {
    margin-bottom: 0;
}



.for-others {
    width: 82%;
    display: flex;
    flex-direction: column;
    /* gap: 10px; */
    /* margin-top: 30px; */
}

.for-Others-pro-heading {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 0;
    padding-left: 10px;
}

.Others-pro-boxes {
    width: 100%;
    display: flex;
    gap: 35px;
    overflow-x: scroll;
    padding: 10px;
    padding-right: 10px;
}

.Others-pro-boxes::-webkit-scrollbar {
  background-color: white;
  border: 1px solid gray;
  border-radius: 10px;
  scroll-behavior: smooth;
  height: 10px;
}

.Others-pro-boxes::-webkit-scrollbar-thumb {
  background: #007ab3;
  border-radius: 11px;
}

.Others-pro-text {
    font-weight: bold;
    font-size: 20px;
}

.four-Others-pro {
    display: flex;
    flex-direction: column;
    min-width: 342px;
    border-radius: 10px;
    padding: 10px;
    gap: 10px;
    /* background-color: rgb(221, 221, 221); */
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.5);
}

.four-Others-pro p {
    margin-bottom: 0;
}



  @media screen and (min-width: 320px) and (max-width:768px) 
  {

    .heading {
        width: 100%;
        display: flex;
        justify-content: space-between;
        position: fixed;
        top: 79px;
        gap: 10px;
        z-index: 1;
        box-shadow: unset;
        border-bottom: 1px solid rgba(225, 225, 225, 0.5);
        border-radius: 0px;
        padding: 10px;
        background-color: white;

    }
    .heading button{
        font-size: 10px;
        font-weight: 700;
    }
    .heading button:focus {
        border-bottom: 2px solid #f39c12;
    }


    .three-elements p {
        font-size: 14px;
    }



    
   
    .basic {
        font-size: 18px;
    }
    .certificate-course {
        font-size: 15px;
        width: 90%;
    }



    .for-design {
        width: 100%;
        display: flex;
        margin-top: 80px;
        gap: 10px;
    }

    .for-Design-heading {
        font-size: 20px;
        padding-left: 0;
    }

    .Design-boxes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .four-Design {
        width: 93%;
    }

    .Design-text {  
        font-size: 18px;
    }



    .for-programming {
        display: flex;
         margin-top: 80px;
        
    }

    .for-programming-heading {
        font-size: 20px;
        padding-left: 0;
    }
    .programming-boxes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: unset;
    }
    .programming-boxes::-webkit-scrollbar {
      display: none;
      background-color: white;
      border: 1px solid gray;
      border-radius: 10px;
      scroll-behavior: smooth;
      height: 10px;
    } 
    .programming-boxes::-webkit-scrollbar-thumb {
      display: none;
      background: #007ab3;
      border-radius: 11px;
    }
    .four-programming {
        min-width: unset;
        width: 100%;
    }
    .programming-text {
        font-size: 18px;
    }


    .for-others {
        display: flex;
        margin-top: 80px;
    }

    .for-Others-pro-heading {
        font-size: 20px;
        padding-left: 0;
    }
    .Others-pro-boxes {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        overflow-x: unset;

    }

    .Others-pro-boxes::-webkit-scrollbar {
      display: none;
      background-color: white;
      border: 1px solid gray;
      border-radius: 10px;
      scroll-behavior: smooth;
      height: 10px;
    } 

    .Others-pro-boxes::-webkit-scrollbar-thumb {
      display: none;
      background: #007ab3;
      border-radius: 11px;
    }

    .four-Others-pro {
        min-width: unset;
        width: 100%;
    }
    .Others-pro-text {
        font-size: 18px;
    }
    
  }