body {
  margin: 0;
  background-color: #000;
}

h1 {
  font-size: 54px;
  color: #333;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  color: #ffffff;
}

h2 {
  font-size: 40px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #e09900;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 28px;
  }
}

h3 {
  font-size: 30px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #ffffff;
}

p {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #fff;
}

a {
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: #e09900;
}

a:hover {
  color: #ffb91a;
}

header {
  background-color: #1e1e1e;
  position: sticky;
  top: 0;
  z-index: 999;
}

header a {
  color: unset;
}

.header-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 0;
}

.logo {
  width: 30%;
  align-items: center;
  display: flex;
  padding-left: 10px;
}

.logo img {
  max-width: 100%;
}

ul {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
  margin-inline-start: 0;
  margin-inline-end: 0;
  padding-inline-start: 0 !important;
}

.menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 70%;
  font-size: 16px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  padding-right: 10px;
  letter-spacing: 0.3px;
}

.navigation {
  display: flex;
  list-style: none;
  gap: 20px;
  justify-content: flex-end;
}

.navigation li a {
  border-bottom: 0 solid transparent;
  transition: all 0.1s ease;
  color: #fff;
}

.navigation li a:hover {
  color: #cdcdcd;
}

.navigation li a.active {
  color: #e09900;
}

.hamburger-icon {
  display: none;
  border: none;
  background-color: transparent;
}

.hamburger-icon .fa-bars,
.hamburger-icon .fa-x {
  color: #555;
  font-size: 18px;
  cursor: pointer;
}

.hamburger-icon input[type="checkbox"] {
  appearance: none;
}

@media screen and (max-width: 1024px) {
  .menu {
    font-size: 16px;
  }

  .logo a {
    max-width: 100%;
  }

  .logo img {
    height: 50px;
    max-width: none;
  }

  .navigation {
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    transition: max-height ease-in-out 0.5s;
    position: absolute;
    background-color: #fff;
    top: 100%;
    align-items: flex-start;
    width: 100%;
    left: 0;
    gap: 0;
  }

  .navigation li {
    border-bottom: 1px solid #f2f2f2;
    width: 100%;
  }

  .navigation li a {
    width: 100%;
    display: block;
    padding: 10px 25px;
  }

  li:has(.active) {
    background-color: #f3f3f3;
  }

  .navigation li a:hover {
    border: unset;
  }

  .hamburger-icon {
    display: block;
  }

  .fa-x {
    display: none !important;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .navigation {
    margin-top: 1rem;
    display: flex;
    max-height: 300px;
    border-top: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-bars {
    display: none;
  }

  header:has(.hamburger-icon input[type="checkbox"]:checked) .fa-x {
    display: inline-block !important;
  }
}

#top-banner {
  background-image: url(/assets/images/sadredin-taheri-official-website.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 115vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
  text-shadow: #000 0 0 5px;
  max-width: 100%;
  position: relative;
  align-items: center;
}

.overlay-top-banner {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.41);
}

#top-banner h1 {
  font-size: 90px;
  text-align: center;
  color: #fff;
  text-shadow: 0.06em 0.05em 0em #000000 !important;
  margin: 0;
  z-index: 2;
}

#top-banner p {
  z-index: 2;
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  #top-banner {
    height: 50vh;
  }
}

@media screen and (max-width: 600px) {
  #top-banner {
    height: 60vh;
  }

  #top-banner h1 {
    font-size: 50px;
  }

  #top-banner h2 {
    font-size: 26px;
  }
}

.content-parts {
  max-width: 1200px;
  margin: 50px auto;
  color: #333;
  text-align: left;
  padding: 0 5%;
}

.content-parts ul li {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 2em;
  color: #ffffff;
}

.content-parts ul li ul li {
  margin-left: 25px;
  list-style-type: disc;
}

.two-columns {
  display: flex;
}

.two-columns .col-1, .two-columns .col-2 {
  width: 50%;
}

.col-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.content-images img {
  border-radius: 5px;
  max-width: 100%;
}

strong {
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .two-columns {
    flex-direction: column;
    justify-content: center;
  }

  .two-columns .col-1, .two-columns .col-2 {
    width: 100% !important;
  }
}

.two-columns .w-60 {
  width: 60%;
}

.two-columns .w-40 {
  width: 40%;
}

blockquote {
  border-left: 5px solid #e09900;
  font-family: "Open Sans", sans-serif;
  padding: 0px 20px;
  line-height: 1.3em;
  margin-bottom: 30px;
  margin-inline: 0;
}

.col-quote {
  display: flex;
  align-items: center;
}

blockquote ol {
  margin-top: 30px;
  margin-left: 20px;
  padding-inline-start: 0;
}

.two-columns .shadow-box {
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.2), 0 0 8px 0 rgba(0, 0, 0, 0.19);
  margin: 20px;
  border-radius: 6px;
  padding: 0 30px 50px 30px;
}

@media screen and (max-width: 1024px) {
  .two-columns .shadow-box {
    max-width: 70%;
    margin: 20px auto;
  }
}

@media screen and (min-width: 1024px) {
  figure.small-image {
    max-width: 50%;
  }
}

footer {
  width: 100%;
  background-color: #1e1e1e;
}

.footer-container {
  padding: 25px 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}

.footer-container h3 {
  font-family: "Open Sans", sans-serif;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
}

.footer-container a {
  color: #fff;
}

.footer-container a:hover {
  color: #e09900;
}

.social-media-section {
  display: flex;
  gap: 10px;
  font-size: 22px;
  color: #1e1e1e;
}

.social-media-section i {
  font-size: 22px;
  color: #1e1e1e;
}

.social-media-section .social-box {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 6px;
  border-radius: 4px;
  width: 26px;
  height: 26px;
}

.social-box:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.footer-column p{
  line-height: 1.5em;
}

.copyright {
  margin: 0 auto;
  background-color: #141414;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding: 15px 5%;
}

.copyright p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px !important;
  margin: 0 auto;
  max-width: 1200px;
  line-height: 2em;
}

.copyright a {
  color: #fff;
}

.copyright a:hover {
  color: #e09900;
}

@media screen and (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .footer-column p, .copyright p {
    text-align: center;
  }

  .social-media-section, .foundations-section {
    justify-content: center;
  }
}

@media screen and (min-width: 600px) and (max-width: 1024px) {
  .footer-container {
    flex-wrap: wrap;
    padding-left: 5%;
    row-gap: 50px;
  }

  .footer-column {
    width: 50%;
  }

  .copyright {
    padding-left: 5%;
  }
}

#bio-part a{
  float: right;
}

.white-h{
  margin-top: 90px;
  color: #fff;
}

.carousel-container{
  width: 75%;
  margin: 30px auto;
}

.swiper{
  padding-bottom: 70px !important;
}

.swiper-slide img{
  border: 2px solid #fff;
  border-radius: 3px;
  max-width: 100%;
}

.swiper-button-next:after, .swiper-button-prev:after{
  color: #fff !important;
  font-size: 20px !important;
  font-weight: 700;
}

.two-columns-slider{
  display: flex !important;
  gap: 20px !important;
  align-items: center;
}

.col-1-slider, .col-2-slider{
  width: 50% !important;
}

.col-2-slider h3{
  font-size: 46px;
  margin: 0;
}

.col-2-slider p{
  font-size: 15px;
  line-height: 1.7em;
  max-width: 85%;
}

.swiper-pagination-bullet{
  background-color: #fff !important;
  opacity: 0.4 !important;
}

.swiper-pagination-bullet-active{
  background-color: #fff !important;
  opacity: 1 !important;
}

.cta-button{
  color: #fff;
  border: 2px solid #fff;
  border-radius: 3px;
  padding: 8px 16px;
  font-size: 20px;
}

.cta-button:hover{
  color: #e09900;
  border-color: #e09900;
}

.gap-columns{
  gap: 30px;
}

.vertically-center{
  display: flex;
  align-items:  center;
}

video {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.video-container video {
  width: 100%;
  height: auto;
  display: block;
}
.cover-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.3s ease;
}
.cover-image.hidden {
  opacity: 0;
  pointer-events: none;
}
.play-button {
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.play-button::before {
  content: '';
  border: solid 20px transparent;
  border-left: solid 30px white;
  margin-left: 35%;
}

.quote-slider p{
  text-align: center;
  max-width: 85%;
  margin: 0 auto;
}

#contact-page{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 90px;
}

.forms{
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 95%;
}
.forms input, .forms textarea {
  width: 100%;
  padding: 10px 0 10px 10px;
  margin: 10px 0;
  border: 1px solid #b8b8b8;
  font-family: "Open Sans", sans-serif;
  background-color: #000;
  color: #fff;
  border-radius: 5px;
}
.forms .submit-button{
  width: 55%;
  cursor: pointer;
  margin-top: 10px;
  background-color: #000;
}
@media screen and (max-width: 1024px){
  .two-columns .form-box{
    margin: 0 auto;
  }
  .form-box{
    width: 91%;
  }
  .content-box.mobile-content{
    align-items: center;
    text-align: center;
  }
  .form-box p{
    width: 70%;
  }
}
@media screen and (max-width: 600px) {
  .form-box p{
    width: 95%;
  }
  .form-box{
    width: 100%;
  }
  .forms .submit-button{
    width: 70%;
  }
  .forms input {
    margin: 5px 0;
  }
  .forms{
    width: 90%;
  }
}

.three-columns{
  display: flex;
  justify-content: space-between;
}

.three-columns .col-1, .three-columns .col-2, .three-columns .col-3 {
  width: 30%;
}

@media screen and (max-width: 1024px) {
  .three-columns {
    flex-direction: column;
    justify-content: center;
  }

  .three-columns .col-1, .three-columns .col-2, .three-columns .col-3 {
    width: 100% !important;
  }
}

.three-columns .content-images {
  margin: 0;
}

.website-link{
  color: rgba(255, 255, 255, 0.75);
}

blockquote ul{
  margin-left: 10px;
}

blockquote p{
  line-height: 1.6em;
}

.col-image-quote{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.col-image-quote .content-images img{
  max-width: 200px;
}

@media screen and (min-width: 1024px) {
  .albums{
    margin-bottom: 40px;
  }
}

.albums .col-1, .albums .col-2, .albums .col-3{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.albums img{
  border: 2px solid #fff;
  border-radius: 3px;
}

.albums p a{
  color: #fff;
}

.albums p a:hover{
  color: #e09900;
}

.album-page h1{
  font-size: 36px;
}

.album-page img{
  max-width: 85%;
  border: 2px solid #fff;
  border-radius: 3px;
  display: block;
  margin: 0 auto;
}

.album-page .album-cover-col{
  display: flex;
  flex-direction: column;
  align-items: center;
}

.buy-btn{
  height: 70px;
  border: none !important;
}

.album-page h2{
  color: #fff;
  font-size: 28px;
}

.music-player-box{
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.single-music{
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 75%;
}

audio {
  min-width: 300px !important;
}

.buy-buttons-box {
  display: flex;
  width: 100%;
  margin-top: 30px;
}
