.syd-proj-single {
  color: #fff;
  background: #000;
}

.syd-proj-wrap {
  width: min(1140px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.syd-proj-hero,
.syd-proj-cta {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.syd-proj-hero {
  padding: 400px 0 100px;
  margin-top: -190px;
}

.syd-proj-cta {
  padding: 100px 12px;
  background-attachment: fixed;
}

.syd-proj-section {
  position: relative;
  padding: 50px 0 60px;
  overflow: hidden;
}

.syd-proj-video-bg {
  background: #000;
}

.syd-proj-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.syd-proj-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 1;
}

.syd-proj-overlay.light {
  background: rgba(0, 0, 0, 0.42);
}

.syd-proj-h1 {
  font-family: Montserrat, sans-serif;
  font-size: 40px;
  line-height: 1.2;
  font-weight: 700;
  max-width: 70%;
  margin: 0 0 20px;
}

.syd-proj-h2 {
  font-family: Roboto, sans-serif;
  font-size: 42px;
  line-height: 50px;
  font-weight: 600;
  margin: 0 0 16px;
}

.syd-proj-h3 {
  font-family: Roboto, sans-serif;
  font-size: 26px;
  line-height: 40px;
  font-weight: 600;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.textcoorchanges {
  color: #0378db;
}

.syd-proj-text {
  max-width: 75%;
  font-family: Roboto, sans-serif;
  font-weight: 400;
}

.syd-proj-text p:last-child {
  margin-bottom: 0;
}

.syd-proj-two-col,
.syd-proj-grid-2 {
  display: grid;
  gap: 20px;
}

.syd-proj-two-col {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.syd-proj-grid-2 {
  grid-template-columns: 1fr 1fr;
}

.syd-proj-panel {
  border: 1px dotted rgba(255, 255, 255, 0.5);
  padding: 30px 10px;
}

.syd-proj-panel.light {
  background: #fff;
  color: #000;
}

.syd-proj-panel.light .syd-proj-h3,
.syd-proj-panel.light .dark-text {
  color: #000;
}

.syd-proj-carousel {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.syd-proj-slides img {
  width: 100%;
  display: none;
  border-radius: 10px;
}

.syd-proj-slides img.is-active {
  display: block;
}

.syd-proj-nav {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 4 !important;
  border: 0 !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  color: #fff !important;
  cursor: pointer !important;
  font-size: 24px !important;
  padding:0 !important;
}

.syd-proj-nav.prev {
  left: 12px;
}

.syd-proj-nav.next {
  right: 12px;
}

.syd-proj-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.syd-proj-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.syd-proj-list .chev {
  color: #fe8800;
}

.animate-in-right {
  animation: sydFadeInRight 0.9s ease both;
}

@keyframes sydFadeInRight {
  from {
    opacity: 0;
    transform: translate3d(25px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.center {
  text-align: center;
  max-width: 100%;
}

.syd-proj-buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.syd-proj-btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  background: #fe8800;
  color: #fff;
  font-family: Roboto, sans-serif;
  font-weight: 500;
}

.syd-proj-btn:hover {
  background: #000;
  color: #fff;
}

.syd-proj-related {
  padding: 70px 0;
  background: #0a0a0a;
}

.syd-proj-related-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.syd-proj-card {
  background: #111;
  border: 1px solid #1f1f1f;
  border-radius: 10px;
  overflow: hidden;
}

.syd-proj-card-link {
  text-decoration: none;
  color: #fff;
}

.syd-proj-card-link:hover {
  text-decoration: none !important;
  color: #fff !important;
}

.syd-proj-card-thumb img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.syd-proj-card h3 {
  padding: 14px;
  margin: 0;
  font-size: 18px;
  font-family: Roboto, sans-serif;
}

@media (max-width: 1024px) {
  .syd-proj-h1 {
    max-width: 100%;
    font-size: 36px;
  }

  .syd-proj-two-col,
  .syd-proj-grid-2,
  .syd-proj-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .syd-proj-hero {
    padding: 400px 10px 100px;
  }

  .syd-proj-h1,
  .syd-proj-h2 {
    font-size: 22px;
    line-height: 40px;
  }

  .syd-proj-text {
    max-width: 100%;
  }
}

