@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  text-decoration: none;
  list-style: none;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: rgb(233, 233, 233);
}
.container {
  display: flex;
  width: 1200px;
  margin: auto;
}
nav {
  position: sticky;
  top: 0;
  left: 0;
  bottom: 0;
  width: 280px;
  height: 110vh;
  background: #fff;
}
.navbar {
  width: 80%;
  margin: 0 auto;
}

.logo {
  margin: 2rem 0 1rem 0;
  padding-bottom: 3rem;
  display: flex;
  align-items: center;
}
.logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.logo h1 {
  margin-left: 1rem;
  text-transform: uppercase;
}

ul {
  margin: 0 auto;
}
li {
  padding-bottom: 2rem;
}
li a {
  font-size: 16px;
  color: rgb(85, 83, 83);
}
li a:hover {
  color: #3550a7;
}
.nav-item {
}
nav i {
  width: 50px;
  font-size: 18px;
  text-align: center;
}

.logout {
  position: absolute;
  bottom: 20px;
}

/* Main Section */
.main {
  width: 100%;
}
.main-top {
  width: 100%;
  background: #fff;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3550a7;
}
.main-body {
  padding: 10px 10px 10px 20px;
}
h1 {
  margin: 20px 10px;
  color: #3550a7;
}
.search_bar {
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
ul .active {
  color: #3550a7;
}
.search_bar input {
  width: 50%;
  padding: 10px;
  border: 1px solid rgb(190, 190, 190);
}
.search_bar input:focus {
  border: 1px solid blueviolet;
}
.search_bar select {
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  margin-left: 2rem;
}
.search_bar .filter {
  width: 300px;
}

.tags_bar {
  width: 55%;
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
.tag {
  background: #fff;
  padding: 10px 15px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}
.tag i {
  margin-right: 0.7rem;
}
.row {
  display: flex;
  padding: 10px;
  margin-top: 1.3rem;
  justify-content: space-between;
}
.row p {
  color: rgb(54, 54, 54);
  font-size: 15px;
}
.row p span {
  color: blueviolet;
}
.job_card {
  width: 100%;
  padding: 18px;
  cursor: pointer;
  display: flex;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 15px;
  justify-content: space-between;
  border: 2px solid rgb(190, 190, 190);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.5s;
}
.job_card:hover {
  transform: scale(105%);
  background-color: #3550a7;
  color: #fff !important;
}
.job_card:hover span {
  color: #fff !important;
}
.job_card .job_details {
  display: flex;
}
.job_details .img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.job_salary span {
  text-wrap: nowrap;
}
.job_details .img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.job_details .text {
  margin-left: 2.3rem;
}
.job_details .text span {
  color: rgb(116, 112, 112);
}
.job_salary {
  text-align: right;
  color: rgb(54, 54, 54);
}
.job_card:active {
  border: 2px solid blueviolet;
  transition: 0.4s;
}
