#career {
  background: #fff;
}

#career .location {
  padding-bottom: 3rem;
}

#career .location h1 {
  color: #501556;
  font-family: ttcbold;
  font-size: 3rem;
  text-align: center;
}

#career .location .nav-pills {
  margin-top: 2em;
}

#career .location .nav-pills .nav-link>div {
  background: #d67cdc;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 50px;
  height: 50px;
  margin-right: 0.5rem;
  filter: grayscale(1);
  -webkit-filter: grayscale(1);
}

#career .location .nav-pills .nav-link>div img {
  width: 30px;
}

#career .location .nav-pills .nav-link.active>div {
  filter: grayscale(0);
  -webkit-filter: grayscale(0);
}

#career .location .nav-pills .nav-link.active {
  background-color: transparent;
}

#career .location .nav-pills .nav-link:not(.active) {
  color: #b7a3ac;
}

#career .location .nav-pills button {
  color: #501556;
  font-family: ttcbold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#career .location .tab-content {
  margin-top: 2rem;
}

#career .location .tab-content .tab-pane h2 {
  color: #501556;
  font-family: ttcmedium;
  font-size: 1.2rem;
  text-align: center;
}

#career .location .tab-content .tab-pane h2 img {
  width: auto;
}

#career .location .tab-content .tab-pane .items {
  margin-top: 3rem;
}

#career .location .tab-content .tab-pane .items .item {
  text-align: center;
}

#career .location .tab-content .tab-pane .items .item img {
  width: 100%;
  transform: rotate(-10deg);
  border-radius: 60px;
}

#career .location .tab-content .tab-pane .items .item p {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-family: ttcmedium;
  color: #501556;
}

#career .perks {
  background: #eeebe6;
  padding: 3rem 0;
}

#career .perks h1 {
  color: #501556;
  font-family: ttcbold;
  font-size: 3rem;
  text-align: center;
}

#career .perks .items {
  margin-top: 3rem;
}

#career .perks .items .item {
  text-align: center;
  padding: 2rem;
  border-radius: 2rem;
  cursor: pointer;
  height: 100%;
  transition: all .5s;
}

#career .perks .items .item lottie-player {
  width: 100%;
  height: 100%;
}

#career .perks .items .item:hover{
  transform: scale(1.1);
}


#career .perks .items .item.item1 {
  background: #a357bd;
}

#career .perks .items .item.item2 {
  background: #e18064;
}

#career .perks .items .item.item3 {
  background: #501556;
}

#career .perks .items .item.item4 {
  background: #425cc6;
}

#career .perks .items .item h2 {
  color: #fff;
  font-size: 1.5rem;
  list-style: 1.5rem;
  font-family: ttcbold;
  margin-top: 1rem;
}

#career .perks .items .item p {
  color: #fff;
  font-size: 1rem;
  font-family: ttcregular;
  margin-top: 1rem;
  line-height: 1rem;
  height: 100px;
}

#career .movingtext {
  background: #580b59;
  padding: 3rem 0 5rem;
  text-align: center;
}

#career .movingtext h2 {
  color: #fff;
  font-size: 2rem;
  font-family: ttcbold;
}

#career .movingtext .marquee {
  color: #fff;
  font-family: ttcmedium;
  font-size: 4rem;
  margin-top: 3rem;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#career .movingtext .marquee .marquee-content {
  width: max-content;
  white-space: nowrap;
  display: flex;
  gap: 1rem;
  padding-left: 1rem;
  animation: marquee 100s linear infinite;
}

@keyframes marquee {
  to {
    transform: translateX(-100%);
  }
}

#career .movingtext .marquee .marquee-content div {
  display: inline-block;
}

#career .movingtext .marquee span {
  color: #e59bee;
}

#career .movingtext .marquee img {
  height: 100px;
}

#career .movingtext a {
  background: #d67cdc;
  color: #fff;
  padding: 0.4rem 2rem;
  border-radius: 3rem;
  font-family: ttcbold;
  font-size: 2rem;
  margin-top: 2rem;
}

#career .works {
  background: #dcdff7;
  padding: 3rem 0;
}

#career .works .text h2 {
  color: #501556;
  font-size: 2.5rem;
  line-height: 2.5rem;
  font-family: ttcbold;
}

#career .works .text p {
  color: #501556;
  font-size: 1.25rem;
  line-height: 1.25rem;
  font-family: ttcmedium;
  margin-top: 1rem;
}

#career .works .filter {
  margin-top: 3rem;
}

#career .works .filter form {
  align-items: center;
  justify-content: start;
}

#career .works .filter form input {
  background: #fff;
  border: none;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow: none;
}

#career .works .filter form select {
  background: transparent;
  border: 1px solid #501556;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow: none;
}

#career .works .filter form .dropdown .btn {
  background: transparent;
  border: 1px solid #501556;
  border-radius: 3rem;
  padding: 1rem;
  box-shadow: none;
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

#career .works .filter form .dropdown .dropdown-toggle::after {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  border-top: .5em solid #501556;
  border-right: .5em solid transparent;
  border-bottom: 0;
  border-left: .5em solid transparent;
}
#career .works .filter form .dropdown .dropdown-menu{
  background-color: #da9fe9;
  border:none;
  width: 100%;
  color:#501556
}
#career .works .filter form .dropdown .dropdown-menu .dropdown-item:focus, #career .works .filter form .dropdown .dropdown-menu .dropdown-item:hover{
  background-color: #d67cdc;
  color:#501556
}

#career .works .filter h2 {
  text-align: center;
  margin-top: 4rem;
  color: #501556;
  font-family: ttcbold;
  font-size: 3rem;
}

#career .works .ctn {
  margin-top: 3rem;
}

#career .works .ctn .items {
  justify-content: center;
  align-items: center;
}

#career .works .ctn .items .item:nth-child(1) a {
  background: #061e7f;
}

#career .works .ctn .items .item:nth-child(2) a {
  background: #a357bd;
}

#career .works .ctn .items .item:nth-child(3) a {
  background: #f0a68c;
}

#career .works .ctn .items .item:nth-child(4) a {
  background: #da9fe9;
}

#career .works .ctn .items .item:nth-child(5) a {
  background: #c3624b;
}

#career .works .ctn .items .item:nth-child(6) a {
  background: #8092db;
}

#career .works .ctn .items .item {
  margin-bottom: 2rem;
  height: 100%;
}

#career .works .ctn .items .item a {
  height: 100%;
  margin: 0 auto;
  display: block;
  color: #fff;
  text-align: left;
  padding: 1rem 2.5rem;
  border-radius: 4rem;
  font-family: ttcregular;
}

#career .works .ctn .items .item a h3 {
  font-family: ttcbold;
}

#career .works .ctn .items .item a small {
  margin-top: 1rem;
  display: inline-block;
}

#dynamicText {
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid black;
  padding-right: 5px;
  font-size: 24px;
  font-weight: bold;
  width: 0;
  animation: typing 4s steps(30) forwards, hideCursor 0.1s 4s forwards;
}

@keyframes typing {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes hideCursor {
  to {
    border-right: none;
  }
}


#career .paginationCtn {
  margin-top: 30px;
}

#career .pagination .page-link {
  font-family: ttcregular;
  color: #501556;
  border: none;
  outline: 0;
  box-shadow: none;
}

#career .pagination .active .page-link {
  background-color: #501556;
  color: #fff
}

@media (orientation: portrait) {
  #career .location h1 {
    font-size: 2rem;
  }

  #career .location .tab-content .tab-pane h2 {
    font-size: 1rem;
  }

  #career .location .tab-content .tab-pane .items .item {
    margin-bottom: 1rem;
  }

  #career .perks h1 {
    font-size: 2rem;
  }

  #career .perks .items>div {
    margin-bottom: 1rem;
  }

  #career .perks .items .item {
    padding: 1rem;
  }

  #career .perks .items .item h2 {
    font-size: 1.2rem;
    line-height: 1.2rem;
  }

  #career .perks .items .item p {
    height: auto;
    font-size: 0.8rem;
  }

  #career .movingtext .marquee {
    font-size: 2rem;
  }

  #career .movingtext a {
    font-size: 1rem;
  }

  #career .works .text h2 {
    font-size: 2rem;
  }

  #career .works .text p {
    font-size: 1rem;
    line-height: 1rem;
  }

  #career .works .filter form .row>div {
    margin-bottom: 1rem;
  }

  #career .works .filter h2 {
    margin-top: 2rem;
    font-size: 1.5rem;
  }

  #career .works .ctn {
    margin-top: 2rem;
  }

  #career .works .ctn .items {
    align-items: start;
  }

  #career .works .ctn .items .item {
    margin-bottom: 1rem;
  }

  #career .works .ctn .items .item a h3 {
    font-size: 1rem;
  }

  #career .works .ctn .items .item a {
    padding: 1rem;
    font-size: 0.8rem;
    border-radius: 2rem;
  }
}