body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    padding: 0 0px;
}

.outfit-regular {
    font-family: "Outfit", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

/* General link styles */
a {
    text-decoration: none;
    font-weight: bold;
    color: black;
}

/* Hover state */
a:hover {
    color: #a0a0a0; /* Medium gray */
}

/* No active state */
a:active {
    color: black;
}

.video-module-container {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh; /* Half the height of the viewport */
    overflow: hidden;
    justify-content: left;
    align-items: left;
    background: black;
    margin-bottom: 0px; /* Adjust as needed for spacing */
}

.video-module-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.responsive-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block; /* Ensures the image is displayed as a block element */
}

.video-module-container img {
    display: flex;
    overflow: hidden;
    align-items: center; /* This will vertically center the image */
    justify-content: center; /* This centers the image horizontally */
    width: 100%; /* Takes full width of the viewport */
    background: #f0f0f0; /* Just for better visibility */
    max-width: 100%; /* Maintain aspect ratio */
    max-height: 100%;
    object-fit: cover;
    height: 50vh; /* Half the height of the viewport */



}

.video-module-overlay {
    position: absolute;
    bottom: 200px; /* Adjust this value to control the vertical positioning */
    left: 200px; /* Initial left margin for larger screens */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: white;
    text-align: left;
    padding: 20px;
    box-sizing: border-box;
}


.video-module-overlay a {
    color: white;
}
.video-module-overlay a:hover {
    color: #a0a0a0; /* Medium gray color */
}

/* Adjust the left margin for smaller screens */
@media (max-width: 1200px) {
    .video-module-overlay {
        left: 150px; /* Adjust for medium-sized screens */
    }
}

@media (max-width: 992px) {
    .video-module-overlay {
        left: 100px; /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .video-module-overlay {
        left: 50px; /* Adjust for tablets */
    }
}

@media (max-width: 576px) {
    .video-module-overlay {
        left: 20px; /* Adjust for mobile devices */
    }
}

.video-module-overlay h1 {
    font-size: 3em;
    margin: 0;
}
@media (max-width: 480px) {
    .video-module-overlay h1{
    font-size: 2.5em;
    margin: 0;
    max-width: 480px;
    left: 10px; /* Adjust for mobile devices */
    }
}

.video-module-overlay h2 {
    font-size: 3em;
    margin: 0;
    max-width: 1200px;
    width: 90%;
}

.video-module-overlay p {
    font-size: 1.2em;
    margin: 5px 0 0 0;
}

header {
    position: relative;
    height: 100vh;
}

.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    z-index: 1000;
    width: calc(100% - 100px);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
}

.navbar .logo {
    font-size: 24px;
    font-weight: bold;
}

@media (max-width: 480px) {
    .navbar .logo {
    font-size: 18px;
    font-weight: bold;
}
}
.navbar .logo:hover {
    color: #a0a0a0; /* Medium gray color */
}

.navbar .nav-links {
    font-size: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.navbar .nav-links li {
    margin-left: 20px;
}

.navbar .nav-links li a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.navbar .nav-links li a:hover {
    color: #a0a0a0; /* Medium gray color */
}

.video-container2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}
.video-container2 video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: black;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    bottom: 200px; /* Adjust this value to control the vertical positioning */
    left: 200px; /* Initial left margin for larger screens */
    text-align: left;
    color: white;
    padding: 10px; /* Optional: Add some padding */
}

/* Adjust the left margin for smaller screens */
@media (max-width: 1200px) {
    .video-overlay {
        left: 150px; /* Adjust for medium-sized screens */
    }
}

@media (max-width: 992px) {
    .video-overlay {
        left: 100px; /* Adjust for smaller screens */
    }
}

@media (max-width: 768px) {
    .video-overlay {
        left: 50px; /* Adjust for tablets */
    }
}

@media (max-width: 576px) {
    .video-overlay {
        left: 20px; /* Adjust for mobile devices */
    }
}

@media (max-width: 480px) {
    .video-overlay {
    left: 20px; /* Adjust for mobile devices */
    bottom: 100px;
    text-align: left;
    color: white;
    }
}
.video-overlay h1 {
    font-size: 3em;
    margin: 0;
    max-width: 1200px;
    width: 75%;
}
@media (max-width: 480px) {
    .video-overlay h1{
    font-size: 2em;
    margin: 0;
    max-width: 480px;
    width: 75%;
left: 10px; /* Adjust for mobile devices */
    }
}
.video-overlay h2 {
    font-size: 3em;
    margin: 0;
    max-width: 1200px;
    width: 85%;
}

.video-overlay p {
    font-size: 1.2em;
    margin: 5px 0 0 0;
    max-width: 1200px;
    width: 85%;
    padding-bottom: 10px;
}
@media (max-width: 480px) {
    .video-overlay p{
    font-size: 1em;
    margin: 0;
    max-width: 480px;
    width: 75%;
left: 10px; /* Adjust for mobile devices */
    }
}
main {
    padding: 20px 0;
    display: flex;
    justify-content: center;
}

.prefooter-container {
    max-width: 1500px;
    width: 90%;
}

prefooter {
    padding: 40px 0;
    display: flex;
    justify-content: center;
    background: rgba(240, 240, 239, 1);
    color: black;
}

.prefooter-overview {
    text-align: left;
    padding: 20px;
    border-radius: 0px;
    max-width: 968px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    justify-content: center;
    gap: 50px;
}

.prefooter-overview h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.prefooter-overview h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.prefooter-overview h4 {
    font-size: 1em;
    margin-bottom: 10px;
}

.prefooter-overview p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
}

.thumbnails-grid-container {
    max-width: 1500px;
    width: 90%;
}

.thumbnails-grid-container h4 {
    font-size: 1.5em;
    text-align: left;
    letter-spacing: 0.025em;
    font-weight: bold;
}

.thumbnails-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 50px;
}

.thumbnail {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.thumbnail.visible {
    opacity: 1;
    transform: translateY(0);
}

.thumbnail video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(80, 80, 80, .9);
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.thumbnail:hover .overlay {
    opacity: 1;
}

.thumbnail .text {
    text-align: center;
    padding: 10px;
    font-weight: bold;
}

@media (max-width: 768px) {
    .thumbnails-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .thumbnails-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .thumbnails-grid {
        grid-template-columns: 1fr;
    }
}

/* Footer Styles */
.footer {
    background-color: #000;
    color: white;
    padding: 40px 40px;
    text-align: left;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
@media (max-width: 480px) {
    .footer-container {
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    }
}

.footer h4 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.footer ul {
    list-style: none;
    padding: 0;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul li a {
    color: white;
    text-decoration: none;
    font-size: 1em;
}

.footer ul li a:hover {
    color: #a0a0a0;
}

.footer-bottom {
    width: 100%;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: right;
    color: #a0a0a0;
    font-size: .7em;
}

.footer-bottom ul {
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.footer-bottom ul li {
    margin: 0 10px;
}

.footer-bottom a {
    text-decoration: none;
    font-weight: bold;
    color: #a0a0a0;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.about-section {
    max-width: 650px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
}
@media (max-width: 768px) {
    .about-section {
    max-width: 650px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 20px;    }
}

@media (max-width: 480px) {
    .about-section {
    max-width: 650px;
    width: 85%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 10px; 
    }
}

.about-section h2 {
    font-size: 2.5em;
    margin-bottom: 05px;
}

.about-section h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    text-align: right;
    padding-right: 20px;
}

.about-section p {
    font-size: 1em;
    line-height: 1.5;
}

/* Feature Section */
.feature-section {
    max-width: 968px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    gap: 50px;
    background-color: #00000;
}

.feature-hero h4 {
    font-size: 1.5em;
    text-align: center;
}

.feature-hero {
    position: relative;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    margin-bottom: 0px;
}

.feature-hero video,
.feature-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-top: 40px;
}

.feature-overview {
    text-align: left;
    padding: 20px;
    border-radius: 0px;
    max-width: 968px;
    width: 80%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    justify-content: center;
    gap: 50px;
}

.feature-overview h2 {
    font-size: 2em;
    margin-bottom: 10px;
}

.feature-overview h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}
.feature-overview h4 {
    font-size: 1em;
    margin-bottom: 10px;
}

.feature-overview p {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
}

/* Ensure alignment and responsiveness with the thumbnail grid */
@media (max-width: 768px) {
    .feature-section {
        width: 100%;
    }
}
/* Ensure alignment and responsiveness with the thumbnail grid */
@media (max-width: 576px) {
    .feature-section {
        width: 100%;
    }
}
/* Ensure alignment and responsiveness with the thumbnail grid */
@media (max-width: 480px) {
    .feature-section {
        width: 100%;
    }
}
hr.thin-line {
    border: none;
    border-top: 0.25pt solid black; /* You can change the color as needed */
    margin: 20px 0; /* Adjust the margin as needed */
    margin-bottom: 50px;
}


@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

/* 
  CONTACT FORM EXAMPLE FOR FORMCARRY

  IMPORTANT NOTE:
  PLEASE ADD formcarry-form class to your form element
  to apply the styles.
*/

.formcarry-container * {
  box-sizing: border-box;
	font-family: "Inter", sans-serif;

  /* colors */
  --color-blue: #2552d0;
  --color-light-blue: #3266e3;
  --color-gray: #e5e7eb;
  --color-dark-gray: #9da3ae;
  --color-pink: #edadd2;
}

.formcarry-container {
  /* container */
  --c-width: 50%;
  --c-max-width: 500px;

  width: var(--c-width);
  max-width: var(--c-max-width);
  display: block;
  margin: 10vh auto 0 auto;
}

.formcarry-form label {
  display: block;
  padding: 12px 0 2px 0;
  letter-spacing: -0.2px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
}

.formcarry-form input,
.formcarry-form textarea {
  font-size: 16px;
  display: block;
  width: 100%;
  padding: 10px;
  background-color: var(--color-gray);
  border: none;
  border: 4px solid var(--color-gray);
  outline: none;
  border-radius: 8px;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus,
.formcarry-form textarea:focus {
  background-color: #fff;
  color: var(--color-dark-gray);
}

.formcarry-form input:focus:required:invalid {
  border-color: var(--color-pink);
  background-color: #fff;
}

.formcarry-form button {
  display: block;
  margin-top: 12px;
  width: 100%;
  padding: 12px 20px;
  border-radius: 8px;
	border-color: transparent;
  background-color: var(--color-blue);
  color: #fff;
  font-weight: 700;
  font-size: 18px;

  transition: 300ms all;
}

.formcarry-form button:hover {
  background-color: var(--color-light-blue);
}

.formcarry-alert {
  padding: 12px;
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  margin-top: 12px;
  display: none;
}

.formcarry-alert.visible {
  display: block;
}

.formcarry-alert.success {
  background: #69cf9d;
}

.formcarry-alert.error {
  background: #de524c;
}

/* Contact Section 
.contact-section {
    max-width: 800px;
    width: 90%;
    margin: 50px auto;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 10px;
    text-align: left;
}

.contact-section h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
    font-family: 'Outfit', sans-serif;
}

.contact-form textarea {
    resize: vertical;
}*/

.contact-form .submit-btn {
    background-color: black;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
}

.contact-form .submit-btn:hover {
    background-color: #333;
}

/* Media Grid */
.media-grid-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    padding-bottom: 40px;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 20px;
}

.media-item {
    position: relative;
    overflow: hidden;
}

.media-item img, .media-item video {
    width: 100%;
    height: auto;
    display: block;
}

.media-link {
    display: block;
}

/* Media Popup */
.media-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.media-popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1001;
}

.media-popup .media-popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center; /* Center the content */
}

.media-popup .prev, .media-popup .next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 40px;
    font-weight: normal;
    background: rgba(0, 0, 0, 0); /* Add background to prevent overlap */
    border: none;
    cursor: pointer;
    user-select: none;
    padding: 10px; /* Add padding for better usability */
    z-index: 1001; /* Ensure it stays above the media content */
}

.media-popup .prev {
    left: 20px; /* Adjust the position to the left */
}

.media-popup .next {
    right: 20px; /* Adjust the position to the right */
}

.media-popup .media-popup-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.media-popup .media-popup-slide img, .media-popup .media-popup-slide video {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    max-width: 90%;
    max-height: 80vh;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.media-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.6s ease-out;
}

.media-item.visible {
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.8s ease-out;
}
/* New styles for the 5-column grid */
.five-column-grid {
    max-width: 1200px;
    width: 90%;
    text-align: left;
    margin: 0 auto;
    padding: 50px 0;
    justify-content: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px; /* Adjust the margin as needed */
}

.five-column-grid .column {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
}

.five-column-grid .column img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px; /* Space between image and text */
    text-align: left;

}

.five-column-grid .column p {
    font-size: 1em;
    line-height: 1.7;
    text-align: left;
    color: #333; /* Adjust text color as needed */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .five-column-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .five-column-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 576px) {
    .five-column-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .five-column-grid {
        grid-template-columns: 1fr;
    }
}
/*.fallback-image {
    display: none;
}

@media (max-width: 480px) {
    video {
        display: none;
    }

    .fallback-image {
        display: block;
    }
}*/