@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
:root {
  /* Primary Color */
  --ac-1: #F37429;
  /* Theme Color */
  --cl-14: #EFEFEF;
  --cl-13: #DFDFDF;
  --cl-12: #C0C0C0;
  --cl-11: #A0A0A0;
  --cl-10: #808080;
  --cl-9: #616161;
  --cl-8: #414141;
  --cl-7: #222222;
  --cl-6: #1C1C1C;
  --cl-5: #181818;
  --cl-4: #131313;
  --cl-3: #0E0E0E;
  --cl-2: #090909;
  --cl-1: #050505;
  /* Highlight Color */
  --yellow:#FFCC00;
  --red:#FF3B30;
  --purple:#AF52DE;
  --pink:#FF2D55;
  --orange:#FF9500;
  --mint:#00C7BE;
  --indigo:#5856D6;
  --green:#34C759;
  --brown:#A2845E;
  --blue:#007AFF;
  --teal:#30B0C7;
}

/* Primary Colors */
.bg {
  /* Theme Colors */
  /* Highlight Colors */
}
.bg-ac-1 {
  background-color: var(--ac-1);
}
.bg-cl-1 {
  background-color: var(--cl-1);
}
.bg-cl-2 {
  background-color: var(--cl-2);
}
.bg-cl-3 {
  background-color: var(--cl-3);
}
.bg-cl-4 {
  background-color: var(--cl-4);
}
.bg-cl-5 {
  background-color: var(--cl-5);
}
.bg-cl-6 {
  background-color: var(--cl-6);
}
.bg-cl-7 {
  background-color: var(--cl-7);
}
.bg-cl-8 {
  background-color: var(--cl-8);
}
.bg-cl-9 {
  background-color: var(--cl-9);
}
.bg-cl-10 {
  background-color: var(--cl-10);
}
.bg-cl-11 {
  background-color: var(--cl-11);
}
.bg-cl-12 {
  background-color: var(--cl-12);
}
.bg-cl-13 {
  background-color: var(--cl-13);
}
.bg-cl-14 {
  background-color: var(--cl-14);
}
.bg-yellow {
  background-color: var(--yellow);
}
.bg-red {
  background-color: var(--red);
}
.bg-purple {
  background-color: var(--purple);
}
.bg-pink {
  background-color: var(--pink);
}
.bg-orange {
  background-color: var(--orange);
}
.bg-mint {
  background-color: var(--mint);
}
.bg-indigo {
  background-color: var(--indigo);
}
.bg-green {
  background-color: var(--green);
}
.bg-brown {
  background-color: var(--brown);
}
.bg-blue {
  background-color: var(--blue);
}
.bg-teal {
  background-color: var(--teal);
}

/* Margin for all sides */
.m-0 {
  margin: 0 !important;
}
.m-1 {
  margin: 4px !important;
}
.m-2 {
  margin: 8px !important;
}
.m-3 {
  margin: 12px !important;
}
.m-4 {
  margin: 16px !important;
}
.m-5 {
  margin: 20px !important;
}
.m-6 {
  margin: 24px !important;
}

/* Margin for top only */
.mt-0 {
  margin-top: 0 !important;
}
.mt-1 {
  margin-top: 4px !important;
}
.mt-2 {
  margin-top: 8px !important;
}
.mt-3 {
  margin-top: 12px !important;
}
.mt-4 {
  margin-top: 16px !important;
}
.mt-5 {
  margin-top: 20px !important;
}
.mt-6 {
  margin-top: 24px !important;
}

/* Margin for bottom only */
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-1 {
  margin-bottom: 4px !important;
}
.mb-2 {
  margin-bottom: 8px !important;
}
.mb-3 {
  margin-bottom: 12px !important;
}
.mb-4 {
  margin-bottom: 16px !important;
}
.mb-5 {
  margin-bottom: 20px !important;
}
.mb-6 {
  margin-bottom: 24px !important;
}

/* Margin for left only */
.ml-0 {
  margin-left: 0 !important;
}
.ml-1 {
  margin-left: 4px !important;
}
.ml-2 {
  margin-left: 8px !important;
}
.ml-3 {
  margin-left: 12px !important;
}
.ml-4 {
  margin-left: 16px !important;
}
.ml-5 {
  margin-left: 20px !important;
}
.ml-6 {
  margin-left: 24px !important;
}

/* Margin for right only */
.mr-0 {
  margin-right: 0 !important;
}
.mr-1 {
  margin-right: 4px !important;
}
.mr-2 {
  margin-right: 8px !important;
}
.mr-3 {
  margin-right: 12px !important;
}
.mr-4 {
  margin-right: 16px !important;
}
.mr-5 {
  margin-right: 20px !important;
}
.mr-6 {
  margin-right: 24px !important;
}

/* Margin for top and bottom */
.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.my-1 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}
.my-2 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}
.my-3 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}
.my-4 {
  margin-top: 16px !important;
  margin-bottom: 16px !important;
}
.my-5 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}
.my-6 {
  margin-top: 24px !important;
  margin-bottom: 24px !important;
}

/* Margin for left and right */
.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.mx-1 {
  margin-left: 4px !important;
  margin-right: 4px !important;
}
.mx-2 {
  margin-left: 8px !important;
  margin-right: 8px !important;
}
.mx-3 {
  margin-left: 12px !important;
  margin-right: 12px !important;
}
.mx-4 {
  margin-left: 16px !important;
  margin-right: 16px !important;
}
.mx-5 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}
.mx-6 {
  margin-left: 24px !important;
  margin-right: 24px !important;
}

/*Default*/
html, body {
  padding: 0;
  margin: 0;
  font-family: "Montserrat";
  background: var(--cl-14);
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
  text-decoration: none;
  font-style: normal;
}

.btn-regular {
  background: var(--ac-1);
  text-align: center;
  padding: 12px 24px;
  color: var(--cl-14);
  border-radius: 60px;
  font-size: 14px;
  cursor: pointer;
  filter: brightness(1);
  transition: 0.2s;
}
.btn-regular:hover {
  filter: brightness(1.1);
}

.fa-light {
  pointer-events: none;
}

a {
  color: inherit;
  font-style: inherit;
}

.trigger-form {
  cursor: pointer;
}

/* Main-wrapper Start */
.main-wrapper {
  height: 100%;
  width: 100%;
  max-width: 1920px;
  margin-inline: auto;
}

/* Main-wrapper End */
/* Homepage Start */
.top-nav {
  position: fixed;
  top: 0px !important;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 10px 20px;
  width: 100%;
  height: max-content;
  color: var(--cl-1);
  max-width: 1920px;
  margin-inline: auto;
}
.top-nav.glossy {
  transition: 0.2s;
  background: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.top-nav .nav-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-nav .nav-main .nav-items-toggle {
  cursor: pointer;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 40px;
  border: 1px solid var(--cl-12);
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-nav .gojicode-logo {
  font-size: 22px;
}
.top-nav .nav-items-container {
  display: none;
  min-height: 100%;
}
.top-nav .nav-items-container .page-links {
  color: var(--cl-9);
  font-size: 40px;
  font-weight: 300;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 100px;
  margin-bottom: 20px;
  cursor: pointer;
  padding-bottom: 20px;
  transition: 0.2s;
}
.top-nav .nav-items-container .page-links .nav-item:hover {
  font-style: italic;
  color: var(--ac-1);
}
.top-nav .nav-items-container .page-links .nav-item.active {
  font-style: italic;
  color: var(--ac-1);
  font-weight: 400;
}
.top-nav .nav-items-container .lang-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 20px;
  justify-content: space-between;
  color: var(--cl-10);
}
.top-nav .nav-items-container .lang-container .lang-btn {
  cursor: pointer;
}
.top-nav .nav-items-container .lang-container .lang-btn.active {
  color: var(--ac-1);
}
.top-nav .nav-items-container .lang-container .lang-btn:hover {
  color: var(--ac-1);
}
.top-nav .nav-items-container .btn-regular {
  background: var(--ac-1);
  text-align: center;
  padding: 30px 20px;
  color: var(--cl-14);
  border-radius: 60px;
  cursor: pointer;
  filter: brightness(1);
  transition: 0.2s;
}
.top-nav .nav-items-container .btn-regular:hover {
  filter: brightness(1.1);
}
.top-nav.active {
  height: 100vh;
  overflow: hidden;
  background-color: var(--cl-7);
  color: var(--cl-14);
}
.top-nav.active .nav-items-container {
  display: block;
}
.top-nav.active .nav-items-container .gojicode-logo {
  display: none;
}
.top-nav.dark-bg {
  color: var(--cl-14);
}
.top-nav.dark-bg .nav-items-container .page-links {
  color: var(--cl-12);
}

.sections-scroller {
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scrollbar-width: none !important;
  -webkit-scrollbar-width: none !important;
}
.sections-scroller * {
  transition: 0.2s;
}
.sections-scroller > div {
  height: 100vh;
  height: 100dvh;
}

.cover-section {
  position: relative;
  display: flex !important;
  justify-content: center;
  align-items: center;
  height: 100vh;
  width: 100%;
  overflow-x: hidden;
}
.cover-section .section {
  width: 100%;
  text-align: center;
  transform: translateY(-100%);
}
.cover-section .section .header {
  font-weight: 300;
  font-size: 48px;
}
.cover-section .section .header span {
  font-weight: 500;
}
.cover-section .section .description {
  font-size: 22px;
  margin-top: 10px;
}
.cover-section img {
  width: 130%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.2s;
}
.cover-section .scroll-indicator {
  position: absolute;
  width: 1px;
  height: 60px;
  background: var(--ac-1);
  position: absolute;
  left: 50%;
  bottom: 0;
}

.team-section {
  display: flex;
  flex-direction: column;
  padding-top: 100px;
  padding-inline: 20px;
  padding-bottom: 20px;
  height: max-content !important;
  margin-top: 200px;
}
.team-section * {
  transition: 0.2s;
}
.team-section .team-left {
  margin-bottom: 20px;
  width: 100%;
}
.team-section .team-left .header {
  color: var(--cl-1);
  font-weight: 300;
  font-size: 46px;
  margin-bottom: 10px;
}
.team-section .team-left .header span {
  display: block;
  font-weight: 500;
}
.team-section .team-left .description {
  font-size: 18px;
  color: var(--cl-10);
  margin-bottom: 5px;
}
.team-section .team-center {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  order: 3;
  position: relative;
}
.team-section .team-center img {
  height: auto;
  width: 100%;
}
.team-section .team-right {
  margin-bottom: 10px;
  width: 100%;
}
.team-section .team-right .sub-header {
  color: var(--cl-8);
  font-weight: 300;
  font-size: 24px;
  margin-bottom: 10px;
}
.team-section .team-right .description {
  font-size: 18px;
  color: var(--cl-10);
  margin-bottom: 5px;
}
.team-section .nametag{
  background-color: var(--ac-1);
  border-radius: 60px;
  padding: 5px 15px;
  color: white;
  position: absolute;
  bottom: 80px;
}

.map-section {
  padding: 20px;
  margin-top: 200px;
  height: max-content;
}
.map-section .map-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50%;
}
.map-section .map-container #tooltip {
  position: relative;
  background: var(--cl-14);
  border: 1px solid var(--cl-12);
  padding: 8px;
  padding-right: 10px;
  border-radius: 4px;
  box-shadow: 0 2px 20px -10px var(--cl-9);
  white-space: nowrap;
  z-index: 9999;
  transform: translate(-80%, -80px);
  pointer-events: none;
  max-height: 200px;
  overflow-y: scroll;
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.map-section .map-container #tooltip::-webkit-scrollbar {
  display: none;
}
.map-section .map-container #tooltip ul {
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
  display: flex;
  flex-direction: column;
}
.map-section .map-container #tooltip ul li {
  text-transform: capitalize;
  text-transform: uppercase;
  font-size: 12px;
}
.map-section .map-container #tooltip a {
  pointer-events: auto;
  cursor: pointer !important;
}
.map-section .map-container #tooltip a:hover {
  color: var(--ac-1);
  font-style: italic !important;
}
.map-section .map-container .header {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 36px;
  text-align: center;
  width: 90% !important;
  transform: translate(-50%, -50%);
}
.map-section .map-container .map {
  overflow-x: scroll;
  overflow-y: hidden;
  scrollbar-width: none;
  height: 400px;
  margin-bottom: 40px;
}
.map-section .map-container .map img {
  height: 100%;
  width: 150%;
}
.map-section .map-container .map svg {
  cursor: default;
  user-select: none;
}
.map-section .map-container .map svg .project-country {
  cursor: pointer;
}
.map-section .map-container .map svg:active {
  cursor: grabbing;
}
.map-section .info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 20px;
}
.map-section .info-wrapper .info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.map-section .info-wrapper .info > div {
  font-size: 34px;
  color: var(--cl-7);
}
.map-section .info-wrapper .info > div span {
  display: block;
  font-size: 14px;
}
.map-section .info-wrapper .btn-regular {
  width: 100%;
  background-color: var(--ac-1);
  color: var(--cl-14);
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  font-size: 16px;
  text-align: left;
}

.technologien-section {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: max-content !important;
  margin-bottom: 100px;
}
.technologien-section > .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 50px;
  margin-bottom: 0px;
  transition: 0.2s;
  padding: 20px;
}
.technologien-section > .title-wrapper .title {
  font-size: 36px;
  font-weight: 300;
}
.technologien-section > .title-wrapper .title span {
  font-weight: 500;
}
.technologien-section > .title-wrapper .services-filter-wrapper {
  display: flex;
  gap: 20px;
  font-size: 18px;
  font-family: "Space Grotesk";
  color: var(--cl-10);
}
.technologien-section > .title-wrapper .services-filter-wrapper .services-category {
  cursor: pointer;
  transition: 0.2s;
  filter: brightness(1);
}
.technologien-section > .title-wrapper .services-filter-wrapper .services-category:hover {
  filter: brightness(1.2);
}
.technologien-section > .title-wrapper .services-filter-wrapper .services-category.active {
  color: var(--ac-1);
  font-style: italic;
}
.technologien-section .technologien-slider {
  margin-top: 40px;
  width: 100%;
}
.technologien-section .technologien-slider .swiper-wrapper {
  display: flex;
  align-items: flex-end;
  height: 400px;
}
.technologien-section .technologien-slider .project-card {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--cl-13);
  border-radius: 6px;
  height: 200px;
  width: 100%;
  cursor: pointer;
  transition: 0.2s;
  padding: 20px;
  filter: brightness(1);
}
.technologien-section .technologien-slider .project-card .btn-circle {
  display: none;
}
.technologien-section .technologien-slider .project-card .project-info-wrapper {
  display: none;
}
.technologien-section .technologien-slider .project-card:hover {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  position: relative;
  background-size: cover;
  background-position: bottom left;
  background-color: var(--cl-7);
  background-image: none !important;
  filter: brightness(1.1);
  transition: 0.25;
}
.technologien-section .technologien-slider .project-card:hover .btn-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  height: 40px;
  width: 40px;
  border: 1px solid var(--cl-10);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
.technologien-section .technologien-slider .project-card:hover .btn-circle i {
  color: var(--cl-14);
  transform: rotate(-45deg);
}
.technologien-section .technologien-slider .project-card:hover img {
  display: none;
}
.technologien-section .technologien-slider .project-card:hover .project-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--cl-14);
}
.technologien-section .technologien-slider .project-card:hover .project-info-wrapper .section .title {
  font-size: 28px;
  margin-bottom: 6px;
}
.technologien-section .technologien-slider .project-card:hover .project-info-wrapper .section .desc {
  font-size: 14px;
  color: var(--cl-10);
}
.technologien-section .technologien-slider .project-card:hover .project-info-wrapper .tech-stack {
  font-size: 14px;
  color: var(--cl-10);
}

.match-test-section {
  padding: 20px;
  background-color: var(--cl-7);
  color: var(--cl-14);
  display: flex;
  gap: 40px;
  flex-direction: column;
}
.match-test-section .form-steps-container {
  flex-grow: 1;
  display: flex;
  padding-top: 150px;
  overflow: hidden;
}
.match-test-section .form-steps-container .form-step {
  transition: 0.2s;
  transform: translateX(0%);
  min-width: 100%;
}
.match-test-section .form-steps-container .form-step .section {
  text-align: center;
  margin-bottom: 60px;
}
.match-test-section .form-steps-container .form-step .section .header {
  font-size: 28px;
  font-weight: 400;
  color: var(--cl-14);
}
.match-test-section .form-steps-container .form-step .section .desc {
  font-size: 16px;
  color: var(--cl-10);
}
.match-test-section .form-steps-container .form-step .title-wrapper {
  display: flex;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.match-test-section .form-steps-container .form-step .title-wrapper .header {
  font-size: 24px;
  font-weight: 400;
}
.match-test-section .form-steps-container .form-step .form-inputs-container {
  display: grid;
  max-width: 100%;
  margin-inline: auto;
  grid-template-columns: 1fr;
  gap: 20px;
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-input {
  height: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--cl-14);
  border-radius: 10px;
  background-color: var(--cl-6);
  cursor: pointer;
  transition: 0.2s;
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-input .icon {
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 30px;
  background-color: var(--cl-14);
  color: var(--ac-1);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-input:hover {
  background-color: var(--cl-5);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-input.active {
  color: var(--cl-14);
  background: var(--ac-1);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-input.active .icon {
  display: flex;
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-value {
  height: max-content;
  width: 100%;
  background-color: var(--cl-6);
  border-radius: 6px;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-value .info-wrapper .label {
  font-size: 14px;
  margin-bottom: 4px;
  color: var(--cl-9);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-value .info-wrapper .value {
  font-size: 14px;
  color: var(--cl-14);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-value .value-status {
  width: 36px;
  height: 36px;
  border-radius: 40px;
  display: none;
  background-color: transparent;
  border: 1px solid var(--cl-8);
}
.match-test-section .form-steps-container .form-step .form-inputs-container .form-value.active .value-status {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--ac-1);
}
.match-test-section .pagination-container {
  width: 100%;
  height: 40px;
  overflow: hidden;
  display: flex;
  gap: 5px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}
.match-test-section .pagination-container .pagination-left, .match-test-section .pagination-container .pagination-right {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  border: 1px solid var(--cl-8);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--cl-7);
}
.match-test-section .pagination-container .pagination-left:hover, .match-test-section .pagination-container .pagination-right:hover {
  background-color: var(--cl-8);
}
.match-test-section .pagination-container .pagination-left {
  left: 0;
}
.match-test-section .pagination-container .pagination-right {
  right: 0;
}
.match-test-section .pagination-container .pagination-step {
  flex: 1;
  min-width: 100%;
  text-align: center;
  transition: 0.2s;
  transform: translateX(0%);
  pointer-events: none;
}

.footer {
  padding: 20px;
  box-sizing: border-box;
  background-color: var(--cl-7);
  height: 100vh;
  padding-bottom: 10px;
}
.footer .title {
  margin: 180px 0;
  font-size: 50px;
  font-weight: 300;
  color: var(--cl-14);
  position: relative;
  cursor: pointer;
}
.footer .title .icon-btn {
  top: -20px;
  right: 0;
  position: absolute;
  height: 80px;
  width: 80px;
  border-radius: 100px;
  background-color: var(--cl-7);
  border: 1px solid var(--ac-1);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: 0.2s;
  font-size: 22px;
  color: var(--ac-1);
}
.footer .separator {
  height: 2px;
  width: 100%;
  background-color: var(--cl-8);
  margin: 15px 0;
}
.footer .links-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer .links-container > div:nth-child(4) {
  display: none;
}
.footer .links-container .pages-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.footer .links-container .pages-links .header {
  color: var(--cl-14);
}
.footer .links-container .pages-links .link {
  color: var(--cl-9);
}
.footer .links-container .pages-links .link a {
  color: var(--cl-9);
}
.footer .links-container .pages-links .link a:hover {
  color: var(--cl-14);
}
.footer .links-container .pages-links .link a:active {
  color: var(--cl-9);
}
.footer .policy-tab {
  display: flex;
  justify-content: space-between;
  color: var(--cl-12);
}
.footer .policy-tab a {
  color: var(--cl-9);
}
.footer .policy-tab a:hover {
  color: var(--cl-14);
}
.footer .policy-tab a:active {
  color: var(--cl-9);
}

/* Homepage End */
/* Technologian Start */
.technologien-wrapper .cover {
  padding: 40px;
  height: 300px;
  margin-top: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 300;
  font-size: 34px;
  text-align: center;
  transition: 0.2s;
}
.technologien-wrapper .cover span {
  font-weight: 500;
}
.technologien-wrapper .project-wrapper {
  margin-bottom: 100px;
}
.technologien-wrapper .project-wrapper .filter-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow-x: hidden;
  padding-left: 20px;
}
.technologien-wrapper .project-wrapper .filter-wrapper .swiper-wrapper, .technologien-wrapper .project-wrapper .filter-wrapper .filter-category, .technologien-wrapper .project-wrapper .filter-wrapper .category-children-wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: max-content;
  cursor: grab;
  margin: 0;
}
.technologien-wrapper .project-wrapper .filter-wrapper .swiper-wrapper div:nth-child(3), .technologien-wrapper .project-wrapper .filter-wrapper .filter-category div:nth-child(3), .technologien-wrapper .project-wrapper .filter-wrapper .category-children-wrapper div:nth-child(3) {
  margin-right: 10px !important;
}
.technologien-wrapper .project-wrapper .filter-wrapper .category-parent, .technologien-wrapper .project-wrapper .filter-wrapper .category-children {
  background-color: var(--cl-13);
  color: var(--cl-8);
  border-radius: 40px;
  padding: 10px 18px;
  font-family: "Space Grotesk";
  cursor: pointer;
  transition: 0.2s;
  border: 1px solid transparent;
  margin-right: 10px;
}
.technologien-wrapper .project-wrapper .filter-wrapper .category-parent:hover, .technologien-wrapper .project-wrapper .filter-wrapper .category-children:hover {
  border: 1px solid var(--cl-10);
}
.technologien-wrapper .project-wrapper .filter-wrapper .category-children.active {
  background-color: var(--cl-6);
  color: var(--cl-14);
}
.technologien-wrapper .project-wrapper .filter-wrapper .category-children-wrapper {
  display: none;
}
.technologien-wrapper .project-wrapper .filter-wrapper .filter-category.active .category-parent {
  background-color: var(--ac-1);
  color: var(--cl-14);
}
.technologien-wrapper .project-wrapper .filter-wrapper .filter-category.active .category-children-wrapper {
  display: flex;
}
.technologien-wrapper .project-wrapper .tech-info-wrapper {
  display: none;
  gap: 20px;
  padding: 40px 20px;
  background-color: var(--cl-7);
  color: var(--cl-12);
  margin-top: 40px;
  font-size: 14px;
  text-align: justify;
}
.technologien-wrapper .project-wrapper .tech-info-wrapper.active {
  display: grid;
}
.technologien-wrapper .project-wrapper .project-grid {
  padding-inline: 20px;
  margin-bottom: 40px;
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
}
.technologien-wrapper .project-wrapper .project-grid .project-card {
  display: block;
  background-position: center bottom;
  background-size: cover !important;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 8px;
  aspect-ratio: 1/0.6;
  background: var(--cl-13);
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.technologien-wrapper .project-wrapper .project-grid .project-card:hover {
  filter: brightness(1.05);
}
.technologien-wrapper .project-wrapper .project-grid .project-card .title {
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--cl-14);
  font-weight: 500;
}
.technologien-wrapper .project-wrapper .project-grid .project-card .btn-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  border-radius: 40px;
  border: 1px solid var(--cl-11);
  color: var(--cl-11);
  transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.2s;
}

/* Technologian End */
/* Services Start */
.packages-wrapper {
  background-color: var(--cl-7);
  overflow-x: hidden;
  padding: 100px 20px;
}
.packages-wrapper > .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-bottom: 0px;
  transition: 0.2s;
}
.packages-wrapper > .title-wrapper .section .title {
  color: var(--cl-14);
  font-size: 28px;
  font-weight: 400;
}
.packages-wrapper > .title-wrapper .section .desc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--cl-10);
}
.packages-wrapper > .title-wrapper .services-filter-wrapper {
  display: flex;
  gap: 20px;
  font-size: 18px;
  font-family: "Space Grotesk";
  color: var(--cl-10);
}
.packages-wrapper > .title-wrapper .services-filter-wrapper .services-category {
  cursor: pointer;
  transition: 0.2s;
  filter: brightness(1);
}
.packages-wrapper > .title-wrapper .services-filter-wrapper .services-category:hover {
  filter: brightness(1.2);
}
.packages-wrapper > .title-wrapper .services-filter-wrapper .services-category.active {
  color: var(--ac-1);
  font-style: italic;
}
.packages-wrapper .swiper-container {
  width: 100%;
  padding: 20px 0;
}
.packages-wrapper .swiper-container .swiper-wrapper {
  display: flex;
}
.packages-wrapper .swiper-container .swiper-wrapper .swiper-slide {
  flex-shrink: 0;
  width: auto;
  box-sizing: border-box;
}
.packages-wrapper .swiper-container .swiper-wrapper .swiper-slide:last-child .service-card {
  margin-right: 0;
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card {
  display: block;
  background: var(--cl-6);
  border-radius: 8px;
  padding: 30px;
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 460px;
  width: 220px;
  cursor: pointer;
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card:hover, .packages-wrapper .swiper-container .swiper-wrapper .service-card.active {
  background: var(--cl-7);
  background: linear-gradient(0deg, var(--cl-7) 0%, var(--ac-1) 100%);
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card:hover *, .packages-wrapper .swiper-container .swiper-wrapper .service-card.active * {
  color: var(--cl-14) !important;
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card .title-wrapper .title {
  font-size: 24px;
  font-weight: 300;
  color: var(--cl-14);
  margin-bottom: 10px;
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card .title-wrapper .price {
  font-size: 16px;
  font-weight: 400;
  color: var(--cl-10);
}
.packages-wrapper .swiper-container .swiper-wrapper .service-card .desc {
  font-size: 14px;
  color: var(--cl-10);
}
.packages-wrapper .package-table-wrapper {
  margin-top: 40px;
}
.packages-wrapper .package-table-wrapper .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 0px;
  transition: 0.2s;
}
.packages-wrapper .package-table-wrapper .title-wrapper .title {
  font-size: 32px;
  color: var(--cl-14);
  font-weight: 300;
  margin-top: 150px;
}
.packages-wrapper .package-table-wrapper .title-wrapper .title span {
  font-weight: 500;
}
.packages-wrapper .package-table-wrapper .title-wrapper .services-filter-wrapper {
  display: flex;
  gap: 20px;
  font-size: 18px;
  font-family: "Space Grotesk";
  color: var(--cl-10);
  margin-bottom: 40px;
}
.packages-wrapper .package-table-wrapper .title-wrapper .services-filter-wrapper .services-category {
  cursor: pointer;
  transition: 0.2s;
  filter: brightness(1);
}
.packages-wrapper .package-table-wrapper .title-wrapper .services-filter-wrapper .services-category:hover {
  filter: brightness(1.2);
}
.packages-wrapper .package-table-wrapper .title-wrapper .services-filter-wrapper .services-category.active {
  color: var(--ac-1);
  font-style: italic;
}
.packages-wrapper .package-table-wrapper .table-wrapper {
  border-bottom: 1px solid var(--cl-8);
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card {
  padding: 20px 0;
  border-top: 1px solid var(--cl-8);
  color: var(--cl-10);
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-info-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-info-wrapper .package-name {
  font-size: 36px;
  color: var(--cl-14);
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-info-wrapper .price-wrapper .label {
  font-size: 14px;
  margin-bottom: 4px;
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-info-wrapper .price-wrapper .price {
  font-size: 24px;
  color: var(--cl-14);
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-desc {
  font-size: 14px;
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .feature-wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.packages-wrapper .package-table-wrapper .table-wrapper .package-card .feature-wrapper ul {
  flex: 1;
  padding-inline: 20px;
  margin: 0;
  margin-top: 20px;
}

/* Services End */
/* Portfolio Start */
.portfolio-section {
  margin-top: 100px;
}
.portfolio-section .page-section:nth-child(1) {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow-x: hidden;
  height: calc(100vh - 100px);
  min-height: max-content;
}
.portfolio-section .cover-section-wrapper {
  display: grid;
  grid-template: "section-1 section-2" "section-3 section-3";
  gap: 20px;
  font-size: 14px;
  padding: 20px;
}
.portfolio-section .cover-section-wrapper > div b {
  color: var(--cl-1);
}
.portfolio-section .cover-section-wrapper .section-1 {
  grid-area: section-1;
  text-align: left;
}
.portfolio-section .cover-section-wrapper .section-2 {
  text-align: right;
  grid-area: section-2;
}
.portfolio-section .cover-section-wrapper .section-2 div {
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}
.portfolio-section .cover-section-wrapper .section-2 div:hover {
  font-style: italic !important;
}
.portfolio-section .cover-section-wrapper .section-2 div:hover b {
  font-style: italic !important;
}
.portfolio-section .cover-section-wrapper .section-3 {
  grid-area: section-3;
  width: 100%;
  aspect-ratio: 1/0.75;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 10px;
  transition: 0.2s;
}
.portfolio-section .projects-slider {
  height: max-content;
  margin: 40px 0;
}
.portfolio-section .projects-slider .project-card {
  max-width: 300px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  background-color: var(--cl-13);
  cursor: pointer;
  filter: brightness(1);
  transition: 0.2s;
  padding: 20px !important;
  box-sizing: border-box;
  border: 1px solid var(--cl-13);
}
.portfolio-section .projects-slider .project-card:hover {
  filter: brightness(1.2);
}
.portfolio-section .projects-slider .project-card.active {
  border: 1px solid var(--ac-1);
  filter: brightness(1.1);
}
.portfolio-section .projects-slider .project-card img {
  height: auto;
  width: auto;
  display: block;
  max-width: 80%;
  max-height: 80%;
}
.portfolio-section .project-grid-section {
  background-color: var(--cl-7);
  padding: 20px;
  transition: 0.2s;
  margin-top: 40px;
}
.portfolio-section .project-grid-section > .title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 100px;
  margin-top: 50px;
  margin-bottom: 0px;
  transition: 0.2s;
}
.portfolio-section .project-grid-section > .title-wrapper .section .title {
  color: var(--cl-14);
  font-size: 28px;
  font-weight: 400;
}
.portfolio-section .project-grid-section > .title-wrapper .section .desc {
  margin-top: 10px;
  font-size: 16px;
  color: var(--cl-10);
}
.portfolio-section .project-grid-section > .title-wrapper .services-filter-wrapper {
  display: flex;
  gap: 20px;
  font-size: 18px;
  font-family: "Space Grotesk";
  color: var(--cl-10);
}
.portfolio-section .project-grid-section > .title-wrapper .services-filter-wrapper .services-category {
  cursor: pointer;
  transition: 0.2s;
  filter: brightness(1);
}
.portfolio-section .project-grid-section > .title-wrapper .services-filter-wrapper .services-category:hover {
  filter: brightness(1.2);
}
.portfolio-section .project-grid-section > .title-wrapper .services-filter-wrapper .services-category.active {
  color: var(--ac-1);
  font-style: italic;
}
.portfolio-section .project-grid-section .project-grid {
  margin-bottom: 40px;
  margin-top: 40px;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(350px, auto));
}
.portfolio-section .project-grid-section .project-grid .project-card {
  display: block;
  background-position: center bottom;
  background-size: cover !important;
  background-repeat: no-repeat;
  padding: 20px;
  border-radius: 8px;
  aspect-ratio: 1/0.6;
  background: var(--cl-13);
  cursor: pointer;
  transition: 0.2s;
  position: relative;
}
.portfolio-section .project-grid-section .project-grid .project-card:hover {
  filter: brightness(1.05);
}
.portfolio-section .project-grid-section .project-grid .project-card .title {
  font-size: 20px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  color: var(--cl-14);
  font-weight: 500;
}
.portfolio-section .project-grid-section .project-grid .project-card .btn-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  font-size: 18px;
  border-radius: 40px;
  border: 1px solid var(--cl-11);
  color: var(--cl-11);
  transform: rotate(-45deg);
  position: absolute;
  right: 20px;
  top: 20px;
  transition: 0.2s;
}

/* Portfolio End */
/* Portfolio Page Start */
.project-page .project-cover-section {
  margin-top: 110px;
  padding-inline: 20px;
  transform: translateY(40px);
}
.project-page .project-cover-section .cover-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.project-page .project-cover-section .cover-wrapper .title {
  font-size: 30px;
}
.project-page .project-cover-section .project-cover-image {
  margin-top: 20px;
  height: 300px;
  width: 100%;
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 6px;
  transition: 0.2s;
}
.project-page .project-detail-wrapper {
  background-color: var(--cl-7);
}
.project-page .project-detail-wrapper .project-info-container {
  color: var(--cl-11);
  font-size: 18px;
  padding-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-inline: 20px;
}
.project-page .project-detail-wrapper .project-info-container .project-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.project-page .project-detail-wrapper .project-info-container .project-details-grid .project-data .sub-tite {
  font-size: 12px;
}
.project-page .project-detail-wrapper .project-info-container .project-details-grid .project-data .title {
  font-size: 28px;
  color: var(--cl-14);
}
.project-page .project-detail-wrapper .images-container {
  margin-top: 40px;
}

.project-page .project-detail-wrapper .images-container .project-image {
  height: 400px;
  width: auto;
  aspect-ratio: 16/9;
  border-radius: 6px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.project-page .project-detail-wrapper .images-container .project-image.upright{
  aspect-ratio: 9/16;
}

.project-page .project-detail-wrapper .milestone-wrapper {
  margin-top: 40px;
  padding-inline: 20px;
}
.project-page .project-detail-wrapper .milestone-wrapper .title {
  font-size: 30px;
  color: var(--cl-14);
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper {
  margin-top: 40px;
  border-bottom: 1px solid var(--cl-8);
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-top: 1px solid var(--cl-8);
  color: var(--cl-10);
  padding: 40px 0;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section > div:nth-child(1) {
  font-size: 24px;
  color: var(--cl-14);
  font-weight: 300;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section .sub-tite {
  font-size: 18px;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section .price {
  font-size: 24px;
  color: var(--cl-14);
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .desc {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .deliverables {
  flex: 1;
}
.project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .deliverables ul {
  padding: 15px;
  margin: 0;
}

/* Portfolio Page End */
/* Form Container Start */
.contact-form-container {
  display: none;
  flex-direction: column;
  justify-content: flex-end;
  position: fixed;
  padding: 40px;
  z-index: 10;
  top: 7%;
  left: 7%;
  height: 86%;
  width: 86%;
  border-radius: 60px;
  font-weight: 300;
  background-color: var(--ac-1);
}
.contact-form-container.active {
  display: flex;
}
.contact-form-container .title-wrapper {
  font-size: 3.4rem;
  margin-bottom: 60px;
  transition: 0.2s;
}
.contact-form-container .close-btn {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 20px;
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 100%;
  border: 1px solid var(--cl-8);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-form-container .form-wrapper {
  display: block;
}
.contact-form-container .form-wrapper .input-group {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-container .form-wrapper .input-group input {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--cl-6);
  font-size: 1.3rem;
  font-weight: 400 !important;
  font-family: "Montserrat";
  padding: 10px 5px;
}
.contact-form-container .form-wrapper .input-group input::placeholder, .contact-form-container .form-wrapper textarea::placeholder {
  color: white;
}
.contact-form-container .form-wrapper .input-group input:focus {
  outline: none;
}
.contact-form-container .form-wrapper textarea {
  width: 100%;
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid var(--cl-6);
  font-size: 1.3rem;
  font-weight: 400 !important;
  font-family: "Montserrat";
  padding: 10px 5px;
  overflow-y: auto;
  resize: none;
  box-sizing: border-box;
}
.contact-form-container .form-wrapper textarea:focus {
  outline: none;
}
.contact-form-container .form-wrapper .submit-button {
  width: 100%;
  margin-top: 10px;
  padding: 20px;
  background-color: var(--cl-6);
  color: var(--ac-1);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  font-size: 24px;
  cursor: pointer;
  filter: brightness(1);
}
.contact-form-container .form-wrapper .submit-button:hover {
  filter: brightness(1.2);
}

/* Form Container End */
/* Policy Pages Start */
.privacy-policy {
  padding: 20px;
  padding-top: 150px;
  background-color: var(--cl-7);
  color: var(--cl-12);
  margin: 0 auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.privacy-policy a {
  color: var(--ac-1);
  text-decoration: underline;
}
.privacy-policy h1 {
  font-size: 36px;
  font-weight: 300;
}
.privacy-policy h2 {
  font-size: 22px;
  font-weight: 300;
}
.privacy-policy p {
  font-size: 16px;
}
.privacy-policy .table-of-contents {
  margin-bottom: 100px;
}
.privacy-policy .table-of-contents li {
  margin-bottom: 10px;
  font-size: 14px;
}
.privacy-policy .table-of-contents ul {
  padding-left: 1.2rem;
}
.privacy-policy .table-of-contents a {
  text-decoration: none;
}
.privacy-policy section {
  margin-bottom: 4rem;
}

/* Policy Pages End */
/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .cover-section img {
    width: 90%;
  }
  .team-section .team-left, .team-section .team-right {
    width: 75%;
  }
  .portfolio-section .cover-section-wrapper .section-3 {
    aspect-ratio: 1/0.5;
  }
}
/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .cover-section {
    margin-top: 0px;
  }
  .cover-section img {
    width: 75%;
  }
  .team-section {
    display: grid;
    justify-content: flex-end;
    gap: 0;
    margin-top: 0px;
    height: 100vh;
    grid-template: ". . " 1fr "team-left team-center" 300px "team-right team-center" 200px;
  }
  .team-section .team-left {
    grid-area: team-left;
  }
  .team-section .team-left .description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .team-section .team-center {
    grid-area: team-center;
  }
  .team-section .team-right {
    grid-area: team-right;
  }
  .team-section .team-right .sub-header {
    font-size: 22px;
    margin-bottom: 20px;
    color: var(--cl-1);
  }
  .team-section .team-right .description {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .match-test-section .form-steps-container .form-step .section {
    margin-bottom: 80px;
  }
  .match-test-section .form-steps-container .form-step .section .header {
    font-size: 28px;
    color: var(--cl-14);
  }
  .match-test-section .form-steps-container .form-step .section .desc {
    font-size: 18px;
    color: var(--cl-10);
  }
  .match-test-section .form-steps-container .form-step .form-inputs-container {
    max-width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(200px, auto));
  }
  .match-test-section .form-steps-container .form-step .form-inputs-container .form-input {
    height: 300px;
  }
  .technologien-section {
    height: 100vh !important;
    padding-top: 100px;
    justify-content: flex-end;
  }
  .technologien-section > .title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .technologien-section > .title-wrapper .title {
    width: 50%;
  }
  .technologien-section .technologien-slider {
    margin-top: 0px;
  }
  .technologien-section .technologien-slider .project-card {
    width: 400px;
  }
  .technologien-section .technologien-slider .project-card:hover {
    width: 700px;
  }
  .technologien-section .technologien-slider .project-card:hover .project-info-wrapper {
    flex-direction: row;
    align-items: flex-end;
  }
  .footer .title {
    font-size: 64px;
  }
  .technologien-wrapper .cover {
    font-size: 48px;
    margin-bottom: 100px;
  }
  .technologien-wrapper .cover span {
    font-weight: 500;
  }
  .technologien-wrapper .project-wrapper .title {
    font-size: 18px !important;
    font-weight: 400 !important;
  }
  .technologien-wrapper .project-wrapper .btn-circle {
    height: 36px !important;
    width: 36px !important;
  }
  .technologien-wrapper .project-wrapper .tech-info-wrapper.active {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 40px !important;
  }
  .packages-wrapper > .title-wrapper {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 20px;
  }
  .portfolio-section .cover-section-wrapper {
    display: flex;
    align-items: center;
  }
  .portfolio-section .cover-section-wrapper > div {
    flex: 1;
    font-size: 30px;
    color: var(--cl-10);
    font-weight: 300;
  }
  .portfolio-section .cover-section-wrapper .section-2 {
    order: 3;
  }
  .portfolio-section .cover-section-wrapper .section-2 div {
    font-size: 22px;
  }
  .portfolio-section .cover-section-wrapper .section-3 {
    order: 2;
    flex: 2;
  }
  .portfolio-section .project-grid-section > .title-wrapper {
    flex-direction: row;
    align-items: flex-end;
    margin-bottom: 20px;
  }
  .project-page .project-cover-section .cover-wrapper .title {
    font-size: 48px;
    font-weight: 300;
  }
  .project-page .project-cover-section .project-cover-image {
    height: 500px;
  }
  .project-page .project-detail-wrapper .project-info-container {
    flex-direction: row;
  }
  .project-page .project-detail-wrapper .project-info-container .project-description {
    flex: 1;
  }
  .project-page .project-detail-wrapper .project-info-container .project-details-grid {
    flex: 1;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .title {
    font-size: 42px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section > div:nth-child(1) {
    font-size: 32px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section .price {
    font-size: 32px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .desc {
    font-size: 18px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .deliverables {
    font-size: 18px;
  }
  .contact-form-container {
    padding: 30px;
  }
  .contact-form-container .title-wrapper {
    width: 75%;
  }
  .contact-form-container .form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
  .contact-form-container .form-wrapper > div {
    width: 75%;
  }
  .contact-form-container .form-wrapper .input-group {
    flex-direction: row;
  }
  .contact-form-container .form-wrapper .input-group input {
    width: 100%;
  }
  .contact-form-container .form-wrapper .submit-button {
    width: 60px;
    height: 60px;
    border-radius: 100%;
    font-size: 30px;
  }
  .contact-form-container .form-wrapper .submit-button i {
    transform: rotate(-45deg);
  }
  .privacy-policy {
    padding-inline: 40px;
  }
}
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .top-nav .nav-main {
    display: none;
  }
  .top-nav .nav-items-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .top-nav .nav-items-container .page-links {
    position: absolute;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    flex-direction: row;
    font-size: 14px;
    gap: 20px;
  }
  .top-nav .nav-items-container .cta-container {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .top-nav .nav-items-container .cta-container .lang-container {
    position: relative;
    bottom: unset;
    left: unset;
    gap: 10px;
    transform: translateX(0);
  }
  .top-nav .nav-items-container .cta-container .btn-regular {
    padding: 14px 14px;
  }
  .top-nav.active {
    overflow: visible;
  }
  .sections-scroller {
    scroll-snap-type: y mandatory;
  }
  .sections-scroller > div {
    scroll-snap-align: start;
  }
  .cover-section {
    width: 100%;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-inline: 20px;
  }
  .cover-section .section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transform: translateY(-20px);
  }
  .cover-section .section .header {
    font-weight: 300;
    font-size: 54px;
    text-align: left;
    width: 400px;
  }
  .cover-section .section .header span {
    font-weight: 500;
  }
  .cover-section .section .description {
    text-align: right;
    font-size: 30px;
    margin-top: 0;
    width: 300px;
  }
  .cover-section img {
    width: 60%;
  }
  .cover-section .scroll-indicator {
    height: 80px;
  }
  .team-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: row;
    gap: 40px;
    padding: 20px;
    height: 100vh !important;
  }
  .team-section * {
    flex-grow: 1fr;
  }
  .team-section .team-left {
    align-self: flex-end;
    order: 1;
    margin: 0;
  }
  .team-section .team-left .header {
    font-size: 50px;
    margin-bottom: 200px;
  }
  .team-section .team-center {
    order: 2;
  }
  .team-section .team-center img {
    width: 500px;
    height: auto;
  }
  .team-section .team-right {
    order: 3;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .map-section {
    display: flex;
    flex-direction: column;
    height: 100vh;
    padding: 40px 20px;
    padding-top: 100px;
  }
  .map-section .map-container {
    flex-grow: 1;
  }
  .map-section .map-container .header {
    font-size: 70px;
    color: var(--cl-7);
  }
  .map-section .map-container .map {
    width: 100%;
    height: 100%;
  }
  .map-section .info-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
  .map-section .info-wrapper .info {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .map-section .info-wrapper .info > div {
    font-size: 36px;
  }
  .map-section .info-wrapper .info > div span {
    font-size: 16px;
  }
  .map-section .info-wrapper .btn-regular {
    width: max-content;
    height: max-content;
    gap: 100px;
  }
  .technologien-section {
    padding: 40px 0px;
  }
  .technologien-section > .title-wrapper {
    padding-inline: 20px;
  }
  .technologien-section > .title-wrapper .title {
    font-size: 48px;
  }
  .match-test-section .title-wrapper {
    margin-inline: auto;
    max-width: 80%;
  }
  .match-test-section .form-inputs-container {
    max-width: 80% !important;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .match-test-section .form-inputs-container .form-input {
    height: 400px;
  }
  .match-test-section .pagination-container {
    gap: 20px;
  }
  .match-test-section .pagination-container .pagination-left, .match-test-section .pagination-container .pagination-right {
    display: none;
  }
  .match-test-section .pagination-container .pagination-step {
    min-width: max-content;
    flex: 1;
    text-align: left;
    padding-bottom: 10px;
    color: var(--cl-9);
    font-size: 16px;
    font-style: normal;
    border-bottom: 3px solid var(--cl-8);
    transform: translateX(0%) !important;
    pointer-events: all;
  }
  .match-test-section .pagination-container .pagination-step.active {
    font-style: italic;
    color: var(--cl-12);
    border-color: var(--cl-14);
  }
  .match-test-section .pagination-container .pagination-step.set {
    color: var(--ac-1) !important;
    border-color: var(--ac-1) !important;
  }
  .match-test-section .pagination-container .pagination-step:hover {
    filter: brightness(1.2);
  }
  .footer {
    padding: 20px 20px;
    box-sizing: border-box;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  .footer .title {
    font-size: 76px;
    margin-bottom: 100px;
  }
  .footer .title .icon-btn {
    top: 30px;
    right: unset;
    left: 800px;
    font-size: 50px;
    height: 120px;
    width: 120px;
    border-radius: 120px;
  }
  .footer .links-container {
    padding: 30px 0;
    grid-template-columns: 1fr 1fr 1fr 1fr 3fr;
  }
  .footer .links-container > div:nth-child(4) {
    display: block;
  }
  .footer.scroll-section {
    min-height: 100vh;
  }
  .technologien-wrapper .cover {
    font-size: 58px;
  }
  .technologien-wrapper .cover span {
    font-weight: 500;
  }
  .packages-wrapper {
    padding-inline: 20px;
  }
  .packages-wrapper > .title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .packages-wrapper > .title-wrapper .section {
    max-width: 400px;
  }
  .packages-wrapper > .title-wrapper .section .title {
    color: var(--cl-14);
    font-size: 34px;
    font-weight: 400;
  }
  .packages-wrapper .package-table-wrapper .title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .packages-wrapper .package-table-wrapper .title-wrapper .title {
    margin-bottom: 0;
  }
  .packages-wrapper .package-table-wrapper .title-wrapper .services-filter-wrapper {
    margin-bottom: 0px;
  }
  .packages-wrapper .package-table-wrapper .table-wrapper .package-card {
    display: grid;
    grid-template-columns: 5fr 3fr 4fr;
    align-items: flex-start;
    gap: 40px;
  }
  .packages-wrapper .package-table-wrapper .table-wrapper .package-card .package-info-wrapper {
    display: grid !important;
    align-items: flex-start;
    gap: 40px;
    grid-template-columns: 6fr 6fr;
  }
  .packages-wrapper .package-table-wrapper .table-wrapper .package-card .feature-wrapper ul {
    margin-top: 0 !important;
  }
  .portfolio-section .project-grid-section {
    padding-top: 100px !important;
    padding-inline: 20px;
    margin-top: 100px;
  }
  .portfolio-section .project-grid-section > .title-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
  }
  .portfolio-section .project-grid-section > .title-wrapper .section {
    max-width: 400px;
  }
  .portfolio-section .project-grid-section > .title-wrapper .section .title {
    color: var(--cl-14);
    font-size: 34px;
    font-weight: 400;
  }
  .project-page .project-cover-section {
    padding-inline: 20px;
  }
  .project-page .project-cover-section .cover-wrapper .title {
    font-size: 48px;
    font-weight: 300;
  }
  .project-page .project-cover-section .project-cover-image {
    height: 600px;
    border-radius: 8px;
  }
  .project-page .project-detail-wrapper .project-info-container {
    padding-inline: 20px;
  }
  .project-page .project-detail-wrapper .project-info-container .project-description {
    flex: 2;
  }
  .project-page .project-detail-wrapper .milestone-wrapper {
    padding-inline: 20px;
  }
  .contact-form-container {
    padding: 40px;
  }
  .contact-form-container .title-wrapper {
    font-size: 5rem;
  }
  .privacy-policy {
    padding-inline: 120px;
  }
}
/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .top-nav {
    position: fixed;
    top: 0px;
  }
  .top-nav .nav-items-container .page-links {
    gap: 60px;
    font-size: 16px;
  }
  .cover-section {
    margin-top: 0px;
  }
  .cover-section .section .header {
    font-size: 70px;
    width: 550px;
  }
  .cover-section .section .description {
    font-size: 34px;
  }
  .cover-section img {
    width: 55%;
  }
  .team-section .team-left .header {
    font-size: 60px;
    margin-bottom: 200px;
  }
  .team-section .team-left .description {
    font-size: 18px;
  }
  .team-section .team-right .sub-header {
    font-size: 24px;
  }
  .team-section .team-right .description {
    font-size: 18px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .title {
    font-size: 42px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row {
    padding: 20px 0;
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    align-items: flex-start;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section > div:nth-child(1) {
    font-size: 32px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .title-section .price {
    font-size: 32px;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .desc {
    font-size: 18px;
    flex: 2;
  }
  .project-page .project-detail-wrapper .milestone-wrapper .milestone-table-wrapper .table-row .deliverables {
    font-size: 18px;
  }
}
/* Extra extra large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .map-section .map-container .header {
    font-size: 80px;
  }
  .map-section .info-wrapper .info > div {
    font-size: 44px;
  }
  .map-section .info-wrapper .info > div span {
    font-size: 16px;
  }
}

/*# sourceMappingURL=style.css.map */


.image-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}
.image-popup img {
    max-width: 95vw;
    max-height: 95vh;
    object-fit: contain;
    border: none;
}
.image-popup.hidden {
    display: none;
}
.project-image {
    cursor: pointer;
}
