.join_btn {
  cursor: pointer;
  /* width: 170px; */
  width: fit-content;
  padding: 0 20px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(rgb(51, 51, 51) 0%, rgb(51, 51, 51) 100%);
}
.join_btn:hover {
  background: linear-gradient(
    93.5577deg,
    rgb(125, 187, 255) 0%,
    rgb(171, 116, 242) 95.04%
  );
}
.join_btn:visited {
  color: white;
}
#header_bar {
  position: relative;
  background: #202020;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 0 40px;
  margin: 0 auto;
  height: 62px;
  border-radius: 0px 0px 32px 32px;
}

#header_bar .header-title-m {
  display: none;
  font-size: 20px;
  font-weight: bold;
  color: white;
  margin-left: 8px;
}
#header_bar .header_logo {
  display: flex;
  align-items: center;
  user-select: none;
}
.header_logo-img {
  width: 40px;
}
.header-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  margin: 40px 0;
}

.header-title-left {
  white-space: nowrap;
  font-size: 82px;
  font-weight: 700;
  color: rgb(255, 255, 255);
}
.header-title-right {
  font-size: 30px;
  font-weight: 700;
  text-align: center;
  color: white;
  text-align: left;
  max-width: 490px;
  
}
.header_left {
  display: flex;
  align-items: center;
  height: 100%;
}
#hamburger {
  display: none;
  justify-content: flex-end;
  user-select: none;
  background-color: transparent;
}
#hamburger .line{
  width: 25px;
  height: 2.5px;
  background-color: #ecf0f1;
  display: block;
  margin: 4px auto;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
#hamburger:hover{
  cursor: pointer;
}
#header_bar.is_active {
  border-radius: 0px;
}
#header_bar.is_active .nav_item{
  font-weight: bold;
}
#header_bar.is_active #hamburger .line:nth-child(2){
  opacity: 0;
}

#header_bar.is_active #hamburger .line:nth-child(1){
  -webkit-transform: translateY(6.5px) rotate(45deg);
  -ms-transform: translateY(6.5px) rotate(45deg);
  -o-transform: translateY(6.5px) rotate(45deg);
  transform: translateY(6.5px) rotate(45deg);
}

#header_bar.is_active #hamburger .line:nth-child(3){
  -webkit-transform: translateY(-6.5px) rotate(-45deg);
  -ms-transform: translateY(-6.5px) rotate(-45deg);
  -o-transform: translateY(-6.5px) rotate(-45deg);
  transform: translateY(-6.5px) rotate(-45deg);
}

#header_bar.is_active {
  border-radius: 0px;
}
#header_bar.is_active #head_nav {
  grid-auto-rows: 1fr;
}

.nav_item {
  color: white;
  font-size: 16px;
  margin-right: 40px;
  height: 62px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* nav */
#head_nav {
  position: absolute;
  z-index: 999;
  width: 100%;
  max-width: 100%;
  top: 62px;
  left: 0;
  overflow: hidden;
  display: grid;
  grid-auto-rows: 0;
}
.nav_menu {
  display: flex;
  flex-direction: column;
  padding: 20px;
  padding-top: 0px;
  background-color: rgba(32, 32, 32, 1);
  border-radius: 0 0 20px 20px;
  color: #fff;
}
.nav_menu .menu_sub {
  font-size: 20px;
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}
/* .nav_menu .menu_sub::after {
  content: "";
  transition: transform 0.3s;
  border-right: 2px solid currentcolor;
  border-bottom: 2px solid currentcolor;
  width: 5px;
  height: 5px;
  transform: rotate(-45deg);
  color: #7d84ab;
  cursor: pointer;
  font-size: 14px;
  visibility: hidden;
}
.nav_menu .menu_sub.open::after {
  transform: rotate(45deg);
} */

.menu_item_list {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 62px;
  gap: 20px; */
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.menu_item_wrapper {
  display: flex;
  gap: 20px;
}
.nav_menu .menu_item {
  flex: 1;
  display: flex;
  gap: 10px;
  padding: 8px;
  cursor: pointer!important;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  border-radius: 8px;
  background-color: #202020;
  align-items: center;
}
.nav_menu .menu_item:hover {
  background-color: rgba(255,255,255,0.1);
}
.nav_menu .menu_item:last-child {
  margin-bottom: 0;
}
.menu_item_empty {
  flex: 1;
}

.menu_item_img {
  display: block;
  width: 80px;
  /* height: 100%; */
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
  margin-right: 10px;
}
.menu_item_title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}


.section_6_content {
  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: center; */
  /* padding-top: 80px; */
  /* padding-bottom: 80px; */
  color: black;
  font-size: 16px;
}
.section_6_content .left {
  display: flex;
  flex-direction: column;
}
.section_6_content .left .title {
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 24px;
}
.section_6_content .left .label {
  
  font-weight: 600;
  color: rgb(51, 51, 51);
}
.section_6_content .left .item {
  font-weight: 400;
  color: rgb(51, 51, 51);
  margin-bottom: 20px;
}
.section_6_content .items {
  display: flex;
  align-items: center;
}
.section_6_content .items .icon {
  cursor: pointer;
  margin-right: 16px;
}
.section_6_content .items .icon_img {
  width: 24px;
}
.section_6_content .right {
  display: flex;
  flex-direction: column;
}
.section_6_content .right .link {
  font-weight: 400;
  color: rgb(51, 51, 51);
  margin: 3px 0;
}


/* footer */
.footer {
  /* display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  margin-bottom: 80px;
  max-width: 1440px;
  padding: 0 80px; */
  font-size: 18px;
}
.footer .title {
  font-size: 18px;
  font-weight: 300;
  color: rgb(51, 51, 51);
}
.footer .title .img {
  width: 18px;
  height: 100%;
}
.footer .line {
  width: 100%;
  height: 1px;
  background: rgb(68, 68, 68);
  margin: 8px 0;
}
.footer .copy {
  font-size: 12px;
  font-weight: 300;
  color: rgb(165, 165, 165);
}



.care-icon {
  fill: #fff;
  width: 24px;
  height: 24px;
}