:root {
  --neutral-darker: #222;
  --neutral-dark: #333;
  --neutral: #777;
  --neutral-light: #aaa;
  --neutral-lighter: #eee;
}

@font-face {
  font-family: 'Vazir';
  src: url('/fonts/Vazir-FD-WOL.woff') format('woff');
  src: url('/fonts/Vazir-FD-WOL.woff2') format('woff2');
  /* src: url('/fonts/Vazir-Bold-FD-WOL.woff') format('woff'); */
  /* src: url('/fonts/Vazir-Bold-FD-WOL.woff2') format('woff2'); */
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: 'Vazir', sans-serif;
}

h1 {
  margin: 2rem 0;
}

p {
  margin: 0.5rem 0;
}


.container {
  max-width: 1280px;
  /* position: relative; */
  margin: 0 auto;
  padding: 2rem;
  /* z-index: 10; */
}


.hero {
  position: relative;
}

.hero .flag-bar {
  height: 100px;
}

.hero .flag-bar.top {
  background-color: #1DA03E;
}

.hero .flag-bar.middle {
  background-color: #fff;
}

.hero .flag-bar.bottom {
  background-color: #DA0000;
}

.hero .center-image {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  box-shadow: 0 0 5px 5px rgba(0, 0, 0, 0.2);
}

.hero .motto {
  position: absolute;
  top: 0;
  left: 0;
  /* background-color:antiquewhite; */
  width: 100%;
  height: 100%;
}

.hero .motto .box-flex {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  /* background-color: aqua; */
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 0 1rem;
}

.hero .motto .box-text {
  font-size: 2rem;
  font-weight: bold;
  /* color: #FB7866; */
  color: #DA0000;
}

@media screen and (max-width: 768px) {
  
  .hero .flag-bar {
    height: 70px;
  }

  .hero .center-image {
    width: 150px;
  }

  .hero .motto .box-flex {
    justify-content: space-between;
  }

  .hero .motto .box-text {
    font-size: 1.2rem;
  }

}


.lyric .box-flex {
  display: flex;
  flex-direction: row;
}

.lyric .box-flex > div {
  flex: 1 1 0%;
}

.lyric .box-media > * {
  margin: 2rem 0;
  text-align: center;
}

.lyric .box-pdf {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lyric .box-pdf img {
  margin: 0 1rem;
}

@media screen and (max-width: 768px) {
  
  .lyric .box-flex {
    flex-direction: column-reverse;
  }

  .lyric .box-video iframe {
    width: 100%;
  }

}


.footer {
  background-color: #333;
  padding: 1rem;
  text-align: center;
  margin-top: 5rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}