.priority50{
    margin-top: 60px;
    margin-bottom: 100px;
}
.p50Inner{
    display: flex;
    flex-direction: column;
}
.p50iTexts{
    display: flex;
    flex-direction: column;
    margin-bottom: 120px;
}
.p50itHeader{
    text-align: center;
    margin-bottom: 9px;
    color: var(--white);
}
.p50itText{
    text-align: center;
    color: var(--grey-text);
}
.p50iBlocks{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 23px;
}
.p50ibBlock{
    display: flex;
    flex-direction: column;
    padding: 60px 35px;
    background: linear-gradient(180deg, #27201F 0%, rgba(36, 36, 36, 0) 100%);
    border-radius: 11px;
    position: relative;
}
.p50ibbHeader{
    color: var(--white);
    margin-bottom: 15px;
}
.p50ibbText{
    color: var(--grey-text);
    line-height: 24px;
}
.p50ibbDetails{
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 40px;
}
.p50ibbdDetail{
    display: block;
    color: var(--grey-text);
    margin-bottom: 7px;
}
.p50ibbdDetail:last-child{
    margin-bottom: 0px;
}
.p50ibbdSpan{

}
.p50ibbdsLink{
    color: var(--white);
}
.p50ibbSubmit{
    color: #EE252A;
    text-decoration-line: underline;
    width: fit-content;
}
.p50ibbImageHolder{
    position: absolute;
    width: 80px;
    height: 80px;
    top: -40px;
    left: calc(50% - 40px);
    background: linear-gradient(154.72deg, #EE252A 16.04%, rgba(48, 8, 9, 0.89) 158.45%);
    border: 6px solid #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}
.p50ibbImg{
    max-width: 32px;
}
.p50ibbClick{
    display: block;
    margin-bottom: 20px;
}
.p50ibbClickLast{
    margin-bottom: 0px;
}
.p50ibbcLink{
    color: var(--white-grey);
    text-decoration: underline;
    text-decoration-color: var(--white-grey);
}
.p50ibbcText{
    color: var(--grey-text);
}

@media screen and (max-width: 1400px){
    .p50iTexts{
        margin-bottom: 90px;
    }
    .p50iBlocks{
        grid-gap: 13px;
    }
}

@media screen and (max-width: 1200px){
    .p50iBlocks{
        grid-gap: 0px;
        grid-template-columns: repeat(1, 1fr);
    }
    .p50ibBlock{
        margin-bottom: 45px;
    }
    .p50ibBlock:last-child{
        margin-bottom: 0px;
    }
    .priority50 {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 800px){
    .priority50 {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    .p50itHeader{
        font-size: 28px;
    }
    .p50ibBlock{
        padding: 50px 30px;
    }
}
@media screen and (max-width: 700px){
    .p50iTexts {
        margin-bottom: 80px;
    }
}