.content-header {
  background-color: var(--color-blue-light);
  width: 100%;
  height: auto;
  min-height: 200px;
  color: var(--color-black);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}
.content-header .team-image {
  width: 100%;
}

h3 {
  font-size: 40px;
  line-height: 40px;
}

.our-services {
  width: 100%;
  height: auto;
  color: var(--color-black);
  background: url('../img/yellow-background.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 120px 10%;
}
.our-services .services-content {
  width: 30%;
  height: auto;
}
.our-services .services-content h3 {
  color: var(--color-black);
}
.our-services .services-list {
  width: 50%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  column-gap: 1%;
  row-gap: 8px;
}
.our-services .services-list .service {
  font-family: 'Hasweny', serif;
  background-color: var(--color-yellow);
  color: var(--color-black);
  width: 49%;
  height: auto;
  padding: 24px;
  border-radius: 8px;
  font-size: 14px;
}

.our-structure {
  width: 100%;
  height: auto;
  color: var(--color-cream);
  background: url('../img/blue-background.jpg') center center no-repeat;
  background-size: cover;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 120px 10%;
}
.our-structure .structure-content {
  width: 30%;
  height: auto;
}
.our-structure .structure-list {
  width: 40%;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  row-gap: 8px;
}
.our-structure .structure-list .structure {
  font-family: 'Hasweny', serif;
  background-color: var(--color-blue-light);
  color: var(--color-cream);
  width: 100%;
  height: auto;
  padding: 24px;
  border-radius: 8px;
  font-size: 14px;
}

.educational-proccess {
  background-color: var(--color-cream);
  width: 100%;
  height: auto;
  color: var(--color-black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 120px 10%;
}
.educational-proccess .proccess-content {
  width: 30%;
  height: auto;
}
.educational-proccess .proccess-content h3 {
  color: var(--color-black);
}
.educational-proccess .proccess-image {
  width: 40%;
  height: auto;
}

.payment-models {
  background: url('../img/blue-background.jpg') center center no-repeat;
  background-size: cover;
  width: 100%;
  height: auto;
  color: var(--color-cream);
  flex-wrap: wrap;
  width: 100%;
  padding: 120px 10%;
}
.payment-models h3 {
  width: 100%;
  text-align: center;
}
.payment-models .model-list {
  width: 80%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: auto;
}
.payment-models .model-list .model {
  background-color: var(--color-blue-mid);
  width: 48%;
  height: auto;
  border-radius: 32px;
  padding: 32px;
}
.payment-models .model-list h3 {
  color: var(--color-yellow);
}
.payment-models .model-list h4 {
  color: var(--color-yellow);
  font-size: 30px;
  line-height: 30px;
}
.payment-models .proccess-image {
  width: 40%;
  height: auto;
}

@media (max-width: 900px) {
  .content-header {
    min-height: auto;
    height: auto;
    align-items: flex-end;
  }

  .our-services {
    flex-wrap: wrap;
    padding: 80px 40px;
  }
  .our-services .services-content,
  .our-services .services-list {
    width: 100%;
  }
  .our-services .services-list {
    margin: 24px 0 0;
  }
  .our-services .services-list .service {
    width: 100%;
  }
  
  .our-structure {
    flex-wrap: wrap;
    padding: 80px 40px;
  }
  .our-structure .structure-content,
  .our-structure .structure-list {
    width: 100%;
  }
  .our-structure .structure-list {
    margin: 24px 0 0;
  }

  .educational-proccess {
    flex-wrap: wrap;
    padding: 80px 40px;
  }
  .educational-proccess .proccess-content,
  .educational-proccess .proccess-image {
    width: 100%;
  }
  .educational-proccess .proccess-image {
    margin: 24px 0 0;
  }

  .payment-models .model-list .model {
    width: 100%;
  }
}