.experience_content{
    /* background-color: red; */
    /* height: 100%; */
    width: 90%;
    display: flex;
    gap: 30px;
        font-size: 15px;
    font-family: "Figtree", sans-serif;
    font-weight: bold;
}

.experience_content .educationexp{
    background-color: blanchedalmond;
    border-radius: 25px;
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.experience_content .workexp{
    background-color: blanchedalmond;
    border-radius: 25px;
    height: 100%;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
}

.experience_content .educationexp:hover ,.experience_content .workexp:hover {
            transform: translateY(-6px);
            box-shadow: 0 10px 18px rgba(0, 0, 0, 0.15);
        }

.education__heading {
  padding-inline-start: 4rem;
}
.education__heading h4 {
  font-size: 25px;
  margin-block: 0.5rem;
  font-family: "Titan One", sans-serif;
  font-style: normal;
}
.education__content {
  position: relative;
  padding: 1rem 1rem 1rem 4rem;
  cursor: pointer;
  transition: background 0.3s ease-in-out;
}
.education__content h5 {
  color: rgba(0, 0, 0, 0.9);
  font-size: 1rem;
  margin-block: 0;
}
.education__content p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
  margin-block-start: 0.5rem;
  margin-block-end: 0;
}
.education__content .year {
  position: absolute;
  content: var(--year);
  width: 2rem;
  aspect-ratio: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.6rem;
  color: white;
  border-radius: 50%;
  background-color: gray;
  box-shadow: inset 0 0 0 1px white;
  border: 1px solid #333;
  left: 1rem;
  top: 0.74rem;
}

.education__content .year.currentyear{
    background-color: greenyellow;
}
.education__content:hover {
  background-color: rgba(230, 230, 230, 0.48);
  border-radius: 0.25rem;
}
.education__content:not(:last-child):before {
  position: absolute;
  content: "";
  width: 4px;
  background-color: #333;
  left: calc(2rem - 2px);
  top: 2.74rem;
  bottom: -0.74rem;
  z-index: 1;
}

.education ul{
  font-size: 12px;
}


@media (max-width: 998px) {

    .experience_content{

        display:block;
    }

    .experience_content .educationexp{

        height: 50%;
        width: 100%;

    }

    .experience_content .workexp{

        height: 50%;
        width: 100%;
        margin-bottom: 20px;
    }
}

