

/* fun slide for core values */
.container17-fade-slide-in {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeSlideInAnimation 3s ease-out forwards;
}

@keyframes fadeSlideInAnimation {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}





.star-rating {
  color: gold; /* Gold color for stars */
  font-size: 34px; /* Size of the stars */
  line-height: 1; /* Adjust line height for proper alignment */
}





/* General container styling */
.container17 {
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-right: 50px;
}

/* Media query for screens smaller than 767px */
@media (max-width: 767px) {
  .container17 {
    flex-direction: column;
    align-items: center;
    padding-right: 0; /* Remove the right padding */
  }

  .container17-fade-slide-in {
    text-align: center;
    padding: 20px; /* Add padding around the elements */
  }

  img[src="img/Final Core Values.webp"] {
    width: 100%; /* Make the image responsive */
    height: auto;
  }

  img[src="img/newlogo.png"] {
    width: 300px;
    height: auto;
    margin-top: 20px; /* Add some spacing between the text and the logo */
  }
}

/* Media query for screens between 768px and 1023px */
@media (min-width: 768px) and (max-width: 1023px) {
  .container17 {
    flex-direction: column;
    align-items: center;
  }

  .container17-fade-slide-in {
    padding: 20px;
    padding-left: 60px; /* Adjust left padding for better alignment */
  }

  img[src="img/Final Core Values.webp"] {
    width: 100%; /* Make the image responsive */
    height: auto;
  }

  img[src="img/newlogo.png"] {
    width: 300px;
    height: auto;
    margin-top: 20px; /* Add some spacing between the text and the logo */
  }


  img[src="img/newlogo.png"] {
    width: 300px; /* Set the width of the logo to a fixed value */
    height: auto;
    margin-top: 20px; /* Add some spacing between the text and the logo */
  }
}
#video-container {
    overflow: hidden;
  }

  @media (max-width: 768px) {
    #video-container video {
      width: 100%;
      height: auto;
    }
    .col-md-12 {
      flex-wrap: wrap;
    }
    .col-md-12 > * {
      flex: 1;
      margin: 10px;
    }
    .col-md-12 .social-icons-facebook,
    .col-md-12 .social-icons-instagram,
    .col-md-12 .social-icons-linkedin,
    .col-md-12 .social-icons-youtube,
	.col-md-12 .social-icons-blog {
      flex: 0 0 100%;
      text-align: center;
      margin: 5px 0;
    }
  }
  /* Mega Menu styles */
@media (min-width: 992px) {
    .dropdown-menu.w-100 {
        width: 100vw;
        left: 0;
        right: 0;
        top: 100%;
        padding-top: 0;
    }

    .navbar-nav .dropdown-menu {
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .dropdown.position-static .dropdown-menu {
        max-width: none;
    }
}

@media (max-width: 991px) {
    .dropdown-menu.w-100 {
        width: auto;
    }
}
* Center the header items horizontally and stack them vertically on phones */
  .header-row.flex-wrap {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  .header-item {
    display: block;
    margin: 5px 0;
  }

  /* Style for the aqua link */
  .header-item:last-child {
    text-align: center;
    margin-top: 0px;
    padding-top: 0px; /* Adjust to make the orange bar thinner */
    padding-bottom: 0px; /* Adjust to make the orange bar thinner */
  }

  /* Add blue line on phones only for the aqua link */
  @media (max-width: 767px) {
    .header-row.justify-content-between {
      justify-content: center;
    }

    .header-item:last-child {
      border-top: 1px solid aqua;
    }

    /* Remove blue line on Lawrenceville item */
    .header-item:nth-child(3) {
      border-top: none;
    }
  }

  /* Remove blue line on computers */
  @media (min-width: 768px) {
    .header-row.justify-content-between {
      justify-content: space-between;
    }

    .header-item:last-child {
      border: none;
    }
  }
/* Popup styles */
  .popup-banner1 {
    display: none;
    position: fixed;
    top: 15px;
    right: 15px;
    padding: 15px;
    background-color: #ffffff;
    background-image: url('img/popup.png'); /* Replace 'your-image-url.jpg' with your actual image URL */
    background-size: cover;
    background-position: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 9999;
  }

  .popup-close1 {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
  }

  /* Trigger styles */
  .popup-trigger1 {
    display: inline-block;
    /* Add your trigger styles here */
  }
.containerbravo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.filterDiv {
  display: none;
}

.show {
  display: block;
}

.btn {
  border: none;
  outline: none;
  padding: 12px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
}

.btn:hover {
  background-color: #ddd;
}

.btn.active {
  background-color: #666;
  color: white;
}

.popup {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.9);
}

.popup-content {
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background-color: #333;
    padding: 20px;
    border-radius: 10px;
    max-width: 50vw;
    max-height: 100vh;
    text-align: center;
    color: #fff;
    word-wrap: break-word;
  }


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

.close:hover,
.close:focus {
  color: #fff;
}

.description {
  margin-top: 10px;
  text-align: center;
}
  

							
  .collapsible {
    cursor: pointer;
    user-select: none;
    background-color: white;
    padding: 5px;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
	    list-style-type: none;
  }

  .collapsible:after {
    content: '\002B';
    color: white;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }

  .active:after {
    content: "\2212";
  }

  .contenttwo {
    padding: 0 18px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }
   .decking-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        text-align: center;
    }

    .decking-container a {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin: 20px;
        text-decoration: none;
        color: black;
    }

    .decking-container h3 {
        padding-right: 75px;
        margin: 10px 0;
    }

    .decking-container img {
        max-width: 150px;
        height: auto;
        padding: 10px;
    }  
.filterDiv {cursor: pointer}
  