header {
    position: relative;
    height: 94px;
    background-color: var(--bg-color);
    transition: background 0.5s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
header > * {
    position: relative;
    z-index: 2;
}
.bread_crumbs{
    height: 18px;
    display: flex;
    align-items: center;
    margin: 0 0 0 100px;
}
.bread_crumbs p{
    color: var(--text-color);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.bread_crumbs a{
    color: var(--bg-bullet);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 200;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.bread_crumbs a:hover{
    color: var(--text-color);
}
.dash{
    width: 15px;
    height: 1px;
    background: var(--text-color);
    margin: 10px 16px 0 0;
    transition: background-color 0.5s ease;
    flex-shrink: 0;
}
.dash_p{
    min-height: 26px;
    display: flex;
    align-items: center;
}
.dash_p p{
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
    transition: background-color 0.5s ease;
    margin: 12px 0 0 0;
}
.sep {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--text-color);
    margin: 0 8px 0 8px;
    transition: background-color 0.5s ease;
    flex-shrink: 0;
}
main{
    margin: 50px 100px 0 100px;
    width: calc(100% - 200px);
}
main h1{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 54px;
    line-height: 56px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    margin: 0 0 100px 0;
}
.p_bold{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 24px;
    line-height: 30px;
    letter-spacing: 0;
    transition: color 0.5s ease;
    /*margin: 64px 0 0 0;*/
    margin: 32px 0 0 0;
}
.text_block_info{
    margin: 32px 0 0 0;
}
.text_block_info p{
    color: var(--text-color);
    font-family: 'TT Fors Trial Medium', sans-serif;
    font-weight: 600;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.text_point{
    display: flex;
    align-items: center;
    position: relative;
}
.mrgn_left{
    margin-left: 20px;
}
.text_block_info p a{
    color: var(--color-accent);
    font-family: 'Manrope_Med', sans-serif;
    font-weight: 300;
    font-size: 18px;
    line-height: 24px;
    letter-spacing: 0;
    transition: color 0.5s ease;
}
.text_block_info p a:hover{
    color: #0F4ECFFF;
}
.text_point .sep{
    position: absolute;
    top: 11px;
}
@media (max-width: 1750px) {
    main{
        margin: 25px 50px 0 50px;
        width: calc(100% - 100px);
    }
    .bread_crumbs {
        margin: 0 0 0 50px;
    }
}
@media (max-width: 1360px) {
    .text_block_info p{
        font-size: 16px;
        line-height: 24px;
    }
    .text_block_info p a{
        font-size: 16px;
        line-height: 24px;
    }
    .text_block_info{
        width: 100%;
    }
    .text_block_info p{
        width: 100%;
    }
    .p_bold{
        width: 100%;
    }
    main{
        margin: 0 50px 0 50px;
    }
}
@media (max-width: 840px) {
    main h1{
        margin: 0 0 72px 0;
    }
    main{
        margin: 48px 16px 0 16px;
        width: calc(100% - 32px);
    }
    header{
        padding: 16px 16px 24px 16px;
    }
    .bread_crumbs {
        margin: 0 0 0 16px;
    }
    .p_bold{
        margin: 48px 0 0 0;
    }
}
@media (max-width: 600px) {
    main h1{
        font-size: 30px;
        line-height: 36px;
    }
    .p_bold{
        font-size: 16px;
        line-height: 20px;
        margin: 36px 0 0 0;
    }
}