@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Smooch+Sans:wght@100..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

.slotter {
  background-color: black;
}

html {
  scroll-behavior: smooth;
}

:root {
  --main-color: black;
  --text-color: #f1f6f8;
  --hover-color: #b9d4f1;
  --other-color: #3e4357;
  --header-font: "Titillium Web", serif;
  --others-font: "Poppins", serif;
}

@keyframes typing {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* The typewriter cursor effect */
@keyframes blink-caret {
  from,
  to {
    border-color: transparent;
  }
  50% {
    border-color: var(--main-color);
  }
}

@keyframes shine {
  0% {
    background-position: 0px;
  }
  60% {
    background-position: 228px;
  }
  100% {
    background-position: 228px;
  }
}

/* Header */

.hamburger {
  display: none;
}

.menu-items {
  display: none;
}

header {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--text-color);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 2;
  border-radius: 0 0 30px 30px;
}

header h1 {
  color: var(--main-color);
  font-family: var(--header-font);
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: 0.15em solid var(--other-color); /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  animation: typing 1.75s steps(40, end), blink-caret 0.75s step-end infinite;
}

.header-whole {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.header-pages {
  display: flex;
  gap: 1rem;
}

.header-pages a {
  color: var(--main-color);
  text-decoration: none;
  font-family: var(--header-font);
  font-weight: 700;
  font-size: 1rem;
  position: relative;
  padding: 15px;
  transition: all ease-in-out 0.3s;
  border-radius: 30px;
}

.header-pages a:hover {
  color: var(--text-color);
  background-color: var(--main-color);
}

.header-logo {
  display: flex;
  gap: 1rem;
}

.header-logo a i {
  color: var(--main-color);
  font-size: 25px;
  transition: all ease-in-out 0.3s;
  padding: 15px;
  border-radius: 30px;
}

.header-logo button {
  border: none;
  outline: none;
  width: 6rem;
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: var(--main-color);
  border-radius: 30px;
  cursor: pointer;
}

.header-logo button i {
  color: var(--text-color);
  font-size: 25px;
  transition: all ease-in-out 0.3s;
  padding: 15px;
  border-radius: 30px;
}

.header-logo a i:hover {
  color: var(--text-color);
  background-color: var(--main-color);
}

/* Hero Section */

.hero-section {
  padding: 213px 0px 120px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 11rem;
}

.hero-section-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
}

.hero-description {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  width: fit-content;
  gap: 1rem;
}

.hero-start {
  color: var(--text-color);
  font-size: 30px;
  font-family: var(--others-font);
  font-weight: 700;
  background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
  background-position: 0;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 2s infinite linear;
  animation-fill-mode: forwards;
  -webkit-text-size-adjust: none;
  text-decoration: none;
  text-wrap: nowrap;
}

.hero-mid {
  color: var(--other-color);
  font-size: 25px;
  font-family: var(--others-font);
  font-weight: 500;
}

.hero-end a {
  color: var(--other-color);
  text-decoration: none;
  font-size: 23px;
  font-family: var(--others-font);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  text-align: justify;
  margin-left: 1px;
  transition: all ease-in-out 300ms;
}

.hero-end a:hover > i {
  color: var(--text-color);
  transform: translateX(50%);
}

.hero-end a:hover {
  color: var(--text-color);
}

.hero-end a i {
  font-size: 30px;
  margin-top: 5px;
  color: var(--other-color);
  transition: all ease-in-out 300ms;
}

.my-card-content {
  width: 100%;
}

.my-card-content img {
  height: 450px;
  border: 1px solid var(--text-color);
  border-radius: 5px;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}

/* Swiper 1 */

.stack-area {
  height: 300vh;
  position: relative;
  background: white;
  display: flex;
  border-radius: 30px;
  margin-top: 15px;
  transition: all ease-in-out 300ms;
}

.left {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
  left: 0;
}

.right {
  height: 100vh;
  flex-basis: 50%;
  position: sticky;
  top: 0;
}

.left {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  align-items: center;
  flex-direction: column;
}

.title {
  width: 420px;
  font-size: 84px;
  font-family: poppins;
  font-weight: 700;
  line-height: 88px;
}

.sub-title {
  width: 420px;
  font-family: poppins;
  font-size: 14px;
  margin-top: 30px;
}

.sub-title button {
  font-family: poppins;
  font-size: 14px;
  padding: 15px 30px;
  background: black;
  color: white;
  border-radius: 8mm;
  border: none;
  outline: none;
  cursor: pointer;
  margin-top: 20px;
  transition: all ease-in-out 200ms;
}

.sub-title button:hover {
  background: var(--text-color);
  color: var(--main-color);
}

.stack-area:has(.sub-title button:hover).stack-area {
  background: var(--main-color);
  transition: all ease-in-out 200ms;
}

.stack-area:has(.sub-title button:hover) .card {
  background: var(--text-color);
}

.stack-area:has(.sub-title button:hover) .sub {
  color: var(--main-color);
}

.stack-area:has(.sub-title button:hover) .title {
  color: var(--text-color);
}

.stack-area:has(.sub-title button:hover) .sub-title {
  color: var(--text-color);
}

.card {
  width: 350px;
  height: 350px;
  border-radius: 25px;
  margin-bottom: 10px;
  position: absolute;
  top: calc(50% - 175px);
  left: calc(50% - 175px);
  transition: 0.5s ease-in-out;
}

.card:nth-child(1) {
  background: var(--main-color);
  color: var(--text-color);
}

.card:nth-child(2) {
  background: var(--main-color);
  color: var(--text-color);
}

.card:nth-child(3) {
  background: var(--main-color);
  color: var(--text-color);
}

.card:nth-child(4) {
  background: var(--main-color);
  color: var(--text-color);
}

.card {
  box-sizing: border-box;
  padding: 35px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.sub {
  font-family: poppins;
  font-size: 20px;
  font-weight: 700;
}

.content {
  font-family: poppins;
  font-size: 44px;
  font-weight: 700;
  line-height: 54px;
}

.content p {
  color: var(--other-color);
}

.away {
  transform-origin: bottom left;
}

footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  padding: 50px 100px;
  gap: 2rem;
}

footer span {
  font-size: 30px;
  font-weight: 700;
  font-family: poppins;
  color: var(--text-color);
}

.footer-down {
  display: flex;
  flex-direction: row;
  gap: 3rem;
}

.footer-down div {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-left: 10px;
}

.footer-down div ul {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  list-style: none;
  margin-left: 10px;
}

.footer-down div .main-gap {
  display: flex;
  flex-flow: column;
  gap: 1.2rem;
}

.footer-down div ul li {
  color: var(--other-color);
  font-family: poppins;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: start;
  gap: 6px;
  cursor: pointer;
  transition: all ease-in-out 300ms;
}

.footer-down div ul li:hover {
  color: var(--text-color);
}

.footer-down div ul li a {
  color: var(--other-color);
  font-family: poppins;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: all ease-in-out 300ms;
}

.footer-down div ul li a:hover {
  color: var(--text-color);
}

.footer-down div ul li i {
  color: var(--hover-color);
  font-size: 20px;
}

.mar1 {
  margin-bottom: 2px;
}

.mar2 {
  margin-bottom: 0.5px;
}

.mar3 {
  margin-bottom: 0.5px;
}

.footer-down div ul li span {
  font-size: 1rem;
  font-family: poppins;
}

.footer-end {
  margin-left: 10px;
}

.footer-end span {
  font-size: 12px;
  font-weight: 200;
  font-style: normal;
}

/* Laptop */

@media screen and (max-width: 1280px) {
  header {
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1.5rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-pages {
    display: flex;
    gap: 3rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 14px;
    padding: 7px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 20px;
    transition: all ease-in-out 0.3s;
    padding: 7px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: 5rem;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 25px;
    transition: all ease-in-out 0.3s;
    padding: 10px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 153px 0px 60px 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 30px;
    margin-top: 5px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 450px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 300vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 15px;
    transition: all ease-in-out 300ms;
  }
  
  .left {
    height: 100vh;
    flex-basis: 60%;
    position: sticky;
    top: 0;
    left: 0;
  }
  
  .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0;
  }
  
  .left {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
  }
  
  .title {
    width: 420px;
    font-size: 60px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 420px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 15px 30px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 300px;
    height: 300px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 175px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 20px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 38px;
    font-weight: 700;
    line-height: 54px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

}

@media screen and (max-width: 1024px) {
  header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-pages {
    display: flex;
    gap: 3rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 12px;
    padding: 4px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 16px;
    transition: all ease-in-out 0.3s;
    padding: 4px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: 5rem;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 25px;
    transition: all ease-in-out 0.3s;
    padding: 6px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 133px 0px 65px 0px;
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 30px;
    margin-top: 5px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 450px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 300vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 40px;
    transition: all ease-in-out 300ms;
  }
  
  .left {
    height: 100vh;
    flex-basis: 60%;
    position: sticky;
    top: 0;
    left: 0;
  }
  
  .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 40px;
  }
  
  .left {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
  }
  
  .title {
    width: 360px;
    font-size: 40px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 360px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 15px 30px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 280px;
    height: 280px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(50% - 175px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 20px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 33px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 50px 100px;
    gap: 2rem;
    margin-top: 120px;
  }
  
  footer span {
    font-size: 25px;
    font-weight: 700;
    font-family: poppins;
    color: var(--text-color);

  }
  
  .footer-down {
    display: flex;
    flex-direction: row;
    gap: 3rem;
  }
  
  .footer-down div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 10px;
  }
  
  .footer-down div ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    margin-left: 10px;
  }
  
  .footer-down div .main-gap {
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
  }
  
  .footer-down div ul li {
    color: var(--other-color);
    font-family: poppins;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 6px;
    cursor: pointer;
  }
  
  .footer-down div ul li i {
    color: var(--hover-color);
    font-size: 20px;
  }
  
  .mar1 {
    margin-bottom: 2px;
  }
  
  .mar2 {
    margin-bottom: 0.5px;
  }
  
  .mar3 {
    margin-bottom: 0.5px;
  }
  
  .footer-down div ul li span {
    font-size: 1rem;
    font-family: poppins;
  }
  
  .footer-end {
    margin-left: 10px;
  }
  
  .footer-end span {
    font-size: 18px;
    font-weight: 200;
    font-style: normal;
  }

}

/* Tablet */

@media screen and (max-width: 800px) {

}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  
  .header-pages {
    display: flex;
    gap: 1.5rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 12px;
    padding: 4px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 16px;
    transition: all ease-in-out 0.3s;
    padding: 4px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: 3rem;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 1rem;
    transition: all ease-in-out 0.3s;
    padding: 6px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 133px 0px 65px 0px;
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 30px;
    margin-top: 5px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 450px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 500vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 40px;
    transition: all ease-in-out 300ms;
    flex-flow: column-reverse;
  }
  
  .left {
    height: 100vh;
    flex-basis: 60%;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 700px;
  }
  
  .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0px;
    margin-left: 15%;
  }
  
  .title {
    width: 360px;
    font-size: 40px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 360px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 15px 30px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 280px;
    height: 280px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(27% - 175px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 20px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 33px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 30px 60px;
    gap: 2rem;
    margin-top: 120px;
  }
  
  footer span {
    font-size: 1rem;
    font-weight: 700;
    font-family: poppins;
    color: var(--text-color);

  }
  
  .footer-down {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  
  .footer-down div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 10px;
  }
  
  .footer-down div ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    margin-left: 10px;
  }
  
  .footer-down div .main-gap {
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
  }
  
  .footer-down div ul li {
    color: var(--other-color);
    font-family: poppins;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 6px;
    cursor: pointer;
  }
  
  .footer-down div ul li i {
    color: var(--hover-color);
    font-size: 1rem;
  }
  
  .mar1 {
    margin-bottom: 2px;
  }
  
  .mar2 {
    margin-bottom: 0.5px;
  }
  
  .mar3 {
    margin-bottom: 0.5px;
  }
  
  .footer-down div ul li span {
    font-size: 0.5rem;
    font-family: poppins;
  }
  
  .footer-end {
    margin-left: 10px;
  }
  
  .footer-end span {
    font-size: 18px;
    font-weight: 200;
    font-style: normal;
  }

}

@media screen and (max-width: 600px) {
  
  header {
    padding: 8px 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .header-pages {
    display: flex;
    gap: 0.5rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 0.7rem;
    padding: 4px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 0.9rem;
    transition: all ease-in-out 0.3s;
    padding: 4px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: fit-content;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 1rem;
    transition: all ease-in-out 0.3s;
    padding: 6px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 133px 0px 65px 0px;
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 30px;
    margin-top: 5px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 450px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 500vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 40px;
    transition: all ease-in-out 300ms;
    flex-flow: column-reverse;
  }
  
  .left {
    height: 100vh;
    flex-basis: 60%;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 700px;
  }
  
  .right {
    height: 100vh;
    flex-basis: 50%;
    position: sticky;
    top: 0px;
    margin-left: 15%;
  }
  
  .title {
    width: 360px;
    font-size: 40px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 360px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 15px 30px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 280px;
    height: 280px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(25% - 175px);
    left: calc(50% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 20px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 33px;
    font-weight: 700;
    line-height: 30px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 20px 40px;
    gap: 2rem;
    margin-top: 120px;
  }
  
  footer span {
    font-size: 0.8rem;
    font-weight: 700;
    font-family: poppins;
    color: var(--text-color);

  }
  
  .footer-down {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  
  .footer-down div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 10px;
  }
  
  .footer-down div ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    margin-left: 10px;
  }
  
  .footer-down div .main-gap {
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
  }
  
  .footer-down div li {
    font-size: 0.7rem;
  }

  .footer-down div ul li {
    color: var(--other-color);
    font-family: poppins;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 3px;
    cursor: pointer;
  }
  
  .footer-down div ul li i {
    color: var(--hover-color);
    font-size: 0.7rem;
  }
  
  .mar1 {
    margin-bottom: 2px;
  }
  
  .mar2 {
    margin-bottom: 0.5px;
  }
  
  .mar3 {
    margin-bottom: 0.5px;
  }
  
  .footer-down div ul li span {
    font-size: 0.5rem;
    font-family: poppins;
  }
  
  .footer-end {
    margin-left: 10px;
  }
  
  .footer-end span {
    font-size: 12px;
    font-weight: 200;
    font-style: normal;
  }

}

/* Phone */

@media screen and (max-width: 480px) {
  
  .hamburger {
    display: flex;
    z-index: 2;
  }

  .hamburger a i {
    font-size: 25px;
    color: var(--main-color);
  }

  .menu-items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    position: fixed;
    gap: 6px;
    top: 0;
    right: -250px;
    height: 40%;
    width: 150px;
    background-color: var(--other-color);
    padding: 0.5rem 1rem 0 0;
    transition: right 0.3s ease-in-out;
    z-index: 1;
    border-radius: 0 0 0 30px;
  }

  .menu-items.active {
    right: 0;
  }

  .menu-items a {
    color: var(--main-color);
    text-decoration: none;
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 12px;
    padding: 7px;
    border-radius: 30px;
  }

  .menu-items .menu-start {
    display: flex;
    justify-content: end;
    gap: 1rem;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
  }

  .menu-items .menu-start button {
    border: none;
    outline: none;
    background-color: var(--main-color);
    color: var(--text-color);
    display: flex;
    width: fit-content;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    border-radius: 30px;
  }

  .menu-items .menu-start button i {
    font-size: 15px;
    padding: 6px;
    transition: all ease-in-out 0.3s;
  }

  .menu-items .menu-start span {
    font-size: 26px;
    font-weight:  700;
    font-family: var(--header-font);
  }

  .menu-items p {
    height: 2px;
    width: 90%;
    background-color: var(--main-color);
    border-radius: 2px;
  }

  .menu-items a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }

  .menu-items .goback {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
  }

  .menu-items a i {
    transform: rotateY(180deg);
  }

  .menu-items a:hover > i {
    transform: translateX(-20%) rotateY(180deg);
  }

  header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-pages {
    display: none;
    gap: 3rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 12px;
    padding: 4px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 16px;
    transition: all ease-in-out 0.3s;
    padding: 4px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: 5rem;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 25px;
    transition: all ease-in-out 0.3s;
    padding: 6px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 133px 0px 65px 0px;
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 30px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 20px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 30px;
    margin-top: 5px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 250px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 500vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 15px;
    transition: all ease-in-out 300ms;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }
  
  .left {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
    padding-top: 700px;
  }
  
  .right {
    height: 100vh;
    position: sticky;
    top: 0;
    margin-left: 40%;
  }
  
  .left {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
  }
  
  .title {
    width: 250px;
    font-size: 20px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 250px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 15px 30px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 200px;
    height: 200px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(28% - 175px);
    left: calc(30% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 15px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 23px;
    font-weight: 700;
    line-height: 20px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 10px 20px;
    gap: 1rem;
    margin-top: 120px;
  }
  
  footer span {
    font-size: 12px;
    font-weight: 700;
    font-family: poppins;
    color: var(--text-color);

  }
  
  .footer-down {
    display: flex;
    flex-direction: row;
    gap: 1rem;
  }
  
  .footer-down div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 5px;
  }
  
  .footer-down div ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    margin-left: 5px;
  }

  .footer-down div ul .gmail {
    font-size: 8px;
  }
  
  .footer-down div .main-gap {
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
  }
  
  .footer-down div ul li {
    color: var(--other-color);
    font-family: poppins;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 2px;
    font-size: 10px;
    cursor: pointer;
  }
  
  .footer-down div ul li i {
    color: var(--hover-color);
    font-size: 10px;
  }
  
  .mar1 {
    margin-bottom: 1.4px;
  }
  
  .mar2 {
    margin-bottom: 0.5px;
  }
  
  .mar3 {
    margin-bottom: 1.5px;
  }
  
  .footer-down div ul li span {
    font-size: 1rem;
    font-family: poppins;
  }
  
  .footer-end {
    margin-left: 5px;
  }
  
  .footer-end span {
    font-size: 12px;
    font-weight: 200;
    font-style: normal;
  }
}

@media screen and (min-width:200px) and (max-width: 320px) {

  @keyframes shine {
    0% {
      background-position: 0px;
    }
    60% {
      background-position: 155px;
    }
    100% {
      background-position: 155px;
    }
  }
  
  .hamburger {
    display: flex;
    z-index: 2;
  }

  .hamburger a i {
    font-size: 25px;
    color: var(--main-color);
  }

  .menu-items {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: end;
    position: fixed;
    gap: 8px;
    top: 0;
    right: -250px;
    height: 35%;
    width: 100px;
    background-color: var(--other-color);
    padding: 0.4rem 0.6rem 0 0;
    transition: right 0.3s ease-in-out;
    z-index: 1;
    border-radius: 0 0 0 30px;
  }

  .menu-items.active {
    right: 0;
  }

  .menu-items a {
    color: var(--main-color);
    text-decoration: none;
    font-family: var(--header-font);
    font-weight: 700;
    font-size: 7px;
    padding: 7px;
    border-radius: 30px;
  }

  .menu-items .menu-start {
    display: flex;
    justify-content: end;
    gap: 2rem;
    align-items: center;
    flex-direction: row-reverse;
    width: 100%;
  }

  .menu-items .menu-start button {
    border: none;
    outline: none;
    background-color: var(--main-color);
    color: var(--text-color);
    display: flex;
    width: fit-content;
    justify-content: start;
    align-items: center;
    cursor: pointer;
    border-radius: 30px;
  }

  .menu-items .menu-start button i {
    font-size: 12px;
    padding: 3px;
    transition: all ease-in-out 0.3s;
  }

  .menu-items .menu-start span {
    font-size: 12px;
    font-weight:  700;
    font-family: var(--header-font);
  }

  .menu-items p {
    height: 2px;
    width: 90%;
    background-color: var(--main-color);
    border-radius: 2px;
    border-bottom: 2px solid var(--main-color);
  }

  .menu-items a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }

  .menu-items .goback {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0.3rem;
  }

  .menu-items a i {
    transform: rotateY(180deg);
  }

  .menu-items a:hover > i {
    transform: translateX(-20%) rotateY(180deg);
  }

  

  header {
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--text-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2;
    border-radius: 0 0 30px 30px;
  }
  
  header h1 {
    font-size: 1rem;
  }
  
  .header-whole {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-pages {
    display: none;
    gap: 3rem;
  }
  
  .header-pages a {
    font-weight: 700;
    font-size: 12px;
    padding: 4px;
  }
  
  .header-pages a:hover {
    color: var(--text-color);
    background-color: var(--main-color);
  }
  
  .header-logo {
    display: none;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  
  .header-logo a i {
    color: var(--main-color);
    font-size: 16px;
    transition: all ease-in-out 0.3s;
    padding: 4px;
    border-radius: 30px;
  }
  
  .header-logo button {
    width: 5rem;
  }
  
  .header-logo button i {
    color: var(--text-color);
    font-size: 25px;
    transition: all ease-in-out 0.3s;
    padding: 6px;
    border-radius: 30px;
  }

  /* Hero */
  
  .hero-section {
    padding: 133px 0px 65px 0px;
    display: flex;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
    gap: 5rem;
  }
  
  .hero-section-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40%;
  }
  
  .hero-description {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: fit-content;
    gap: 1rem;
  }
  
  .hero-start {
    color: var(--text-color);
    font-size: 20px;
    font-family: var(--others-font);
    font-weight: 700;
    background: linear-gradient(to right, #4d4d4d 0, #fff 10%, #4d4d4d 20%);
    background-position: 0;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 2s infinite linear;
    animation-fill-mode: forwards;
    -webkit-text-size-adjust: none;
    text-decoration: none;
    text-wrap: nowrap;
  }
  
  .hero-mid {
    color: var(--other-color);
    font-size: 15px;
    font-family: var(--others-font);
    font-weight: 500;
    text-align: left;
  }
  
  .hero-end a {
    color: var(--other-color);
    text-decoration: none;
    font-size: 15px;
    font-family: var(--others-font);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1px;
    text-align: justify;
    margin-left: 1px;
    transition: all ease-in-out 300ms;
  }
  
  .hero-end a:hover > i {
    color: var(--text-color);
    transform: translateX(50%);
  }
  
  .hero-end a:hover {
    color: var(--text-color);
  }
  
  .hero-end a i {
    font-size: 25px;
    margin-top: 0px;
    color: var(--other-color);
    transition: all ease-in-out 300ms;
  }
  
  .my-card-content {
    width: 100%;
  }
  
  .my-card-content img {
    height: 150px;
    border: 1px solid var(--text-color);
    border-radius: 5px;
    object-fit: cover;
    aspect-ratio: 1 / 1;
  }

  /* Cards */

  .stack-area {
    height: 500vh;
    position: relative;
    background: white;
    display: flex;
    border-radius: 30px;
    margin-top: 15px;
    transition: all ease-in-out 300ms;
    flex-flow: column-reverse;
    justify-content: center;
    align-items: center;
  }
  
  .left {
    height: 100vh;
    position: sticky;
    top: 0;
    left: 0;
  }
  
  .right {
    height: 100vh;
    position: sticky;
    top: 0;
    margin-left: 70%;
  }
  
  .left {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    align-items: center;
    flex-direction: column;
  }
  
  .title {
    width: 150px;
    font-size: 20px;
    font-family: poppins;
    font-weight: 700;
    line-height: 88px;
  }
  
  .sub-title {
    width: 150px;
    font-family: poppins;
    font-size: 14px;
    margin-top: 0px;
  }
  
  .sub-title button {
    font-family: poppins;
    font-size: 14px;
    padding: 5px 15px;
    background: black;
    color: white;
    border-radius: 8mm;
    border: none;
    outline: none;
    cursor: pointer;
    margin-top: 20px;
    transition: all ease-in-out 200ms;
  }
  
  .card {
    width: 150px;
    height: 150px;
    border-radius: 25px;
    margin-bottom: 10px;
    position: absolute;
    top: calc(30% - 175px);
    left: calc(30% - 175px);
    transition: 0.5s ease-in-out;
  }
  
  .card:nth-child(1) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(2) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(3) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card:nth-child(4) {
    background: var(--main-color);
    color: var(--text-color);
  }
  
  .card {
    box-sizing: border-box;
    padding: 35px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  
  .sub {
    font-family: poppins;
    font-size: 15px;
    font-weight: 700;
  }
  
  .content {
    font-family: poppins;
    font-size: 23px;
    font-weight: 700;
    line-height: 20px;
  }
  
  .content p {
    color: var(--other-color);
  }
  
  .away {
    transform-origin: bottom left;
  }

  footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: start;
    padding: 5px 10px;
    gap: 1rem;
    margin-top: 120px;
  }
  
  footer span {
    font-size: 8px;
    font-weight: 700;
    font-family: poppins;
    color: var(--text-color);

  }
  
  .footer-down {
    display: flex;
    flex-direction: row;
    gap: 2rem;
  }
  
  .footer-down div {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-left: 10px;
  }
  
  .footer-down div ul {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    list-style: none;
    margin-left: 10px;
  }
  
  .footer-down div .main-gap {
    display: flex;
    flex-flow: column;
    gap: 1.2rem;
  }
  
  .footer-down div ul li {
    color: var(--other-color);
    font-family: poppins;

    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: start;
    gap: 3px;
    font-size: 8px;
    cursor: pointer;
  }

  .footer-down div ul .gmail {
    display: none;
  }
  
  .footer-down div ul li i {
    color: var(--hover-color);
    font-size: 10px;
  }
  
  .mar1 {
    margin-bottom: 3px;
  }
  
  .mar2 {
    margin-bottom: 2.1px;
  }
  
  .mar3 {
    margin-bottom: 2.5px;
  }
  
  .footer-down div ul li span {
    font-size: 1rem;
    font-family: poppins;
  }
  
  .footer-end {
    margin-left: 10px;
  }
  
  .footer-end span {
    font-size: 8px;
    font-weight: 200;
    font-style: normal;
  }
}