@charset "UTF-8";
body {
  background-image: none;
}

section.hero {
  overflow: hidden;
  position: relative;
  height: 880px;
}

.hero-icon:nth-child(0) {
  transform: scale(1);
}

.hero-icon {
  width: 200px;
  height: 200px;
  position: absolute;
  cursor: pointer;
  background-color: #daac49;
  padding: 3px;
  border-radius: 1000px;
  z-index: 10;
  -webkit-box-shadow: 10px 10px 32px -12px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 10px 10px 32px -12px rgba(0, 0, 0, 0.6);
  box-shadow: 10px 10px 32px -12px rgba(0, 0, 0, 0.6);
}

.hero-icon > div {
  background: -webkit-linear-gradient(-90deg, #1f355e 0%, #642d78 50%, #2db9be 100%);
  background: -moz-linear-gradient(-90deg, #1f355e 0%, #642d78 50%, #2db9be 100%);
  background: -o-linear-gradient(-90deg, #1f355e 0%, #642d78 50%, #2db9be 100%);
  background: linear-gradient(-90deg, #1f355e 0%, #642d78 50%, #2db9be 100%);
  padding: 7%;
  border-radius: 1000px;
  width: 100%;
  height: 100%;
  transition: padding 0.5s;
}

.hero-icon:hover > div {
  padding: 10%;
}

.hero-icon > div > div {
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 1000px;
}

.hero-icon > div > div > div.title {
  text-align: center;
  padding-top: 12%;
  font-weight: 100;
  text-transform: uppercase;
  font-size: 22px;
}

.hero-icon > div > div > div.icon {
  font-size: 70px;
  color: #1f355e;
  text-align: center;
  width: 100%;
  padding: 10px;
  transition: color 0.25s;
}

.hero-icon:hover > div > div > div.icon {
  color: #daac49;
}

.main-bg {
  width: 2000px;
  height: 800px;
  background-image: url("../images/body-bg-2.svg");
  background-repeat: no-repeat;
  background-size: 110%;
  background-position: center center;
  opacity: 0.5;
}

.deep-1 {
  position: relative;
  left: -50%;
  z-index: 5;
  content: " ";
}

.deep-2 {
  width: 108%;
  height: 200%;
  background-image: url("../images/body-bg-2.svg");
  background-repeat: no-repeat;
  background-size: 120%;
  background-position: center center;
  position: absolute;
  top: -300px;
  left: -30px;
  z-index: 4;
  content: " ";
  opacity: 0.3;
  filter: sepia(100%) saturate(300%) brightness(70%) hue-rotate(180deg) blur(3px);
}

.index {
  border: 2px solid #daac49;
  left: -50%;
  top: 100px;
  width: 1200px;
  grid-template-columns: repeat(1, 1fr);
  margin: 0 calc((100% - 1200px) / 2);
  left: -47vw;
  top: 100px;
  width: 90vw;
  grid-template-columns: repeat(1, 1fr);
  margin: 0;
  position: absolute;
  height: 5px;
  opacity: 0;
  background-color: rgba(255, 255, 255, 0.9333333333);
  z-index: 9;
  border-radius: 56px;
  display: grid;
  grid-template-rows: 1fr;
  padding: 100px 10px 10px 10px;
  grid-gap: 10px;
  height: 390px;
  box-sizing: content-box;
}
@media (max-width: 500px) {
  .index {
    left: -47vw;
    top: 100px;
    width: 90vw;
    grid-template-columns: repeat(1, 1fr);
    margin: 0;
  }
}
@media (min-width: 501px) {
  .index {
    left: -47vw;
    top: 100px;
    width: 90vw;
    grid-template-columns: repeat(1, 1fr);
    margin: 0;
  }
}
@media (min-width: 801px) {
  .index {
    left: -38%;
    top: 100px;
    width: 695px;
    grid-template-columns: repeat(2, 1fr);
    margin: 0 calc((100% - 1207px) / 2);
  }
}
@media (min-width: 1075px) {
  .index {
    left: -45%;
    top: 100px;
    width: 995px;
    margin: 0 calc((100% - 1207px) / 2);
  }
}
@media (min-width: 1251px) {
  .index {
    left: -50%;
    top: 100px;
    width: 1200px;
    margin: 0 calc((100% - 1200px) / 2);
  }
}
.index > a.item {
  border: 2px solid #642d78;
  border-radius: 50px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  margin: 10px;
  display: grid;
  grid-template-columns: 65px auto;
  grid-gap: 10px;
  opacity: 0;
  cursor: pointer;
}
.index > a.item:hover {
  background-color: #eee;
}
.index > a.item > i {
  display: grid;
}
.index > a.item > i::before {
  background: #daac49;
  border: 2px solid #fff;
  border-radius: 50px;
  font-size: 30px;
  color: #fff;
  display: inline-grid;
  align-content: center;
  justify-content: center;
}
@media (min-width: 801px) {
  .index > a.item > i::before {
    font-size: 35px;
  }
}
.index > a.item > .title {
  align-content: center;
  display: grid;
  font-size: 20px;
  font-weight: 300;
}
@media (min-width: 801px) {
  .index > a.item > .title {
    font-size: 30px;
    font-weight: 100;
  }
}

.show {
  top: 0;
  height: 100%;
  position: absolute;
  width: 100%;
  left: -50%;
  padding-bottom: 10%;
  box-sizing: border-box;
  padding-right: calc((100% - 1200px) / 2);
  padding-left: 35%;
  padding-top: 13%;
}
.show > .image {
  background-color: #2db9be;
  width: 600px;
  height: 600px;
  border-radius: 300px;
  top: 17%;
  left: 29%;
  position: absolute;
  z-index: 0;
  clip-path: circle(1410px at 122% 248%);
  padding: 0 20px 20px 0;
  border: 13px solid #daac49;
}
.show > .image .navigator {
  display: none;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  width: min-content;
  gap: 10px;
  margin: auto;
  margin-top: 7px;
}
.show > .image .navigator > div:first-child, .show > .image .navigator > div:last-child {
  border: 3px solid #daac49;
  border-radius: 100px;
  width: 40px;
  height: 39px;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
  color: #2db9be;
  background: #fff;
  transition-property: all;
  transition-duration: 0.5s;
  cursor: pointer;
}
.show > .image .navigator > div:first-child:hover, .show > .image .navigator > div:last-child:hover {
  color: #fff;
  background: #2db9be;
}
.show > .image::before {
  content: "";
  background-color: white;
  width: 100%;
  height: 100%;
  border-radius: 600px;
  background-size: cover;
  display: block;
}
.show > .image #jssor {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
  clip-path: circle(48% at 277px 277px);
}
.show > .push {
  float: left;
  display: block;
  width: 500px;
  height: 500px;
  shape-outside: circle(300px at 40% 37%);
  position: relative;
}
.show > .title {
  line-height: 1.5em;
  font-size: 25px;
  color: #642d78;
  margin-bottom: 20px;
  text-align: justify;
  font-weight: 700;
  opacity: 0;
}
.show > .separator {
  height: 30px;
  margin: 0 0 0 476px;
  border-style: solid;
  border-width: 2px 0 0 2px;
  border-color: #daac49;
  border-radius: 30px 0 0 0;
}
.show > .brief {
  line-height: 1.5em;
  font-size: 20px;
  text-align: justify;
  opacity: 0;
}
.show > a.more {
  display: block;
  float: right;
  background-color: #2db9be;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  margin: 20px 0 0 0;
  text-decoration: none;
  opacity: 0;
}
.show > a.more:lang(en)::before {
  content: "More ...";
}
.show > a.more:lang(ar)::before {
  content: "المزيد ...";
}
.show > a.more::before {
  display: block;
  padding: 5px 10px;
}

.recent {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 30px;
  margin: 20px 0;
}
@media (min-width: 1075px) {
  .recent {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recent > div.news, .recent > div.events, .recent > div.press {
  display: grid;
  grid-template-rows: 100px auto 20px;
}
.recent > div.news > .title, .recent > div.events > .title, .recent > div.press > .title {
  font-weight: 100;
  background-color: rgba(240, 240, 240, 0.6);
  font-size: 30px;
  padding: 10px 30px;
  background-size: 320%;
  border-top: 7px solid;
  display: grid;
  align-items: center;
}
.recent > div.news > .title:lang(en), .recent > div.events > .title:lang(en), .recent > div.press > .title:lang(en) {
  border-left: 2px solid;
  border-radius: 30px 5px 0 0;
}
.recent > div.news > .title:lang(ar), .recent > div.events > .title:lang(ar), .recent > div.press > .title:lang(ar) {
  border-right: 2px solid;
  border-radius: 5px 30px 0 0;
}
.recent > div.news > .content, .recent > div.events > .content, .recent > div.press > .content {
  display: grid;
}
.recent > div.news > .content:lang(en), .recent > div.events > .content:lang(en), .recent > div.press > .content:lang(en) {
  border-left: 2px solid;
}
.recent > div.news > .content:lang(ar), .recent > div.events > .content:lang(ar), .recent > div.press > .content:lang(ar) {
  border-right: 2px solid;
}
.recent > div.news > .content > ul.display-home-posts-listing, .recent > div.events > .content > ul.display-home-posts-listing, .recent > div.press > .content > ul.display-home-posts-listing {
  margin: 0;
  padding: 10px;
  display: grid;
  gap: 40px;
}
.recent > div.news > .content > ul.display-home-posts-listing > li, .recent > div.events > .content > ul.display-home-posts-listing > li, .recent > div.press > .content > ul.display-home-posts-listing > li {
  list-style: none;
  display: grid;
  grid-template-columns: min-content auto;
  grid-template-rows: min-content min-content auto;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > a.title, .recent > div.events > .content > ul.display-home-posts-listing > li > a.title, .recent > div.press > .content > ul.display-home-posts-listing > li > a.title {
  color: #daac49;
  text-decoration: none;
  font-size: 20px;
  line-height: 1.5em;
  text-align: justify;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .date, .recent > div.events > .content > ul.display-home-posts-listing > li > .date, .recent > div.press > .content > ul.display-home-posts-listing > li > .date {
  margin: 10px 0;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .excerpt, .recent > div.events > .content > ul.display-home-posts-listing > li > .excerpt, .recent > div.press > .content > ul.display-home-posts-listing > li > .excerpt {
  color: #555;
  font-size: 15px;
  line-height: 1.5em;
  text-align: justify;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .excerpt::after, .recent > div.events > .content > ul.display-home-posts-listing > li > .excerpt::after, .recent > div.press > .content > ul.display-home-posts-listing > li > .excerpt::after {
  content: " ...";
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .image, .recent > div.events > .content > ul.display-home-posts-listing > li > .image, .recent > div.press > .content > ul.display-home-posts-listing > li > .image {
  display: block;
  width: 100px;
  height: 100px;
  background-size: cover;
  border-radius: 50px;
  border-style: solid;
  background-position: center;
  grid-row: 1/span 3;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .image:lang(en), .recent > div.events > .content > ul.display-home-posts-listing > li > .image:lang(en), .recent > div.press > .content > ul.display-home-posts-listing > li > .image:lang(en) {
  border-width: 3px 1px 6px 7px;
  float: left;
  margin: 0 20px 20px 0;
  margin-left: -34px;
}
.recent > div.news > .content > ul.display-home-posts-listing > li > .image:lang(ar), .recent > div.events > .content > ul.display-home-posts-listing > li > .image:lang(ar), .recent > div.press > .content > ul.display-home-posts-listing > li > .image:lang(ar) {
  border-width: 3px 7px 6px 1px;
  float: right;
  margin: 0 0 20px 20px;
  margin-right: -34px;
}
.recent > div.news > .more, .recent > div.events > .more, .recent > div.press > .more {
  height: 30px;
  width: 100px;
  color: #fff;
  display: grid;
  justify-items: center;
  align-content: center;
}
.recent > div.news > .more:lang(en), .recent > div.events > .more:lang(en), .recent > div.press > .more:lang(en) {
  border-radius: 0 20px 20px 20px;
}
.recent > div.news > .more:lang(ar), .recent > div.events > .more:lang(ar), .recent > div.press > .more:lang(ar) {
  border-radius: 20px 0 20px 20px;
}
.recent > div.news > .more a, .recent > div.events > .more a, .recent > div.press > .more a {
  color: #fff;
  text-decoration: none;
}
.recent > div.news > .more a:hover::before, .recent > div.events > .more a:hover::before, .recent > div.press > .more a:hover::before {
  color: #daac49;
}
.recent > div.news > .more a:lang(en)::before, .recent > div.events > .more a:lang(en)::before, .recent > div.press > .more a:lang(en)::before {
  content: "more ...";
}
.recent > div.news > .more a:lang(ar)::before, .recent > div.events > .more a:lang(ar)::before, .recent > div.press > .more a:lang(ar)::before {
  content: "المزيد ...";
}
.recent > div.news > .title {
  text-decoration: none;
}
.recent > div.news > .title:lang(en)::before {
  content: "News";
}
.recent > div.news > .title:lang(ar)::before {
  content: "الأخبار";
}
.recent > div.news > .title::before {
  color: #2db9be !important;
}
.recent > div.news > .content, .recent > div.news > .title, .recent > div.news > .content .image {
  border-color: #2db9be !important;
}
.recent > div.news > .more {
  background-color: #2db9be;
}
.recent > div.events > .title {
  text-decoration: none;
}
.recent > div.events > .title:lang(en)::before {
  content: "Events & Conferences";
}
.recent > div.events > .title:lang(ar)::before {
  content: "الأحداث والمؤتمرات";
}
.recent > div.events > .title::before {
  color: #1e6ea0 !important;
}
.recent > div.events > .content, .recent > div.events > .title, .recent > div.events > .content .image {
  border-color: #1e6ea0 !important;
}
.recent > div.events > .more {
  background-color: #1e6ea0;
}
.recent > div.press > .title {
  text-decoration: none;
}
.recent > div.press > .title:lang(en)::before {
  content: "Press Releases";
}
.recent > div.press > .title:lang(ar)::before {
  content: "البيانات الصحفية";
}
.recent > div.press > .title::before {
  color: #642d78 !important;
}
.recent > div.press > .content, .recent > div.press > .title, .recent > div.press > .content .image {
  border-color: #642d78 !important;
}
.recent > div.press > .more {
  background-color: #642d78;
}/*# sourceMappingURL=front-page.css.map */