* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0500AE;
  color: #ccd6f6;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(to right, rgba(100, 255, 218, 0.15) 1px, transparent 1px), linear-gradient(to bottom, rgba(100, 255, 218, 0.15) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero {
  display: flex;
  flex-direction: column-reverse;
  min-height: 100vh;
  padding: 2rem 2rem;
  position: relative;
  max-width: 2000px;
  margin: 0 auto;
}
@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 2rem 0;
  position: relative;
}
@media (min-width: 900px) {
  .hero-content {
    text-align: left;
    padding: 0;
  }
}

.name {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  -webkit-background-clip: text;
  background-clip: text;
  color: #fff;
  line-height: 0.7;
  font-family: "pixelpurlmedium";
  -webkit-text-stroke: 1px #000;
}
@media (min-width: 768px) {
  .name {
    font-size: 9rem;
  }
}
@media (max-width: 700px) {
  .name {
    font-size: 5rem;
  }
}

.hero-content p {
  font-size: 1.6rem;
  color: #000;
  background-color: #CCFF00;
  display: inline;
  padding: 15px 25px;
  border-radius: 40px;
  width: 100%;
  transform: rotate(5deg);
  position: absolute;
  z-index: -1;
  text-align: right;
  bottom: -12%;
}

@media (max-width: 900px) {
  .hero-content p {
    position: unset !important;
    text-align: center;
    display: block;
    transform: unset;
  }
}
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}
@media (min-width: 900px) {
  .hero-image {
    margin-top: 0;
  }
}
.hero-image img {
  width: 100%;
  max-width: 600px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.about-section {
  margin-top: 4rem;
  text-align: center;
  position: relative;
}
.about-section .section-title {
  margin: 0 auto;
  color: #000;
  background-color: #CCFF00;
  width: 50%;
  padding: 15px 15px;
  border-radius: 25px;
  font-weight: 500;
  font-family: "lazare_grotesk_trialregular";
  line-height: 1.2;
}
@media (max-width: 900px) {
  .about-section .section-title {
    width: 100%;
  }
}
.about-section .about-content {
  color: #fff;
  padding-top: 2rem;
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.1rem;
  opacity: 0.9;
  line-height: 1.8;
}
.about-section .about-content p {
  text-align: center;
  margin-bottom: 20px;
}

.about-section .comp {
  position: absolute;
  width: 240px;
  top: -40%;
  right: -5%;
}

.about-section .speak {
  position: absolute;
  width: 220px;
  bottom: 8%;
  left: -3%;
}

.about-section .stick {
  position: absolute;
  width: 276px;
  right: -10%;
  bottom: -25%;
}

@media (max-width: 1110px) {
  .about-section .stick, .about-section .speak, .about-section .comp {
    display: none;
  }
}
.section-title {
  font-size: 2.4rem;
  text-align: center;
  margin: 4rem 0 2.5rem;
  color: #fff;
  font-weight: 700;
  font-family: "lazare_grotesk_trialregular";
}

.work .section-title {
  font-size: 5.4rem;
  position: relative;
}
@media (max-width: 768px) {
  .work .section-title {
    font-size: 3rem;
  }
}
.work .section-title::before, .work .section-title::after {
  content: "";
  border: 1px solid;
  display: block;
  background: #fff;
  opacity: 15%;
  position: absolute;
  border-radius: 25px;
}
.work .section-title::before {
  width: 25%;
  top: 15%;
  right: 17%;
  height: 20%;
}
.work .section-title::after {
  width: 20%;
  bottom: 22%;
  left: 22%;
  height: 20%;
}

.work-category {
  margin-bottom: 4rem;
}
.work-category h3 {
  font-size: 1.8rem;
  margin-bottom: 1.8rem;
  color: #fff;
  text-align: center;
}
@media (min-width: 768px) {
  .work-category h3 {
    text-align: left;
  }
}

.work-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .work-tabs {
    justify-content: flex-start;
  }
}

.tab-btn {
  padding: 0.8rem 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 24px;
  color: #ccd6f6;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.tab-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}
.tab-btn.active {
  background: #fff;
  color: white;
  border-color: #fff;
  box-shadow: 0 4px 12px rgba(10, 165, 233, 0.3);
}

.work-content {
  position: relative;
}

.work-category {
  display: none;
}
.work-category.active {
  display: block;
}

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.work-card {
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.work-card img {
  width: 100%;
  display: block;
}
.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

.last {
  display: block;
  margin-top: 20px;
}

.last img {
  display: block;
  width: 100%;
}

.contact {
  margin-top: 5rem;
  margin-bottom: 3rem;
  position: relative;
}
.contact img {
  position: absolute;
}
.contact .cam {
  top: 0%;
  left: -9%;
  width: 220px;
}
.contact .write {
  bottom: -20%;
  right: 0%;
}
@media (max-width: 1110px) {
  .contact .cam, .contact .write {
    display: none;
  }
}

.contact h2 {
  margin: 0 auto;
  color: #000;
  background-color: #CCFF00;
  width: 50%;
  padding: 15px 15px;
  border-radius: 25px;
  font-weight: 500;
  font-family: "lazare_grotesk_trialregular";
  line-height: 1.2;
}
@media (max-width: 900px) {
  .contact h2 {
    width: 100%;
  }
}
.contact .section-title {
  margin-top: 2rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: rgba(192, 192, 192, 0.2196078431);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: #fff;
  font-size: 1.05rem;
  font-family: inherit;
}
.contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder {
  color: #fff;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #fff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #fff;
}
.contact-form .submit-btn {
  padding: 1.1rem;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 6px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact-form .submit-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-swiper {
  display: none;
}

@media (max-width: 767px) {
  .work-grid {
    display: block;
  }
  .mobile-swiper {
    display: block;
    padding: 1rem 0;
  }
  .swiper-slide {
    width: 280px;
    display: flex;
    justify-content: center;
  }
}
.social {
  margin: 2rem;
}
.social .social_shares {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.social .social_shares li {
  list-style: none;
  width: 46px;
}
.social .social_shares li a {
  display: block;
  text-decoration: none;
}
.social .social_shares li:hover {
  transform: translateY(-4px);
  transition: all 0.4s ease;
}/*# sourceMappingURL=style.css.map */
#behance{
    text-decoration: none;
}