@charset "UTF-8";
/* CSS Document */
.logo-container {
  height: 100px;
  text-align: left;/* Fixed height */
  display: flex;
  align-items: center;     /* Vertically center */
  justify-content: flex-start; /* Align to the left */
  overflow: hidden;        /* Optional: clip overflow */
}

.logo-img {
  max-height: 100%;  /* Ensure it doesn't exceed the container height */
  width: auto;       /* Keep aspect ratio */
}

a {
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
}

a:hover {
  color: #494949; /* or whatever color you want */
  text-decoration: none;
}

.hero-section {
  background-image: url("../img/pressnine-background.jpg"); /* Replace with your image path */
  background-size: cover;      /* Ensures it covers the whole div */
  background-position: center; /* Keeps the image centered */
  background-repeat: no-repeat;/* Prevents tiling */
  height: 50vh;               /* Full screen height (adjust as needed) */
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;                /* For light text on dark images */
  text-align: center;
  position: relative;
}

.black-bg {
	background-color: #000000 !important;
}

.copyrighttext {
	font-size: 12px;
	font-weight: 100;
}
.p9button {
  display: inline-block;
  border-radius: 6px;
  background-color: #fff;
  border: solid 2px;
  border-color: #000;
  color: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  padding: 10px;
  width: 150px;
  transition: all 0.5s;
  cursor: pointer;
}

.p9button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.p9button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.p9button:hover span {
  padding-right: 25px;
}

.p9button:hover span:after {
  opacity: 1;
  right: 0;
}