@charset "UTF-8";
/**** Start Fonts ****/
@font-face {
  font-family: "alarabiyaBold";
  src: url("../fonts/alarabiyaBoutros2020-Bold.woff2") format("woff2"), url("../fonts/alarabiyaBoutros2020-Bold.woff2") format("woff");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "alarabiyaRegular";
  src: url("../fonts/alarabiyaBoutros2020-Regular.woff2") format("woff2"), url("../fonts/alarabiyaBoutros2020-Regular.woff2") format("woff");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "alarabiyaLight";
  src: url("../fonts/alarabiyaBoutros2020-Light.woff2") format("woff2"), url("../fonts/alarabiyaBoutros2020-Light.woff2") format("woff");
  font-style: normal;
  font-weight: 300;
}
/**** End Fonts ****/
/**** Start CSS Reset ****/
:root,
html,
body {
  font-size: 16px;
  margin: 0;
  padding: 0;
}

ul,
li,
ol {
  list-style-type: none;
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  display: inline-block;
}

* {
  box-sizing: border-box;
}

/**** End CSS Reset ****/
body {
  direction: rtl;
  font-family: alarabiyaBold;
}

.global-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 100vh;
  padding-bottom: 7.5rem;
}

.page-content {
  width: 100%;
  padding: 0 1.25rem;
}
@media screen and (min-width: 481px) {
  .page-content {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1230px) {
  .page-content {
    width: 76.875rem;
    margin: 0 auto;
  }
}

.fm-logo {
  display: block;
  font-size: 0;
  width: 3.5rem;
  height: 3.5rem;
  background-image: url("../gfx/aafm-logo.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 999;
  position: relative;
}

.section-ttl {
  font-size: 2.875rem;
  color: #151515;
  padding-bottom: 2rem;
}

section {
  padding: 2rem 0;
}

.main-btn {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-image: linear-gradient(to bottom, #fd0641, #fd0341 37%, #de0249 55%, #8a025a 95%, #8a025a);
  color: #FFF;
  font-size: 1.75rem;
  padding: 0.5rem 1.25rem;
  margin-top: 2rem;
  border-radius: 1.5rem;
  border: none;
  font-family: alarabiyaRegular;
  cursor: pointer;
}

/**** Start Nav ****/
.nav {
  font-size: 1.4375rem;
  display: flex;
}
@media screen and (min-width: 1230px) {
  .nav {
    margin: 0 3rem 0 auto;
  }
}
.nav__item {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1230px) {
  .nav__item {
    margin-bottom: 0;
    margin-left: 1.5rem;
  }
  .nav__item:last-child {
    margin-left: 0;
  }
}

/**** End Nav ****/
/**** Start Global Nav ****/
.global-nav {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9;
  overflow: hidden;
  padding: 0 1.25rem;
  width: 100%;
  background-color: #1d1f36;
}
@media screen and (min-width: 481px) {
  .global-nav {
    padding: 0 2rem;
  }
}
@media screen and (min-width: 1230px) {
  .global-nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    flex: 1;
    flex-direction: row;
    position: unset;
    padding: 0;
    width: unset;
  }
}
.global-nav .nav {
  flex-direction: column;
  margin-top: 5.3125rem;
  padding-top: 2rem;
  border-top: solid 0.0625rem rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 1230px) {
  .global-nav .nav {
    flex-direction: row;
    margin-top: 0;
    padding-top: 0;
    border: none;
  }
}

/**** End Global Nav ****/
/**** Start Mobile Nav Show/Hide ****/
.nav-btn {
  display: none;
}
.nav-btn:checked ~ .fm-logo {
  position: fixed;
  top: 0.75rem;
  right: 1.25rem;
}
@media screen and (min-width: 481px) {
  .nav-btn:checked ~ .fm-logo {
    right: 2rem;
  }
}
.nav-btn:checked ~ .global-nav {
  display: flex;
  height: -moz-fit-content;
  height: fit-content;
  padding-bottom: 1.25rem;
}
.nav-btn:checked ~ .nav-icon .nav-icon--open {
  display: none;
}
.nav-btn:checked ~ .nav-icon .nav-icon--close {
  display: block;
}
@media screen and (min-width: 1230px) {
  .nav-btn:checked ~ .nav-icon .nav-icon--close {
    display: none;
  }
}
.nav-btn:checked ~ .nav-overlay {
  display: block;
}

.nav-icon {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  left: 1.25rem;
  top: 1.5rem;
  z-index: 10;
}
@media screen and (min-width: 481px) {
  .nav-icon {
    left: 2rem;
  }
}
@media screen and (min-width: 1230px) {
  .nav-icon--open {
    display: none;
  }
}
.nav-icon--close {
  display: none;
  position: fixed;
  left: 1.25rem;
  top: 1.5rem;
}
@media screen and (min-width: 481px) {
  .nav-icon--close {
    left: 2rem;
  }
}
@media screen and (min-width: 1230px) {
  .nav-icon--close {
    display: none;
  }
}

.nav-overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: none;
  background: rgba(21, 21, 21, 0.8);
}
@media screen and (min-width: 1230px) {
  .nav-overlay {
    display: none;
  }
}

/**** Start Mobile Nav Show/Hide ****/
/**** Start Icons ****/
i.icons {
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
}
i.icons.facebook {
  background-image: url("../gfx/icons/icons-facebook.svg");
}
i.icons.instagram {
  background-image: url("../gfx/icons/icons-instagram.svg");
}
i.icons.twitter {
  background-image: url("../gfx/icons/icons-x.svg");
}
i.icons.youtube {
  background-image: url("../gfx/icons/icons-youtube.svg");
}
i.icons.location {
  background-image: url("../gfx/icons/icons-geolocation.svg");
}
i.icons.menu {
  background-image: url("../gfx/icons/icons-menu.svg");
}
i.icons.close {
  background-image: url("../gfx/icons/icons-close.svg");
}
i.icons.play {
  background-image: url("../gfx/icons/icons-play.svg");
}
i.icons.play02 {
  background-image: url("../gfx/icons/icons-play02.svg");
}
i.icons.pause {
  background-image: url("../gfx/icons/icons-pause.svg");
}
i.icons.volume {
  background-image: url("../gfx/icons/icons-volume.svg");
}
i.icons.mute {
  background-image: url("../gfx/icons/icons-mute.svg");
}
i.icons.prev, i.icons.next {
  background-image: url("../gfx/icons/icons-arrow.svg");
}

/**** End Icons ****/
/**** Start Header ****/
.header {
  background-color: #1d1f36;
  padding: 0.75rem 0;
  height: 5rem;
}
@media screen and (min-width: 1230px) {
  .header {
    height: unset;
  }
}
@media screen and (min-width: 1230px) {
  .header .page-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.header .nav__item {
  color: #FFF;
}
.header .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: flex-start;
}
.header .social-list::before {
  content: "سوشيال ميديا";
  color: #FFF;
  font-size: 1.4375rem;
  flex: 0 0 100%;
  width: 40%;
  padding: 1rem 0;
  margin-top: 1rem;
  border-top: solid 0.0625rem rgba(255, 255, 255, 0.1);
}
@media screen and (min-width: 1230px) {
  .header .social-list::before {
    display: none;
  }
}
.header .social-list__item {
  margin: 0 0.5rem;
}
.header .social-list__item:first-child {
  margin-right: 0;
}
@media screen and (min-width: 1230px) {
  .header .social-list__item {
    margin: 0 1rem;
  }
}

/**** End Header ****/
/**** Start Hero ****/
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 2rem;
  height: 17.5rem;
  padding-top: 0;
  position: relative;
}
@media screen and (min-width: 481px) {
  .hero {
    height: 30rem;
  }
}
.hero-video-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.hero-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
  font-size: 2.875rem;
  margin: 2.0625rem 0;
  color: #FFF;
}
@media screen and (min-width: 481px) {
  .hero-content {
    margin: 8.3125rem 0;
    width: 21.5625rem;
  }
}
@media screen and (min-width: 1230px) {
  .hero-content {
    font-size: 4.5rem;
    margin: 5.75rem 0;
    width: 30.0625rem;
  }
}

/**** End Hero ****/
/**** Start Frequencies ****/
.frequencies {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 2rem;
  background-image: url("../gfx/frequencies.jpg");
}
.frequencies .section-ttl {
  color: #FFF;
}
.frequencies-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
  align-items: stretch;
}
.frequencies-list__item {
  flex: 0 0 31%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  background: #FFF;
  padding: 1rem 0.25rem;
  border-radius: 1rem;
}
@media screen and (min-width: 481px) {
  .frequencies-list__item {
    flex: 0 0 32.3%;
  }
}
.frequencies-list__item .city {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
@media screen and (min-width: 481px) {
  .frequencies-list__item .city {
    font-size: 1.75rem;
  }
}
.frequencies-list__item .frequency {
  background-image: linear-gradient(to bottom, #fd0641, #fd0341 37%, #de0249 55%, #8a025a 95%, #8a025a);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: auto;
  font-size: 1.5rem;
}
@media screen and (min-width: 481px) {
  .frequencies-list__item .frequency {
    font-size: 2.875rem;
  }
}

/**** End Frequencies ****/
/**** Start Programs Grid ****/
.programs .gridx3 {
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media screen and (min-width: 501px) {
  .programs .gridx3 {
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media screen and (min-width: 1230px) {
  .programs .gridx3 {
    -moz-column-count: 3;
         column-count: 3;
  }
}
.programs-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border-radius: 1rem;
  border: solid 0.0625rem #e5e5e5;
  padding: 1rem;
  margin-bottom: 1rem;
  background: url("../gfx/fm-shape.svg") 1.25rem bottom no-repeat;
}
.programs-item__title {
  font-family: alarabiyaRegular;
  font-size: 2.25rem;
  margin-bottom: 0.5rem;
}
.programs-item__presenter {
  font-family: alarabiyaBold;
  font-size: 1.5rem;
  background-image: linear-gradient(to bottom, #fd0641, #fd0341 37%, #de0249 55%, #8a025a 95%, #8a025a);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.programs-item__description {
  font-family: alarabiyaLight;
  font-size: 1.4375rem;
  margin-bottom: 1rem;
}
.programs-item__time {
  font-family: alarabiyaBold;
  font-size: 1.25rem;
  color: #5b5b5b;
  margin-top: auto;
}
.programs-item__time b {
  color: #151515;
  padding-left: 0.3125rem;
}

/**** End Programs Grid ****/
/**** Start Presenter ****/
.presenters {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-bottom: 2rem;
  padding-bottom: 1rem;
  background-image: url("../gfx/presenters.jpg");
}
.presenters .section-ttl {
  color: #FFF;
}
.presenters-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-between;
}
.presenters-list__item {
  flex: 0 0 47%;
  margin-bottom: 1rem;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}
@media screen and (min-width: 481px) {
  .presenters-list__item {
    flex: 0 0 32%;
  }
  .presenters-list__item:last-child {
    margin-left: auto;
    margin-right: 2%;
  }
}
@media screen and (min-width: 1230px) {
  .presenters-list__item {
    flex: 0 0 18.7%;
  }
  .presenters-list__item:last-child {
    margin-left: unset;
    margin-right: unset;
  }
}
.presenters-list__item img {
  width: 100%;
  height: auto;
}

/**** End Presenter ****/
/**** Start Social ****/
.social .social-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.social .social-list__item {
  flex: 0 0 33%;
  padding: 1rem 0;
  text-align: center;
  border-left: solid 0.0625rem #e5e5e5;
}
.social .social-list__item:last-child {
  border-left: none;
}
.social i.icons {
  width: 4rem;
  height: 4rem;
}
.social i.icons.facebook {
  background-image: url("../gfx/icons/icons-facebook-dark.svg");
}
.social i.icons.instagram {
  background-image: url("../gfx/icons/icons-instagram-dark.svg");
}
.social i.icons.twitter {
  background-image: url("../gfx/icons/icons-x-dark.svg");
}
.social i.icons.youtube {
  background-image: url("../gfx/icons/icons-youtube-dark.svg");
}

/**** End Social ****/
/**** Start Footer ****/
.footer {
  background-color: #f4f4f4;
  padding: 1rem 0;
  position: absolute;
  bottom: 2.25rem;
  width: 100%;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.footer .nav {
  display: none;
}
@media screen and (min-width: 481px) {
  .footer .nav {
    display: flex;
    flex: 1;
    justify-content: space-between;
    margin: 0 3.125rem;
  }
}
@media screen and (min-width: 1230px) {
  .footer .nav {
    justify-content: unset;
    margin: 0 2rem;
  }
}
.footer .nav__item {
  color: #151515;
}
@media screen and (min-width: 481px) {
  .footer .nav__item {
    margin-bottom: 0;
  }
}

/**** End Footer ****/
/**** Start Copyrights ****/
.copyrights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: #e5e5e5;
  padding: 0.5rem 0;
  font-family: alarabiyaLight;
  font-size: 1.25rem;
  color: #5b5b5b;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 2.25rem;
}

/**** End Copyrights ****/
/**** Start Audio Player ****/
.fm-player {
  position: fixed;
  right: 0;
  left: 0;
  background-color: #FFF;
  z-index: 999;
  box-shadow: 0 0.5rem 1.25rem 0 rgba(43, 51, 71, 0.2);
  padding: 1.25rem 0;
  bottom: -100%;
  transition: bottom 0.3s ease;
}
.fm-player.show {
  bottom: 0;
}
.fm-player #fmAudio {
  display: none !important;
}
.fm-player .audio-player {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.fm-player .audio-player__action {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1.75rem;
  background-color: #f4f4f4;
  cursor: pointer;
}
.fm-player .audio-player__action i.play02 {
  width: 1.125rem;
  height: 1.3125rem;
}
.fm-player .audio-player__action i.pause {
  width: 0.875rem;
  height: 1.25rem;
}
.fm-player .audio-player__info {
  margin: 0 1rem 0 auto;
  padding-right: 1rem;
  border-right: solid 0.0625rem #e5e5e5;
}
.fm-player .audio-player__info--title {
  font-size: 1.75rem;
}
.fm-player .audio-player__info--time {
  font-size: 1.25rem;
  margin-top: 0.5rem;
  color: #5b5b5b;
}
.fm-player .fm-playlist {
  display: none;
}
.fm-player i.close {
  filter: invert(1) contrast(3);
  margin-right: 0.625rem;
}

/**** End Audio Player ****/
/**** Start 404 ****/
.page404 .page-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin: 4.6875rem auto;
}
@media screen and (min-width: 1230px) {
  .page404 .page-content {
    flex-direction: row;
    flex-direction: row-reverse;
    justify-content: space-around;
    max-width: 62.5rem;
    margin: 12.5rem auto;
  }
}
.page404-img {
  max-width: 15rem;
}
@media screen and (min-width: 481px) {
  .page404-img {
    max-width: 40%;
  }
}
@media screen and (min-width: 1230px) {
  .page404-img {
    flex: 0 0 45%;
    width: 45%;
  }
}
.page404-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 2rem 0;
}
@media screen and (min-width: 1230px) {
  .page404-content {
    flex: 0 0 53%;
  }
}
.page404-content__ttl {
  font-size: 4.5rem;
}
@media screen and (min-width: 481px) {
  .page404-content__ttl {
    font-size: 10rem;
  }
}
.page404-content__msg {
  padding: 2rem 0 0 0;
  margin: 0;
  font-size: 1.75rem;
  text-align: center;
}
.page404-content__btns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  justify-content: space-around;
  width: 100%;
}
@media screen and (min-width: 1230px) {
  .page404-content__btns {
    justify-content: center;
  }
}
.page404-content__btns .main-btn {
  width: 9.375rem;
}
@media screen and (min-width: 1230px) {
  .page404-content__btns .main-btn:first-child {
    margin-left: 1rem;
  }
}/*# sourceMappingURL=style.css.map */