.page_6 {
    position: relative;
    min-height: 100vh;
    height: fit-content;
    width: 100%;
    background-color: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .resume_parent{
    display: flex;
    align-items: center;
    justify-content: center;

  }
#page6{
    padding: 3rem;
}
.resume_hedding h1{
 text-align: center;
 color: var(--white);
 font-size: 3.5rem;
}
.resume_experiance , .resume_education{
    min-width: 50%;
}
.accordion {
    --bs-accordion-border-width: 0px;
    border-radius: 35px;
}
.collapsed{
    border-radius: 35px;
    color: var(--yellow);
    font-size: 1.5rem;
}
.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed {
    border-bottom-right-radius: 35px;
    border-bottom-left-radius: 35px;
}
.accordion-item:first-of-type>.accordion-header .accordion-button {
    border-top-left-radius: 35px;
    border-top-right-radius: 35px;
}

.accordion .accordion-item:nth-child(even) {
    border-left: 2px solid var(--white);
    border-top: 2px solid var(--white);
    border-bottom-left-radius: 35px;
    position: relative;
    border-top-left-radius: 35px;
}
.accordion .accordion-item:nth-child(odd) {
    border-right: 2px solid var(--white);
    border-bottom-right-radius: 35px;
    border-top-right-radius: 35px;
    border-top: 2px solid var(--white);
    position: relative;
    top: 3px;
    left: 1.8rem;
}
.accordion .accordion-item:last-child{
    position: relative;
    top: -2px;
}
.accordion-item{
    background-color: var(--red);
    color: var(--white);
    border-bottom: 2px solid var(--white);
    
}
.accordion-button{
    color: var(--yellow);
}
.accordion-button{
    background-color: var(--red);
    border-radius: 35px;
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-button:not(.collapsed){
    background-color: var(--red);
    color: var(--yellow);
    font-size: 1.5rem;
}
.accordion-button::after{
    border: 1px solid var(--white);
    height: 30px;
    width: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: none;
    background-image: url('../assets/arrow-to-down-left-svgrepo-com.svg');
    background-position: center center;
    
}
.accordion-button:not(.collapsed)::after{
    background-image: url('../assets/arrow-to-down-left-svgrepo-com.svg');
    background-position: center center;
}
.accordion-body:not(.p_in_dis p){
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-top: 0;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.p_in_dis{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    font-size: 1.3rem;
}
.p_in_dis p:last-child {
    /* Add your styles for the last <p> element here */
    color: var(--yellow); /* Example: Change the color of the last <p> */
}
.accordion .accordion-item:last-child .accordion-body p:first-child{
    font-size: 2rem;
    font-style: italic;
}