@font-face {
  font-family: "Inter-SemiBold";
  src: url("/fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-ThinItalic";
  src: url("../fonts/Inter-ThinItalic.woff2") format("woff2");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Bold";
  src: url("../fonts/Inter-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Light";
  src: url("../fonts/Inter-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Regular";
  src: url("../fonts/Inter-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Thin";
  src: url("../fonts/Inter-Thin.woff2") format("woff2");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter-Medium";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Anton";
  src: url("../fonts/Anton-Regular.woff2") format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
main {
  margin-top: 100vh;
}
main .banner {
  position: relative;
  height: 100dvh;
  background-image: url("../../images/home-banner-mobile.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 768px) {
  main .banner {
    background-image: url("../../images/home-banner.webp");
  }
}
main .banner .banner-box {
  width: 100%;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
main .banner .banner-box .client-wrap {
  background-color: #e50914;
  border: 2px solid #f28489;
  border-radius: 50px;
  padding: 12px;
  gap: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  main .banner .banner-box .client-wrap {
    padding: 20px;
  }
}
main .banner .banner-box .client-wrap .image-box {
  display: flex;
}
main .banner .banner-box .client-wrap .image-box .client-img {
  width: 40px;
  height: 40px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  main .banner .banner-box .client-wrap .image-box .client-img {
    width: 60px;
    height: 60px;
  }
}
main .banner .banner-box .client-wrap .image-box .client-img:not(:first-of-type) {
  margin-left: -15px;
}
main .banner .banner-box .client-wrap .image-box .client-img img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
main .banner .banner-box .client-wrap .content-box img {
  width: 100px;
}
main .banner .banner-box .client-wrap .content-box p {
  text-transform: capitalize;
}
main .banner .banner-box h1 {
  margin-top: 20px;
}
@media screen and (min-width: 992px) {
  main .banner .banner-box h1 {
    margin-top: 30px;
  }
}
main .home-about {
  background-color: #1a1a1a;
}
main .home-about .about-box {
  gap: 50px;
  flex-direction: column;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 992px) {
  main .home-about .about-box {
    flex-direction: row;
  }
}
main .home-about .about-box .image-box {
  border-radius: 15px;
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  main .home-about .about-box .image-box {
    width: calc(50% - 25px);
  }
}
main .home-about .about-box .image-box img {
  width: 100%;
}
@media screen and (min-width: 992px) {
  main .home-about .about-box .text-box {
    width: calc(50% - 25px);
  }
}
main .home-about .about-box .text-box .h3 {
  text-transform: capitalize;
  margin-bottom: 25px;
  text-align: center;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  main .home-about .about-box .text-box .h3 {
    text-align: left;
  }
}
@media screen and (min-width: 992px) {
  main .home-about .about-box .text-box .h3 {
    font-size: 48px;
  }
}
@media screen and (min-width: 1200px) {
  main .home-about .about-box .text-box .h3 {
    font-size: 54px;
  }
}
@media screen and (min-width: 1400px) {
  main .home-about .about-box .text-box .h3 {
    font-size: 62px;
  }
}
main .home-about .about-box .text-box .h5 {
  text-align: center;
}
@media screen and (min-width: 768px) {
  main .home-about .about-box .text-box .h5 {
    text-align: left;
  }
}
main .service .section-heading {
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column-reverse;
  gap: 50px;
  display: flex;
}
@media screen and (min-width: 992px) {
  main .service .section-heading {
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  main .service .section-heading .content-box .h3 {
    text-align: left;
  }
}
main .service .section-heading .image-box {
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  main .service .section-heading .image-box {
    text-align: right;
  }
}
main .service .section-heading .image-box::after {
  background-image: url("../../images/pkk-logo.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 50%;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
main .service .section-heading .image-box img {
  animation-name: spin;
  animation-duration: 15s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  max-width: 180px;
}
@media screen and (min-width: 992px) {
  main .service .section-heading .image-box img {
    max-width: none;
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
main .service .service-box {
  padding-top: 25px;
  gap: 50px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 1200px) {
  main .service .service-box {
    padding-top: 50px;
    flex-direction: row;
  }
}
main .service .service-box .image-box {
  width: 100%;
  position: relative;
  padding-bottom: 100%;
}
@media screen and (min-width: 576px) {
  main .service .service-box .image-box {
    padding-bottom: 50%;
  }
}
@media screen and (min-width: 1200px) {
  main .service .service-box .image-box {
    width: calc(40% - 25px);
    padding-bottom: 0;
  }
}
main .service .service-box .image-box img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  -o-object-fit: contain;
     object-fit: contain;
}
main .service .service-box .content-box {
  width: 100%;
}
@media screen and (min-width: 1200px) {
  main .service .service-box .content-box {
    width: calc(60% - 25px);
  }
}
main .service .service-box .content-box .service-list {
  flex-wrap: wrap;
  gap: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
main .service .service-box .content-box .service-list .service-list-item {
  width: 100%;
  background-color: #1a1a1a;
  border-radius: 15px;
  padding: 30px 20px;
  cursor: default;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
@media screen and (min-width: 992px) {
  main .service .service-box .content-box .service-list .service-list-item {
    text-align: left;
    width: calc(50% - 15px);
  }
}
main .service .service-box .content-box .service-list .service-list-item:hover {
  background-color: #e50914;
}
main .service .service-box .content-box .service-list .service-list-item img {
  margin-bottom: 15px;
  stroke: #ffffff;
}
main .service .service-box .content-box .service-list .service-list-item .h4 {
  text-transform: uppercase;
}
main .service .service-box .content-box .service-list .service-list-item p {
  opacity: 0.7;
}
main .gallery .gallery-slider {
  overflow: hidden;
}
main .gallery .gallery-slider .image-box {
  position: relative;
  padding-bottom: 150%;
  border-radius: 15px;
  overflow: hidden;
}
main .gallery .gallery-slider .image-box img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
main .gallery .button-box {
  text-align: center;
  margin-top: 50px;
}
main .we-do .section-heading {
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}
@media screen and (min-width: 992px) {
  main .we-do .section-heading {
    flex-direction: row;
    align-items: flex-end;
  }
}
main .we-do .section-heading .title {
  width: 100%;
  margin-bottom: 0;
}
@media screen and (min-width: 992px) {
  main .we-do .section-heading .title {
    width: 50%;
    text-align: left;
  }
}
main .we-do .section-heading .title h2 br {
  display: none;
}
@media screen and (min-width: 992px) {
  main .we-do .section-heading .title h2 br {
    display: block;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .section-heading .description {
    width: 50%;
  }
}
main .we-do .section-heading .button-box {
  padding-top: 20px;
  text-align: right;
}
@media screen and (min-width: 992px) {
  main .we-do .section-heading .button-box {
    padding-top: 0;
    width: 20%;
  }
}
main .we-do .section-heading .button-box .btn-default {
  background-color: #424242;
}
main .we-do .our-service .service-item {
  cursor: pointer;
}
main .we-do .our-service .service-item .service-title {
  border-bottom: 1px solid #ffffff;
  overflow: hidden;
}
main .we-do .our-service .service-item .service-title.active h3 {
  -webkit-text-stroke: unset !important;
  color: #e50914;
}
main .we-do .our-service .service-item .service-title h3 {
  text-transform: uppercase;
  color: #000000;
  -webkit-text-stroke: 2px #ffffff;
  text-stroke: 2px #ffffff;
  padding-bottom: 10px;
  text-align: left;
  transition: all 0.5 ease-in-out;
  position: relative;
  transform: translateY(20px);
}
main .we-do .our-service .service-item .service-title h3.odd {
  text-align: right;
}
main .we-do .our-service .service-item .service-content {
  position: relative;
  max-height: 0;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}
main .we-do .our-service .service-item .service-content.is-open {
  padding-top: 40px;
  max-height: 1000px;
}
main .we-do .our-service .service-item .service-content .image-box {
  border-radius: 15px;
  max-height: 600px;
}
main .we-do .our-service .service-item .service-content .image-box img {
  width: 100%;
  height: 100%;
  border-radius: 15px;
}
main .we-do .our-service .service-item .service-content .content-box {
  width: 100%;
  background-color: rgba(81, 81, 81, 0.7019607843);
  bottom: 0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
  padding: 20px 20px;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
  display: flex;
}
@media screen and (min-width: 768px) {
  main .we-do .our-service .service-item .service-content .content-box {
    position: absolute;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box {
    padding: 60px 55px;
    align-items: flex-end;
    flex-direction: row;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box {
    width: 60%;
  }
}
main .we-do .our-service .service-item .service-content .content-box .text-box p {
  text-align: left;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box p {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box p {
    font-size: 18px;
  }
}
main .we-do .our-service .service-item .service-content .content-box .text-box ul {
  margin-top: 1rem;
  list-style: disc;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box ul {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box ul {
    margin-top: 2rem;
  }
}
main .we-do .our-service .service-item .service-content .content-box .text-box ul li {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box ul li {
    font-size: 16px;
  }
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box .text-box ul li {
    font-size: 18px;
  }
}
main .we-do .our-service .service-item .service-content .content-box .text-box ul li:not(:last-child) {
  margin-bottom: 0.5rem;
}
main .we-do .our-service .service-item .service-content .content-box .button-box {
  padding-top: 0;
}
main .we-do .our-service .service-item .service-content .content-box .button-box .btn-default {
  padding: 10px 30px;
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
  main .we-do .our-service .service-item .service-content .content-box .button-box .btn-default {
    padding: 20px 60px;
  }
}

.trust {
  background-color: #121212;
}
.trust .section-heading {
  background-image: url("../../images/trust-bg.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 15% 0 0;
}
@media screen and (min-width: 768px) {
  .trust .section-heading {
    padding: 12% 0 0;
  }
}
.trust .section-heading h3 {
  text-align: center;
}
.trust .section-heading h3 br {
  display: none;
}
@media screen and (min-width: 768px) {
  .trust .section-heading h3 br {
    display: block;
  }
}
.trust .trust-box {
  height: 800px;
  overflow: hidden;
  position: relative;
}
.trust .trust-box::after {
  height: 400px;
  width: 100%;
  background: #000000;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 100%);
  left: 0;
  bottom: 0;
  content: "";
  position: absolute;
}
.trust .trust-box .trust-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media screen and (min-width: 576px) {
  .trust .trust-box .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .trust .trust-box .trust-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.trust .trust-box .trust-inner .box {
  padding: 40px 30px 40px 20px;
  background-color: #292929;
}
.trust .trust-box .trust-inner .box .top-part {
  margin-bottom: 20px;
}
.trust .trust-box .trust-inner .box .mid-part {
  margin-bottom: 30px;
}
.trust .trust-box .trust-inner .box .mid-part p {
  text-align: left;
}
.trust .trust-box .trust-inner .box .end-part {
  gap: 14px;
  align-items: center;
  display: flex;
}
.trust .trust-box .trust-inner .box .end-part .wallpaper {
  width: 50px;
  height: 50px;
  overflow: hidden;
  border-radius: 50%;
  border: 2px solid #e50914;
}
@media screen and (min-width: 768px) {
  .trust .trust-box .trust-inner .box .end-part .wallpaper {
    width: 70px;
    height: 70px;
  }
}
.trust .trust-box .trust-inner .box .end-part .wallpaper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.trust .trust-box .trust-inner .box .end-part .info h4 {
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .trust .trust-box .trust-inner .box .end-part .info h4 {
    font-size: 22px;
  }
}
.trust .trust-box .trust-inner .box .end-part .info p {
  font-family: "Inter-SemiBold", sans-serif;
}

.turn .turn-box {
  padding: 40px 20px;
  background-color: #e50914;
  position: relative;
  border-radius: 100px 0 100px 0;
}
@media screen and (min-width: 992px) {
  .turn .turn-box {
    padding: 80px 20px;
    border-radius: 127px 0 134px 0;
  }
}
@media screen and (min-width: 1200px) {
  .turn .turn-box {
    padding: 100px 50px;
  }
}
@media screen and (min-width: 1500px) {
  .turn .turn-box {
    padding: 150px 90px;
  }
}
.turn .turn-box .img-box {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
}
.turn .turn-box .img-box img {
  max-width: 120px;
}
@media screen and (min-width: 480px) {
  .turn .turn-box .img-box img {
    max-width: 150px;
  }
}
@media screen and (min-width: 768px) {
  .turn .turn-box .img-box img {
    max-width: 250px;
  }
}
@media screen and (min-width: 992px) {
  .turn .turn-box .img-box img {
    max-width: 55%;
  }
}
@media screen and (min-width: 1200px) {
  .turn .turn-box .img-box img {
    max-width: 60%;
  }
}
@media screen and (min-width: 1400px) {
  .turn .turn-box .img-box img {
    max-width: 80%;
  }
}
@media screen and (min-width: 1500px) {
  .turn .turn-box .img-box img {
    max-width: 90%;
  }
}
.turn .turn-box .text-box {
  text-align: right;
}
.turn .turn-box .text-box h2 {
  font-size: clamp(20px, 8vw, 125px);
}
.turn .turn-box .text-box p {
  text-align: right;
}

.creative {
  padding-top: 0;
}
.creative .creative-box {
  flex-direction: column;
  display: flex;
}
@media screen and (min-width: 992px) {
  .creative .creative-box {
    flex-direction: row;
    gap: 50px;
  }
}
.creative .creative-box .section-heading h2 {
  text-align: center;
}
@media screen and (min-width: 992px) {
  .creative .creative-box .section-heading h2 {
    text-align: left;
  }
}
.creative .creative-box .section-heading h2 br {
  display: none;
}
@media screen and (min-width: 992px) {
  .creative .creative-box .section-heading h2 br {
    display: block;
  }
}
.creative .creative-box .section-heading p {
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
}
@media screen and (min-width: 992px) {
  .creative .creative-box .section-heading p {
    font-size: 25px;
    text-align: left;
  }
}
@media screen and (min-width: 1400px) {
  .creative .creative-box .section-heading p {
    font-size: 30px;
  }
}
@media screen and (min-width: 992px) {
  .creative .creative-box .section-heading {
    width: 60%;
  }
}
@media screen and (min-width: 992px) {
  .creative .creative-box .info-box {
    width: 40%;
  }
}
.creative .creative-box .info-box .img-box {
  overflow: hidden;
  max-height: 800px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.creative .creative-box .info-box .detail h3 {
  text-align: center;
  margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
  .creative .creative-box .info-box .detail h3 {
    font-size: 70px;
  }
}
.creative .creative-box .info-box .detail p {
  text-align: center;
  font-family: "Inter-SemiBold", sans-serif;
}/*# sourceMappingURL=home.css.map */