ERROR: expected ';' before ')' token can you help me?

Hello I have made a code, but the error "expected ';' before')' token" appeared and I dont know how to solve it....

The error appears at "for (pos = 90) {

My code:
#include <Servo.h>

Servo servo1;
Servo servo2;

int pos = 0;

void setup(){
servo1.attach(10);
servo2.attach(11);

servo1.write(0);
servo2.write(180);

}
void loop(){
for (pos = 0; pos <= 90; pos += 1) {
servo1.write(pos);
delay(15);
}
for (pos = 90) { // here is the error message
delay(1000);
servo2.write(90);
delay(500);
servo2.write(112,5);
delay(15);
servo2.write(90);
delay(500);
servo2.write(180);
delay(15);

for (pos > 0; pos -= 1;) {
servo1.write(pos);
delay(15);
}
}
}

Because it doesn't follow the syntax of a "for" statement. Just look it up in a reference. If you meant to use a "if" statement, you need to make comparisons with the == operator not the = operator. You need to sort out your curly braces, there seem to be extras hanging off the bottom. Use ctrl-T in the IDE to auto format your code and it will indent and make it easier to see the correct bracketing.

You're missing the condition and increment portion of the for statement.

I suspect there are other issues with the code.