.order-btn {
    display: flex;
    margin-top: auto;
}

.services-grid {
    color: #000000;
    display: flex;
    flex-direction: row;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.services-item {
    padding: 16px;
    border-radius: 24px;
    background: #F5F5F5;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    flex: 0 0 calc(50% - 20px);
}

.services-item__top {
    position: relative;
    z-index: 4;
}
#quiz-bunker .services-item__top:after{
    background: url(./img/red_blob.svg) no-repeat 100% 100%;
    background-size: cover;
}
#quiz-you .services-item__top:after{
    background: url(./img/blue_blob.svg) no-repeat 100% 100%;
    background-size: cover;
}

#quiz-mafia .services-item__top:after{
    background: url(./img/yellow_blob.svg) no-repeat 100% 100%;
    background-size: cover;
}

#quiz-themes .services-item__top:after{
    background: url(./img/green_blob.svg) no-repeat 100% 100%;
    background-size: cover;
}

.services-item__top:after{
    content: "";
    position: absolute;
    bottom: -80px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 2;
    width: 200px;
    height: 100px;
}


.services-item__top img{
    object-fit: cover;
    width: 100%;
    height: 100%;
    border-radius: 16px;
    position: relative;
    z-index: 4;
}

.services-item__content {
    display: flex;
    flex-direction: column;
    height: 420px;
    z-index: 5;
}

.services-item__title {
    text-align: center;
    font-size: 22px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.services-item__attr-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    gap: 40px;
    margin-bottom: 16px;
}

.services-item_quan,
.services-item_time{
    border-radius: 16px;
    background: #FFF;
    font-size: 15px;
    font-weight: 400;
    line-height: 18.4px;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 2px 10px;
    white-space: nowrap;
}

.services-item_quan:before{
    content: url("./img/team-fill.svg");
    margin-right: 8px;
    width: 24px;
    height: 24px;
}
.services-item_time:before{
    content: url("./img/tabler_clock.svg");
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.services-item__attr-column {
    display: flex;
    align-items: center;
    padding: 6px 16px;
    background: #fff;
    border-radius: 25px;
    margin-bottom: 16px;
}

.services-item__attr-column>div{
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services-item__attr-column:before{
    content: url("./img/tabler_money.svg");
    margin-right: 8px;
    width: 24px;
    height: 24px;
}

.services-item__attr-inner {
    font-size: 15px;
    font-weight: 400;
    line-height: 18.4px;
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.services-item__attr-inner i{
    flex: 1 0;
    border-bottom: 2px dotted #000;
    height: 1em;
    margin: -4px 10px 0 10px;

}

.services-item_text {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 18.4px;
}

.services-item--marker{
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    color: #07828A;
    margin-bottom: 16px;
}

.fixed-header{
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    background: #fff;
	z-index: 10;
}
.open-menu .fixed-header{
    position: static;
}
.open-menu .fixed-header .header__top{
    margin: -78px 0 0 0;
}
.open-menu .fixed-header .header__bot {
	padding: 26px 64px;
}

.fixed-header + section{
    padding-top: 250px;
}
.logo img,
.header .btn,
.header__top,
.header__bot{
    transition: 1s ease all;
}
.fixed-header .logo img{
    width: 260px;
    height: 50px;
    transition: 1s ease all;
}
.header.fixed-header .btn{
    width: 240px;
    height: 36px;
    transition: 1s ease all;
}

.fixed-header .header__top{
    padding: 14px 0;
    transition: 1s ease all;
}

.fixed-header .header__bot{
    padding: 16px 0;
    transition: 1s ease all;
}
@media screen and (max-width: 991px){
    .services-item{
        flex: 0 0 100%;
    }
}
@media screen and (max-width: 768px){
    .services-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 20px;
    }
    .services-item__attr-row{
        gap: 20px;
    }
}