.progress-bar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: fixed;
  /* width: 50%;  */
  margin: 0 auto;
  background-color: rgba(0, 53, 83, 0.8);
  backdrop-filter: blur(4px);
  border-radius: 60px;
  padding: 15px 20px 10px 20px;
  z-index: 100;
  bottom: 4%; 
}


.progress-line {
  position: absolute;
  height: 3px;
  width: 0px; /* Start with a small visible part */
  background-color: var(--Neon, #0093E6);
  border-radius: 5px;
  top: 31%;
}


.progress-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px; 
  text-decoration: none;
  width : 150px;
}

.bullet {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--Blue-Gray, #1D5E82);
}

.section-title {
  color: var(--Blue-Gray, #1D5E82);
  font-family: "Spot Mono";
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

/* Active styles */
.progress-item.active .bullet {
  background-color: var(--Neon, #0093E6); 
}

.progress-item.active .section-title {
  color: var(--Neon, #0093E6);
}

.progress-item.past .section-title{
  color: var(--Neon, #0093E6);
}

.progress-item.past .bullet{
  background-color: var(--Neon, #0093E6); 
}

/* Top section */
.top {
  display: flex;
  padding: 0px 100px;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

/* Description container */
.description {
  display: flex;
  max-width: 800px;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 0 0;
}

.title {
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  line-height: 120px;
  /* 200% */
  align-self: stretch;
  margin: 0;
  /* Adjust margin as needed */
}

.subheading {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
  margin-top: 10px;
  /* Add margin for spacing */
}

/* Box container */
.box {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
}

/* What I Did and Duration */
.what-i-did,
.duration {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
  align-self: stretch;
}

.box-title {
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
  margin: 0;
  /* Adjust margin as needed */
}

.box-text {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
  margin: 0;
  /* Adjust margin as needed */
}

/* Context section */
.context,
.hypothesis,
.visual,
.final {
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.context-title,
.hypothesis-title,
.visual-title,
.final-title {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
  margin: 0;
}

/* Context content */
.context-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding-bottom: 60px;
}

.context-text,
.hypothesis-text,
.visual-text,
.final-text {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
}

.context-heading,
.hypothesis-heading,
.visual-heading,
.final-heading {
  display: flex;
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  flex: 1 0 0;
}

.context-description,
.hypothesis-description,
.visual-description,
.final-description {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
}

.neon-highlight {
  color: var(--Neon, #0093e6);
}

/* Problem Section */
.problem,
.reflection {
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.problem-title {
  align-self: stretch;
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.problem-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  flex-direction: row;
}

.problem-text {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
}

.problem-heading {
  display: flex;
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  flex: 1 0 0;
}

.problem-description {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
}

.right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  flex: 1 0 0;
}

.problem-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
}

.problem-box {
  display: flex;
  padding: 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
}

.problem-box-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.problem-box-title {
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.problem-box-text p {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  align-self: stretch;
  margin: 0;
}

/* User Personas Card */
.user-personas-card {
  display: flex;
  height: 660px;
  width: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
}

.user-text {
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 80px;
  align-self: stretch;
  opacity: 0; /* Start hidden */
  transition: opacity 1s ease-in-out; /* Fade in/out effect */
  margin: 0;
}

.user-description {
  color: var(--Neon, #0093e6);
  text-align: center;
  font-family: "Spot Mono";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 80px; /* 133.333% */
  width: 1008px;
  max-width: 1008px;
  margin: 0;
}

.user-name {
  width: 100%;
  max-width: 400px;
  color: var(--Neon, #0093e6);
  text-align: center;
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.research {
  display: flex;
  /* padding: 0px 100px; */
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
  overflow: hidden;
}

.research-title {
  display: flex;
  padding: 0px 100px;
  justify-content: center;
  align-items: center;
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.research-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding: 0px 100px 60px 100px;
}

.research-text {
  display: flex;
  flex-direction: row;
  flex: 1 0 0;
}

.research-heading {
  display: flex;
  color: var(--Neon, #0093e6);
  font-family: "Spot Mono";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  flex: 1 0 0;
}

.research-description {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  flex: 1 0 0;
}

.carousel-container {
  display: flex;
  /* gap: 30px; */
  align-items: flex-start;
  /* overflow: hidden; */
  position: relative;
  transition: transform 0.8s ease-in-out;
}

.carousel {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.card-container {
  flex: 0 0 calc(100% - 200px);
  display: flex;
  width: auto;
  min-width: calc(100% - 200px);
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  /* flex: 1 0 0; */
  flex-shrink: 0;
}

.card-container.active {
  opacity: 1;
}

.card-container.inactive {
  opacity: 0.3;
}

.card-container img {
  width: 100%;
}

.card-caption {
  max-width: 80%;
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-weight: 700;
  align-self: stretch;
}

.arrow-container {
  display: flex;
  padding: 20px 100px 0px 0px;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

#inactive-left,
#active-left,
#inactive-right,
#active-right {
  background-color: transparent;
  box-shadow: none;
  border: none;
  padding: 0 0;
  margin: 0;
  display: none;
}

.button img#arrow {
  width: 40px;
  height: 40px;
  transition: transform 0.2s;
}

.takeaway {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  align-self: stretch;
  padding-top: 200px;
}

.stats-grid {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.stat {
  display: flex;
  padding: 0px 100px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
}

.stat-text {
  display: flex;
  max-width: 600px;
  width: 100%;
  padding-right: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  box-sizing: border-box;
}

.stat-text-right {
  display: flex;
  max-width: 600px;
  width: 100%;
  padding-left: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  flex: 1 0 0;
  box-sizing: border-box;
}

.stat-box {
  display: flex;
  max-width: 600px;
  width: 100%;
  height: auto;
  padding: 20px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
  gap: 40px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
  flex: 1 0 0;
  margin: 0;
}

.stat-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  color: var(--Blue-Gray, #1D5E82);
  flex: 1 0 0;
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.stat-description {
  display: flex;
  align-items: center;
  align-self: stretch;
  color: var(--Blue-Gray, #1D5E82);
  font-family: "Spot Mono";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  max-width: 600px;
  flex: 1 0 0;
  margin: 0;
}

.box-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  align-self: stretch;
}

.box-heading {
  color: var(--Neon, #0093E6);
  font-family: "Spot Mono";
  font-size: 60px;
  font-style: normal;
  font-weight: 500;
  line-height: 120px; 
  margin: 0;
}

.box-description {
  align-self: stretch;
  color: var(--Neon, #0093E6);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
}

.hypothesis-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.link {
  text-decoration: none;
  position: relative;
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  /* align-self: stretch; */
  margin: 0;
}

.link::after {
  content: ""; 
  position: absolute;
  left: 0;
  bottom: -2px; 
  width: 0; 
  height: 2px; 
  background-color: var(--neon);
  border-radius: 2px;
  transition: width 0.6s ease; 
}

.link:hover::after {
  width: 100%; 
}


.visual,
.final {
  display: flex;
  padding: 0px 100px;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
  align-self: stretch;
}
.visual-content,
.final-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
  padding-bottom: 60px;
}

.design-card {
  display: flex;
  height: 660px;
  width: auto;
  /* flex-direction: column;
  justify-content: center;
  align-items: center; */
  gap: 10px;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px;
}

#dashboardVideo {
  width: 100%; /* Ensures the video takes up 100% of the container's width */
  height: auto; /* Maintains aspect ratio */
  display: block; /* Ensures no extra space below the video */
}

.user-image {
  width: 100%;
  height: 100%;
  transition: opacity 1s ease;
}

.toggle {
  display: flex;
  padding: 10px 15px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 40px;
  background: var(--Bg-Menu, #003553); 
  margin: 0;
}

.visual-tag {
  color: var(--Neon, #0093E6);
  font-family: "Spot Mono";
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.design-card-caption {
  color: var(--Blue-Gray, #1d5e82);
  font-family: "Spot Mono";
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  padding-bottom: 40px;
}

.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--Background, #002940);
  border: 0.5px solid var(--Blue-Gray, #1d5e82); 
  transition: 0.4s;
  box-sizing: border-box;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: var(--Neon, #0093E6); 
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: var(--Neon, #0093E6); 
}

input:checked + .slider:before {
  transform: translateX(26px);
  background-color: var(--Bg-Menu, #003553); 
}

input:focus + .slider {
  box-shadow: 0 0 1px var(--Neon, #0093E6);
}

.slider.round {
  border-radius: 34px;
}

.design-card-web {
  display: flex;
  height: auto;
  width: auto;
  align-self: stretch;
  border-radius: 30px;
  border: 1px solid var(--Blue-Gray, #1d5e82);
  background: var(--Bg-Menu, #003553);
  overflow: hidden;
  box-sizing: border-box;
  padding: 50px;
}

.customToggle {
  border: none;
  background-color: transparent;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  box-sizing: border-box;
}

.customToggle:hover
{
  border-radius: 34px;
  background-color: var(--Background, #002940);
}

@media (max-width: 1440px) {
  .problem-text {
    gap: 30px
  }

  .top {
    gap: 50px;
  }
  
  .user-personas-card {
    height: auto;
    min-height: 660px;
  }

  .user-description {
    font-size: 50px;
    line-height: 80px;
    width: auto;
    max-width: 100%;
  }

  .user-text {
    padding: 70px 100px;
  }

  .research-text {
    gap: 40px
  }

  .stat-box, .stat-text {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .visual-content,
  .final-content {
    padding-bottom: 0;
  }
}
@media (max-width: 1068px) {
  /* Top section */
  .top {
    padding: 0 50px;
    gap: 40px;
    align-items: center;
  }

  .title {
    font-size: 50px;
  }
  
  .subheading {
    font-size: 16px;
  }
  
  /* Box container */
  .box {
    padding: 30px;
    gap: 20px;
  }
  
  .box-title {
    font-size: 16px;
  }
  
  .box-text {
    font-size: 16px;
  }

  .context,
  .hypothesis,
  .visual,
  .final {
    padding: 0px 50px;
  }
  
  .context-text,
  .hypothesis-text,
  .visual-text,
  .final-text {
    gap: 40px
  }
  
  .context-heading,
  .hypothesis-heading,
  .visual-heading,
  .final-heading {
    font-size: 20px;
  }
  
  .context-description,
  .hypothesis-description,
  .visual-description,
  .final-description {
    font-size: 16px;
  }


  .problem,
  .reflection {
    padding: 0px 50px;
  }
  
  .problem-text {
    gap: 40px
  }
  
  .problem-heading {
    font-size: 20px;
  }
  
  .problem-description {
    font-size: 16px;
  }
  
  .right {
    gap: 30px;
  }
  
  .problem-grid {
    gap: 20px;
  }
  
  .problem-box {
    padding: 30px;
    gap: 20px;
  }
  
  .problem-box-title {
    font-size: 20px;
  }
  
  .problem-box-text p {
    font-size: 16px;
  }
  
  .user-personas-card {
    height: auto;
    min-height: 500px;
  }
  
  .user-text {
    gap: 40px;
    padding: 70px 100px;
  }

  .user-description {
    font-size: 40px;
    line-height: 52.92px;
    width: auto;
    max-width: 100%;
  }
  
  .research-title {
    padding: 0px 50px;
  }
  
  .research-content {
    padding: 0px 50px 60px 50px;
  }
  
  .research-text {
    gap: 40px
  }
  
  .research-heading {
    font-size: 20px;
  }
  
  .research-description {
    font-size: 16px;
  }
  
  .card-container {
    flex: 0 0 calc(100% - 100px);
    min-width: calc(100% - 100px);
  }

  .card-caption {
    max-width: 100%;
  }


  .arrow-container {
    padding: 20px 50px 0px 0px;
  }
  
  .takeaway {
    padding-top: 150px;
  }
  
  .stats-grid {
    gap: 60px;
  }
  
  .stat {
    padding: 0px 50px;
  }

  .stat-box, .stat-text {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .stat-box {
    padding: 15px 30px 30px 30px;
  }

  .box-heading {
    font-size: 50px;
  }
  
  .visual,
  .final {
    padding: 0px 50px;
  }

  .visual-content,
  .final-content {
    padding-bottom: 0;
  }
  
  .design-card {
    height: 660px;
    padding: 20px;
  }

  .design-card video {
    height: 660px;
  }
  .visual-tag {
    font-size: 16px;
  }

  .design-card-web {
    padding: 20px;
  }
  .progress-bar {
    gap: 20px;
  }
  .progress-item {
    width: fit-content;
  }
}
@media (max-width: 734px) {
  .progress-bar {
    /* border-radius: 20px; */
    display: none;
  }
  
  /* Top section */
  .top {
    padding: 100px 30px;
    flex-direction: column;
    gap: 40px
  }
  
  .title {
    font-size: 24px;
    line-height: 31.75px;
  }
  
  .subheading {
    font-size: 16px;
    margin-top: 15px;
  }
  
  /* Box container */
  .box {
    padding: 20px;
    gap: 20px;
    width: 100%;
  }
  
  
  .box-title {
    font-size: 16px;
  }

  /* Context section */
  .context,
  .hypothesis,
  .visual,
  .final {
    padding: 0px 30px;
  }
  
  /* Context content */
  .context-content {
    padding-bottom: 50px;
  }
  
  .context-text,
  .hypothesis-text,
  .visual-text,
  .final-text {
    flex-direction: column;
    gap: 40px
  }
  
  .context-heading,
  .hypothesis-heading,
  .visual-heading,
  .final-heading {
    font-size: 20px;
  }
  
  .context-description,
  .hypothesis-description,
  .visual-description,
  .final-description {
    font-size: 16px;
  }
  
  /* Problem Section */
  .problem,
  .reflection {
    padding: 0px 30px;
  }
  
  .problem-text {
    flex-direction: column;
    gap: 40px
  }
  
  .problem-heading {
    font-size: 20px;
  }
  
  .problem-description {
    font-size: 16px;
  }
  
  .right {
    gap: 30px;
  }
  
  .problem-grid {
    gap: 20px;
  }
  
  .problem-box {
    padding: 20px;
    gap: 20px;
  }
  
  .problem-box-title {
    font-size: 20px;
  }
  
  .problem-box-text p {
    font-size: 16px;
  }
  
  /* User Personas Card */
  .user-personas-card {
    height: 400px;
  }
  
  .user-text {
    padding: 0px 30px;
    gap: 40px;
  }
  
  .user-description {
    font-size: 26px;
    line-height: 31.75px; /* 133.333% */
    width: auto;
    max-width: 100%;
  }
  
  .user-name {
    max-width: 100%;
    font-size: 16px;
  }
  
  .research-title {
    padding: 0px 30px;
    font-size: 16px;
  }
  
  .research-content {
    padding: 0px 30px 60px 30px;
  }
  
  .research-text {
    flex-direction: column;
    gap: 40px
  }
  
  .research-heading {
    font-size: 20px;
  }
  
  .research-description {
    font-size: 16px;
  }
  
  .card-container {
    flex: 0 0 calc(100% - 60px);
    min-width: calc(100% - 60px);
  }

  .card-caption {
    max-width: 100%;
    font-size: 16px;
  }

  .arrow-container {
    padding: 20px 30px 0px 0px;
  }
  
  .takeaway {
    padding-top: 100px;
  }
  
  .stats-grid {
    gap: 80px;
  }
  
  .stat {
    padding: 0px 30px;
    flex-direction: column;
    gap: 20px
  }
  
  .stat-text {
    padding-right: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .stat-text-right {
    padding-left: 0;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .stat-box {
    padding: 10px 20px 20px 20px;
    gap: 40px;
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .stat-description {
    font-size: 16px;
    font-weight: 700;
  }

  .box-heading {
    font-size: 50px;
  }
  
  .visual,
  .final {
    padding: 0px 30px;
  }

  .visual-content,
  .final-content {
    padding-bottom: 0;
  }
  
  .design-card {
    height: auto;
    padding: 20px;
  }

  .visual-tag {
    font-size: 16px;
  }

  .design-card-web {
    padding: 20px;
  }
}
