:root {
  direction: rtl;
}


body, button, input {
  margin: 0;
  font-family: 'Cairo', sans-serif;
}

p, h1, h2, h3 {
  margin: 0;
  padding: 0;
}

a, i {
  padding: 0.5rem;
}
a {
  cursor: pointer;
  transition: all 0.3s linear;
}
a:hover {
  color: #3b45da !important;
}

.section {
  display: flex;
  justify-content: space-between;
  margin: 5% 0;
  padding: 0 10%;
}
.section .icon {
  margin: 1rem 0;
  width: 72px;
  height: 72px;
}
h2 {
  padding: 2rem;
  font-weight: bolder;
  text-align: center;
}
.half {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin: 0 1rem;
  text-align: right;
}

.half img {
  position: relative;
  width: 520px;
  height: auto;
  border: 0.5rem solid white;
  box-shadow: 0 16px 32px 0 rgba(0, 0, 0, 0.1);
}
.half h3 {
  padding: 1rem;
}
.half p {
  padding: 1rem;
}
.introduction {
  min-height: 480px;
  background: linear-gradient(to right , #3b45da 40%, white 40%) ;
}
.news {
  background: linear-gradient(to right , #3b45da 30%, white 30%) ;
}
.announcement {
  flex-direction: column;
  align-items: flex-start;
  padding: 2.5% 10%;
}
.announcement h3 {
  margin: 1rem 0;
}
.announcement p, .introduction p, .history p {
  text-align: right;
  color: grey;
}
.map {
  height: 400px;
  width: 100%; 
}
@media screen and (max-width: 1360px) {
  :root {
    font-size: 10px;
  }
  .section {
    flex-wrap: wrap;
    background: transparent;
  }
  .half {
    align-items: center;
    flex-grow: 1;
    min-width: 85%;
    overflow: hidden;
  }
}
@media screen and (max-width: 720px) {
  :root {
    font-size: 10px;
  }
  .section {
    padding: 0 5%;
    justify-content: center;
  }
}