.row {
  display: flex;
  background: #EB0042;
  border-radius: 50px;
  height: 500px;
}

.row.expanded {
  background: #EB0042;
}

.div-1,
.div-2 {
  transition: flex-basis 0.5s ease;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.div-1 {
  flex-basis: 70%;
  flex-grow: 0;
  flex-shrink: 0;
}

.div-2 {
  flex-basis: 30%;
  flex-grow: 0;
  flex-shrink: 0;
}

.row.expanded .div-1 {
  flex-basis: 30%;
}

.row.expanded .div-2 {
  flex-basis: 70%;
}

.qapa-large {
  height: 500px;
  display: flex;
  padding: 0 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  flex-shrink: 0;
  align-self: stretch;
  border-radius: 50px;
  background: #F0EFEF;
}

.qapa-large h3 {
  font-size: 30px;
  font-weight: 600;
}

.qapa-large .bloc-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  align-self: stretch;
  width: 100%;
  margin-top: 40px;
}

.adecco-small {
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex: 1 0 0;
  align-self: stretch;
}

.adecco-small h3 {
  color: var(--FFFFFF, #fff);
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}

.adecco-large {
  height: 500px;
  display: flex;
  padding: 0 40px;
  flex-direction: column;
  gap: 25px;
  flex: 1 0 0;
  border-radius: 50px;
  background: #F0EFEF;
}

.adecco-large h3 {
  font-size: 30px;
  font-weight: 600;
}

.adecco-large .bloc-title {
  display: flex;
  align-items: center;
  gap: 15px;
  align-self: stretch;
  width: 100%;
  justify-content: space-between;
  margin-top: 40px;
}

.adecco-large .info-text {
  color: #515151;
  font-size: 16px;
}

.qapa-small {
  display: flex;
  padding: 40px 50px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-shrink: 0;
  align-self: stretch;
}

.qapa-small h3 {
  color: var(--FFFFFF, #fff);
  font-size: 30px;
  font-style: normal;
}

@media (max-width: 768px) {
  .row {
    flex-direction: column;
    height: auto;
  }
  .div-1,
  .div-2 {
    flex-basis: auto;
    width: 100%;
  }
  .row.expanded .div-1,
  .row.expanded .div-2 {
    flex-basis: auto;
  }
  .qapa-large,
  .adecco-large {
    height: auto;
  }
}
