I can't run the project, because of this error.

Declaration :
$max767 : only screen and (max-width: 767px);
here is the code that is causing the problem :
@media #{$max767} {
.fc-left,
.fc-right,
.fc-center {
display: flex;
float: none;
justify-content: center;
margin-bottom: $module-rem;
}
}
thanks in advance.
You should declare $max767 in string format
$max767: "(max-width : 767px)"