body {
  font-family: "Rethink Sans", serif;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3;
  padding-top: 48px;
}

.header .container {
  display: flex;
  justify-content: space-between;
}

.header .header-contact {
  display: flex;
  gap: 24px;
}

.header .header-contact a {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #ffffff4d;
  padding-bottom: 24px;
}

.header .header-contact a:hover .marquee p {
  animation: marquee 5s linear infinite;
}

.header .header-contact a p {
  display: flex;
  align-items: stretch;
  white-space: nowrap;
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: #fff;
  transition: 0.4s;
  padding-right: 12px;
}

.header .header-contact a .marquee {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  max-width: 143px;
}

.container {
  max-width: 1344px;
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.banner {
  width: 100%;
  position: relative;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  align-items: center;
  z-index: 2;
}

.banner:before {
  content: "";
  background: linear-gradient(
    180deg,
    #000000 0%,
    rgba(0, 0, 0, 0) 40%,
    #000000 100%
  );
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}

.banner .video-banner {
  width: 100%;
  position: absolute;
  zoom: 0.7;
  -webkit-appearance: none;
  appearance: none;
}

#banner-video::-webkit-media-controls {
  display: none !important;
}

#banner-video::-webkit-media-controls-panel {
  display: none !important;
}

#banner-video::-webkit-media-controls-play-button {
  display: none !important;
}

#banner-video::-webkit-media-controls-start-playback-button {
  display: none !important;
}

#banner-video::-webkit-media-controls-volume-slider {
  display: none !important;
}

#banner-video::-webkit-media-controls-fullscreen-button {
  display: none !important;
}

.banner .container {
  display: flex;
  z-index: 1;
  flex-direction: column;
}

.banner .container h1 {
  color: #fff;
  font-size: 72px;
  font-weight: 700;
  line-height: 78px;
  margin-bottom: 12px;
}

.banner .container h1 span {
  font-weight: 400;
  display: block;
}

.banner .container p {
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  letter-spacing: -0.01em;
  text-align: left;
  color: #ffffffb2;
}

.banner .banner-bottom {
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 1320px;
}

.banner .banner-bottom nav {
  display: flex;
  gap: 24px;
}

.banner .banner-bottom nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  font-family: Rethink Sans;
  font-size: 14px;
  font-weight: 500;
  color: #ffffffb2;
  border-top: 1px solid #ffffff4d;
  max-width: 198px;
  width: 100%;
  transition: 0.3s;
  transition-delay: 0.4s;
  text-align: center;
}
.banner .banner-bottom nav a.active {
  border-top-color: #fff;
}
.banner .banner-bottom nav a svg {
  transform: scale(0);
  transition: 0.3s;
  margin-right: 0;
}

.banner .banner-bottom nav a:hover {
  color: #fff;
  border-top-color: #fff;
}

.banner .banner-bottom nav a:hover svg {
  transform: scale(1);
  margin-left: 8px;
}
.banner .banner-menu.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: #000;
  animation: fixed 0.3s ease-in-out;
  justify-content: center;
}

.banner .banner-bottom nav.fixed a {
  border-top-color: transparent;
  padding: 10px 0;
}
.banner .banner-bottom nav.fixed a.active {
  color: #fff;
}

@keyframes fixed {
  0% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

.banner .banner-bottom .banner-button-video {
  display: inline-flex;
  justify-content: center;
}

.banner .banner-bottom .banner-button-video button {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 500;
  line-height: 20.83px;
  letter-spacing: -0.01em;
  color: #fff;
  gap: 12px;
}

.banner .banner-bottom .banner-button-video button p {
  width: 110px;
  display: flex;
  overflow: hidden;
}

.banner .banner-bottom .banner-button-video button span {
  color: #fff;
  white-space: nowrap;
  animation: marquee 5s linear 2s infinite;
  padding-right: 8px;
}

.banner .banner-bottom .banner-button-video button svg {
  animation: scale 5s linear 2s infinite;
}

@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes scale {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

.slogan {
  padding: 80px 0 120px 0;
}

.slogan .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.slogan h3 {
  font-family: Rethink Sans;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
}

.slogan .container .image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 230px;
  position: relative;
  left: 35px;
}

.slogan .container .image .logo {
  position: absolute;
}

.slogan .container .image svg {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 48px;
}

.title.center {
  align-items: center;
  text-align: center;
}

.title h3 {
  font-family: Rethink Sans;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #000000;
}

.title h3 strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #2424d0;
}

.projects {
  padding-bottom: 192px;
}

.projects .boxes {
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.projects .boxes .box {
  display: flex;
  gap: 32px;
}

.projects .boxes .box .image {
  max-width: 752px;
  width: 100%;
  border-radius: 50px 0 0 190px;
  overflow: hidden;
  line-height: 0;
  position: relative;
}

.projects .boxes .box.reverse .image {
  border-radius: 0 190px 0 0;
}

.projects .boxes .box .content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 48px 0;
}

.projects .boxes .box .content h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  color: #2424d0;
  margin-bottom: 10px;
}

.projects .boxes .box .content p span {
  text-decoration: underline;
}

.projects .boxes .box .content p {
  font-family: Rethink Sans;
  font-size: 36px;
  font-weight: 500;
  line-height: 46px;
  color: #000000;
  letter-spacing: -0.01em;
}

.projects .boxes .box .content h6 {
  display: flex;
  gap: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  text-decoration-line: underline;
  color: #000000;
}

.projects .boxes .box.reverse {
  flex-direction: row-reverse;
}

.projects .boxes .box .image .filter {
  background: #000000b2;
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: 0.1s;
}

.projects .boxes .box .image .filter svg {
  animation: rotate 10s linear infinite;
  transform: scale(0);
  transition: 0.4s;
}

.projects .boxes .box .image .filter img {
  position: absolute;
}

.projects .boxes .box:hover .image .filter {
  opacity: 1;
}

.projects .boxes .box:hover .image .filter svg {
  transition-delay: 1s;
  transform: scale(1);
}

@keyframes colorChange {
  0% {
    fill: #000;
  }

  50% {
    fill: #2424d0;
  }

  100% {
    fill: #000;
  }
}

.text-path {
  font-size: 17.9px;
  font-weight: 700;
  text-anchor: middle;
  letter-spacing: 0.3px;
}

.dot {
  font-size: 23px;
}

.button-box {
  margin-top: 120px;
  display: flex;
  justify-content: center;
}

.button {
  display: inline-flex;
  align-items: center;
  padding: 24px 40px 24px 40px;
  gap: 10px;
  color: #fff;
  background-color: #000000;
  border-radius: 50px;
  transition: 0.3s;
}

.button p {
  display: flex;
  overflow: hidden;
}

.button p span {
  white-space: nowrap;
  padding-right: 8px;
  height: 20px;
  display: flex;
  align-items: center;
}

.button:hover {
  background-color: #2424d0;
}

.button:hover p span {
  animation: marquee 5s linear infinite;
}

.button.white {
  background-color: #fff;
  color: #000;
}

.customers {
  padding: 0 0 120px 0;
}

.customers .swiper::before {
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  left: 0;
}

.customers .swiper::after {
  background: linear-gradient(149deg, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  right: 0;
  top: 0;
}

.customers .swiper::before,
.customers .swiper::after {
  content: "";
  width: 140px;
  height: 100%;
  position: absolute;
  z-index: 5;
}

.customers .swiper-wrapper {
  align-items: center;
}

.what-do-we-do .boxes {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.what-do-we-do .boxes .box {
  text-align: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 88px 24px;
  max-width: 437px;
}

.what-do-we-do .boxes .box .lottie {
  width: 48px;
  margin-bottom: 16px;
}

.what-do-we-do .boxes .box .lottie svg path {
  stroke: #2424d0;
  /* Kırmızımsı turuncu renk */
}

.what-do-we-do .boxes .box h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000;
  margin-bottom: 16px;
}

.what-do-we-do .boxes .box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000;
}

.what-do-we-do .container .boxes .line-1 {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    #666666 40%,
    #666666 60%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  height: 0.5px;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  opacity: 0.4;
  top: calc(50% - 0.25px);
}

.what-do-we-do .container .boxes .line-2 {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    #666666 40%,
    #666666 60%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 0.5px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  opacity: 0.4;
  top: 0;
  left: 437px;
}

.what-do-we-do .container .boxes .line-3 {
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0) 0%,
    #666666 40%,
    #666666 60%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 0.5px;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  opacity: 0.4;
  top: 0;
  left: 874px;
}

.questions {
  padding: 120px 0 184px 0;
}

.questions .boxes {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.questions .boxes .box {
  gap: 16px;
  border-radius: 50px;
  border: 1px solid #2424d01a;
  overflow: hidden;
  transition: 0.4s;
}

.questions .boxes .box button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px;
  background-color: transparent;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
  color: #000;
}

.questions .boxes .box:hover {
  border-color: #2424d04d;
}

.questions .boxes .box:hover span {
  border-color: #2424d04d;
}

.questions .boxes .box:hover button span svg {
  fill: #2424d0;
}

.questions .boxes .box button span {
  min-width: 28px;
  height: 28px;
  border: 1px solid #0000004d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.questions .boxes .box.active {
  background-color: #2424d0;
}

.questions .boxes .box.active button {
  color: #fff;
}

.questions .boxes .box p {
  padding: 0 24px 24px 24px;
  color: #fff;
  opacity: 0.8;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  margin-top: -12px;
  display: none;
}

.questions .boxes .box.active button span {
  border-color: hsla(0, 0%, 100%, 0.3);
  transform: rotate(45deg);
}

.questions .boxes .box.active button span svg {
  fill: #fff;
}

.questions .boxes .box.active p {
  display: block;
}
.home-blog {
  padding-bottom: 120px;
}
.home-blog .boxes {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.home-blog .boxes .box {
  max-width: 394px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.home-blog .boxes .box .image {
  overflow: hidden;
  border-radius: 20px;
}

.home-blog .boxes .box .image img {
  transition: 0.4s;
}

.home-blog .boxes .box:hover img {
  transform: scale(1.1);
}

.home-blog .boxes .box .content {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.home-blog .boxes .box .content h5 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
  color: #000;
}

.home-blog .boxes .box:hover .content h5 {
  color: #2424d0;
}

.home-blog .boxes .box .content span {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #000000bf;
  transition: 0.4s;
}
.contact-area {
  background-color: #2424d0;
  padding: 72px 0;
  text-align: center;
}
.contact-area .title h3 {
  color: #fff;
}
.contact-area .title p {
  color: #ffffff50;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.02em;
}
.contact-area .boxes {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.footer {
  background-color: #2424d0;
  border-top: 1px solid #ffffff26;
}
.footer .container {
  display: flex;
}
.footer .container .left,
.footer .container .right {
  width: 50%;
}
.footer .container .left {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-right: 1px solid #ffffff26;
}
.footer .container .left p {
  max-width: 304px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer .container .left .social-media h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
  letter-spacing: -0.01em;
  color: #ffffffb2;
  margin-bottom: 12px;
}
.footer .container .left .social-media nav {
  display: flex;
  gap: 8px;
}
.footer .container .left .social-media nav a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: #ffffff1a;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.footer .container .left .social-media nav a:hover {
  background-color: #2424d0;
  transform: scale(1.05);
}
.footer .container .right .menu-wrap,
.footer .container .right .copyright {
  padding: 80px 0 80px 64px;
  display: flex;
  justify-content: space-between;
}
.footer .container .right .menu-wrap .menu {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .container .right .menu-wrap .menu h6 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer .container .right .menu-wrap .menu nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer .container .right .menu-wrap .menu nav a {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #fff;
}
.footer .container .right .menu-wrap .menu nav a:hover {
  text-decoration: underline;
}
.footer .container .right .copyright {
  border-top: 1px solid #ffffff26;
}
.footer .container .right .copyright p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #ffffff99;
}
.sub-banner:before {
  display: none;
}
.sub-banner {
  background-color: #2424d0;
}
.sub-banner h1 {
  max-width: 1100px;
}
.sub-banner p {
  max-width: 705px;
}
.sub-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 48px;
}
.sub-title h3 {
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #2424d0;
}
.sub-title p {
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #000;
}
.about-image {
  margin-bottom: 144px;
}
.what-do-we-do.page .boxes {
  justify-content: space-between;
  margin-bottom: 24px;
}
.what-do-we-do.page {
  padding-bottom: 144px;
}
.what-do-we-do.page .boxes .box {
  text-align: left;
  align-items: flex-start;
  padding: 88px 0;
  max-width: 410px;
  width: 100%;
}
.heart-arma {
  display: flex;
  justify-content: center;
  align-items: center;
}
.heart-arma .heart {
  width: 200px;
  height: 200px;
  background-color: #2424d00d;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.4s;
}
.heart-arma:hover .heart {
  transform: scale(1.1);
}
.heart-arma .arma {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  left: -30px;
  border: 8px solid #2424d0;
  background: #fff;
}
.heart-arma .arma svg {
  position: absolute;
}
.arma img {
  transform: rotate(-10deg);
}
.customer-area {
  padding-bottom: 144px;
}
.customer-area .customers-about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 93px;
  margin-bottom: 144px;
}
.customer-area .customers-about .box {
  width: 20%;
}
.mini-title {
  font-size: 48px;
}
.projects-area,
.blog-area {
  padding: 88px 0 144px 0;
}
.projects-area .categories,
.blog-area .categories {
  display: flex;
  border-bottom: 1px solid #00000029;
  gap: 40px;
  margin-bottom: 144px;
  overflow: auto;
  scroll-snap-type: x mandatory;
}
.projects-area .categories button,

.blog-area .categories button {
  font-size: 28px;
  font-weight: 600;
  line-height: 36.46px;
  color: #0000004d;
  background-color: transparent;
  padding: 0 0 24px 0;
}
.projects-area .categories button span,
.blog-area .categories button span{
  white-space: nowrap;
}
.projects-area .categories button.active,

.blog-area .categories button.active {
  color: #000;
}
.projects-area .boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 60px;
  margin-bottom: 144px;
}
.projects-area .boxes .box.active:nth-child(4n + 1) .image {
  border-radius: 70px 0 0px 0;
}
.projects-area .boxes .box.active:nth-child(4n + 2) .image {
  border-radius: 0 0 0 69px;
}
.projects-area .boxes .box.active:nth-child(4n + 3) .image {
  border-radius: 0 70px 0 0;
}
.projects-area .boxes .box.active:nth-child(4n + 4) .image {
  border-radius: 0 0 70px 0;
}
.projects-area .boxes .box .image {
  overflow: hidden;
}

.projects-area .boxes .box {
  max-width: 640px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  transform: scale(0.4);
  border-radius: 50%;
  position: absolute;
  opacity: 0;
  z-index: -1;
  overflow: hidden;
}
.projects-area .boxes .box .image img {
  transition: 0.4s;
}
.projects-area .boxes .box:hover .image img {
  transform: scale(1.1);
}
.projects-area .boxes .box.active {
  transform: scale(1);
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  border-radius: 0;
}
.projects-area .boxes .box .content {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.projects-area .boxes .box .content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46.87px;
  color: #000;
  transition: 0.4s;
}
.projects-area .boxes .box:hover .content h3 {
  color: #2424d0;
}
.projects-area .boxes .box .content p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  color: #00000066;
  margin-bottom: 16px;
}
.projects-area .boxes .box .content .tag {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.projects-area .boxes .box .content .tag span {
  padding: 6px 12px 6px 12px;
  gap: 10px;
  border-radius: 100px;
  border: 1px solid #00000029;
  color: #000;
  font-family: Rethink Sans;
  font-size: 12px;
  font-weight: 600;
  line-height: 15.62px;
}

#category-follower {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  padding: 8px 16px;
  background: #2424d0;
  color: white;
  transform: translate(-50%, -50%);
  display: block;
  font-size: 10px;
  position: absolute;
  border-radius: 100px;
  text-align: center;
  display: none;
}
.contact-page {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-page .left {
  max-width: 802px;
}
.contact-page .right {
  max-width: 446px;
}
.contact-page .left .contact-boxes {
  display: flex;
  margin-top: 32px;
  gap: 24px;
}
.contact-page .left .contact-boxes .info-box {
  display: flex;
  background-color: #ffffff0f;
  padding: 14px;
  gap: 16px;
  border-radius: 0px 26px 0px 26px;
  border: 1px solid #ffffff14;
  flex: 1;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s;
}
.contact-page .left .contact-boxes .info-box:hover {
  background-color: #2424d0;
  border: 1px solid #ffffff14;
}

.contact-page .left .contact-boxes .info-box .content {
  display: flex;
  gap: 16px;
  align-items: center;
}
.contact-page .left .contact-boxes .info-box .content h3 {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #ffffff99;
}
.contact-page .left .contact-boxes .info-box .content span {
  font-size: 16px;
  font-weight: 400;
  line-height: 22.4px;
  color: #ffffff;
}
.contact-page .left .contact-boxes .info-box .content .icon {
  width: 54px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffffff08;
  border: 1px solid #ffffff14;
  border-radius: 12px;
}
.contact-page .left .contact-boxes .info-box button {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid #ffffff14;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff08;
}
.contact-page .left .contact-boxes .info-box .content .info {
  display: flex;
  flex-direction: column;
}
.contact-page .right {
  width: 446px;
  padding: 32px;
  gap: 24px;
  border-radius: 0px 0px 0px 49px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  overflow: hidden;
}
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}
.form-success.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.form-success .form-success-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  width: 200px;

  height: 200px;
  border-radius: 50%;
  background: #2424d00d;
}
.form-success span {
  font-size: 24px;
  font-weight: 700;
  line-height: 31.25px;
  letter-spacing: -0.01em;
  color: #000;
}
.form-control {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-page .right .button {
  justify-content: center;
}
.contact-page .right .button p {
  color: #fff;
}
.form-control label {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #000;
}
.form-control input,
.form-control textarea {
  width: 100%;
  height: 60px;
  padding: 0 14px;
  gap: 12px;
  border-radius: 16px;
  border: 1px solid #00000014;
  color: #000;
  transition: 0.4s;
}
.form-control input:focus,
.form-control textarea:focus {
  border-color: #2424d0;
}
.form-control textarea {
  height: 206px;
  padding: 20px 14px;
}
.form-control input::placeholder,
.form-control textarea::placeholder {
  color: #00000066;
}
[error-state="true"] input,
[error-state="true"] textarea {
  border-color: red;
}
[error-state="true"]::after {
  content: attr(error-message);
  color: red;
  font-size: 10px;
}
.contact-bottom {
  background: url(../images/contact-map.jpg) no-repeat center center;
  background-size: cover;
  width: 100%;
  height: 958px;
  padding: 85px 0;
}
.contact-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 22px;
}
.contact-bottom .container .contact-bottom-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 446px;
  width: 100%;
  padding: 32px;
  gap: 16px;
  border-radius: 0px 0px 0px 49px;
  background-color: #fff;
}
.contact-bottom .container .contact-bottom-box h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000;
}
.contact-bottom .container .contact-bottom-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000000;
}
.contact-bottom .container .contact-bottom-box .button {
  margin-top: 8px;
  justify-content: center;
}

.contact-bottom .container .contact-bottom-box .button p {
  color: #fff;
}

.project-detail-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.banner .categories {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.banner .categories strong {
  padding: 6px 12px 6px 12px;
  border-radius: 50px;
  border: 1px solid #00000029;
  background: #00000066;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
}

.project-detail-info {
  padding: 80px 0 60px 0;
}
.project-detail-info .container {
  display: flex;
  justify-content: space-between;
}
.project-detail-info .left {
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.project-detail-info .left .info-box {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.project-detail-info .left .info-box h4,
.project-detail-info .left .info-box p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #000000;
}
.project-detail-info .left .info-box p.underline {
  text-decoration: underline;
  margin-bottom: 7px;
}
.project-detail-info .right {
  max-width: 636px;
}
.title p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26.04px;
  color: #00000066;
}
.project-detail-info .right .image {
  max-width: 200px;
  height: 200px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.project-detail-info .right .title {
  margin-bottom: 32px;
}
.project-detail-info .right .image svg {
  position: absolute;
  top: 0;
  left: 0;
  animation: rotate 10s linear infinite;
}
.project-detail-content {
  padding-bottom: 60px;
}
.project-detail-content .container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.project-detail-content .container .detail-content-box {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.project-detail-content .container .detail-content-box .image {
  border-radius: 60px 0 0;
  overflow: hidden;
}
.project-detail-content .container .detail-content-box .images {
  display: flex;
  gap: 32px;
}
.project-detail-content .container .detail-content-box .images .image-box {
  overflow: hidden;
}
.project-detail-content
  .container
  .detail-content-box
  .images
  .image-box:hover
  img {
  transform: scale(1.1);
}
.project-detail-content .container .detail-content-box .images .image-box img {
  transition: 0.4s;
}

.project-detail-content
  .container
  .detail-content-box
  .images
  .image-box:nth-child(1) {
  border-radius: 0px 0 70px 0px;
}
.project-detail-content
  .container
  .detail-content-box
  .images
  .image-box:nth-child(2) {
  border-radius: 70px 0 0 0px;
}
.project-detail-content .container .detail-content-box .content {
  display: flex;
  justify-content: space-between;
}
.project-detail-content .container .detail-content-box .content .content-title {
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  color: #000000;
}
.project-detail-content .container .detail-content-box .content .content-text {
  max-width: 878px;
  padding-right: 124px;
}
.project-detail-content
  .container
  .detail-content-box
  .content
  .content-text
  h4 {
  font-size: 32px;
  font-weight: 500;
  line-height: 41.66px;
  letter-spacing: -0.01em;
  color: #000000;
  margin-bottom: 12px;
}
.project-detail-content
  .container
  .detail-content-box
  .content
  .content-text
  p {
  font-size: 20px;
  font-weight: 400;
  line-height: 26.04px;
  color: #00000066;
}
.other-projects {
  padding: 60px 0 144px 0;
}
.other-projects .box {
  overflow: hidden;
  border-radius: 32px;
  position: relative;
  line-height: 0;
  display: flex;
}
.other-projects .box .content {
  padding: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(0, 0, 0, 0) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.other-projects .box .content h3 {
  font-size: 36px;
  font-weight: 600;
  line-height: 46.87px;
  color: #fff;
}
.other-projects .box .content p {
  font-family: Rethink Sans;
  font-size: 14px;
  font-weight: 400;
  line-height: 18.23px;
  color: #ffffffa3;
}
.other-projects .box img {
  transition: 0.4s;
}
.other-projects .box:hover img {
  transform: scale(1.1);
}
.other-projects .heart-arma {
  margin-top: 144px;
}
.blog-area .boxes {
  display: flex;
  flex-direction: column;
  gap: 144px;
}
.blog-area .boxes .box {
  display: flex;
  justify-content: space-between;
  opacity: 0;
  transform: scale(0) translateY(100px);
  z-index: 0;
  position: absolute;
}
.blog-area .boxes .box.active {
  transform: scale(1) translateY(0);
  opacity: 1;
  position: relative;
  z-index: 1;
  transition: 0.4s;
  border-radius: 0;
}

.blog-area .boxes .box .content {
  max-width: 1056px;
  width: 100%;
  display: flex;
  gap: 24px;
}
.blog-area .boxes .box .content .image {
  max-width: 512px;
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
}
.blog-area .boxes .box .blog-date {
  font-size: 20px;
  font-weight: 500;
  line-height: 26.04px;
  color: #000000;
}
.blog-area .boxes .box .blog-date span {
  display: block;
}

.blog-area .boxes .box .content .text {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-area .boxes .box .content .text h3 {
  font-family: Rethink Sans;
  font-size: 36px;
  font-weight: 700;
  line-height: 46.87px;
  letter-spacing: -0.01em;
  color: #000000;
}
.blog-area .boxes .box .content .text p {
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #000;
}
.blog-area .boxes .box:hover .content .text h3 {
  color: #2424d0;
}
.blog-area .boxes .box .image img {
  transition: 0.4s;
}
.blog-area .boxes .box:hover .content .image img {
  transform: scale(1.1);
}

.blog-area .heart-arma {
  margin-top: 144px;
}
.blog-detail {
  padding: 88px 0 144px 0;
}
.blog-detail .container {
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.blog-detail h3 {
  font-size: 36px;
  font-weight: 700;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #000000;
}

.blog-detail p {
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #000000;
}

.blog-detail p strong {
  font-weight: 700;
}
.blog-detail .heart-arma {
  margin-top: 112px;
}
.blog-detail .social-media {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 112px;
}
.blog-detail .social-media h6 {
  font-size: 20px;
  font-weight: 400;
  line-height: 26.04px;
  text-align: center;
  color: #000000;
}
.blog-detail .social-media nav {
  display: flex;
  gap: 8px;
}
.blog-detail .social-media nav a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #2424d00d;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2424d014;
  transition: 0.4s;
}
.blog-detail .social-media nav a:hover {
  transform: scale(1.05);
}
.sub-banner-text-full {
  max-width: 1079px !important;
  font-size: 16px !important;
  line-height: 21px;
}
.career-slogan .container {
  gap: 52px;
}
.career-content {
  padding-bottom: 144px;
}
.career-content .container .boxes {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.career-content .container .boxes .box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid #00000029;
}
.career-content .container .boxes .box .button {
  padding: 17px 24px;
}

.career-content .container .boxes .box h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000;
}
.career-content .container .boxes .box .info {
  display: flex;
  gap: 16px;
  align-items: center;
}
.career-content .container .boxes .box .info span.field {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.01em;
  color: #000;
  min-width: 110px;
}

.career-content .container .title {
  margin-bottom: 24px;
}
.career-content .container .title h3 {
  color: #2424d0;
}

.career-detail .container {
  max-width: 848px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.career-detail {
  padding: 88px 0 144px 0;
}

.career-detail h3 {
  font-family: Rethink Sans;
  font-size: 48px;
  font-weight: 500;
  line-height: 64px;
  letter-spacing: -0.01em;
  color: #2424d0;
}
.career-detail p,
.career-detail ul li {
  font-family: Rethink Sans;
  font-size: 16px;
  font-weight: 400;
  line-height: 20.83px;
  color: #000000;
}
.career-detail ul {
  list-style: disc;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.career-detail form {
  border: 1px solid #00000029;
  padding: 32px;
  gap: 24px;
  border-radius: 0px 0px 0px 49px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
}
.career-detail form .form-control {
  width: calc(50% - 12px);
}
.career-detail form .form-control input {
  width: 100%;
}
.career-detail form .form-control.full {
  width: 100%;
}
.form-control {
  position: relative;
}
.form-control input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.career-detail form .button-wrap {
  display: flex;
  width: 100%;
}
.career-detail form .button-wrap .button {
  width: 100%;
  justify-content: center;
}

.career-detail form .button p {
  color: #fff;
}

.menu-button {
  display: none;
}
.global-contact {
  display: none;
}
.mobile-menu {
  display: none;
}
.mobil-menu-filter {
  display: none;
}
.services{
  padding-bottom: 144px;
}
.services .container{
  display: flex;
  justify-content: space-between;
}
.services .container .left{
  max-width: 480px;
  width: 100%;
  border-left: 4px solid  #0000001A;
  display: flex;
  flex-direction: column;
  padding-left: 36px;
}
.services .container .left .service-box{
  position: relative;
  padding-bottom: 72px;
}
.services .container .left .service-box:nth-child(1)::before{
  border-radius: 50px 50px 0 0;
}
.services .container .left .service-box:last-child{
  padding-bottom: 0;
}
.services .container .left .service-box:last-child::before{
  border-radius: 0 0 50px 50px;
}

.services .container .left .service-box.active::before{
  content: '';
  position: absolute;
  top: 0;
  left: -42px;
  width: 8px;

  height: 100%;
  background: #2424D0;
  

}
.services .container .left .service-box .content{
  display: none;
}
.services .container .left .service-box h3{
  font-weight: 600;
  font-size: 36px;
  line-height: 46.87px;
  color: #00000066;
  cursor: pointer;
  user-select: none;
}
.services .container .left .service-box.active h3{
  color: #000;
}
.services .container .left .service-box.active .content{
  display: flex;
  flex-direction: column;
  margin-top: 8px;
  gap: 16px;
}
.services .container .left .service-box.active .content p{
  font-weight: 400;
  font-size: 14px;
  line-height: 18.23px;
  color: #00000066;
}
.services .container .left .service-box.active .content a{
  border-bottom: 1px solid #000;
  border-radius: 0;
  background-color: transparent;
  padding-left: 0;
  padding-right: 0;
  padding-top: 0;
  padding-bottom: 12px;
}
.services .container .left .service-box.active .content a p{
  width: 108px !important;
}
.services .container .left .service-box.active .content a span{
  color: #000;
}
.customer-area.services-customer-area{
  padding-bottom: 24px;
}
.customer-area.services-customer-area .container .customers-about{
  margin-bottom: 0;
}

@media screen and (max-width: 1342px) {
  .blog-area .boxes .box .blog-date{
    font-size: 14px;
    line-height: 20px;
  }

  .blog-area .boxes .box .content .text h3{
    font-size: 24px;
    line-height: 32px;
  }
  .blog-area .boxes .box .content .text p{
    font-size: 14px;
    line-height: 20px;
  }
  .blog-area .boxes .box .content .text{
    gap: 12px;
  }
  .projects-area .categories button, .blog-area .categories button{
    font-size:19px;
  }


  .banner .banner-bottom nav a svg {
    display: none;
  }
  .banner .banner-bottom {
    width: 100%;
    left: 0;
    padding: 0 10px;
  }
  .slogan .container .image {
    left: 0;
  }
  .what-do-we-do .boxes .box {
    max-width: 33.33%;
  }
  .what-do-we-do .container .boxes .line-3 {
    left: 66.66%;
  }
  .what-do-we-do .container .boxes .line-2 {
    left: 33.33%;
  }
  .home-blog .boxes .box {
    max-width: 32%;
  }
  .what-do-we-do.page .boxes .box {
    max-width: 32%;
  }
  .projects-area .boxes .box{
    width: 49%;
  }
  .contact-page{
    gap: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .services .container .left .service-box{
    padding-bottom: 32px;
  }
  .services .container .left .service-box h3{
    font-size: 24px;
    line-height: 32px;
  }
  .contact-page .left{
    max-width: 50%;
  }

  .contact-page .left .contact-boxes{
    flex-direction: column;
  }
  .projects-area .boxes .box .content h3{
    font-size: 24px;
  }
  .projects-area .boxes .box{
    gap: 16px;
  }
  .projects-area, .blog-area{
    padding:80px 0;
  }
  .projects-area .categories, .blog-area .categories{
    margin-bottom: 80px;
  }
  .projects-area .categories button, .blog-area .categories button{
    padding: 0;
  }
  .projects-area .categories{
    overflow-x: auto;
  }
  .projects-area .categories button, .blog-area .categories button{
    font-size: 16px;
  }

  .mini-title{
    font-size: 24px;
  }
  .what-do-we-do .boxes .box h4 {
    font-size: 18px;
    line-height: 24px;
  }
  .what-do-we-do.page .boxes .box {
    padding: 0;
  }
  .what-do-we-do.page .boxes {
    row-gap: 32px;
  }
  .banner .container h1 {
    text-align: center;
    font-size: 48px;
    line-height: 58px;
  }
  .what-do-we-do.page .boxes .box p {
    font-size: 13px;
    line-height: 20px;
  }
  .banner .container p {
    text-align: center;
    font-size: 14px;
    line-height: 18px;
  }

  .header .header-contact a {
    padding-bottom: 12px;
  }
  .header .header-contact a p {
    font-size: 14px;
  }
  .header .header-contact a .marquee {
    max-width: 125px;
    padding-right: 10px;
  }
  .slogan h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .title h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .projects .boxes {
    gap: 64px;
  }
  .projects .boxes .box .content h4 {
    font-size: 18px;
  }
  .projects .boxes .box .content p {
    font-size: 24px;
    line-height: 32px;
  }
  .button-box {
    margin-top: 62px;
  }
  .projects .boxes .box .content h6 {
    font-size: 14px;
  }
  .projects {
    padding-bottom: 144px;
  }
  .projects .boxes .box .image .filter svg {
    width: 95px;
    height: 95px;
  }
  .projects .boxes .box .image .filter img {
    width: 30px;
  }
  .what-do-we-do .boxes .box h4 {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .what-do-we-do .boxes .box p {
    font-size: 14px;
    line-height: 20px;
  }
  .what-do-we-do .boxes .box {
    padding: 68px 24px;
  }
  .questions .boxes .box button {
    font-size: 16px;
    line-height: 22px;
    text-align: left;
  }
  .questions .boxes .box p {
    font-size: 13px;
    line-height: 18px;
  }
  .questions .boxes .box button {
    padding: 14px;
  }
  .questions .boxes .box {
    border-radius: 24px;
  }
  .questions .boxes .box p {
    padding: 0 14px 14px 14px;
  }
  .questions {
    padding: 80px 0;
  }
  .home-blog .boxes .box .content h5 {
    font-size: 18px;
    line-height: 24px;
  }
  .home-blog .boxes .box .content {
    gap: 12px;
  }
  .button {
    font-size: 14px;
    padding: 14px 28px 14px 28px;
  }
  .home-blog .boxes {
    margin-bottom: 62px;
  }
  .footer .container .right .menu-wrap .menu h6 {
    font-size: 16px;
    line-height: 24px;
  }
  .footer .container .right .menu-wrap .menu nav a {
    font-size: 14px;
    font-weight: 400;
  }
  .footer .container .right .menu-wrap {
    gap: 8px;
  }
  .footer .container .right .menu-wrap .menu nav {
    gap: 8px;
  }
  .footer .container .left p {
    font-size: 14px;
    line-height: 20px;
  }
  .footer .container .right .menu-wrap,
  .footer .container .right .copyright {
    padding: 75px 0 80px 33px;
  }
  .banner.sub-banner .container h1 {
    text-align: left;
    max-width: 750px;
  }
  .banner.sub-banner .container p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }
  .about-image {
    margin-bottom: 80px;
  }
  .sub-title h3 {
    font-size: 32px;
    line-height: 42px;
  }
  .sub-title p {
    font-size: 22px;
    line-height: 30px;
  }
  .what-do-we-do.page .heart-arma {
    margin-top: 42px;
  }
  .heart-arma .heart {
    width: 125px;
    height: 125px;
  }
  .heart-arma .arma {
    width: 125px;
    height: 125px;
  }
  .heart-arma .arma svg {
    width: 110px;
    height: 110px;
  }
  .heart-arma .arma img {
    width: 34px;
  }
  .what-do-we-do.page {
    padding-bottom: 80px;
  }
  .customer-area .customers-about .box{
    width: 25%;
  }
  .customer-area .customers-about{
    row-gap: 42px;
  }
  .customer-area .customers-about{
    margin-bottom: 80px;
  }
  .customer-area{
    padding-bottom: 80px;
  }
  .projects-area .boxes{
    margin-bottom: 80px;
  }
  #category-follower{
    display: none !important;
  }
  .banner .categories{
    justify-content: center;
  }
  .banner .categories strong{
    font-size: 11px;
  }
  .title p{
    font-size: 14px;
    line-height: 20px;
  }
  .project-detail-info .right .image{
    display: none;
  }
  .project-detail-info .container{
    align-items: center;
    gap: 24px;
  }
  .project-detail-info .left{
    max-width: 350px;
    width: 100%;
  }
  .project-detail-content .container .detail-content-box .content .content-text h4{
    font-size: 24px;
    line-height: 32px;
  }
  .project-detail-content .container .detail-content-box .content .content-text p{
    font-size: 14px;
    line-height: 20px;
  }
  .project-detail-content .container .detail-content-box .content .content-title{
    max-width: 150px;
    width: 100%;
  }
  .project-detail-content .container .detail-content-box .content .content-text{
    padding-right: 0;
  }
  .project-detail-content .container .detail-content-box{
    gap:32px;
  }
  .project-detail-info{
    padding: 80px 0 0 0;
  }
  .other-projects .box .content h3{
    font-size: 24px;
    line-height: 32px;
  }
  .other-projects .box .content p{
    font-size: 13px;
  }
  .other-projects{
    padding-bottom: 80px;
  }
  .other-projects .heart-arma{
    margin-top: 42px;
  }
  .contact-bottom .container .contact-bottom-box h4{
    font-size: 18px;
  }
  .contact-bottom .container .contact-bottom-box p{
    font-size: 14px;
  }
  .contact-bottom .container .contact-bottom-box{
    gap: 12px;
  }
  .contact-page .left .contact-boxes .info-box .content h3{
    font-size: 14px;
  }
  .contact-page .left .contact-boxes .info-box .content span{
    font-size: 14px;
  }
  .contact-page .left .contact-boxes .info-box .content .icon{
    width: 44px;
    height: 44px;
  }
  .contact-page .left .contact-boxes .info-box .content .icon svg{
    width: 24px;
    height: 24px;
  }
  .contact-bottom{
    height: auto;
    padding: 80px 0;
  }
  .blog-area .boxes{
    gap: 80px;
  }
  .blog-area .heart-arma{
    margin-top: 80px;
  }
 
  .banner.blog-detail-banner .categories{
    justify-content: flex-start;
  }
  .blog-detail h3{
    font-size: 24px;
    line-height: 32px;
  }
  .blog-detail p{
    font-size: 14px;
    line-height: 20px;
  }
  .blog-detail .heart-arma{
    margin-top: 42px;
  }
  .blog-detail .social-media{
    margin-top: 42px;
  }
  .blog-detail{
    padding: 80px 0;
  }
  .career-content .container .boxes .box h4{
    font-size: 16px;
    line-height: 24px;
  }
  .career-content .container .boxes .box .info span.field{
    font-size: 13px;
    line-height: 18px;
  }
  .career-content .container .boxes .box{
    padding-bottom: 12px;
  }
  .career-content .container .boxes{
    gap: 12px;
  }
  .career-content .container .boxes .box .button{
    padding: 8px 14px;
  }
  .career-content{
    padding-bottom: 80px;
  }
  .career-detail h3{
    font-size: 32px;
    line-height: 42px;
  }
 
  .career-detail .container{
    gap: 24px;
  }
  .career-detail p, .career-detail ul li{
    font-size: 14px;
    line-height: 20px;
  }
  .career-detail{
    padding: 48px 0 80px 0;
  }
  .services{
    padding-bottom: 80px;
  }
}


@media screen and (max-width: 768px) {
  .customer-area .customers-about{
    margin-bottom: 32px;
  }
  .customer-area .customers-about .box{
    width: 33%;
  }
}
@media screen and (max-width: 640px) {
  .services .container .left .service-box h3{
    font-size: 18px;
    line-height: 28px;
  }

  .services .container{
    flex-direction: column;
    gap: 32px;
  }
  .services .container .left{
    max-width: 100%;
    width: 100%;
  }
  .career-detail h3{
    font-size: 24px;
    line-height: 32px;
  }
  .career-detail p, .career-detail ul li{
    font-size: 13px;
    line-height: 18px;
  }
  .form-control label{
    font-size: 14px;
  }

  .career-detail form .form-control{
    width: 100%;
  }
  .form-control input, .form-control textarea{
    font-size: 14px;
  }
  .blog-detail .container{
    gap: 16px;
  }

  .blog-detail h3{
    font-size: 16px;
    line-height: 24px;
  }

  .blog-detail p{
    font-size: 13px;
    line-height: 18px;
  }

  .blog-area .boxes{ 
    gap: 42px;
  }
  .blog-area .boxes .box .blog-date{
    display: flex ;
            margin-left: 12px;
            top: 12px;
            gap: 4px;
            background: #fff;
            font-size: 11px;
            padding: 4px 6px;
            border-radius: 16px;
            position: absolute;
  }
  .blog-area .boxes .box .content{
    flex-direction: column;
  }

  .blog-area .boxes .box .content .text h3{
    font-size: 16px;
    line-height: 24px;
  }
  .blog-area .boxes .box .content .text p{
    font-size: 13px;
    line-height: 18px;
  }
  .contact-bottom .container .contact-bottom-box h4{
    font-size: 16px;
    line-height: 24px;
  }
  .contact-bottom .container .contact-bottom-box p{
    font-size: 13px;
    line-height: 18px;
  }
  .contact-page{
    flex-direction: column;
  }
  .contact-banner{
    min-height: 100dvh;
    padding: 160px 0 80px 0;
    height: auto;
  }
  .contact-page .right{
    max-width: 100%;
  }
  .contact-page .left{
    width: 100%;
    max-width: 100%;
  }
  .contact-page .right{
    width: 100%;
  }
  .other-projects .box .content{
    padding: 12px;
  }

  .other-projects .box .content p{
    font-size: 11px;
    line-height: 16px;
  }
  .project-detail-content .container .detail-content-box{
    gap:24px;
  }
  .project-detail-content .container .detail-content-box .images{
    gap: 16px;
  }
  .project-detail-content .container .detail-content-box .content .content-title{
    color: #2424d0;
  }
  .project-detail-content .container .detail-content-box .content{
    flex-direction: column;
  }
  .banner .categories strong{
    padding: 4px;
  }
  .project-detail-info .left{
    max-width: 100%;
    width: 100%;
  }
  .project-detail-info .container{
    flex-direction: column;
  }

  .projects-area .boxes{
    flex-direction: column;
  }
  .projects-area .boxes .box{
    max-width: 100%;
    width: 100%;
  }


  .projects-area .boxes .box{
    gap: 8px;
  }

  .projects-area .boxes .box .content h3{
    font-size: 18px;
    line-height: 28px;
  }
  .projects-area .boxes .box .content p{
    font-size: 13px;
  }
  .projects-area .boxes .box .content .tag span{
    padding: 4px 8px;
    font-size: 11px;
  }
  .projects-area, .blog-area{
    padding: 40px 0 80px 0;
  }
  .sub-title{
    margin-bottom: 24px;
  }
  .projects-area .categories, .blog-area .categories{
    margin-bottom: 32px;
  }
  .projects-area .categories, .blog-area .categories{
    gap: 24px;
  }
  .customer-area .customers-about .box{
    width: 49%;
    background-color: #ffffff;
    box-shadow: inset 0px 0px 8px 1px #00000012;
    padding: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 55px;
    border-radius: 2px;
    border: 1px solid #eee;
  }
  .customer-area .customers-about .box img{
    height: 20px;
  }
  .customer-area .customers-about {
   justify-content: space-between;
   align-items: stretch;

   row-gap: 12px;
  }


  .what-do-we-do.page .boxes {
    flex-direction: column;

  }
  .what-do-we-do.page .boxes .box {
    max-width: 100%;
  }
  .sub-title h3 {
    font-size: 24px;
    line-height: 32px;
  }

  .sub-title p {
    font-size: 16px;
    line-height: 24px;
  }

  .banner.sub-banner .container p {
    text-align: left;
    font-size: 14px;
    line-height: 24px;
  }
  .banner.sub-banner .container h1 {
    text-align: left;
    font-size: 32px;
    line-height: 42px;
  }
  .banner.sub-banner .container p {
    text-align: left;
    font-size: 16px;
    line-height: 24px;
  }

  .header {
    z-index: 101;
  }
  .header .header-contact {
    display: none;
  }

  .banner .banner-bottom {
    bottom: 12px;
  }
  .header {
    padding-top: 28px;
  }
  .header .container {
    align-items: center;
  }
  .header .menu-button {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: #000;
  }
  .global-contact {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 80;
  }
  .global-contact a {
    width: 62px;
    height: 62px;
    display: flex;
    border-radius: 12px;
    border-radius: 18%;
    position: absolute;
  }
  .global-contact a:nth-child(1) {
    background: #2424d0;
    left: -10px;
    top: -40px;
    padding-left: 22px;
    align-items: flex-start;
    padding-top: 16px;
    justify-content: flex-start;
    box-shadow: 1px -1px 0px 0px #ccc;
  }
  .global-contact a:nth-child(2) {
    background: #000;
    right: -10px;
    top: -40px;
    padding-left: 18px;
    align-items: flex-start;
    padding-top: 16px;
    justify-content: flex-start;
    box-shadow: -1px -1px 0px 0px #373737;
  }
  .global-contact {
    position: fixed;
    bottom: 0;
  }
  .banner .banner-bottom nav {
    display: none;
  }
  .mobile-menu {
    position: fixed;
    width: 258px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 48px 24px 24px 24px;
    z-index: 100;
    display: flex;
    top: 0;
    right: -258px;
    border-radius: 0;
    border-left: 1px solid #ffffff38;
    backdrop-filter: blur(10px);
    background: #00000070;
    transition: 0.3s;
  }
  .mobile-menu.active {
    right: 0;
  }
  .mobile-menu a {
    color: #fff;
    font-size: 29px;
  }

  .mobile-menu a.active {
    color: #88ddff;
  }
  .mobil-menu-filter {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: #000000cf;
    display: flex;
    backdrop-filter: blur(3px);
    transition: 0.3s;
    align-items: center;
    justify-content: flex-start;
    padding-left: 24px;
    color: #fff;
  }
  .mobil-menu-filter svg {
    width: 50px;
    height: 50px;
  }
  .mobil-menu-filter.active {
    left: 0;
  }
  .slogan {
    padding: 50px 0 90px 0;
  }
  .slogan .container {
    flex-direction: column-reverse;
    text-align: center;
  }
  .slogan h3 {
    font-size: 20px;
    line-height: 30px;
  }
  .projects .boxes .box {
    flex-direction: column;
  }
  .projects .boxes .box.reverse {
    flex-direction: column;
  }
  .title {
    margin-bottom: 24px;
  }
  .title h3 {
    font-size: 24px;
    line-height: 32px;
  }
  .title h3 strong {
    font-size: 18px;
  }
  .projects .boxes .box .content {
    padding: 0;
  }
  .projects .boxes .box {
    gap: 12px;
  }
  .projects .boxes .box .image {
    border-radius: 34px 0 0 128px;
  }
  .projects .boxes .box.reverse .image {
    border-radius: 0 128px 0 0;
  }
  .projects .boxes .box .content p {
    font-size: 16px;
    margin-bottom: 4px;
    line-height: 24px;
  }
  .projects .boxes .box .content h4 {
    margin-bottom: 4px;
  }
  .projects .boxes .box .content h6 {
    font-size: 12px;
    gap: 4px;
  }
  .projects .boxes {
    gap: 32px;
  }

  .button-box {
    margin-top: 32px;
  }
  .projects {
    padding-bottom: 80px;
  }
  .customers .swiper::before,
  .customers .swiper::after {
    width: 50px;
  }
  .what-do-we-do .boxes .box {
    max-width: 50%;
    padding: 32px 12px;
  }
  .what-do-we-do .boxes .box h4 {
    font-size: 14px;
    margin-bottom: 4px;
    line-height: 20px;
  }
  .what-do-we-do .boxes .box p {
    font-size: 13px;
    line-height: 18px;
  }
  .what-do-we-do .container .boxes .line-1 {
    left: 50%;
    top: 0;
    height: 100%;
    width: 1px;
    background: linear-gradient(
      0deg,
      rgba(255, 255, 255, 0) 0%,
      #666666 40%,
      #666666 60%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .what-do-we-do .container .boxes .line-2 {
    left: 0;
    top: 33.33%;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      #666666 40%,
      #666666 60%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .what-do-we-do .container .boxes .line-3 {
    left: 0;
    top: 66.66%;
    width: 100%;
    height: 1px;
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      #666666 40%,
      #666666 60%,
      rgba(255, 255, 255, 0) 100%
    );
  }
  .what-do-we-do .boxes .box .lottie {
    width: 32px;
  }
  .customers {
    padding-bottom: 80px;
  }
  .questions .boxes .box button {
    font-size: 14px;
    line-height: 20px;
  }
  .questions .boxes .box p {
    font-size: 12px;
  }
  .questions .boxes .box p {
    margin-top: 0;
  }
  .questions .boxes .box button span {
    min-width: 24px;
    height: 24px;
  }

  .questions .boxes .box button span svg {
    width: 12px;
    height: 12px;
  }
  .questions .boxes .box button {
    gap: 8px;
  }
  .home-blog .boxes {
    flex-direction: column;
    gap: 24px;
  }
  .home-blog .boxes .box {
    max-width: 100%;
  }
  .home-blog .boxes .box .content h5 {
    font-size: 16px;
    line-height: 24px;
  }
  .home-blog .boxes .box .content span {
    font-size: 12px;
    line-height: 16px;
  }
  .home-blog .boxes .box .image img {
    width: 100%;
  }
  .home-blog .boxes {
    margin-bottom: 0;
  }
  .home-blog {
    padding-bottom: 80px;
  }
  .contact-area .title p {
    font-size: 14px;
    line-height: 20px;
  }
  .contact-area {
    padding: 62px 0;
  }
  .footer .container {
    flex-direction: column;
  }
  .footer .container .left {
    width: 100%;
    border-right-width: 0;
    padding: 42px 0;
  }
  .footer .container .left p {
    max-width: 100%;
  }
  .footer .container .left,
  .footer .container .right {
    width: 100%;
  }
  .footer .container .right .menu-wrap {
    padding: 0;
  }
  .footer .container .right .copyright {
    padding: 12px 0 50px 0;
    margin-top: 24px;
  }
  .footer .container .left {
    gap: 24px;
  }
  .footer .container .left .social-media nav a {
    width: 32px;
    height: 32px;
  }
  .footer .container .left .social-media nav a svg {
    width: 16px;
    height: 16px;
  }
  .footer .container .right .copyright p {
    font-size: 14px;
  }
  .career-content .container .boxes{
    flex-wrap:wrap;
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
    row-gap: 12px;
  }
  .career-content .container .boxes .box{
    flex-direction: column;
    width: 49%;
    padding: 12px;
    justify-content: flex-start;
    align-items: flex-start;
    border-bottom-width:0;
    background-color: #f9f8f7;
  }
  .career-content .container .boxes .box h4{
    margin-bottom: 12px;
  }
  .career-content .container .boxes .box .info{
    flex-direction: column;
  }
  .career-content .container .boxes .box .button{
    width: 100%;
  }
  .career-content .container .boxes .box .info{
    width: 100%;
    align-items: flex-start;
  }
  .career-content .container .boxes .box .button{
    justify-content: center;
    gap: 4px;
  }
}

@media screen and (max-width: 504px) {
  .banner .video-banner {
    width: auto;
  }
  .contact-area .boxes {
    flex-direction: column;
    align-items: center;
  }
  .contact-area .boxes .button {
    justify-content: center;
    max-width: 75%;
  }
}
