/* GLOBAL STYLES */
html {
  box-sizing: border-box;
  font-size: 62.5%; /*set default to 10px*/
  height: 100%;
}
*:before,
*:after {
  box-sizing: inherit;
}
header {
  padding: 0 2.78vw;
}
body {
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}
@font-face {
  font-family: "Neutral Face Bold";
  src:
    url("../fonts/NeutralFaceBold.woff2") format("woff2"),
    url("../fonts/NeutralFaceBold.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Neutral Face";
  src:
    url("../fonts/NeutralFaceRegular.woff2") format("woff2"),
    url("../fonts/NeutralFaceRegular.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
/* NAVIGATION */
.top-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.anchor-logo {
  position: relative;
}
.anchor-logo img {
  position: absolute;
  top: 0;
  left: 0;
}
.navigation {
  display: flex;
  flex-direction: row;
  justify-self: end;
  gap: 5.5rem;
}
.nav-toggle {
  width: 4.5rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  padding-top: 5.3rem;
}
.nav-toggle .bar {
  width: 100%;
  height: 3px;
  background: #1e1e1e;
  transition: all 0.4s ease;
  border-radius: 1.5rem;
  transition: background-color 1s ease;
}
/* Hamburger animation */
.nav-toggle.active .bar {
  background-color: black;
}
/* Overlay menu */
.nav-menu {
  position: fixed;
  box-sizing: border-box;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  overflow: clip;
  background-color: #fff;
  color: black;
  transform: translateX(-100%);
  transition: transform 0.6s ease;
  display: flex;
  justify-content: center;
  z-index: 1000;
  padding: 13.57vh 48.96vw 12.11vh 2.78vw;
}
.nav-menu.open {
  transform: translateX(0);
}
body.menu-open {
  height: 100%;
  overflow: hidden;
  position: fixed;
  inset: 0;
  width: 100%;
}
.nav-content {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  list-style-type: none;
}
.nav-content li {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 7rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.nav-content li a {
  color: white;
  text-decoration: none;
  transition: color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-content li a:hover {
  color: #000;
  text-decoration: none;
}
.start-project-button {
  box-sizing: border-box;
  padding: 2rem 5.7rem;
  align-items: center;
  border-top: 0.1rem solid black;
  border-bottom: 0.1rem solid black;
  margin-top: 3.9rem;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  max-height: 5.7rem;
}
.start-project-button div {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
}

/* HEADER */
header h6 {
  margin-top: 10.5rem;
  color: #000;
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
header h1 {
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: clamp(10.24rem, 8.89vw, 12.8rem);
  font-style: normal;
  font-weight: 400;
  width: 103.7rem;
  margin-top: 1rem;
  margin-bottom: -2em;
}
header h1 span {
  display: inline-block;
  color: #000;
  font-family: "Playfair Display", sans-serif;
  font-size: clamp(24rem, 20.83vw, 30rem);
  font-style: italic;
  font-weight: 500;
  transform: translateY(-0.9em);
  margin-left: 1.7em;
}
.contact-button {
  box-sizing: border-box;
  padding: 2rem 4rem;
  align-items: center;
  border-top: 0.1rem solid black;
  border-bottom: 0.1rem solid black;
  max-width: 21rem;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.contact-button div {
  color: #000;
  text-align: right;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
}

/*CHAMELEON SECTION */
.chameleon-section {
  position: relative;
  height: 380vh;
}
.chameleon-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.chameleon-container {
  position: relative;
  display: inline-block;
}
#star-svg {
  position: absolute;
  top: 3.9rem;
  left: 39rem;
  transform-origin: center center;
  backface-visibility: hidden;
  z-index: 2;
  width: 10.6rem;
  height: 9.7rem;
}
#yellow-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #f1c84b;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  transition: opacity 1s ease;
}

/* YELLOW SECTION */
.yellow-section {
  background-color: #f1c84b;
  height: 100vh;
  width: 100vw;
}

/* PORTFOLIO SECTION */
.portfolio-section {
  padding: 30rem 2.78vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  grid-row: auto;
}
.portfolio-section h6 {
  grid-column: 5/9;
  grid-row: 1/2;
  text-align: center;
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.portfolio-containers {
  grid-column: 1/13;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  margin-top: 6rem;
}
.portfolio-block-1 {
  grid-column: 1/5;
  grid-row: 1/2;
  background: #d9d9d9;
  height: 70rem;
}
.portfolio-block-2 {
  grid-column: 5/9;
  grid-row: 1/2;
  background: #d9d9d9;
  height: 70rem;
}
.portfolio-block-3 {
  grid-column: 9/13;
  grid-row: 1/2;
  background: #d9d9d9;
  height: 70rem;
}
.portfolio-button {
  grid-column: 1/4;
  grid-row: 3/4;
  box-sizing: border-box;
  padding: 2rem 0 1.8rem;
  border-top: 0.1rem solid black;
  border-bottom: 0.1rem solid black;
  margin-top: 10rem;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.9rem;
  justify-content: center;
}
.portfolio-button div {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
}

/* SERVICES SECTION */
.services-section {
  padding: 0 2.78vw 30rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  grid-row: auto;
}
.services-section h6 {
  grid-column: 5/9;
  grid-row: 1/2;
  text-align: center;
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.services-containers {
  grid-column: 1/13;
  grid-row: 2/3;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  margin-top: 6rem;
}
.services-block-1 {
  grid-column: 1/4;
  grid-row: 1/2;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  align-content: center;
  text-decoration: none;
}
.services-block-2 {
  grid-column: 4/7;
  grid-row: 1/2;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  align-content: center;
  text-decoration: none;
}
.services-block-3 {
  grid-column: 7/10;
  grid-row: 1/2;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  align-content: center;
  text-decoration: none;
}
.services-block-4 {
  grid-column: 10/13;
  grid-row: 1/2;
  background: #d9d9d9;
  aspect-ratio: 1/1;
  align-content: center;
  text-decoration: none;
}
.services-block-1 h6,
.services-block-2 h6,
.services-block-3 h6,
.services-block-4 h6 {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: center;
}
.services-button {
  grid-column: 1/3;
  grid-row: 3/4;
  box-sizing: border-box;
  padding: 2rem 0;
  border-top: 0.1rem solid black;
  border-bottom: 0.1rem solid black;
  margin-top: 10rem;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: center;
}
.services-button div {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
}

/* FAQ SECTION */
.faq-section {
  padding: 0 2.78vw 82rem;
  display: flex;
  flex-direction: column;
}
.faq-section h6 {
  text-align: center;
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6rem;
}
.faq-question {
  grid-column: 1/8;
  grid-row: 1/2;
  justify-self: start;
  margin: 0;
  align-self: center;
}
.button-accordion-faq {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  transition: 0.5s;
  cursor: pointer;
}
.plus-sign {
  grid-column: 12/13;
  grid-row: 1/2;
  stroke-width: 1px;
  stroke: #40422b;
  flex-shrink: 0;
  justify-self: end;
  width: 4rem;
  height: 4rem;
  flex-shrink: 0;
}
.plus-sign g {
  transition: all 600ms;
  transform: rotate(0);
  transform-origin: 50% 50%;
}
.button-accordion-faq.open .plus-sign .vertical {
  transform: rotate(90deg);
}
.accordion-content-faq {
  display: block;
  grid-column: 2/12;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scale(1);
  transition:
    max-height 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
    padding-bottom 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: max-height, opacity, padding;
  border-top: none;
  pointer-events: none;
  font-size: 0;
}
.accordion-content-faq.active {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}
.accordion-content-faq.active p {
  color: black;
  font-family: "Manrope", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}
.accordion-inner-faq {
  transition: padding 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.accordion-content-faq.active .accordion-inner-faq {
  margin-top: 3rem;
  margin-bottom: 6rem;
  grid-column: 2 / 10;
}
.faq-block {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #40422b;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-left: none;
  border-right: none;
  border-top: 1px solid #40422b;
  border-bottom: none;
}
.faq-block:last-child {
  border-bottom: 1px solid #40422b;
}

/* FOOTER */
footer {
  background: #d9d9d9;
  padding: 9.1rem 2.78vw;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
}
.logo {
  grid-column: 1/5;
}
.lists-footer {
  grid-column: 5/13;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  column-gap: 1.6rem;
}
.contact-footer {
  grid-column: 1/3;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.contact-footer li:first-child {
  color: #000;
  text-align: left;
  font-family: "Neutral Face", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
  margin-top: 0;
}
.contact-footer li {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2rem;
}
.services-footer {
  grid-column: 3/6;
  list-style-type: none;
  padding: 0;
  margin: 0;
  justify-self: center;
}
.services-footer li:first-child {
  color: #000;
  text-align: left;
  font-family: "Neutral Face", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
  margin-top: 0;
}
.services-footer li {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2rem;
}
.services-footer li a {
  text-decoration: none;
  color: #000;
}
.quick-links-footer {
  grid-column: 6/9;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.quick-links-footer li:first-child {
  color: #000;
  text-align: left;
  font-family: "Neutral Face", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}

/* CONTACT PAGE */
.main-contact {
  padding: 0 2.78vw;
}
.contact-text-main {
  margin-top: 17rem;
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: clamp(10.24rem, 8.89vw, 12.8rem);
  font-style: normal;
  font-weight: 400;
}
.contact-text-second {
  margin-top: 2rem;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.92rem, 1.67vw, 2.4rem);
  font-style: normal;
  font-weight: 400;
}
.contact-form {
  padding: 18.5rem 0 24rem 0;
}
form {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
}
label {
  margin-top: 6.5rem;
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
input {
  margin-top: 3.3rem;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  background-color: white;
  color: black;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 0 1rem 0;
}
input:focus,
textarea:focus {
  outline: none;
}
.select {
  position: relative;
  width: 100%;
}
.select-trigger {
  margin-top: 3.3rem;
  box-sizing: border-box;
  width: 100%;
  border: none;
  border-bottom: 1px solid black;
  background-color: white;
  color: black;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 0 0 1rem 0;
  background-image: url('data:image/svg+xml;utf8, <svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" viewBox="0 0 20 20" fill="none"> <path d="M19 10L10.1085 18.8915L1.21708 9.99999" stroke="black" stroke-linecap="square" stroke-linejoin="round"/> </svg>');
  background-repeat: no-repeat;
  background-position: right 0rem bottom 1.4rem;
  background-size: 2rem;
  cursor: pointer;
  text-align: left;
}
.select-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: none;
  background: white;
  border: 1px solid black;
  border-top: none;
  z-index: 10;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.select.open .select-options {
  display: block;
}
.select-options li {
  padding: 1rem 0;
  cursor: pointer;
}
.select-options li:hover {
  background: black;
  color: white;
}
.first-name-label {
  grid-column: 1/3;
  grid-row: 1/2;
}
#first-name {
  grid-column: 1/7;
  grid-row: 2/3;
}
.last-name-label {
  grid-column: 7/9;
  grid-row: 1/2;
}
#last-name {
  grid-column: 7/13;
  grid-row: 2/3;
}
.phone-label {
  grid-column: 1/3;
  grid-row: 3/4;
}
#phone {
  grid-column: 1/7;
  grid-row: 4/5;
}
.email-label {
  grid-column: 7/9;
  grid-row: 3/4;
}
#email {
  grid-column: 7/13;
  grid-row: 4/5;
}
.company-name-label {
  grid-column: 1 / 3;
  grid-row: 5 / 6;
}
#company-name {
  grid-column: 1 / 5;
  grid-row: 6 / 7;
}
.industry-label {
  grid-column: 5/7;
  grid-row: 5 / 6;
}
#industry {
  grid-column: 5/9;
  grid-row: 6 / 7;
}
.website-label {
  grid-column: 9/11;
  grid-row: 5/6;
}
#website {
  grid-column: 9/13;
  grid-row: 6/7;
}
.timing-label {
  grid-column: 1/3;
  grid-row: 7/8;
}
#timing {
  grid-column: 1/7;
  grid-row: 8/9;
}
.budget-label {
  grid-column: 7/9;
  grid-row: 7/8;
}
#budget {
  grid-column: 7/13;
  grid-row: 8/9;
}
.service-label {
  grid-column: 1/5;
  grid-row: 9/10;
}
.service-label span {
  color: #989898;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.checkbox-group {
  grid-column: 1/13;
  grid-row: 10/11;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  margin-top: 5.2rem;
}
.checkbox-group h6 {
  margin-bottom: 2rem;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.service-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.checkbox-group label {
  margin-top: 0;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.checkbox-group input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid #000;
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  display: inline-grid;
  place-content: center;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.checkbox-group input[type="checkbox"]:checked {
  background-color: #000;
}
.checkbox-group input[type="checkbox"]:focus-visible {
  outline: 1px solid #000;
  outline-offset: 3px;
}
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  width: auto;
}
button[type="submit"] {
  grid-column: 1/3;
  grid-row: 11/12;
  box-sizing: border-box;
  padding: 2rem 0;
  align-items: center;
  border: none;
  background-color: white;
  border-top: 0.1rem solid black;
  border-bottom: 0.1rem solid black;
  margin-top: 17rem;
  text-decoration: none;
  color: #000;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2rem;
  justify-content: center;
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  line-height: normal;
  cursor: pointer;
}

/* CASE 1 PAGE */
.main-case {
  padding: 0 2.78vw;
}
.background-image-as {
  box-sizing: border-box;
  background-image: url(../images/case1-main-photo.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-color: lightgray;
  margin-top: 10.2rem;
  height: 61.3rem;
  position: relative;
}
.background-image-as h3 {
  position: absolute;
  right: 11.5rem;
  bottom: 26.6rem;
  color: #ffffff;
  text-align: right;
  font-family: "Neutral Face", sans-serif;
  font-size: clamp(1.5rem, 1.66vw, 2.4rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  max-width: 22.57vw;
}

.case-description-section {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  margin-top: 4rem;
}
.case-description-section h6 {
  color: #000;
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 2rem;
}
.column div {
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 1rem;
}
.column-1-description {
  grid-column: 2/3;
}
.column-2-description {
  grid-column: 6/8;
  justify-self: center;
}
.column-3-description {
  grid-column: 11/13;
}

/* SERVICES PAGE */
.main-servcies {
  padding: 0 2.78vw;
}
.main-header-services {
  width: 100%;
  position: relative;
  margin-top: 17rem;
}
.main-header-services h1 {
  color: #000;
  text-align: left;
  font-family: "Neutral Face", sans-serif;
  font-size: clamp(10.24rem, 8.89vw, 12.8rem);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
/* drop down services*/
.button-accordion-services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  transition: 0.5s;
  cursor: pointer;
}
.button-accordion-services.open .plus-sign .vertical {
  transform: rotate(90deg) translateX(-1px);
}
.accordion-content-services {
  display: block;
  grid-column: 2/12;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: scale(1);
  transition:
    max-height 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
    opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    padding-top 0.55s cubic-bezier(0.25, 0.1, 0.25, 1),
    padding-bottom 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
  will-change: max-height, opacity, padding;
  border-top: none;
  pointer-events: none;
  font-size: 0;
}
.accordion-content-services.active {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 1.6rem;
  max-height: 1000px;
  opacity: 1;
  pointer-events: auto;
}
.accordion-content-services.active .services-inner-left {
  color: black;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 56rem;
}
.accordion-content-services.active .services-inner-left h6 {
  color: #989898;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 3rem;
}
.accordion-content-services.active .services-inner-left .above-the-list {
  margin-top: 2rem;
}
.accordion-content-services.active .services-inner-left ul {
  margin: 0;
  padding-left: 2.5rem;
}
.accordion-content-services.active .services-inner-left li {
  margin-top: 1rem;
}
.accordion-content-services.active .services-inner-right {
  color: white;
  background-color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  padding: 3rem 3rem 7.3rem 3rem;
  max-width: 67rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.accordion-content-services.active .four-one {
  padding-bottom: 4.1rem;
}
.accordion-content-services.active .five-three {
  padding-bottom: 5.3rem;
}
.accordion-content-services.active .six-three {
  padding-bottom: 6.3rem;
}
.accordion-content-services.active .six-one {
  padding-bottom: 6.1rem;
}
.accordion-content-services.active .eight-five {
  padding-bottom: 8.5rem;
}
.accordion-content-services.active .nine-five {
  padding-bottom: 9.5rem;
}
.accordion-content-services.active .services-inner-right h6:first-child {
  font-family: "Neutral Face", sans-serif;
  font-size: 1.8rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  align-self: center;
  margin-top: 0;
}
.accordion-content-services.active .services-inner-right h6:nth-child(2) {
  margin-top: 4rem;
}
.accordion-content-services.active .services-inner-right h6 {
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 2rem;
}
.accordion-inner-services {
  transition: padding 0.55s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.accordion-content-services.active .accordion-inner-services {
  grid-column: 1/13;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 13.5rem;
  margin: 3rem 0 8.5rem 0;
}
.services-block {
  display: flex;
  flex-direction: column;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  color: #000;
  font-family: "Manrope", sans-serif;
  font-size: 2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  border-left: none;
  border-right: none;
  border-top: 1px solid #000;
  border-bottom: none;
}
.services-block:last-child {
  border-bottom: 1px solid #000;
}
.button-accordion-services.open .plus-sign .vertical {
  transform: rotate(90deg);
}

#branding {
  padding: 18.5rem 0 0 0;
}
#branding h3 {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6rem;
}
#uxui {
  padding: 30rem 0 0 0;
}
#uxui h3 {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6rem;
}
#webdev {
  padding: 30rem 0 0 0;
}
#webdev h3 {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6rem;
}
#marketing {
  padding: 30rem 0 0 0;
}
#marketing h3 {
  color: #000;
  text-align: center;
  font-family: "Neutral Face", sans-serif;
  font-size: 2.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 6rem;
}
