/*

 Theme Name:   GeneratePress Child

 Theme URI:    https://generatepress.com

 Description:  Default GeneratePress child theme

 Author:       Tom Usborne

 Author URI:   https://tomusborne.com

 Template:     generatepress

 Version:      0.1

*/

@font-face {
  font-family: "Gatwick";
  src: url("assets/fonts/Gatwick-Regular.woff2") format("woff2");
  font-style: normal;
  font-display: swap;
}


html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 600;
}

h3 {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  line-height: 1.2;
  padding-bottom: 0 !important;
}

h5 {
  font-size: 20px;
  line-height: 1.4;
}

h6 {
  font-size: 18px;
  line-height: 1.5;
}




/* Mobile Responsive */
@media (max-width: 767px) {
  h1 {
    font-size: 25px;
  }

  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
  }

  h4 {
    font-size: 16px;
  }

  h5 {
    font-size: 14px;
  }

  h6 {
    font-size: 12px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
label,
div,
button,
.main-nav ul li a,
.footer-bar-active {
  font-family: "Gatwick" !important;
}

.inside-header{
  border-bottom: 1px solid #000;
}

.hero-section-wrapper{
  display: flex;
  justify-content: space-between;
  align-self: center;
}

.hero-section-wrapper img{
  max-width: 500px;
}



.projects-wrapper {
  padding: 60px 0px;
}

.projects-wrapper h2 {
  margin-bottom: 40px;
  border-bottom: 1px solid #000;
  padding-bottom: 20px;
}

.project-contains-wraps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.project-card {
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 17px 0 rgba(0, 0, 0, .13) !important;
}

.project-card iframe {
  width: 100%;
  height: 200px;
  border-radius: 6px;
}

.project-card .category {
  font-size: 12px;
  color: #777;
  margin-top: 10px;
}

.project-card h3 {
  margin: 5px 0;
}

.project-card p {
  font-size: 14px;
  color: #555;
}

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

@media (max-width: 600px) {
  .project-contains-wraps {
    grid-template-columns: 1fr;
  }
}






/* --- all styles inline, no external dependencies --- */
  .epic-root {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .epic {
    display: grid;
    overflow: hidden;
    width: 100%;
    position: relative;

  }
  
  /* scrollerx base styling */
  .scrollerx {
    width: 100vw;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0.45s ease-out;
    will-change: opacity;
  }
  
  .scrollerx.ready {
    opacity: 1;
  }
  
  .scroller__innerx {
    padding-block: 1.25rem;
    display: flex;
    gap: 3rem;
    width: max-content;
    will-change: transform;
  }
  
  /* animation state */
  .scrollerx[data-animated="true"] {
    overflow-x: hidden;
    overflow-y: visible;
  }
  
  .scrollerx[data-animated="true"] .scroller__innerx {
    flex-wrap: nowrap;
    animation: scroll infinite linear;
    animation-duration: var(--_animation-duration, 90s);
    animation-direction: var(--_animation-direction, forwards);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  /* direction: right support */
  .scrollerx[data-direction="right"] {
    --_animation-direction: reverse;
  }
  
  /* slow speed class is not overwriting JS; we rely on JS to set slow duration, 
     but we keep original structure. */
  
  /* infinite scroll keyframes: moving left */
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-50% - 1.5rem));
    }
  }
  
  /* logo box styling */
  .logox {
    width: 200px !important;
    height: 140px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 20px;
    transition: all 0.2s ease;
  }
  
  .logox img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.02));
    transition: transform 0.2s;
  }
  
  /* subtle hover effect for better UX */
  .logox:hover img {
    transform: scale(1.02);
  }
  
  /* responsive: on smaller screens reduce gap and box width slightly */
  @media (max-width: 768px) {
    .scroller__innerx {
      gap: 2rem;
    }
    .logox {
      width: 150px !important;
      height: 105px !important;
    }
  }
  
  @media (max-width: 480px) {
    .scroller__innerx {
      gap: 1.5rem;
    }
    .logox {
      width: 120px !important;
      height: 90px !important;
    }
  }


  /* ////////////////////////// */


  .our-clients-wrapper{
	border-top: 1px solid #000;
	border-bottom: 1px solid #000;
  }

  .our-clients-sub-wrapper{
	display: flex;
	align-items: center;
  }

  .our-clients-sub-wrapper h2{
	border-right: 1px solid #000;
  }