.create-system__container{
    background: #2D2B2B;
    padding: 60px 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.create-system__container__content{
    width: 450px;
}
.create-system__container__content > h2{
    color: #FFFFFF;
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px;
}
.create-system__container__content > p{
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 400;
    margin: 0;
}
.create-system__container__btn > p{
    font-size: 16px;
    font-weight: 400;
    color: #FFFFFF;
    width: 400px;
    margin: 15px 0 0;
}
.create-system__container__btn__create-order{
    background: #F51906;
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .3s;
}
.create-system__container__btn__create-order > p{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
}
.create-system__container__btn__3d{
    width: 200px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: solid 1px #FFFFFF;
    transition: .3s;
}
.create-system__container__btn__3d > p{
    font-size: 14px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    transition: .3s;
}
.create-system__container__btn-group{
    display: flex;
    gap: 15px;
}
.create-system__container__btn-group >a {
    text-decoration: none;
}
.create-system__container__btn__3d:hover{
    background: #FFFFFF;
    transition: .3s;
}
.create-system__container__btn__3d:hover > p{
    color: #333333;
    transition: .3s;
}
.create-system__container__btn__create-order:hover{
    background-color: #C81000;
    transition: .3s;
}
@media (max-width: 1200px){
    .create-system__container__content{
        width: unset;
    }
    .create-system__container__btn > p{
        width: unset;
    }
    .create-system__container__btn-group{
        flex-direction: column;
    }
    .create-system__container{
        align-items: flex-start;
        gap: 10px;
    }
    .create-system__container{
        padding: 40px;
    }
    .create-system__container__content > h2{
        font-size: 24px;
    }
}
@media (max-width: 700px){
    .create-system__container{
        flex-direction: column;
        gap: 20px;
    }
    .create-system__container{
        padding: 30px;
    }
}