.home_tech_stack_section .common_section_title {
  margin: auto;
  width: fit-content;
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper {
  width: fit-content;
  margin: auto;
  overflow-x: auto;
  overflow-y: hidden;
  height: fit-content;
  flex-wrap: nowrap;
  max-width: 100%;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .home_tech_stack_section .home_tech_stack_tabs_wrapper {
    margin-top: 0px;
  }
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper::-webkit-scrollbar {
  display: none;
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper .nav-item {
  flex-shrink: 0;
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper .nav-item .tech_stack_tabs_btn {
  border: none;
  font-size: 20px;
  font-weight: 500;
  color: #7D7D7D;
  position: relative;
}
@media only screen and (max-width: 1024px) {
  .home_tech_stack_section .home_tech_stack_tabs_wrapper .nav-item .tech_stack_tabs_btn {
    font-size: 16px;
  }
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper .nav-item .tech_stack_tabs_btn.active {
  color: #272e34 !important;
}
.home_tech_stack_section .home_tech_stack_tabs_wrapper .nav-item .tech_stack_tabs_btn.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #ff558b 0%, #736eff 100%);
}
.home_tech_stack_section .home_tech_stack_tab_content_wrapper {
  margin-top: 30px;
}
.home_tech_stack_section .home_tech_stack_tab_content_wrapper .tech_stack_tab_content {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: auto;
  flex-wrap: wrap;
}
.home_tech_stack_section .home_tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_box {
  padding: 6px;
  padding-right: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  border-radius: 100px;
  font-size: 18px;
  color: #555555;
  font-weight: 500;
  position: relative;
  background-color: white;
  flex-shrink: 0;
}
.home_tech_stack_section .home_tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_box .tech_icon {
  height: 22px;
  width: 22px;
}
.home_tech_stack_section .home_tech_stack_tab_content_wrapper .tech_stack_tab_content .tech_box::after {
  content: "";
  height: calc(100% + 2px);
  width: calc(100% + 2px);
  position: absolute;
  background: linear-gradient(90deg, #ff558b 0%, #736eff 100%);
  border-radius: 100px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}