@charset "UTF-8";

@font-face {
  font-family: "ind-reg";
  src: url("/styles/fonts/Indivisible-Regular.ttf"); 
}

/* Common Header for all pages */
.header {
  background: #fff;
}

.header .row {
  align-items: center;
}

.header a {
  width: 30%;
  text-decoration: none;
  border: none;
  color: #fff;
}

.header-menu {
  color: #B9B9B9;
  font-family: "ind-reg";
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 29px 14px 29px 14px;
  text-decoration: none;
  position: absolute;
  right: 1%;
  width: 45%;
}

.header-btn {
  border: none;
  background: transparent;
  cursor: pointer;
  color: #282828;
}

.vcf {
  width: 50%;
  padding: 5% 2% 2% 5%;
  background: transparent;
  cursor: pointer;
}

/* Common footer for all pages */
.footer {
  background: #27303C;
  color: #fff;
  text-align: left;
  padding-block: 1%;
}

.footer p {
  font-family: "ind-reg";
  font-size: 14px;
  padding: 1% 2%;
  margin: 0;
  color: #fff;
}

.footer a {
  text-decoration: underline;
  font-family: "ind-reg";
  color: #fff;
}

.footer .vcf {
  width: 20%;
  padding: 2%;
}

.social {
  align-content: center;
}

.social a {
  display: inline-block;
  width: auto;
  letter-spacing: 1px;
  line-height: 2;
  padding-inline: 1%;
  text-decoration: none;
}

.social a:hover {
  text-decoration: underline;
}

.social .fb {
  width: 30px;
}

.social a img {
  width: 100%;
  padding: 0%;
  background: transparent;
}

/* Youtube */
.popup {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
}

.popup-content {
  position: relative;
  margin: 5% auto;
  padding: 0;
  width: 85%;
/*  max-width: 800px;*/
  background: #000;
}

.close-button {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
}

.popup-content iframe {
  width: 100%;
  height: 70vh;
  border: none;
}

.play {
  cursor: pointer;
}

@media only screen and (max-width: 768px) {

  .footer {
    padding-block: 7%;
    text-align: center;
  }
  .footer .w-80 {
    width: 95%;
  }
  .footer .vcf {
    width: 50%;
  }
  .footer p {
    padding-block: 2% 4%;
    font-size: 13px;
    width: 100%;
  }
  .social {
    margin-block-start: 0%;
  }
}


@media (max-width: 768px) {

  .menu-container {
    font-family: "ind-reg";
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #ededed;
    position: relative;
    z-index: 10;
  }

  .menu-container .logo {
    color: white;
    font-size: 1.5em;
    font-weight: bold;
  }

  .menu-icon {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .menu-icon div {
    width: 30px;
    height: 2px;
    background-color: #000;
    margin: 3px 0;
    transition: all 0.3s ease;
  }

  .menu-links {
    display: flex;
    gap: 20px;
  }

  .menu-links a {
    color: #000;
    text-decoration: none;
    font-size: 18px;
  }
  .menu-links {
    display: none;
    flex-direction: column;
    background-color: #ededed;
    position: absolute;
    top: 42px;
    right: 0;
    width: 100%;
    padding-block: 10px;
  }
  .menu-links a {
    padding: 2px 0;
    text-align: center;
  }
  .menu-icon {
    display: flex;
  }

  .menu-container.active .menu-links {
    display: flex;
  }

  .menu-container.active .menu-icon div:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-container.active .menu-icon div:nth-child(2) {
    opacity: 0;
  }

  .menu-container.active .menu-icon div:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -10px);
  }
}

/* Tablets - Portrait mode */
@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: portrait) {

  .header-btn {
    padding: 0%;
  }

  .header-menu {
    width: 70%;
    right: 2%;
  }

  .footer p {
    padding: 7% 2% 2% 3%;
  }

}

/* Tablets - Landscape mode */
@media only screen and (min-width: 600px) and (max-width: 1024px) and (orientation: landscape) {

  .header-menu {
    width: 47%;
    right: 0%;
  }
}

/* Tablets - Landscape mode */
@media only screen and (min-width: 1025px) and (max-width: 1130px) and (orientation: landscape) {
  .header-menu {
    width: 47%;
    right: 0%;
  }
}

/* Tablets - Landscape mode */
@media only screen and (min-width: 1131px) and (max-width: 1366px) and (orientation: landscape) {
  .header-menu {
    width: 47%;
    right: 0%;
  }
}

