:root {
  --blue: #1e266d;
  --cyan: #6fc7d9;
  --pink: #ffa5bc;
  --white: #ffffff;
  --black: #181818;
  --text: #737373;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  font-family: inherit;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  direction: rtl;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Cairo', sans-serif;
  box-sizing: border-box;
  background: var(--white);
  color: var(--text);
}

.display {
  text-align: center;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.6;
  color: var(--blue);
}

.heading {
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--blue);
  line-height: 1.6;
}

.body {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
}

.center {
  text-align: center;
}

.layout {
  overflow-x: hidden;
}

.section {
  padding: 6rem 0;
  margin-top: 6rem;
  background: var(--white);
}

.section--featured {
  background: #f5f5f5;
}

.section--primary {
  background: var(--primary);
}

.section--small {
  padding: 4rem 0;
  margin-top: 2rem;
}

.container {
  max-width: 124rem;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 0 4rem;
}

@media only screen and (max-width: 768px) {
  .container {
    padding: 0 3rem;
  }
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
}

.flex.row {
  flex-direction: row;
}

.flex.justify-start {
  justify-content: flex-start;
}

.flex.justify-space-between {
  justify-content: space-between;
}

.flex.align-start {
  align-items: flex-start;
}

.button {
  font-size: 1.8rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0.6rem;
  border: none;
  cursor: pointer;
}

.button--primary {
  color: var(--white);
  background: var(--blue);
}

.mr--small {
  margin-right: 2rem;
}

.mr--medium {
  margin-right: 4rem;
}

.mr--big {
  margin-right: 6rem;
}

.mr--large {
  margin-right: 8rem;
}

.ml--small {
  margin-left: 2rem;
}

.ml--medium {
  margin-left: 4rem;
}

.ml--big {
  margin-left: 6rem;
}

.ml--large {
  margin-left: 8rem;
}

.mt--small {
  margin-top: 2rem;
}

.mt--medium {
  margin-top: 4rem;
}

.mt--big {
  margin-top: 6rem;
}

.mt--large {
  margin-top: 8rem;
}

.mb {
  margin-bottom: 1rem;
}

.mb--small {
  margin-bottom: 2rem;
}

.mb--medium {
  margin-bottom: 4rem;
}

.mb--big {
  margin-bottom: 6rem;
}

.mb--large {
  margin-bottom: 8rem;
}

.navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  overflow: hidden;
  z-index: 3;
}

.navigation__logo img {
  width: 10rem;
}

.header {
  position: relative;
  height: 100vh;
}

.circle {
  position: absolute;
  height: 100rem;
  width: 100rem;
  border-radius: 50%;
  z-index: -1;
}

.circle--pink {
  background: var(--pink);
  bottom: -40rem;
  right: -80rem;
}

.circle--cyan {
  background: var(--cyan);
  top: -40rem;
  left: -80rem;
}

.pictures {
  margin-top: -12rem;
  background: transparent;
}

.pictures__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 2rem;
}

.pictures img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
}

.about__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 6rem;
}

.goal__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  grid-gap: 8rem;
}

.goal__img {
  width: 100%;
  height: 50rem;
  object-fit: cover;
  border-radius: 2rem;
}

.contact {
  display: flex;
  align-items: center;
}

.contact__link {
  background-color: #1e266d;
  color: #f5f5f5;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__link:not(:last-child) {
  margin-left: 2rem;
}

.contact__link ion-icon {
  font-size: 2rem;
}

.read-more {
  display: none;
}

.read-more.open {
  display: block;
}