.achievements{
    /* background: #00000026; */
}
.achievements .container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.achievements_title{
     
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 43px;
    text-align: center;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    
    color: #000000;
    position: relative;
}
.achievements_title::after {
    content: "";
    width: 20%;
    padding-top: 3px;
    border-bottom: 12px solid #4850F7;
    position: absolute;
    bottom: -4px;
    left: 0px;
}
.achievements_box{
    width: 95%;
    background: #FFFFFF;
    box-shadow: 0px 0px 18.2041px rgba(0, 0, 0, 0.25);
    border-radius: 16.875px;
    padding: 50px;
    margin-top: 60px;
    margin-bottom: 40px;
    
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.achievements_text{
    padding-left: 80px;
}
.achievements_text_title{
    width: 485px;
     
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;

    color: #1A1818;
}
.achievements_text_list{
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 20px 0;
}
.achievements_text_list_element{
     
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 22px;

    color: #1A1818;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    width: 388px;
    cursor: pointer;
    position: relative;
}
.achievements_text_list_element::before {
    content: "";
    display: block;
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 0px;
    height: 4px;
    background: #4850F7;
    border-radius: 10px;
    transition: 0.5s;
}
.achievements_text_list_element:hover::before {
    width: 100%;
}

.achievements_text_list_img{
    width: 65px;
    height: 65px;
}
.achievements_gallari{
    display: grid;
    grid-template-columns: 5% 90% 5%;
}

.achievements_gallari_img {
    height: 340px;
    width: 100%;
    transition: 800ms;
    opacity: 0;
}
.active {
    height: 340px;
    width: 100%;
    transition: 800ms;
    opacity: 1;
    position: absolute;
}
.achievements_gallari_img_box {
    height: 340px;
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
}
.blueChek{
     
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;
    color: #1A1818;
    position: relative;
}
.blueChek::after {
    content: "";
    width: 100%;
    padding-top: 3px;
    border-bottom: 5px solid #4850F7;
    position: absolute;
    bottom: -4px;
    left: 0px;
}
.achievements_postscript{
    grid-column-start: 1;
    grid-column-end: 3;

     
    font-style: normal;
    font-weight: 400;
    font-size: 24px;
    line-height: 31px;

    color: #1A1818;
    padding-left: 80px;
}
.achievements_gallari_switch{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color:#4137FC;
    font-size: 50px;
    cursor: pointer;
    position: relative;
}
.achievements_gallari_switch_left::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 5px solid #4850F7;
    border-right: 5px solid #4850F7;
    margin-right: 60px;
    transform: rotate(-135deg);
    left: 0;
    
}
.achievements_gallari_switch_right::after{
    content: "";
    position: absolute;
    width: 15px;
    height: 15px;
    border-top: 5px solid #4850F7;
    border-right: 5px solid #4850F7;
    margin-right: 60px;
    transform: rotate(45deg);
    left: 0;
    
}