@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
}

.slider {
  width: 100%;
  min-height: 40vh;
  aspect-ratio: 4/1;
  background: #000;
  position: relative;
}

.slider-background {
  width: 100%;
  height: 100%;
  filter: brightness(40%);
  object-fit: cover;
}

.slider-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  position: absolute;
  top: 50%;
  left: 18%;
  transform: translateY(-50%);
  background-size: cover;
}

.name-and-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
}

.name-and-subtitle {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}

.subtitle-and-logos {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.pdp {
  width: 12%;
  height: auto;
  border-radius: 50%;
}

h1 {
  color: whitesmoke;
}

p1 {
  color: whitesmoke;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.csp-logo {
  height: 50px;
  border-radius: 25%;
  object-fit: cover;
}

.tvp-logo {
  height: 50px;
  object-fit: contain;
}

.logos {
  display: flex;
  gap: 10px;
  align-items: center;
}

.dark {
  background-color: #000;
  color: whitesmoke;
}

.boxed {
  max-width: 1280px;
  padding: 2%;
  margin-inline: auto;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.gap {
  gap: 20px;
}

.wrap {
  flex-wrap: wrap;
}

.space-between {
  gap: 3%;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 2rem;
  margin-bottom: 3%;
}

.demo-reel {
  margin-top: 3%;
  height: auto;
}

.demo-reel a {
  display: block;
  width: 100%;
  height: 100%;
}

.demo-reel source {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w20 {
  width: 20%;
}

.w32 {
  width: 32%;
}

.gapfirst {
  margin-left: 15%;
}

.animation {
  height: auto;
  aspect-ratio: 16/9;
  border: 10px solid white;
  box-shadow: 0px 6px 20px rgba(0, 0, 0, 0.4);
}

.animation a {
  display: block;
  width: 100%;
  height: 100%;
}

.animation video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(100%);
  transition: 0.4 ease;
}

.animation:hover video {
  filter: brightness(70%);
}

.drawing {
  height: auto;
}

.drawing a {
  display: block;
  width: 100%;
  height: 100%;
}

.drawing img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.draw-gallery {
  display: flex;
  gap: 20px;
}

.column {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.navbar {
  background-color: #333;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-links {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-size: 1.2rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff8e8e;
}

.inline {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  display: block;
  font-size: 40px;
  text-decoration: none;
}

.label {
  display: block;
  font-weight: 700;
  text-transform: uppercase;
  margin: 10px 0;
  font-size: 1.5rem;
  text-decoration: none;
}

.value {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
}

.border {
  border: 2px dashed #fff;
  border-radius: 15px;
  padding: 30px;
  box-sizing: border-box;
}

.center {
  margin-left: 44%;
}

.email {
    display:none;
}

@media (max-width: 768px) {
  .draw-gallery {
    flex-direction: column;
  }

  .navbar {
    padding: 15px 10px;
    font-size: smaller;
  }

  .nav-links {
    flex-direction: row;
    gap: 15px;
    justify-content: center;
  }

  .nav-links a {
    font-size: 1.6vh;
    padding: 8px 0;
  }

  .slider-content {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .name-and-logos {
    flex-direction: row;
    justify-content: center;
  }

  .subtitle-and-logos {
    flex-direction: row;
    justify-content: center;
  }

  .logos {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 5px;
  }

  .pdp {
    width: 25%;
  }

  .name-and-logos h1 {
    font-size: 1.8rem;
  }

  .name-and-logos p1 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .draw-gallery {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .drawing {
    display: flex;
    justify-content: center;
  }

  .drawing img {
    width: 90%;
    height: auto;
  }

  .boxed {
    padding: 5%;
    margin-inline: 5%;
  }

  .demo-reel video {
    width: 100%;
    height: auto;
  }

  .animation {
    width: 100%;
    margin: 10px 0;
  }

  .draw-gallery {
    flex-direction: column;
    gap: 10px;
  }

  .drawing img {
    width: 100%;
    height: auto;
  }

  .subtitle-and-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
  }

  .logos {
    display: flex;
    gap: 10px;
  }

  .logos img {
    width: 30px;
    height: 30px;
  }

  .hide {
    display: none;
  }

  .email {
    display:flex;
    font-size: smaller;
    position: relative;
    left: -22px;
  }
}

@media (max-width: 480px) {
  .slider-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .pdp {
    width: 35%;
    margin: 0 auto;
  }

  .name-and-logos {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .name-and-subtitle {
    text-align: center;
    align-items: center;
  }

  .logos {
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .logos .csp-logo,
  .logos .tvp-logo {
    height: 30px;
    width: auto;
  }

  .logos img {
    height: 30px;
    width: auto;
  }

  .logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
  }

  .logos img {
    height: 30px;
    width: auto;
  }

  .name-and-subtitle {
    text-align: center;
    align-items: center;
  }

  .name-and-logos p1 {
    font-size: 1rem;
  }

  .logos img {
    width: 25px;
    height: 25px;
  }

  .name-and-logos {
    flex-direction: row;
    justify-content: center;
  }

  .subtitle-and-logos {
    flex-direction: row;
    justify-content: center;
  }

  .name-and-logos h1 {
    font-size: 1.5rem;
  }

  .name-and-logos p1 {
    font-size: 1rem;
  }

  .drawing img {
    width: 100%;
  }

  .navbar {
    padding: 12px 8px;
  }

  .nav-links {
    gap: 12px;
  }

  .nav-links a {
    font-size: 1.6vh;
    padding: 6px 0;
  }

  .slider-content {
    gap: 5px;
  }

  .pdp {
    width: 35%;
    margin-left: 5%;
  }

  .logos {
    justify-content: flex-start;
    margin-left: 5%;
  }

  .name-and-logos {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .name-and-subtitle {
    text-align: left;
    align-items: flex-start;
  }

  .name-and-logos h1 {
    font-size: 1.5rem;
  }

  .name-and-logos p1 {
    font-size: 1rem;
  }

  .logos img {
    width: 30px;
    height: 30px;
  }

  .boxed {
    padding: 4%;
    margin-inline: 4%;
  }

  .demo-reel video {
    width: 100%;
  }

  .animation {
    margin: 8px 0;
  }

  .drawing img {
    width: 100%;
  }

  .draw-gallery {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }

  .column {
    max-width: 45%;
    flex: 1 1 45%;
  }

  .drawing img {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 320px) {
  .logos img {
    width: 25px;
    height: 25px;
  }

  .name-and-logos h1 {
    font-size: 1.2rem;
  }

  .name-and-logos p1 {
    font-size: 0.9rem;
  }

  .drawing img {
    width: 100%;
  }

  .navbar {
    padding: 10px 5px;
  }

  .nav-links {
    gap: 10px;
  }

  .nav-links a {
    font-size: 1em;
    padding: 5px 0;
  }

  .slider-content {
    gap: 3px;
  }

  .pdp {
    width: 60%;
  }

  .name-and-logos h1 {
    font-size: 1.2rem;
  }

  .name-and-logos p1 {
    font-size: 0.9rem;
  }

  .logos img {
    width: 25px;
    height: 25px;
  }

  .boxed {
    padding: 3%;
    margin-inline: 3%;
  }

  .demo-reel video {
    width: 100%;
  }

  .animation {
    margin: 5px 0;
  }

  .drawing img {
    width: 100%;
  }
}
