
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
body {
  display: flex;
  align-items: center;     /* Vertically center */
  justify-content: flex-end; /* Push .home-body to the right */
  padding: 0px 0;         /* Equal top and bottom padding */
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

.home-body {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 75%;
  padding: 0;  
  margin: 0 auto;
}
.top-section {
  display: flex;
  justify-content: flex-end;
  padding-bottom: 0;
}

.logo-right {
  height: 50px;
  width: auto;
}
.home-content-section {
  display: flex;
  flex-direction: column;
  width: 40%;
  margin-left: auto;
  gap: 60px;
  text-align: right;
}

.home-para {
  margin: 0;
  font-size: 14px;
  color: #6a6a6a;
  font-weight: 400;
  line-height: 1.2rem;
}
.category-section{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.category {
  margin: 0;
  font-size: 40px;
  color: #ccc;
  font-weight: 400;
  text-transform: capitalize;
}
.category:hover{
    color: #777777;
}
.home-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.home-bottom-text {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  color: #4c4c4c;
  text-transform: uppercase;
}



/* mobile-view */

@media (max-width: 767px) {
    .home-body {
  width: 80%;
  gap: 30px;
  padding: 80px 0px;
}
.top-section {
  justify-content: center;
}
.logo-right {
  height: 50px;
}
.home-content-section {
  width: 100%;
  text-align: center;
}
.home-para {
  font-size: 12px;
  line-height: 1rem;
}
.category {
  margin: 0;
  font-size: 20px;
}
.home-bottom-text {
  font-size: 9px;
}

}