html {
  font-size: 16px;
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100vw;
  overscroll-behavior: none;
  scroll-behavior: smooth;
}

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

body {
  font-family: "Unbounded", sans-serif;
  background-color: #494d5a;
  overflow-y: hidden;
  font-size: 1rem;
}

ol,
ul {
  list-style-type: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

.slider-text-mobile {
  display: none;
}

a {
  text-decoration: none;
  color: #fff;
}

.submit-button {
  background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  border: none;
  border-radius: 1.875rem; /* 30px */
  width: 16.563rem; /* 265px */
  height: 3.688rem; /* 59px */
  padding: 0.625rem; /* 10px */
  font-size: 1.25rem; /* 20px */
  font-family: "Unbounded", serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.button-text {
  display: inline-block;
  margin: 0 auto;
  transition: all 0.3s ease;
  color: #f2ebf0;
}

.button-text span {
  display: none;
}

.arrow {
  color: #e8a548;
  background-color: #fff;
  width: 2.438rem; /* 39px */
  height: 2.438rem; /* 39px */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease, opacity 0.3s ease;
  padding-left: 0.125rem; /* 2px */
}

.submit-button.clicked .button-text {
  width: 100%;
  padding: 0.438rem 0.625rem; /* 7px 10px */
  background-color: #ffffff;
  color: #c279f1;
  border-radius: 1.875rem; /* 30px */
  transition: all 0.3s ease;
  padding-right: 2.5rem; /* 40px */
  text-align: center;
}

.submit-button.clicked .button-text a {
  color: #c279f1;
}

.submit-button.clicked .arrow {
  display: none;
  transition: display 0.3s ease;
}

.submit-button.clicked::after {
  content: "";
  position: absolute;
  background-image: url("/static/images/success.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  right: 1.375rem; /* 22px */
  opacity: 0;
  animation: fadeInCheck 0.3s forwards;
  width: 1.625rem; /* 26px */
  height: 1.063rem; /* 17px */
}

form .submit-button.clicked {
  padding: 0.625rem; /* 10px */
  text-align: start;
}

.demo-btn {
  position: relative;
  background: #494d5a;
  border: none;
  padding: 1.25rem 1.875rem; /* 20px 30px */
  width: 15.875rem; /* 254px */
  height: 4.063rem !important; /* 65px */
  font-weight: 400;
  font-size: 1.25rem; /* 20px */
  color: #fff9fd;
  border-radius: 1.875rem; /* 30px */
  cursor: pointer;
  align-self: center;
  transition: width 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

.button-text {
  display: inline-block;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-toggle {
  max-width: 4.563rem; /* 73px */
  max-height: 3.375rem; /* 54px */
  padding: 1.125rem 1.375rem; /* 18px 22px */
  border-radius: 2.25rem; /* 36px */
  position: relative;
  cursor: pointer;
  display: none;
  z-index: 10001;
  background: linear-gradient(
    90deg,
    rgba(232, 153, 191, 0.5) 0%,
    rgba(185, 178, 142, 0.5) 30.68%,
    rgba(175, 158, 175, 0.5) 52.4%,
    rgba(159, 165, 195, 0.5) 81.66%
  );
}

.navbar .menu-toggle {
  background: none;
}

.fullscreen-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

.fullscreen-nav.active {
  display: flex;
}

.fullscreen-nav li {
  list-style: none;
  margin: 1.25rem 0; /* 20px */
}

.fullscreen-nav a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem; /* 24px */
  font-weight: bold;
}

.fullscreen-nav a:hover {
  text-decoration: underline;
}

/* HEADER */

header {
  height: 100vh;
}

.navbar {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 0.938rem 3.375rem 0.938rem 4.563rem; /* 15px 54px 15px 73px */
  background: linear-gradient(
    90deg,
    rgba(232, 153, 191, 0.32) 0%,
    rgba(185, 178, 142, 0.32) 30.68%,
    rgba(175, 158, 175, 0.32) 52.4%,
    rgba(159, 165, 195, 0.32) 81.66%
  );
  border-radius: 1.563rem; /* 25px */
  margin: 4.563rem auto; /* 73px auto */
  width: 90%;
  font-family: "Kameron", serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  color: white;
  position: relative;
  max-height: 3.375rem; /* 54px */
}

.navbar.fixed {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  width: 90%;
  border-radius: 0 0 1.563rem 1.563rem; /* 0 0 25px 25px */
  z-index: 10002;
}

.slide-navbar-wrapper {
  position: fixed;
  top: 3%;
  left: 95%;
  transform: translate(-100%, -50%);
  width: 89.95%;
  height: 3.344rem; /* 53.5px */
  margin: 3.5rem auto; /* 56px auto */
  background-color: #494d5a;
  border-radius: 1.563rem; /* 25px */
  z-index: 20000;
  transition: all 0.75s ease;
}

.slide-navbar-wrapper.collapsed {
  width: 4.563rem; /* 73px */
  padding: 0 0.625rem 0 0; /* 0 10px 0 0 */
}

.slide-navbar-wrapper.collapsed:hover {
  width: 90%;
  padding: 0.938rem 3.375rem 0.938rem 4.563rem; /* 15px 54px 15px 73px */
}

.slide-navbar {
  position: fixed;
  top: 8.85%;
  left: 95%;
  transform: translate(-100%, -50%);
  width: 90%;
  height: 3.375rem;
  z-index: 20000;
  padding: 0.938rem 3.375rem 0.938rem 4.563rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
  border-radius: 1.563rem;
  background: linear-gradient(
      90deg,
      rgba(232, 153, 191, 0.32) 0%,
      rgba(185, 178, 142, 0.32) 30.68%,
      rgba(175, 158, 175, 0.32) 52.4%,
      rgba(159, 165, 195, 0.32) 81.66%
    ),
    #494d5a;
  font-family: "Kameron", serif;
  font-size: 1.25rem;
  color: white;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.75s ease;
}

.slide-navbar.collapsed {
  width: 4.563rem; /* 73px */
  padding: 0 0.625rem 0 0; /* 0 10px 0 0 */
}

.slide-navbar.collapsed:hover {
  width: 90%;
  padding: 0.938rem 3.375rem 0.938rem 4.563rem; /* 15px 54px 15px 73px */
}

.slide-navbar .logo {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.3s ease 0.3s;
  flex: 1;
}

.slide-navbar.collapsed .logo {
  opacity: 0;
}

.slide-navbar.collapsed:hover .logo {
  opacity: 1;
}

.slide-navbar .icon {
  flex-shrink: 0;
  width: 2.5rem; /* 40px */
  height: 2.5rem; /* 40px */
  display: none;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
  position: absolute;
  left: 23%;
}

.slide-navbar.collapsed .icon {
  display: flex;
}

.slide-navbar.collapsed:hover .icon {
  display: none;
}

.slide-navbar .icon img {
  width: 1.5rem; /* 24px */
  height: 1.5rem; /* 24px */
}

.slide-navbar .nav-links {
  display: flex;
  gap: 1.563rem; /* 25px */
  align-items: center;
  margin: 0;
  padding: 0;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease 0.3s;
  margin-left: auto;
}

.slide-navbar.collapsed .nav-links {
  opacity: 0;
  pointer-events: none;
}

.slide-navbar.collapsed:hover .nav-links {
  opacity: 1;
  pointer-events: auto;
}

.slide-navbar .nav-links li {
  display: inline;
}

.slide-navbar .nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
  white-space: nowrap;
  font-size: 1.25rem; /* 20px */
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

#slideButton {
  background: linear-gradient(
    90deg,
    rgba(232, 153, 191, 0.32) 8%,
    rgba(185, 178, 142, 0.32) 30.68%,
    rgba(175, 158, 175, 0.32) 52.4%,
    rgba(159, 165, 195, 0.32) 81.66%
  );
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  font-family: "Kameron", serif;
  padding: 0.688rem 0.938rem; /* 11px 15px */
  border-radius: 2.25rem; /* 36px */
  max-width: 6.313rem; /* 101px */
  max-height: 2.688rem; /* 43px */
  border: none;
  color: #fff;
  cursor: pointer;
}

.nav-links a:hover,
.navbar-btn:hover {
  color: #ffd700;
}

.logo {
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.563rem; /* 25px */
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-links li {
  display: inline;
}

.nav-links a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}

.header-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 3.75rem; /* 60px */
  height: 100%;
  position: relative;
}

.showcase-content {
  text-align: center;
}

.about-link {
  position: absolute;
  top: 63%;
}

.keyboard__keyaboards {
  display: flex;
  justify-content: center;
  -moz-column-gap: 1.375rem; /* 22px */
  column-gap: 1.375rem;
}

.showcase-content .keyboard__text {
  font-family: "Kameron";
  margin-top: 0.875rem; /* 14px */
  font-size: 2.5rem; /* 40px */
  font-weight: 400;
  color: #f2ebf0;
}

.footer .keyboard__text {
  font-family: "Kameron";
  font-size: 2.5rem; /* 40px */
  font-weight: normal;
  color: #f2ebf0;
}

/* ABOUT */

.about {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-container {
  width: 82.5rem; /* 1320px */
  margin: 0 auto;
}

.about-header {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 11.875rem; /* 190px */
}

.about-header-left {
  position: relative;
  width: 100%;
  height: 18.75rem; /* 300px */
  overflow: visible;
  flex: 1;
}

.about-header-left svg {
  position: absolute;
  top: -11.25rem; /* -180px */
  left: 0;
  width: 100%;
  height: auto;
  overflow: visible;
}

.about-header-left img {
  position: absolute;
  top: -8.75rem; /* -140px */
}

.about-header-right {
  flex: 2;
  max-width: 51.875rem; /* 830px */
}

.about-header-right h1 {
  color: white;
  font-size: 2.25rem; /* 36px */
  font-weight: 400;
  line-height: 2.5rem; /* 40px */
}

.about-header-right h1 span {
  background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.875rem; /* 30px */
  margin-top: 3.125rem; /* 50px */
  justify-content: space-between;
}

.about-content-left {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.125rem; /* 18px */
}

.about-content-mobile {
  width: 100vw;
  display: none;
  justify-content: center;
  align-items: center;
}

.direction {
  display: flex;
  align-items: center;
}

.direction-name {
  color: #ffffff54;
  font-weight: 250;
  width: 15.625rem; /* 250px */
  font-size: 1.25rem; /* 20px */
  line-height: 2.5rem; /* 40px */
}

.direction-tags {
  display: flex;
  flex-direction: column;
  font-size: 1.25rem; /* 20px */
  line-height: 2.5rem; /* 40px */
}

.tags-list {
  display: flex;
  gap: 1.25rem; /* 20px */
}

.tag {
  width: 11.5rem; /* 184px */
  height: 3.063rem; /* 49px */
  display: inline-block;
  text-align: center;
  padding: 0.313rem 1.563rem; /* 5px 25px */
  border-radius: 100px;
  background-color: transparent;
  position: relative;
  background-image: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(207, 203, 203, 0.8) 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  cursor: pointer;
}

.tag span {
  font-weight: 400;
  font-size: 1.188rem; /* 19px */
  line-height: 2.5rem; /* 40px */
  color: transparent;
}

.tag::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 0.063rem; /* 1px */
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.8) 0%,
    rgba(207, 203, 203, 0.8) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  box-sizing: border-box;
}

.tag-active {
  background-image: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
}

.tag-active::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 0.063rem; /* 1px */
  background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: -1;
  box-sizing: border-box;
}

.tag:hover {
  color: transparent;
  background-image: linear-gradient(90deg, #ffc149, #b23afe);
  -webkit-background-clip: text;
  background-clip: text;
}

.tag:hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 100px;
  padding: 0.063rem; /* 1px */
  background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  transition: all 0.7s ease;
  box-sizing: border-box;
}

#arrow {
  width: 20em;
  height: 15.625em;
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(0deg);
}

.team-mobile {
  display: none;
}

.team-section {
  height: 100vh;
  width: 100%;
}

.team-stats {
  display: flex;
  justify-content: space-around;
  border-top: 1px solid #fff;
  padding: 5.563rem 9.188rem 5.438rem 15.313rem; /* 89px 147px 87px 245px */
}

.stat h3 {
  margin: 0;
  font-size: 2.5rem; /* 40px */
  font-weight: 800;
  color: #fff;
}

.stat p {
  margin: 0.313rem 0 0; /* 5px 0 0 */
  color: #fff;
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
}

.team-grid {
  display: grid;
  height: 100%;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(6, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.role {
  position: relative;
  border: 1px solid #cacaca;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 2.688rem; /* 43px */
  transition: background 0.8s ease;
  cursor: pointer;
}

.role h2 {
  color: #fff;
  font-size: 2rem;
  font-weight: 300;
}

.team-frontend {
  grid-area: 1 / 1 / 3 / 3;
  border-left: none;
}

.team-devops {
  grid-area: 3 / 1 / 5 / 3;
  border-left: none;
  border-top: none;
}

.team-backend {
  grid-area: 1 / 3 / 3 / 5;
  border-right: none;
  border-left: none;
}

.team-system-analyst {
  grid-area: 3 / 3 / 5 / 5;
  border-right: none;
  border-left: none;
  border-top: none;
}

.team-role-overview {
  grid-area: 1 / 5 / 5 / 10;
  border-left: none;
  background-color: #c6bee1;
  flex-direction: column;
  justify-content: start;
  align-items: flex-start;
  padding: 4.063rem; /* 65px */
  color: #fff;
}

.role-overview-grid {
  margin-top: 1.875rem; /* 30px */
  width: 100%;
  height: 80%;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0;
  grid-row-gap: 0;
}

.role-overview-grid img {
  height: 8.125rem; /* 130px */
}

.project-manager-overview img {
  width: 100%;
  height: 26.25rem; /* 420px */
}

.project-manager-overview {
  margin: 0 auto;
  grid-area: 1 / 1 / 3 / 10;
}

.team-role-overview h2 {
  font-size: 2rem; /* 32px */
  font-weight: 600;
}

.team-role-overview p {
  margin-top: 1.438rem; /* 23px */
  font-size: 1.25rem; /* 20px */
  font-weight: 400;
  max-width: 45.125rem; /* 722px */
}

.team-project-manager {
  grid-area: 5 / 1 / 7 / 5;
  border: none;
  display: flex;
}

.technology-title {
  font-family: "Kadwa", serif;
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  color: #464d63;
}

.figma {
  grid-area: 1 / 1 / 3 / 4;
}

.uml {
  grid-area: 1 / 4 / 3 / 7;
}

.confluence {
  grid-area: 1 / 7 / 3 / 10;
}

.kubernetes {
  grid-area: 1 / 1 / 2 / 4;
}

.docker {
  grid-area: 1 / 4 / 2 / 7;
}

.jenkins {
  grid-area: 1 / 7 / 2 / 10;
}

.grafana {
  grid-area: 2 / 1 / 3 / 4;
}

.prometheus {
  grid-area: 2 / 4 / 3 / 7;
}

.terraform {
  grid-area: 2 / 7 / 3 / 10;
}

.python {
  grid-area: 1 / 2 / 2 / 6;
}

.node {
  grid-area: 1 / 5 / 2 / 9;
}

.typescript {
  grid-area: 2 / 1 / 3 / 4;
}

.java {
  grid-area: 2 / 4 / 3 / 7;
}

.golang {
  grid-area: 2 / 7 / 3 / 10;
}

.vue {
  grid-area: 1 / 1 / 2 / 4;
}

.html {
  grid-area: 1 / 4 / 2 / 7;
}

.svelte {
  grid-area: 1 / 7 / 2 / 10;
}

.react {
  grid-area: 2 / 2 / 3 / 6;
}

.next {
  grid-area: 2 / 5 / 3 / 9;
}

.figma,
.uml,
.confluence,
.kubernetes,
.docker,
.jenkins,
.grafana,
.prometheus,
.terraform,
.python,
.node,
.typescript,
.java,
.golang,
.vue,
.svelte,
.html,
.react,
.next {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.hidden {
  display: none;
}

.active {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

.block-img {
  position: absolute;
  z-index: -1;
  left: 2rem; /* 32px */
  top: 2rem; /* 32px */
  opacity: 0;
  transition: opacity 0.8s ease;
}

.block-img-active {
  opacity: 1;
}

.team-role7 {
  grid-area: 5 / 5 / 7 / 10;
  border-left: 1px solid #fff;
  color: #fff;
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  padding: 3.5rem 2.688rem; /* 56px 43px */
  flex-direction: column;
  display: flex;
  justify-content: space-between;
}

.team-role7-text {
  max-width: 41.5rem; /* 664px */
}

.role7-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* TEAM STATS */

.team-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  min-height: 16.25rem; /* 260px */
  padding: 1.25rem 0; /* 20px 0 */
}

.stat h3 {
  margin: 0;
  font-size: 2.5rem; /* 40px */
  font-weight: 800;
}

.stat p {
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  margin: 0.313rem 0 0; /* 5px 0 0 */
}

/* PROJECTS */

.projects {
  min-height: 100vh;
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.swiper-background {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.3s ease;
  will-change: opacity;
}

.gradient-1 {
  background: linear-gradient(
    -45deg,
    rgba(127, 172, 225, 0.9),
    rgba(186, 126, 224, 0.8),
    rgba(233, 208, 70, 0.7)
  );
  opacity: 1;
}

.gradient-2 {
  background: linear-gradient(
    45deg,
    rgba(233, 208, 70, 0.7),
    rgba(186, 126, 224, 0.8),
    rgba(127, 172, 225, 0.9)
  );
  opacity: 0;
}

.swiper {
  height: 100vh;
  width: 100vw;
  position: absolute;
  top: 0;
  left: 0;
}

.swiper-pagination {
  bottom: 0.625rem; /* 10px */
  text-align: center;
  position: absolute;
  width: 100%;
  z-index: 10;
  display: none;
}

.swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.5;
  width: 0.5rem; /* 8px */
  height: 0.5rem; /* 8px */
  margin: 0.25rem; /* 4px */
  display: inline-block;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.swiper-slide > * {
  position: relative;
  z-index: 1;
}

.slide-content {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
  z-index: 1;
}

.projects::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("/static/images/Noise & Texture.png");
  background-size: cover;
  opacity: 1;
  z-index: -1;
}

.slide-content-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.375rem; /* 70px */
  height: 100%;
  width: 60%;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 1.9s ease, opacity 0.5s ease;
}

.swiper-slide:first-child .slide-content-left,
.swiper-slide:first-child .slide-content-right .content-wrapper {
  transform: translateY(0);
  opacity: 1;
  transition: 1.9s;
}

.slide-image {
  max-width: 45.625rem; /* 730px */
  border-radius: 1rem; /* 16px */
}

.slide-title {
  font-size: 4rem; /* 64px */
  font-weight: 700;
  color: #fff;
}

.slide-content-right {
  display: flex;
  position: relative;
  flex-direction: column;
  width: 40%;
  height: 100%;
  padding: 12.5rem 5.313rem 6rem; /* 200px 85px 96px */
  overflow: hidden;
}

.slide-content-right::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #888d9eb5;
  z-index: -1;
}

.slide-content-right .content-wrapper {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* 24px */
  transform: translateY(50%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
  height: 25.625rem; /* 410px */
}

.slide-content-right .content-wrapper.active {
  transform: translateY(0);
  opacity: 1;
}

.vertical-progress-bar {
  position: absolute;
  right: 3.125rem; /* 50px */
  top: 50%;
  transform: translateY(-50%);
  width: 0.813rem; /* 13px */
  height: 22.25rem; /* 356px */
  background-color: #494d5a66;
  border-radius: 2.875rem; /* 46px */
  overflow: hidden;
}

.vertical-progress-bar .progress-indicator {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 25%;
  background-color: #d9e6f5cc;
  border-radius: 2.875rem; /* 46px */
  transition: height 0.7s ease-in-out;
}

.slide-content-header {
  margin-bottom: 6.375rem; /* 102px */
}

.project-mobile-img {
  display: none;
}

.slide-image {
  display: block;
  max-width: 45.625rem; /* 730px */
  border-radius: 1rem; /* 16px */
}

.project-title {
  font-size: 3rem; /* 48px */
  font-weight: 700;
  margin-bottom: 1rem;
  color: #d9e6f5;
}

.project-description {
  font-size: 1.25rem; /* 20px */
  font-weight: 300;
  color: #d9e6f5;
}

.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  background-color: #fefefe29;
  max-width: 28.75rem; /* 460px */
  border-radius: 1.688rem; /* 27px */
  padding: 1.5rem 1.25rem 2.125rem; /* 24px 20px 34px */
  margin: 0 auto 4.938rem; /* 79px */
}

.tech-el {
  text-align: center;
  flex: 1 1 calc(33.33% - 6px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tech-img {
  max-height: 5.313rem; /* 85px */
}

.tech-title {
  font-family: "Kadwa", sans-serif;
  font-size: 0.875rem; /* 14px */
  font-weight: 700;
  color: #464d63;
  margin-top: auto;
}

/* WORK-STEPS */

.work-steps {
  background-color: #494d5a;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.work-steps-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.work-steps-left {
  flex: 1;
  text-align: center;
  align-self: flex-start;
  position: relative;
  height: 100%;
}

.work-steps-title h2 {
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: #fff;
  margin-bottom: 2.563rem; /* 41px */
}

.work-steps-title {
  position: sticky;
  top: 20%;
  transition: transform 0.4s ease;
}

.work-steps-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.625rem; /* 26px */
}

.step {
  color: #696b79;
  font-size: 2.5rem; /* 40px */
}

.active-step {
  background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

/* CONTACT */

.contact {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/static/images/фон градиент.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(1.25rem); /* 20px */
  z-index: 0;
}

.contact-title {
  font-size: 7.5rem; /* 120px */
  color: #f2f0f0;
  margin-bottom: 5.375rem; /* 86px */
  text-align: center;
  font-weight: 400;
}

.contact-wrapper {
  padding: 10.375rem 9.438rem 3.375rem 10.688rem; /* 166px 151px 54px 171px */
  width: 78.125rem; /* 1250px */
  height: 55rem; /* 880px */
  background-color: #494d5a;
  z-index: 4;
}

.contact-form {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.contact-form input[type="text"],
.contact-form input[type="email"] {
  color: #fff;
  width: 100%;
  padding: 0.625rem; /* 10px */
  border: none;
  border-bottom: 1px solid #fff;
  font-size: 1.125rem; /* 18px */
  background-color: transparent;
  outline: none;
}

.contact-form input[type="text"] {
  margin-bottom: 0.938rem; /* 15px */
  padding-bottom: 0.938rem; /* 15px */
}

.contact-form input[type="email"] {
  margin-bottom: 2.375rem; /* 38px */
  padding-bottom: 0.75rem; /* 12px */
}

.contact-form input[type="text"]::placeholder,
.contact-form input[type="email"]::placeholder {
  color: #fff;
  font-size: 1.5rem; /* 24px */
  font-weight: 200;
}

.checkbox-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 4.063rem; /* 65px */
  width: 100%;
}

.checkbox-container input {
  margin-right: 0.625rem; /* 10px */
  appearance: none;
  -webkit-appearance: none;
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
  border: 1px solid #f2f0f0;
  background-color: transparent;
  cursor: pointer;
  position: relative;
}

.checkbox-container input[type="checkbox"]:checked::before {
  content: "";
  display: block;
  width: 0.5rem; /* 8px */
  height: 0.5rem; /* 8px */
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 0.125rem; /* 2px */
}

.checkbox-container label {
  font-size: 1.25rem; /* 20px */
  color: #fff;
  font-weight: 300;
}

.contact-form form .submit-button {
  margin-left: auto;
  background: linear-gradient(90deg, #f1ad2a 0%, #ba7ee0 100%);
}

.contact-form form {
  display: flex;
  flex-direction: column;
  width: 36.875rem; /* 590px */
}

.contact-info {
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 6.563rem; /* 105px */
  color: white;
}

.contact-info div {
  transition: all 0.5s ease;
}

.contact-info div:hover {
  transform: scale(1.2);
}

.contact-info div a {
  display: flex;
  align-items: center;
  gap: 0.625rem; /* 10px */
  font-size: 1.125rem; /* 18px */
}

/* FOOTER */

footer {
  height: 25vh;
}

.footer-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
  gap: 0.875rem; /* 14px */
}

/* ANIMATIONS */

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes fadeInCheck {
  from {
    opacity: 0;
    transform: scale(0.7);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1.5s forwards;
}

.fade-out {
  animation: fadeOut 1.5s forwards;
}

@media (max-width: 1920px) {
  .slide-navbar-wrapper {
    top: 3.1%;
  }
}

@media (max-width: 1450px) {
  .slide-navbar-wrapper {
    top: 2.7%;
  }

  .slide-content-right {
    padding: 8.5rem 5.313rem 6rem;
  }

  .team-role7 {
    padding: 2rem 2.688rem;
  }

  .block-img {
    top: 1rem;
  }

  .project-manager-overview img {
    height: 20.25rem;
  }

  .project-description {
    font-size: 1.25rem;
  }

  .slide-content-header {
    margin-bottom: 1.375rem;
  }

  .project-title {
    font-size: 2rem;
  }

  .contact-wrapper {
    padding: 7.375rem 9.438rem 3.375rem 10.688rem;
    height: 52rem;
  }
}

@media (max-width: 1366px) {
  .direction {
    padding-left: 6.25rem; /* 100px */
  }

  .role {
    font-size: 1.25rem; /* 20px */
  }

  .team-role-overview {
    padding: 1.875rem; /* 30px */
  }

  .team-role-overview p {
    margin-top: 1.875rem; /* 30px */
  }

  .role-overview-grid img {
    height: 7.5rem; /* 120px */
  }

  .project-manager-overview img {
    width: 100%;
    height: 25rem; /* 400px */
  }

  .role7-wrapper {
    margin-top: 1.875rem; /* 30px */
  }

  .project-title {
    font-size: 2.375rem; /* 38px */
  }

  .demo-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide-content-right {
    padding: 5.5rem 5.313rem 6rem;
  }

  .slide-image {
    max-width: 39.563rem; /* 633px */
  }

  .tech-stack {
    margin-bottom: 1.875rem; /* 30px */
  }

  .work-steps-right {
    text-align: center;
  }

  .about-header-right h1 {
    font-size: 1.25rem; /* 20px */
  }

  .tag {
    width: 9.375rem; /* 150px */
    font-size: 1rem; /* 16px */
  }

  .tag span {
    font-size: 1rem;
  }

  .team-role-overview p {
    margin-top: 0.875rem;
  }

  .role-overview-grid img {
    height: 5.5rem;
  }

  .project-manager-overview img {
    width: 100%;
    height: 18rem;
  }

  .role img {
    width: 70%;
  }

  .block-img {
    top: 1.6rem;
  }

  .project-manager-bg img {
    width: 33%;
  }

  .contact-wrapper {
    padding: 4.375rem 9.438rem 3.375rem 10.688rem;
    height: 43rem;
  }

  .contact-info {
    margin-top: 2.563rem;
  }

  .about-header {
    margin-bottom: 7.875rem;
  }

  .about-content {
    margin-top: 0;
  }

  .keyboard__keyaboards img {
    width: 75px;
  }

  .step {
    font-size: 2.3rem;
  }
}

@media (max-width: 1280px) {
  .slide-navbar-wrapper {
    top: 2%;
  }

  .about-header {
    margin-bottom: 5.875rem;
    padding-right: 30px;
  }

  .role img {
    width: 60%;
  }

  .role h2 {
    font-size: 1.7rem;
  }

  .project-manager-bg img {
    width: 29%;
  }

  .role-overview-grid img {
    height: 4.5rem;
  }

  .project-manager-overview img {
    width: 100%;
    height: 18rem;
  }

  .direction {
    padding-left: 6.25rem; /* 100px */
  }

  .slide-content-header {
    margin-bottom: 1rem;
  }

  .block-img {
    left: 2.2rem;
    top: 3.5rem;
  }

  .contact-wrapper {
    width: 68.75rem; /* 1100px */
    height: 40rem;
    padding: 1.375rem 9.438rem 3.375rem 10.688rem;
  }

  .contact-title {
    font-size: 5.5rem;
    margin-bottom: 4.375rem;
  }

  .about-header-left svg {
    top: -7.25rem;
    left: 4.6875rem;
  }

  .about-header-right h1 {
    font-size: 1.5rem;
  }

  .about-header {
    margin-bottom: 4.875rem;
  }

  .tag span {
    font-size: 1rem;
  }

  .team-role-overview p {
    margin-top: 0.875rem;
  }

  .role-overview-grid {
    margin-top: 0.875rem;
  }

  .slide-content-right {
    padding-top: 6.75rem;
  }

  .project-title {
    font-size: 2.2rem;
  }

  .footer-content img {
    width: 3.938rem;
    height: auto;
  }

  .footer .keyboard__text {
    font-size: 2rem;
  }

  .checkbox-container label {
    font-size: 1rem;
  }

  .contact-form input[type="text"],
  .contact-form input[type="email"] {
    font-size: 1rem;
  }

  .contact-wrapper {
    padding: 3.375rem 9.438rem 2.375rem 10.688rem;
  }

  .vertical-progress-bar {
    right: 1.125rem;
  }
}

@media (max-width: 1200px) {
  .direction {
    padding-left: 3.125rem; /* 50px */
  }

  .role h2 {
    font-size: 1.625rem; /* 26px */
  }

  .slide-content-right {
    padding: 7.75rem 3.875rem 3.875rem;
  }

  .slide-title {
    font-size: 2.5rem; /* 40px */
  }

  .project-title {
    font-size: 1.875rem; /* 30px */
  }

  .project-description {
    font-size: 0.9375rem; /* 15px */
  }

  .vertical-progress-bar {
    right: 0.5rem; /* 8px */
    top: 50%;
  }
}

@media (max-width: 1150px) {
  .slide-image {
    max-width: 31.25rem; /* 500px */
  }

  .contact-wrapper {
    max-width: 50rem; /* 800px */
    max-height: 50rem; /* 800px */
    padding: 1.875rem 2.5rem; /* 30px 40px */
  }

  .contact-title {
    font-size: 5rem; /* 80px */
  }

  .contact-info div span {
    display: none;
  }

  .block-img {
    top: 3.5rem;
  }

  .tag {
    width: 7.375rem;
    display: flex;
    text-align: center;
    justify-content: center;
  }
}

@media (max-width: 1080px) {
  .role h2 {
    font-size: 1.25rem; /* 20px */
  }

  .block-img {
    left: 1.938rem;
    top: 4.4rem;
    width: 11.875rem;
  }

  .tech-stack {
    margin-bottom: 3.75rem; /* 60px */
  }

  .work-steps-container {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 9.375rem 0; /* 150px 0 */
  }

  .work-steps-left {
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .about-header-left svg {
    left: 3.125rem; /* 50px */
  }
}

@media (max-width: 1024px) {
  .slide-content-right {
    padding: 4.75rem 3.875rem 3.875rem;
  }
}

@media (max-width: 868px) {
  .navbar-email {
    display: none;
  }

  .direction {
    padding-left: 0.625rem; /* 10px */
  }

  .team-role-overview {
    padding: 0.938rem; /* 15px */
  }

  .team-role-overview h2 {
    font-size: 1.563rem; /* 25px */
  }

  .role {
    padding-left: 0.938rem; /* 15px */
  }

  .block-img {
    left: 0.438rem;
    top: 5.4rem;
  }

  .role-overview-grid img {
    height: 3.75rem; /* 60px */
  }

  .project-manager-overview img {
    width: 100%;
    height: 25rem; /* 400px */
  }

  .slide-image {
    max-width: 21.875rem; /* 350px */
  }

  .about-header-left svg {
    top: -4.688rem; /* -75px */
  }

  .project-manager-bg img {
    width: 34%;
  }
}

@media (max-width: 768px) {
  .tags-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem; /* 20px */
  }

  .about-content-mobile {
    display: flex;
    margin-bottom: 7.5rem; /* 120px */
  }

  .about-content {
    display: none;
  }

  .tag {
    width: 25rem; /* 400px */
  }

  .protocol {
    background-image: linear-gradient(
      180deg,
      rgba(36, 123, 234, 0.8) 0%,
      rgba(156, 222, 126, 0.8) 100%
    );
  }

  .protocol::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 0.063rem; /* 1px */
    background: linear-gradient(
      180deg,
      rgba(36, 123, 234, 0.8) 0%,
      rgba(156, 222, 126, 0.8) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    box-sizing: border-box;
  }

  .web {
    background-image: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
  }

  .web::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 0.063rem; /* 1px */
    background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    box-sizing: border-box;
  }

  .server {
    border-image-source: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(207, 203, 203, 0.8) 100%
    );
  }

  .server::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 100px;
    padding: 0.063rem; /* 1px */
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.8) 0%,
      rgba(207, 203, 203, 0.8) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
      linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    z-index: -1;
    box-sizing: border-box;
  }

  .direction-name {
    display: none;
  }

  .direction {
    justify-content: center;
  }

  .header-showcase {
    margin-top: 0;
  }

  .about-header-right {
    max-width: 80%;
    margin: 0 auto;
    padding-right: 0;
  }

  .about-header-left img {
    height: 9.375rem; /* 150px */
    width: auto;
    left: 3.438rem; /* 55px */
    top: -6.75rem; /* -108px */
  }

  .tag {
    width: 13.125rem; /* 210px */
  }

  .team-section {
    display: none;
  }

  .team-stats {
    display: none;
  }

  .team-mobile {
    display: block;
    margin-top: 3.75rem; /* 60px */
  }

  .team-mobile article h2 {
    color: #fff;
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    text-align: center;
    margin-bottom: 2.25rem; /* 36px */
  }

  .team-mobile article div {
    text-align: center;
    margin-bottom: 2.813rem; /* 45px */
  }

  .team-mobile article div img {
    max-width: 5.25rem; /* 84px */
    height: 1.25rem; /* 20px */
  }

  .team-mobile-title {
    text-align: center;
    font-weight: 600;
    font-size: 2.188rem; /* 35px */
    margin-bottom: 2.75rem; /* 44px */
    color: #fff;
  }

  .team-mobile-text {
    font-weight: 300;
    font-size: 0.9375rem; /* 15px */
    color: #ffffff;
    max-width: 28.125rem; /* 450px */
    margin: 0 auto;
  }

  .team-stack {
    display: flex;
    flex-direction: column;
    margin: 2.875rem auto 6rem; /* 46px 96px */
    align-items: center;
  }

  .team-item {
    display: flex;
    position: relative;
    align-items: center;
    margin-top: -2.5rem; /* -40px */
    z-index: 1;
    gap: 2.813rem; /* 45px */
    width: 22.313rem; /* 357px */
  }

  .team-item .team-role {
    color: #ffffff;
    font-weight: 300;
    font-size: 1.25rem; /* 20px */
  }

  .team-item:first-child {
    margin-top: 0;
  }

  .team-img {
    position: relative;
    width: 9.375rem; /* 150px */
    height: 9.375rem; /* 150px */
    margin-right: 1.25rem; /* 20px */
    flex-shrink: 0;
    z-index: 1;
  }

  .team-img::after {
    content: "";
    position: absolute;
    width: 9.375rem; /* 150px */
    height: 9.375rem; /* 150px */
    top: -0.5rem; /* -8px */
    left: 0.5rem; /* 8px */
    z-index: 99;
    pointer-events: none;

    background: linear-gradient(90deg, #ffc149 0%, #b23afe 98.1%);
    border-radius: 50%;

    mask: radial-gradient(
      farthest-side,
      transparent calc(100% - 0.25rem),
      /* 4px */ black 100%
    );
  }

  .team-img img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 1;
  }

  .vertical-progress-bar {
    display: none;
  }

  .swiper {
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
  }

  .swiper-wrapper {
    display: flex;
    flex-direction: row;
  }

  .swiper-slide {
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .swiper-pagination {
    display: block;
  }

  .slide-content {
    flex-direction: column;
    text-align: center;
    min-height: 100vh;
    width: 100%;
    padding: 0;
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    position: relative;
    z-index: 1;
    align-items: stretch;
  }

  .tech-stack {
    padding: 0;
    max-width: 30.625rem; /* 490px */
    margin: auto;
    background: none;
    gap: 0.5rem;
    justify-content: space-around;
  }

  .slide-content::before {
    z-index: 0;
  }

  .slide-content-left,
  .slide-content-right {
    width: 100%;
    flex-shrink: 0;
  }

  .slide-image {
    display: none;
  }

  .project-mobile-img {
    display: block;
  }

  .slide-content-left {
    position: relative;
    flex: 1;
    padding: 1.25rem 0; /* 20px 0 */
  }

  .slide-title {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    padding-top: 0.625rem;
    font-size: 2rem;
  }

  .slide-content-left img {
    position: absolute;
    top: calc(50% + 1.25rem); /* 50% + 20px */
    transform: translate(-50%, -50%);
    left: 50%;
    max-width: 16.75rem;
    height: auto;
    border-radius: 0.75rem; /* 12px */
  }

  .slide-content-right {
    background-color: #e1e5f580;
    padding: 1.875rem 0 2.188rem 0; /* 30px 0 35px 0 */
    width: 100%;
    height: 28.75rem; /* 460px */
    margin-top: auto;
  }

  .project-title,
  .project-description {
    display: none;
  }

  .slider-text-mobile {
    max-width: 20.625rem; /* 330px */
    text-align: left;
  }

  .project-mobile-title {
    font-size: 0.9375rem; /* 15px */
    font-weight: 700;
    color: #fff;
  }

  .project-mobile-text {
    font-size: 0.9375rem; /* 15px */
    font-weight: 300;
    color: #fff;
  }

  .tech-img {
    max-width: 3.5rem; /* 56px */
  }

  .slide-content-header {
    margin-bottom: 1.25rem; /* 20px */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slider-text-mobile {
    display: block;
  }

  .tech-title {
    color: #474f62de;
    line-height: 175%;
  }

  .step {
    font-size: 1.875rem; /* 30px */
  }

  .submit-button {
    width: 9.438rem; /* 151px */
    height: 2.5rem; /* 40px */
    padding: 0.75rem 1rem; /* 12px 16px */
  }

  .button-text {
    font-size: 0.813rem; /* 13px */
    font-weight: 400;
  }

  .submit-button.clicked::after {
    font-size: 0.938rem; /* 15px */
  }

  form .submit-button .arrow {
    display: none;
  }

  form .submit-button.clicked .button-text {
    width: 100%;
    padding: 0.438rem 0.313rem; /* 7px 5px */
    background-color: #ffffff;
    color: #c279f1;
    border-radius: 1.875rem; /* 30px */
    transition: all 0.3s ease;
    font-size: 0.75rem; /* 12px */
    text-align: left;
  }

  form .submit-button.clicked::after {
    width: 0.875rem; /* 14px */
    height: 0.625rem; /* 10px */
    right: 0.688rem; /* 11px */
  }

  .navbar {
    padding: 0.938rem; /* 15px */
    font-size: 0.813rem; /* 13px */
  }

  .navbar.fixed {
    width: 90vw;
    left: 5%;
    transform: none;
    border-radius: 0 0 1.25rem 1.25rem; /* 0 0 20px 20px */
    padding: 0.625rem 1.25rem; /* 10px 20px */
  }

  .navbar.hidden {
    opacity: 0;
    pointer-events: none;
  }

  .slide-navbar {
    display: none !important;
  }

  .slide-navbar-wrapper {
    display: none;
  }

  .slide-navbar.active {
    opacity: 1;
    pointer-events: auto;
  }

  .navbar .menu-toggle,
  .slide-navbar .menu-toggle {
    display: block;
  }

  .nav-links,
  .slide-navbar .nav-links {
    display: none;
  }

  .slide-navbar .menu-toggle {
    background: none;
  }

  .header-showcase {
    height: 100%;
  }

  .about {
    margin-bottom: 2.5rem; /* 40px */
  }

  .about-header {
    width: 100%;
    height: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 0;
  }

  .about-header-right h1 {
    display: inline-block;
    color: white;
    font-size: 0.875rem; /* 14px */
    font-weight: 400;
    line-height: 1.25rem; /* 20px */
  }

  .about-content-mobile {
    margin-bottom: 0;
  }

  .contact {
    height: 59vh;
    background: #a0c2e1;
  }

  .contact-title {
    font-size: 2.188rem; /* 35px */
    margin-bottom: 1.875rem; /* 30px */
  }

  .contact-wrapper {
    max-width: 27.688rem; /* 443px */
    max-height: 29.313rem; /* 469px */
    padding: 1.875rem 2.5rem; /* 30px 40px */
  }

  .contact-form {
    width: 100%;
  }

  .contact-form form {
    max-width: 21.5rem; /* 344px */
  }

  .checkbox-container label {
    font-size: 0.75rem; /* 12px */
  }

  .contact-info {
    margin-top: 2.375rem; /* 38px */
  }

  .demo-btn {
    background: linear-gradient(90deg, #f1ad2a 0%, #ba7ee0 100%);
    padding: 0.625rem 1.25rem 0.625rem 1.25rem; /* 10px 20px 10px 20px */
    margin: auto 0 0 0;
  }

  .checkbox-container input {
    width: 0.563rem; /* 9px */
    height: 0.563rem; /* 9px */
  }

  .footer-content img {
    width: 4.938rem; /* 79px */
    height: auto;
  }

  .contact-form input[type="text"]::placeholder,
  .contact-form input[type="email"]::placeholder {
    font-size: 0.813rem; /* 13px */
  }

  .function-menu {
    visibility: visible;
    opacity: 1;
    transition: visibility 0.3s, opacity 0.3s;
  }

  .function-menu.hidden {
    visibility: hidden;
    opacity: 0;
  }

  .demo-btn {
    width: 10.938rem !important; /* 175px */
    height: 2.5rem !important; /* 40px */
  }
}

@media (max-width: 590px) {
  .about-header-left img {
    height: 8.125rem; /* 130px */
    left: 1.25rem; /* 20px */
    top: -3.25rem; /* -52px */
  }

  .about-header-left svg {
    top: -3.125rem; /* -50px */
  }

  .contact-wrapper {
    max-height: 27.313rem;
  }
}

@media (max-width: 480px) {
  .navbar {
    max-width: 30rem; /* 480px */
    font-size: 0.813rem; /* 13px */
  }

  .about-header {
    height: 8.563rem; /* 137px */
  }

  .about-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .about-header-left svg {
    top: -1.25rem; /* -20px */
    left: 1.875rem; /* 30px */
  }

  .team-mobile-text {
    padding-left: 1.875rem; /* 30px */
    padding-right: 0.5rem; /* 8px */
    font-size: 0.875rem; /* 14px */
  }

  .tag {
    width: 9.375rem; /* 150px */
  }

  .tag:nth-child(1),
  .tag:nth-child(3),
  .tag:nth-child(5),
  .tag:nth-child(7),
  .tag:nth-child(9),
  .tag:nth-child(11) {
    margin-right: 0.313rem; /* 5px */
  }

  .tag:nth-child(2),
  .tag:nth-child(4),
  .tag:nth-child(6),
  .tag:nth-child(8),
  .tag:nth-child(10),
  .tag:nth-child(12) {
    margin-left: 0.313rem; /* 5px */
  }

  .tag span {
    font-size: 0.875rem; /* 14px */
  }

  .team-stack {
    padding: 0.625rem 0.938rem 0.625rem 2.5rem; /* 10px 15px 10px 40px */
  }

  .team-item .team-role {
    font-size: 0.9375rem; /* 15px */
    padding-left: 0.5rem; /* 8px */
  }

  .showcase-content img {
    width: 4.688rem; /* 75px */
    height: auto;
  }

  .slide-content-left {
    gap: 0;
    padding-bottom: 0;
  }

  .tech-stack > div {
    flex: 1 1 calc(33.33% - 1rem);
    max-width: calc(33.33% - 1rem);
    text-align: center;
    box-sizing: border-box;
  }

  .slide-title {
    font-size: 2rem; /* 32px */
  }

  .slide-content-header {
    margin-bottom: 0.938rem; /* 15px */
  }

  .project-title {
    margin-bottom: 0.625rem; /* 10px */
  }

  .project-description {
    font-size: 0.9375rem; /* 15px */
  }

  .work-steps-title h2 {
    font-size: 1.5rem; /* 24px */
    font-weight: 600;
    margin-bottom: 3.313rem; /* 53px */
  }

  .work-steps {
    height: 43.625rem; /* 698px */
  }

  .work-steps-container {
    padding: 4.25rem 1rem 7.438rem; /* 68px 16px 119px */
  }

  .work-steps-left {
    flex: 0;
  }

  .work-steps-right {
    gap: 1.625rem; /* 26px */
  }

  .step {
    font-size: 1.5rem; /* 24px */
    font-weight: 400;
  }

  .logo {
    font-size: 1.125rem; /* 18px */
  }

  .nav-links {
    gap: 0.625rem; /* 10px */
  }

  .header-showcase {
    margin-top: 1.25rem; /* 20px */
  }

  .footer-content img {
    width: 80%;
  }

  .contact-wrapper {
    max-width: 21.438rem; /* 343px */
  }

  .checkbox-container label {
    font-size: 0.688rem; /* 11px */
  }

  .contact-form {
    text-align: start;
  }

  .submit-button.clicked::after {
    right: 1rem; /* 16px */
    top: 0.688rem; /* 11px */
  }

  .contact-form form {
    width: 16.875rem; /* 270px */
  }

  .checkbox-container input {
    width: 10.32px; /* оставлено в px */
    height: 9px; /* оставлено в px */
  }

  .footer-content img {
    width: 13.75rem; /* 220px */
    height: auto;
  }

  .slide-navbar.open {
    width: 90%;
  }

  form .submit-button.clicked::after {
    top: 0.938rem; /* 15px */
  }

  #hamburger {
    width: 1.5rem; /* 24px */
  }

  #cross {
    width: 1.5rem; /* 24px */
  }

  .footer-content {
    gap: 0.625rem; /* 10px */
  }

  .footer-content img {
    width: 3.625rem; /* 58px */
    height: auto;
  }

  .footer .keyboard__text {
    font-size: 1.5rem; /* 24px */
    margin-top: 0;
  }
}

@media (max-width: 391px) {
  .fullscreen-nav.active {
    width: 100vw;
  }

  .footer-content img {
    width: 11.313rem; /* 181px */
    height: auto;
  }

  .about-header-left img {
    width: 5.313rem; /* 85px */
    height: 6.063rem; /* 97px */
    top: -1.25rem; /* -20px */
    left: 1.5rem; /* 24px */
  }

  .contact-form form {
    width: 15.563rem; /* 249px */
  }

  .contact-wrapper {
    max-height: 25.625rem;
    padding-bottom: 1.5rem;
  }

  .submit-button {
    position: relative;
    top: -2.625rem; /* -42px */
  }

  .contact-info {
    margin-top: -0.438rem;
  }

  .checkbox-container input {
    width: 11.06px; /* оставлено в px */
    height: 9px; /* оставлено в px */
  }

  .slide-navbar.open {
    padding: 0.938rem 1.875rem 0.938rem 3.313rem; /* 15px 30px 15px 53px */
  }

  .menu-toggle {
    padding: 1.063rem 1rem; /* 17px 16px */
  }

  form .submit-button.clicked::after {
    top: 0.938rem; /* 15px */
  }

  form .submit-button {
    bottom: 2.375rem; /* 38px */
  }

  .contact-info div:nth-of-type(3) {
    position: relative;
    top: -0.188rem; /* -3px */
  }

  .contact-info div a img {
    max-width: 1.25rem; /* 20px */
  }

  .contact-info {
    justify-content: center;
    gap: 2.938rem; /* 47px */
  }

  .about {
    height: 40.625vh; /* 65vh */
  }

  .slide-content-right .content-wrapper {
    gap: 0;
  }

  .about-header-left {
    flex: 0.9;
  }

  .tech-title {
    font-size: 0.75rem; /* 12px */
    font-weight: 400;
    font-family: "Unbounded", serif;
  }

  .showcase-content img {
    width: 4.063rem; /* 65px */
  }

  .showcase-content .keyboard__text {
    font-size: 1.75rem; /* 28px */
  }

  .footer-content img {
    width: 3rem; /* 48px */
    height: auto;
  }

  .showcase-content .keyboard__text {
    font-size: 2.125rem; /* 34px */
  }
}

@media (max-height: 800px) {
  .slide-navbar-wrapper {
    top: 1.6%;
  }
}

@media (max-height: 720px) {
  .slide-navbar-wrapper {
    top: 1.2%;
  }

  .block-img {
    top: 2.3rem;
  }

  .slide-content-right {
    padding: 2.75rem 44px 3.875rem 3.875rem;
  }
}

@media (max-width: 376px) {
  .slide-content-right {
    padding: 2.75rem 30px 1.875rem 1.875rem;
  }

  .slide-title {
    padding-top: 0.5rem;
    font-size: 1.8rem;
  }

  .slide-content-left img {
    max-width: 13.75rem;
  }

  .contact-wrapper {
    max-height: 23.625rem;
  }

  .contact-info {
    margin-top: -1.438rem;
  }
}

@media (max-width: 321px) {
  .showcase-content img {
    width: 3.063rem;
  }

  .about-header-right h1 {
    font-size: 0.77rem;
  }
}

@media (min-width: 2560px) {
  .keyboard__keyaboards img {
    width: 130px;
  }

  .role h2 {
    font-size: 3rem;
  }

  .block-img {
    left: 2rem;
    top: 2rem;
    width: 50%;
  }

  .project-manager-bg img {
    width: 27%;
  }
}
