/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
:before,
:after {
  box-sizing: border-box;
}

html body {
  background-color: #222;
  font-family: "Source Sans Pro", sans-serif;
  color: white;
}

.hl-lite {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 300;
  font-size: 60px;
}

section {
  background-color: #000;
  justify-content: space-between;
  align-items: stretch;
}

section .thumbnail {
  flex: 1;
  /* Equal width for all items */
  padding: 20px;
  width: 300px;
  height: 250px;
}
section .thumbnail img {
  max-width: 300px;
  width: 100%;
  height: 10%;
  -o-object-fit: contain;
     object-fit: contain;
}

section .description {
  flex: 2;
  /* Equal width for all items */
  padding: 20px;
}

.desc-scroll {
  height: 250px;
  overflow-y: auto; /* Enable vertical scrolling */
  overflow-x: hidden;
}
.desc-scroll h4 {
  padding-bottom: 30px;
}

/* Default state */
.navbar {
  background-color: black;
}

.nav-link {
  color: #333;
  /* Default color */
  text-decoration: none;
  /* Remove underline */
  transition: color 0.3s;
  /* Smooth transition */
}

/* Hover state */
#navbarNav .nav-link:hover {
  color: #87c1ff;
  /* Change color on hover */
}

.footer {
  background-color: #000 !important;
}

.black-bg {
  background-color: black;
}

.container-about {
  padding: 50px;
}
.container-about p {
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 200;
  line-height: 45px;
  font-size: clamp(18px, 2vw, 26px);
}

.navbar-brand {
  letter-spacing: -0.5px;
  font-family: "Source Sans Pro", sans-serif;
  font-weight: 700 !important;
  font-size: clamp(24px, 2vw, 88px) !important;
}

.container-casestudies {
  /* Add any necessary styles for .container-casestudies here */
}
.container-casestudies section:last-child {
  margin-bottom: 100px;
}

.work-box {
  background-color: #777;
  padding: 20px;
  border-radius: 8px;
  color: white;
}

#logos {
  background-color: #222;
}

#logos .logo-container {
  width: 200px;
  height: 200px;
  margin: 10px auto; /* Adjust margin as needed */
}

#logos .logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain; /* Adjust to fit the image as needed (cover, fill, etc.) */
}

.hotspot {
  position: relative;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 0, 0, 0.5); /* 50% opacity red */
  z-index: 1; /* Ensure it is above the content */
  cursor: pointer !important;
}

.modal-body video {
  margin-bottom: 50px;
  border: 1px solid black;
}

.carousel-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel-item video {
  max-width: 100%;
  max-height: 80vh;
}

@media (max-width: 575px) {
  /* Adjust breakpoint as needed */
}
.fixed-size-img {
  width: auto;
  /* Use the actual image width */
  height: auto;
  /* Use the actual image height */
}

.hero-section {
  background: url("../img/hero.jpg") no-repeat center center;
  background-size: cover;
  height: 50vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0% !important;
}

.overlay-button {
  width: 10px;
  height: 10px;
  background-color: white;
  cursor: pointer;
}

.btn1 {
  position: relative;
  top: 10px;
  left: 200px;
}

.btn2 {
  position: relative;
  top: -200px;
  left: 40%;
  background-color: red;
}
@media (max-width: 576px) {
  .btn2 {
    top: -250px;
  }
}

.btn3 {
  position: relative;
  top: 100px;
  left: 90%;
}

.btn4 {
  position: relative;
  top: -40% !important;
  left: 80%;
}

.btn5 {
  position: relative;
  top: -50px !important;
  left: 10%;
}

.description-b {
  display: none;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 5px;
  border-radius: 5px;
  z-index: 1000;
}

.text-shadow {
  text-shadow: 0 0 5px black, 0 0 10px black, 0 0 15px black, 0 0 20px black;
}

@media (max-width: 768px) {
  .hero-section {
    height: 60vh;
  }
  .hero-section h1 {
    font-size: 44px;
  }
}
@media (max-width: 768px) and (max-width: 567px) {
  .hero-section h1 {
    font-size: 38px;
  }
}
@media (max-width: 768px) {
  .hero-section p {
    font-size: 16px;
  }
  section {
    flex-direction: column;
  }
}
/* Media queries for various breakpoints */
@media (min-width: 576px) {
  /* Small devices (landscape phones, 576px and up) */
}
@media (min-width: 768px) {
  /* Medium devices (tablets, 768px and up) */
}
@media (min-width: 992px) {
  /* Large devices (desktops, 992px and up) */
}
#contactModal .modal-body ul li {
  color: black;
}

.btn-hero {
  background-color: orange !important;
  color: darkblue !important;
  font-size: 14px;
  border-radius: 8px;
}

.btn-hero:hover {
  background-color: darkorange !important;
  color: darkblue !important;
}

.no-border {
  border: none !important;
  box-shadow: none !important;
}

.modal-backdrop-override {
  background-color: rgba(0, 0, 0, 0.8) !important;
}

.iframe-container-flexi {
  width: 800px;
  height: 600px;
  margin: auto;
}

.iframe-container-flexi iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-container-sas {
  width: 300px;
  height: 250px;
  overflow: hidden;
  margin: auto;
}

.iframe-container-sas iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-container-verizon {
  width: 300px;
  height: 250px;
  overflow: hidden;
  margin: auto;
}

.iframe-container-verizon iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.iframe-container-ssga {
  width: 300px;
  height: 250px;
  overflow: hidden;
  margin: auto;
}

.iframe-container-ssga iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.replay-btn-holder {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin: 10px 0 50px 0;
  /* Optional: Set height as needed */
}