/**
 * Mixins file
 */
header {
  background-color: #11100E;
}
header .container {
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 15px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  header .container {
    justify-content: space-between;
    flex-direction: row;
  }
}
header .container nav {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  header .container nav {
    margin: 0;
  }
}
header .container nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}
header .container nav ul li {
  position: relative;
  padding: 10px;
  margin: 10px;
}
@media screen and (min-width: 768px) {
  header .container nav ul li {
    margin: 0 5px;
  }
}
header .container nav ul li:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  border-bottom: 1px;
  border-bottom-color: #FFFFFF;
  transition-duration: 0.3s;
}
header .container nav ul li:hover:before {
  border-bottom-style: dashed;
  width: 100%;
}
header .container nav ul li.current_page_item:before, header .container nav ul li.current-menu-item:before {
  border-bottom-style: solid;
  width: 100%;
}
header .container nav ul li a {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: #FFFFFF;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

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

img,
figure,
image {
  max-width: 100%;
  height: auto;
}

.socials-menu .socials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.socials-menu .socials .social-link {
  margin: 5px;
  padding: 5px;
}
.socials-menu .socials .social-link .social-icon {
  width: auto;
  height: 40px;
}

.download-icon {
  width: 30px;
  height: 30px;
  background-image: url("../images/download.png");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  border: none;
}

/* Basic container styling */
.container {
  max-width: 1080px;
  width: 100%;
  margin: 20px auto; /* Centers the container */
  padding: 0 15px; /* Default padding */
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .container {
    padding: 0 20px; /* Increased padding for smaller devices */
  }
}

.heading-section {
  position: relative;
}
.heading-section:before {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
}
.heading-section h1 {
  color: #fff;
  position: absolute;
  top: 50%;
  text-align: center;
  width: 100%;
  z-index: 3;
  transform: translateY(-50%);
  margin: 0;
}

.responsive-yt {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
  overflow: hidden; /* Ensures the content is not spilled outside the container */
}
.responsive-yt iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**
 * Mixins file
 */
footer {
  background-color: #11100E;
  padding: 10px;
}
footer .footer-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  justify-content: center;
  text-transform: uppercase;
}
@media screen and (min-width: 768px) {
  footer .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .footer-content .footer-left {
  color: #D9D9D9;
}
footer .footer-content .footer-right {
  display: flex;
  align-items: center;
}
footer .footer-content .footer-right ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}
footer .footer-content .footer-right ul li {
  margin: 5px 10px;
}
footer .footer-content .footer-right ul li a {
  color: #FFFFFF;
  font-size: 16px;
  text-decoration: none;
}