.projects{
    margin: 150px 100px 0 100px ;
}
.block_top_project{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.card_project{
    position: relative;
    border-radius: 20px;
    display: inline-block;
    overflow: hidden;
}

.card_project img {
    width: 100%;
    height: 100%;
    transition: 0.5s;
    display: block;
    pointer-events: none;
}
.block_card_project {
    height: 100%;
    width: 97%;
}
.block_card_project:hover img {
    transform: scale(1.2);
}

.block_card_project:nth-child(odd) {
    grid-column: 1;
}
.block_card_project:nth-child(even) {
    grid-column: 2;
    margin-top: 100px;
    justify-self: end;
}
.block_card_project:hover .glass_block{
    opacity: 1;
}
.glass_block{
    max-width: 382px;
    min-width: 250px;
    width: 70%;
    height: calc(100% - 64px);;
    position: absolute;
    top: 32px;
    right: 32px;
    padding: 24px;
    background-color: #00000057;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    opacity: 0;
    transition: 0.5s;
    backdrop-filter: blur(12px);
}
.glass_block p{
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.block_designations_card{
    width: fit-content;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.glass_info{
    margin: 24px 0 0 0;
}
.tag{
    color: #FFFFFF;
    width: fit-content;
    height: 28px;
    border-radius: 50px;
    border: 1px solid #FFFFFF;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 16px 5px 16px;
    margin-right: 5px;

    font-family: 'Manrope_Med', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.glass_block_info{
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.glass_block_info p{
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    color: #FFFFFF;
    transition: all 0.5s ease;
}
.glass_block_info svg{
    stroke: #FFFFFF;
    transition: all 0.5s ease;
}
.glass_block_info:hover p{
    color: var(--color-accent);
}
.glass_block_info:hover svg{
    stroke: var(--color-accent);
}
.ui_ux p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.web p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.ba p{
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 0;
    color: #FFFFFF;
}
.block_projects{
    margin: 64px 0 0 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
.text_info{
    display: flex;
    justify-content: start;
    margin: 24px 0 0 0;
}
.boll_blue{
    width: 10px;
    height: 10px;
    background-color: var(--color-accent);
    border-radius: 50px;
    margin-top: 15px;
}
.text_info h3{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 0 12px;
}


@media (min-width: 1920px) {
    .block_card_project{
        width: auto;
    }
}
@media (max-width: 1750px) {
    .projects {
        margin: 150px 50px 0 50px;
    }

}
@media (max-width: 1450px) {
    .text_info h3 {
        font-weight: 600;
        font-size: 24px;
        line-height: 26px;
    }
    .boll_blue {
        margin-top: 9px;
    }

}
@media (max-width: 1250px) {
    .block_projects{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin: 32px 0 0 0;
        width: auto;
    }
    .block_card_project {
         width: auto;
    }
    .block_card_project:nth-child(even) {
        margin-top: 50px;
    }
}
@media (max-width: 840px) {
    .block_projects{
        display: flex;
        flex-direction: column;
        margin: 32px 0 0 0;
    }
    .card_project{
        border-radius: 10px;
    }
    .glass_block{
        border-radius: 10px;
    }
    .text_info h3{
        font-size: 16px;
        line-height: 20px;
    }
    .boll_blue {
        margin-top: 6px;
    }
    .block_card_project:nth-child(even) {
        margin-top: 32px;
    }
    .projects {
        margin: 80px 16px 0 16px;
    }
    .block_card_project {
        width: 100%;
    }
    .text_info{
        margin: 16px 0 0 0;
    }
    .card_project{
        position: relative;
    }
    .glass_block_info{
        position: absolute;
        inset: 0;
        z-index: 1;
        text-decoration: none;
        color: inherit;
    }
    .block_card_project:hover .glass_block{
        opacity: 0;
    }
    .glass_block{
        inset: 0;
        z-index: 1;
        text-decoration: none;
        color: inherit;
        width: auto;
        height: auto;
        max-width: none;
    }
}
@media (max-width: 600px) {

}