*, ::after, ::before {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root {
    --black: #141417;
    --white: #fff;
    /* --off-white: #faf9f8; */
    --yellow: #fefdbf;
    --orange: #ffd37a;
    --peach: #ffd37a;
    --blue: #d4e4f9;
    --soft-red: #f9f0f0;
    --soft-orange: #fff4e3;
    --soft-yellow: #fffcea;
    --soft-green: #f7fcec;
    --soft-blue: #f5f8ff; 
    --soft-teal: #f8ffff;
    --soft-violet: #f9f6ff; 
    --soft-grey: #e5ecec; 
    --soft-beige: #e9e7e4; 
    --medium-red: #ffdad2;
    --medium-orange: #ffe0a9;
    --medium-yellow: #f8f6a9;
    --medium-green: #def2b1;
    --medium-blue: #e8f2fc;
    --medium-teal: #d7fbfc;
    --medium-violet: #e9d7ff;
    --medium-grey: #d3e4e4;
    --medium-beige: #d2cfcb;
    --dark-red: #b82f1f;
    --dark-orange: #d0690a;
    --dark-yellow: #aa6908;
    --dark-green: #447513;
    --dark-blue: #0e3a78;
    --dark-teal: #003742;
    --dark-violet: #5d1974;
    --dark-grey: #445757;
    --dark-beige: #676460;
    --grey-1: #3b3b3b;
    --grey-2: #767676;
    --grey-3: #a5a5a5;
    --grey-4: #dbdbdb;
    --grey-5: #efefee;
    --info-1: #0e3a78;
    --info-2: #4e86cf;
    --positive-1: #1d8560;
    --positive-2: #49b989;
    --positive-3: #d3f2e4;
    --warning-1: #ffbe61;
    --warning-2: #ffdd84;
    --negative-1: #ce4343;
    --negative-2: #f76262;
    --black-rgb: 20, 20, 23;
    --info-2-rgb: 78, 134, 207;
    --grey-4-rgb: 219, 219, 219;
    --off-white-rgb: 250, 249, 248;
    --soft-green-rgb: 247, 252, 236;
    --positive-2-rgb: 73, 185, 137;




    --primary-color: #a053df;
    --primary-color-lighter: #a053df73;
    --font-family-heading: 'Oswald', serif;
    --font-family-body: 'Roboto';
     --font-family-body: "Raleway", sans-serif;
    --font-family-body: "Poppins", sans-serif;
    /* --font-family-body: "Montserrat", sans-serif; */
    /* --font-family-body:'Karla',sans-serif;
    --font-family-body: "Cardo", sans-serif; */
    --color-primary: #3b2f63;
    --color-primary-lighter: #794aa2;
    --background-color-soft-green:#e5ecec;
    --background-color-light-blue:#f5f8ff;
    --background-color-white:#ffffff;
    --primary-color-green: #0e6f15;
    --primary-color-yellow: rgba(249, 183, 59, 1);
    --primary-color-yellow-lighter: rgba(249, 183, 59, 0.45);
    --primary-color-red:rgb(220, 71, 33);
  }
  html {
    overflow-x: hidden;
    position: relative;
    min-height: 100%;
    max-width: 100%;
  }
  body {
    line-height: 140%;
    font-weight: 400;
    font-family: var(--font-family-body);
    line-height: 180%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: auto;
    background-color: var(--background-color-light-blue);
     
  }
  
  .main-wrapper {
    width: 75%;
    margin: 150px auto 350px auto;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .row > div {
    flex: 1;
  }
  /*=== HEADER ===*/
  
  /* header {
    display: flex;
    flex-direction: column;
   
    text-align: center;
    background: rgb(240, 240, 240);
    padding: 50px;
    box-shadow: -4px -3px 15px 5px rgba(0, 0, 0, 0.35);
  }  */
  
  .footer-wrapper {
    padding: 20px;
  }
  
  footer,
  header {
    text-align: center;
    /* background: linear-gradient(
      90deg,
      rgba(249, 183, 59, 1) 0%,
      rgba(135, 5, 241, 1) 100%,
      rgba(0, 212, 255, 1) 100%
    ); */
    background: linear-gradient(
      90deg,
      var(--primary-color-green) 0%,
      var(--primary-color-yellow) 75%,
      var(--primary-color-red) 100%
    );
  }
  
  h1 {
    /* text-align: center; */
    margin: 50px auto;
    color: #260b3c;
    font-weight: bolder;
    /* text-transform: uppercase; */
    font-size: 2.5rem;
  }
  h2 {
    /* text-align: center; */
    font-weight: lighter;
    font-weight: 500;
    margin: 10px auto;
  }
  h1,
  h2,
  h3 {
    /* font-family: var(--font-family-heading);
    font-weight: 300; */
  }

  /* === LANDING PAGE === */
  .hero {
    /* height: calc(100vh - 280px); */
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: auto;
  }
  .hero > div {
    flex: 1;
    margin: 25px;
  }
  
  .hero-image {
    width: 100%;
    height: 100%;
  }
  
  a.hero-button {
    display: block;
    /* background: linear-gradient(
      90deg,
      rgba(249, 183, 59, 1) 0%,
      rgba(135, 5, 241, 1) 100%,
      rgba(0, 212, 255, 1) 100%
    ); */

    background: linear-gradient(
      90deg,
      var(--primary-color-green) 0%,
      var(--primary-color-yellow) 75%,
      var(--primary-color-red) 100%
    );
    color: #eee;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    margin-top: 50px;
    text-align: center;
    width: 280px;
  }
  a.hero-button:hover {
    color: #fff;
  }
  
  .brand-name {
    font-weight: 900;
    color:#6f42c1;
    color:var(--primary-color-red);
    color:var(--primary-color-green);
    font-weight: bolder;
  }
  .second-word {
    font-weight: 900;
    color:var(--primary-color-yellow);
    font-weight: bolder;
  }
  
  .first-word {
    color:var(--primary-color-red);
    font-weight: 900;
    color:var(--primary-color-green);
    font-weight: bolder;
  }
  
  .middle-word {
    font-weight: 900;
    color:rgb(111, 66, 193);
    color:var(--primary-color-red);
  }
  
  .last-word {
    color: #ffdd57; /* Yellow */
    font-weight: 900;
    color:var(--primary-color-red);
  }
  
  .cta-button {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
  }
  
  .cta-button:hover {
    background-color: #218838;
  }
  
  .hero h1 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 22px;
    margin-bottom: 20px;
    line-height: 180%;
    font-weight: 400;
  }
  
  /* Features Section */
  .features {
    padding: 50px 0;
  }
  
  .feature {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .feature h2 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
  }
  
  .feature p {
    font-size: 16px;
  }
  
  /* Testimonials Section */
  .testimonials {
    background-color: #f9f9f9;
    padding: 50px 0;
    margin: 25px auto;
  }
  
  .testimonial {
    text-align: center;
    margin-bottom: 30px;
  }
  
  .testimonial p {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .testimonial-author {
    font-style: italic;
  }
  
  /* Call-to-Action Section */
  .cta {
    background-color: rgb(191, 52, 209);
    background-color: rgb(59, 47, 99);
    color: #fff;
    padding: 50px 0;
    text-align: center;
    background-color: var(--background-color-soft-green);
    color:black;
  }
  
  .cta h2 {
    font-size: 30px;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 18px;
    margin-bottom: 30px;
  }
  
  .cta-button {
    background-color: rgb(111, 66, 193);
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
  }
  
  .cta-button:hover {
    background-color: rgba(249, 183, 59, 1);
  }

  
  /* === LANDING ENDS === */

  /* === NAVBAR === */

  .avatar {
    max-width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
  
  }
  
  .avatar img {
    width: 100%;
    border-radius: 50%;
  }
  
  .default-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 600;
  }
  
  
  /* above code is the old one */
  
  a.brand-name-link {
    font-size:28px;
    text-decoration: none;
    color:#6f42c1;
    text-transform: uppercase;
    font-weight: 900
  }
  
  nav {
    position: fixed;
    width: 100%;
    z-index: 100;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1vw 8vw;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.15);
    background-color: white;
    /* background: linear-gradient(
      90deg,
      rgba(249, 183, 59, 1) 0%,
      rgba(135, 5, 241, 1) 100%,
      rgba(0, 212, 255, 1) 100%
    ); */
    top: 0;
    left: 0;
    right: 0;
  }
  .navigation ul {
    display: flex;
    justify-content: space-around;
    align-items: center;
  
  }
  nav img {
    width: 180px;
    cursor: pointer;
    position: relative;
  }
  nav a {
    position:relative;
  }
  .nav-bar-badge {
    position: absolute;
    top: -20px;
    left:175px;
    color:white;
    font-weight: bolder;
  }
  
  nav .navigation {
    display: flex;
    
    justify-content: space-around;
  }
  #menu-btn {
    display: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
  }
  #menu-close {
    display: none;
    cursor: pointer;
  }
  
  nav .navigation ul {
    display: flex;
    justify-content: flex-end;
  }
  nav .navigation ul li {
    list-style: none;
    margin-left: 30px;
  }
  nav .navigation ul li a {
    text-decoration: none;
    color: rgb(21, 21, 100);
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    color:white;
    color: var(--color-primary-lighter);
    color: black;
  }
  nav .navigation ul li a.active {
    color: #fdc93b;
  }
  nav .navigation ul li a:hover {
    color: #fdc93b;
  }



  /* === NAVBAR ENDS ===*/
  

  
 /* === TABLE === */
 .table-wrapper {
    position: relative;

  }
  .table-scroll {
    max-height: 100vh;
    overflow: auto;
  }
 table {
    width: 100%;
    border-collapse: collapse;
  }

 th,
 td {
   padding: 8px;
   text-align: left;
   border-bottom: 1px solid #ddd;
   font-size: 0.75rem;
 }
 
 th {
   background-color: #f2f2f2;
 }
 
 tr:nth-child(even) {
   background-color: #f2f2f2;
 }
 
 td {
   padding: 8px;
 }
 td a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
  }

 /* == TABLE END === */


  .cover-image {
    max-width: 100%;
    margin: 25px auto;
  }
  
  .box-shadow {
    box-shadow: 0 0 5px 2px rgb(224, 224, 224);
    padding: 25px;
    margin: 25px auto;
    border-radius: 5px;
  }
  
  /* Footer css */
  footer {
    position: absolute;
    bottom: 0;
    width: 100%;
  }
  .footer-wrapper > div a {
    margin: 25px;
  }
  .footer-wrapper > div > p {
    padding: 25px;
  }
 /* === ICONS === */

 .fa-github-square {
    color: #333;
    font-size: 38px;
  }
  
  .fa-linkedin {
    color: #2867b2;
    font-size: 38px;
  }
  .fa-twitter-square {
    color: #00acee;
    font-size: 38px;
  }
  .footer-arrow {
    text-align: right;
    font-size: 38px;
  }
  .fa-telegram {
    font-size: 38px;
    color: #0088cc;
  }
  
  .footer-arrow {
    text-align: right;
    font-size: 32px;
  }
  .footer-arrow i {
    color: hsl(0, 51%, 58%);
  }
 /* === ICON ENDS === */

 /* === VISITORS === */

 .visitors {
    margin:25px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f7f5f8;
    background-color: var(--medium-red);
    padding: 15px;
 }

  
 .views {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 56px;
    margin: 25px;
    font-weight: 600;
    border: 5px solid var(--primary-color-green);
    width:300px;
    height: 300px;
    border-radius: 50%;
    
  }
  span strong {
    color: rgba(135, 5, 241, 1);
    color:#6f42c1;
    color:rgba(var(--primary-color-red), 0.2);
  }
  .fa-users{
    font-size: 90px;
    margin-right: 10px;
    font-weight: 600;
    color:rgba(249, 183, 59, 1);
  }
  .fa-eye {
    /* color: rgba(135, 5, 241, 1); */
    font-size: 56px;
    margin-right: 10px;
    font-weight: 600;
    /* color:rgba(249, 183, 59, 1); */
  }


  /* === VISITORS ENDS === */


 /* === BUTTONS === */

 
 .ethio-dev-btn {
    display: inline-block;
    /* background: linear-gradient(
      90deg,
      rgba(249, 183, 59, 1) 0%,
      rgba(135, 5, 241, 1) 100%,
      rgba(0, 212, 255, 1) 100%
    );
    background: linear-gradient(
      90deg,
      rgb(21, 202, 33) 0%,
      rgba(249, 183, 59, 1),
      rgb(241, 52, 5) 100%,
      rgba(0, 212, 255, 1) 100%
    ); */

    background: linear-gradient(
      90deg,
      var(--primary-color-green) 0%,
      var(--primary-color-yellow) 50%,
      var(--primary-color-red) 100%
    );
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    margin: 25px auto;
    text-transform: uppercase;
  
  }
  .ethio-dev-btn:hover {
    background: linear-gradient(
      90deg,
      rgba(249, 183, 59, 1) 0%,
      rgba(135, 5, 241, 1) 100%,
      rgba(0, 212, 255, 1) 100%
    );
    
  }
  .ethio-dev-btn-search {
    width: 150px;
    width: 360px;
    /* width: 100%; */
    display: inline-block;
    display: flex;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
  
    background: linear-gradient(
      90deg,
      var(--primary-color-green) 0%,
      var(--primary-color-yellow) 50%,
      var(--primary-color-red) 100%
    );
    color: #fff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 22px;
    text-align: center;
    margin: 25px auto;
    transition: width 0.5s;
  }
  .ethio-dev-btn-search:hover {
    width: 180px;
    width: 100%;
  }
  button[type='submit'] {
    display: block;
    border: 1px solid transparent;
    /* background: linear-gradient(
        to right,
        rgba(135, 5, 241, 1),
        rgba(249, 183, 59)
      )
      border-box; */
      background: linear-gradient(
        90deg,
        var(--primary-color-green) 0%,
        var(--primary-color-yellow) 50%,
        var(--primary-color-red) 100%
      ) border-box;
    text-align: center !important;
  }
  /** BUTTONS END === */

  /* === AUTH === */


  /* Add styles for the login and registration forms */
.auth {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height:calc(100vh - 250px);
    background-image: url(../images/pexels-liza-summer.jpg);
    box-shadow: 0 0 30px 5px rgb(240, 236, 236);
    border-radius:40px;
    object-fit: contain;
}
.form-container {
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.form-container h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-container p {
    text-align: center;
    margin-top: 20px;
}

.form-container input[type="text"],
.form-container input[type="password"],
.form-container button {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.form-container button {
    background-color: #007bff;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-container button:hover {
    background-color: #0056b3;
}

.error {
    color: red;
    text-align: center;
}

/* === AUTH ENDS === */

/* == BLOG === */

.blog-card {
  display: flex;
  flex-direction: column;
  /* background-color: #f9f9f9; */
  border: 1px solid rgba(24, 51, 204, 0.1);
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 25px;
  margin-bottom: 20px;
  background-color: var(--background-color-white);
  /* height: 380px; */

}
.blog-card:hover {
  border: 1px solid rgba(24, 51, 204, 0.2);
  cursor: pointer;
  background-color: var(--background-color-light-blue);
}

.blog-right a {
  display: inline-block;
  color: purple;
  font-weight: bolder;
  text-transform: uppercase;
  font-size: 24px;
  margin:15px auto;
  letter-spacing: 1px;
  text-decoration: none;
}
.blog-list-image {
  max-width: 100%;
  max-height:250px;
}
.blog-right a:hover {
  text-decoration: underline;
}
.blog-card-top {
   display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: center;
  gap:20px;
  margin-bottom: 15px;

} 
.blog-card-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-left {
   flex:2;
   
}
.blog-left img {
   max-width: 100%;
}
.blog-right {
   flex:4;

}
.blog-right p {
   white-space: pre-wrap;
}
.blog-details-content {
   margin: 15px auto;
   background-color: rgb(247, 241, 248);
   padding: 25px;
   color:#222;
}
.blog-details-content p {
   white-space: pre-wrap;

}
.blog-detials-cover-image img {
   width:100%;
   height:75%;
   object-fit:cover;
   background-position: center center;
   background-size: 100% 100%;
   margin:25px auto;

}
.blog img {
    max-width:100%;
}

.blog-tags {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.blog-tags a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  background-color: #f0eaf3;
  padding: 5px 15px;
  border-radius: 5px;
  color:black;
  font-weight: 400;
  border: 1px solid black;

}


/* === BLOG ENDS === */


/* === COMPANY === */

.company-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.para-companies, .para-jobs {
  font-size: 24px;
  line-height: 1.8;
  color:#555;

}
.company-item {
  width: 380px;
  margin: 10px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(24, 51, 204, 0.1);
  background-color: var(--background-color-white);

}
.company-item:hover {
  border: 1px solid rgba(24, 51, 204, 0.2);
  background-color: var(--background-color-light-blue);

}
.company-item-company-name a {
  font-size: 20px;
  text-decoration: none;
  color:#333;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
}
.company-item-company-name a:hover {
  color: #6e46ae;
  text-decoration: underline;

}
h4.company-item-company-sector a {
  font-size: 16px;
  text-decoration: none;
  color:#333;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  color: #6e46ae;
}
h4.company-item-company-sector a:hover {
  color: #6e46ae;
  text-decoration: underline;
}

.company-item-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 250px;
}
.company-item-top a {
  text-align: center;
}
.company-item-top img {
  width: 150px;
  max-height: 150px;;
  text-align: center;
}

.company-header {
  position:relative;
  display: flex;
  align-items: center;
  justify-content: start;
  height: 120px;
}
img.company-logo {
  width: 40%;

}
/* img.company-list-logo {
  width: 35%;
}  */
 .company-details {
  background-color: var(--background-color-white);
 }
img.company-details-logo {
  display: inline-block;
  width:10%;
  max-height: 150px;
}
.company-default-cover {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background-position: center center;
  background-size: 100% 100%;
  margin: 25px auto;
  background-color: #ccc;
}
.company-details-content {
  margin: 15px auto;
  background-color: rgba(221, 204, 226, 0.25);
  padding: 10px;
}
.company-details-content p {
  white-space: pre-wrap;
}
img.company-detials-cover-image {
  width:100%;
  /* height:350px; */
  object-fit:cover;
  background-position: center center;
  background-size: 100% 100%;
  margin:25px auto;

}
/* .company-detials-cover-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  background-position: center center;
  background-size: 100% 100%;
  margin: 25px auto;
} */
.company img {
  max-width: 100%;
}
  .socials i {
    font-size: 30px;
    margin: 10px;
  }
  .job-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0;
    padding: 20px;
    background-color: rgb(243, 240, 237);
    border:1px solid #777;
    border: 1px solid rgba(24, 51, 204, 0.2);
    border-radius: 5px;
    transition: background-color 0.8s;
  }
  .job-item:hover {
    border: 1px solid rgba(24, 51, 204, 0.2);
    background-color: rgb(255, 255, 255);
    cursor: pointer;
  }


  /* === COMPANY ENDS === */

  /* === DASHBAORD === */
  .dashboard {
    display: flex;
  }
  .dashboard > div {
    margin: 0 15px;
  }
  
  .dashboard .side-bar {
    min-height: 100vh;
    flex: 2;
    box-shadow: 0 0 5px 2px rgb(224, 224, 224);
    padding: 25px;
    margin: 25px auto;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .dashboard .right-side {
    min-height: 100vh;
    flex: 12;
  }
  .side-bar-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
  }
  
  .side-bar ul {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: space-between;
  }
  .side-bar ul li {
    margin: 5px 0;
    list-style: none;
  }
  .side-bar ul li a {
    text-decoration: none;
    color: #212529;
    font-weight: 500;
  }

  
  .widgets {
    display: flex;
    justify-content: space-between;
    /* flex-wrap: wrap; */
    padding:0;
    margin:20px auto;
  }
  
  .widget {
    background-color: #f0f0f0;
    padding: 10px;
    margin: 10px;
    flex: 1;
    /* width: calc(50% - 20px); */
  }
  .gender-static-pie {
    width: 100%;
  }
  ul.widget-list {
  padding:0;
    overflow-y: scroll;
  }
  li.widget-list-item {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    list-style: none;
    margin: 10px auto;
    background-color: #fffdff;
    color: white;
    padding: 10px 15px;
    border: 1px solid rgba(110, 70, 174, 0.25);
    border-radius: 5px;
  }
  li.widget-list-item:hover  {
    background-color: rgba(110, 70, 174, 0.85);
    background-color: rgba(249, 183, 59, 0.1);
    transition: background-color 0.5s linear;
    color:white;
  }
  li.widget-list-item a {
    color: black;
    flex:4;
    font-weight:500;
  }
  li.widget-list-item span {
    color: black;
    flex:2;
    font-weight:500;

  }


  /* === DASHBOARD ENDS === */

  /* === FORM === */

  .form-group {
    display: flex;
    flex-direction: column;
    margin:15px 0px;
}
.form-group label {
    margin-bottom: 3px;
}
input:not([type=checkbox]):not([type=radio]), select{
    padding: 12px;
    width: 100%;
    border-radius: 5px;
    outline:1px solid var(--primary-color-lighter);
    border:1px solid var(--primary-color-lighter);
    border:1px solid var(--primary-color-yellow);
    font-size: 18px;
    box-sizing:border-box;
}

input::placeholder, select::placeholder {
    color:rgb(181, 174, 174);
}
input:not([type=checkbox]):not([type=radio]):hover, select:hover{
    border: 1px solid var(--primary-color);
    border: 1px solid var(--primary-color-green);
}
textarea{
    max-width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius:5px;
    outline:1px solid var(--primary-color-lighter);
    border:1px solid var(--primary-color-lighter);
    /* margin:5px 0; */
}
textarea:hover, textarea:focus {
    border: 1px solid var(--primary-color)
}

/* === FORM ENDS === */

/* === JOB === */
.job-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.job-list > div {
  width: calc(50% - 20px);

}
.job-details {
    background-color: rgb(248, 245, 249);
    padding: 50px;
    border-radius: 8px;
    background-color: var(--background-color-white);
  }
  
  .job-card {
    border: 1px solid rgba(24, 51, 204, 0.1);
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 20px 30px;
    margin-bottom: 10px;
    border: 1px solid rgba(110, 70, 174, 0.1);
    background-color: var(--background-color-white);
  }
  .job-card:hover {
    border: 1px solid rgba(24, 51, 204, 0.2);
    border: 1px solid rgba(110, 70, 174, 0.2);
    cursor: pointer;
    background-color: var(--background-color-soft-blue);
  }
  .job-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .job-header h2 {
    font-size: 24px;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
  }
  .job-header h2 a {
    color:#555;
    text-decoration: none;
  }
  .job-header h2 a:hover {
    color: #6e46ae;
    text-decoration: underline;
  }
  .job-location, .job-posted-date, .salary, .job-category {
    
    font-size: 14px;
    color: #666;
    font-weight: 300;
    padding:0;
    margin:0;
  }
  .job-company-posted-date-location {
    width:100%;
    display: flex;
    flex-direction: wrap;
    justify-content: space-between;
    height:35px;
    margin-bottom: 10px;
    margin-right:25px;
    word-break: break-all;
  }

  .job-footer-bottom {
    width: 450px;
    justify-content: space-between;
    display: flex;
  }
  
  .job-description {
    color: #333;
    margin-top: 10px;
  }
  .job-properties  {
    padding: 0;
  }
  .job-properties span {
    background-color: rgba(24, 51, 204, 0.1);
    padding: 3px 10px;
    margin: auto 5px;
    border-radius: 3px;
    height: 25px;
    line-height: 25px;
    color:#777;
  }
  .job-requirements {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0;
    margin-top: 10px;
  }
  
  .job-requirements span {
    margin-right: 10px;
    margin-bottom: 10px;
    /* background-color: #f0eaf3; */
    background-color: rgba(110, 70, 174, 0.1);
    padding: 2px 10px;
    border-radius: 3px;
    color: black;
    font-weight: 400;
    border: 1px solid rgba(120, 70, 174, 1);
  }
  
  .job-details-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;
  }
  .job-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px auto;

  }
  
  
  .apply-button {
    transition: background-color 0.3s;
    display: inline-block;
    text-decoration: none;
    background-color: rgba(135, 5, 241, 0.75);
    background-color: #6e46ae;
    color: white;
    width: 60px;
    text-align: center;
    border-radius: 5px;
    height: 40px;
    line-height: 40px;
    width: 100px;
    font-weight: 500;
  }
  
  .apply-button:hover {
    background-color: rgba(135, 5, 241, 1);
  }
  
  .deadline-label {
    margin-right: 5px;
    color:#6e46ae;
    font-size: 14px;
  
  } 
  .deadline-value {
    font-weight: 300;
    font-size: 14px;
  } 
  .job-details-header {
    display: flex;
    flex-direction: column;
  }
  .job-details-header h2 {
    text-transform: uppercase;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
    color: #333;
  }
  
  .job-details-content {
    margin: 15px auto;
  }
  .job-details-content p {
    white-space: pre-wrap;
  }
  .applied-date {
    color: green;
  }
  .applied-job-list {
  
    overflow-y: scroll;
  }
  .applied-job-list li {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    list-style: none;
    margin: 10px auto;
    background-color: #fffdff;
    color: white;
    padding: 10px 15px;
    border: 1px solid rgba(110, 70, 174, 0.35);
    border-radius: 3px;
  }
  .applied-job-list li:hover  {
    background-color: rgba(110, 70, 174, 0.85);
    transition: background-color 0.5s linear;
    color:white;
  }
  .applied-job-list li a {
    color: black;
    flex:4;
    font-weight:500;
  }
  .applied-job-list li span {
    color: black;
    flex:2;
    font-weight:500;

  }
  .job-properties .fa-briefcase {
    color: rgba(135, 5, 241, 0.75);
    color: #6e46ae;
  }
  .read-more {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding:10px 20px;
    font-weight: 500;
    color:#6e46ae;
    border:2px solid #6e46ae;
    transition: background-color 0.3s ease;
    font-size: 16px;
  }
  .read-more {
    display: inline-block;
    text-decoration: none;
    color: white;
    text-align: center;
    border-radius: 5px;
    padding:10px 20px;
    font-weight: 500;
    color:#6e46ae;
    border:2px solid #6e46ae;
    transition: background-color 0.3s ease;
    font-size: 16px;
  }
  .read-more:hover {
    background-color: #6e46ae;
    color:white;
  }
  /* === JOB ENDS === */

  /* === NOT FOUND === */

  .not-found {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 200px);
}

/* === NOT FOUND END === */

/* === MAP === */

#map {
  height: 100vh;
  width: 100%;
}
.profile {
  /* background-color: var(--background-color-white); */
  box-shadow: 0px 0px 3px 2px rgb(241, 238, 238);
  padding: 25px;
  background-color: var(--background-color-white);
}




.profile-avatar img {
  max-width: 120px;
  border-radius: 50%;
}

.profile-default-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 44px;
  font-weight: 600;
}
.profile-skills {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;
}

.profile-skills span {
  margin-right: 10px;
  margin-bottom: 10px;
  /* background-color: #f0eaf3; */
  background-color: rgba(110, 70, 174, 0.1);
  padding: 2px 10px;
  border-radius: 3px;
  color: black;
  font-weight: 400;
  border: 1px solid rgba(120, 70, 174, 1);
}
.basic-info {
  background-color: #f2ebf7;
  padding:10px;
}
.basic-info > div:first-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
.profile-user-name {
  text-transform: uppercase;
  font-size:42px;
  font-weight: bolder;
  letter-spacing: 2.5px;
  margin-bottom: 0;
  padding:0;
}
small.profile-profession{
  display: block;
  font-size:20px;
  font-weight: 300;
  letter-spacing: 2.5px;
  padding:0;
  margin:0;
}
.profile-contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.profile-contacts small, .profile-contacts a {
  display: flex;
  align-items: center;
  text-decoration:none;
  margin-right: 60px;
  ;
}
/* hr {
  height: 5px;
  background-color: #000000;
  color:black !important;
} */
 .educations, .experiences {
 

 }
 .education-title, .experience-title, .technical-skills-title {
  border-bottom: 2px solid rgb(198, 193, 193);
  margin: 5px auto;
  padding-bottom: 10px;
  text-transform: uppercase;
  font-weight: bolder;
  color:#666;
  color:black;
  letter-spacing: 2px;
  font-size: 24px;
  font-weight: bolder;
  font-family: Poppins;


 }
.education, .experience, .technical-skill{
  box-shadow: 0px 0px 2px 2px rgba(197, 194, 194, 0.25);
  margin:10px auto;
  padding: 10px;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  border-radius: 5px;

}
.education:hover, .experience:hover, .technical-skill:hover {
  background-color: #f9f9f9;
}


.profile-skills {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
  margin-top: 10px;

  box-shadow: 0px 0px 5px rgb(197, 194, 194);
  margin:15px auto;
  padding: 15px;
  border-radius: 8px;;
}

.profile-skills span {
  margin-right: 10px;
  margin-bottom: 10px;
  /* background-color: #f0eaf3; */
  background-color: rgba(110, 70, 174, 0.1);
  padding: 2px 10px;
  border-radius: 3px;
  color: black;
  font-weight: 400;
  border: 1px solid rgba(120, 70, 174, 1);
}
.profile-date-wrapper {
  font-weight: 300;
}
.profile-date-wrapper i {
  font-weight: 300;
}
.delete-education-wrapper {
  
  display: flex;
  justify-content: end;
}
.edit-delete-buttons {
  width:150px;

}
.edit-delete-buttons a i{
  font-size: 20px;
  margin-right: 10px;
  color: #999;
  font-weight: lighter;
}
.education-edit, .experience-edit, .technical-skill-edit {
  margin:25px auto;
  box-shadow: 0 0 2px 2px rgb(222, 219, 219);
  padding: 25px;
}
.js-form {
  background-color: rgba(120, 70, 174, 0.1);
}
/* === MAP END === */
/** ERRORS **/

.errors li {
  color:red;
}

/** ERRORS END **/

/** APPLICANT **/

img.applicant-avatar-image {
  width:25px;
  height:25px;
  border-radius: 50%;

}

/** profile files **/
.file-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
  padding: 10px;
  background-color: rgb(243, 240, 237);
  border: 1px solid rgba(24, 51, 204, 0.2);
  border-radius: 5px;
  transition: background-color 0.8s;

}


.file-item-first {
  flex:8;
  word-break: break-all;
  
}
.file-item-second  {
 flex:2;
 display: flex;
 justify-content: end;
}
.file-item:hover {
  border: 1px solid rgba(24, 51, 204, 0.2);
  background-color: rgb(255, 255, 255);
  cursor: pointer;
}
.file-item .fa-trash-alt {
  /* font-size: 1.5rem; */
  cursor: pointer;
  transition: color 0.3s;
}
.file-item .fa-trash-alt:hover {
  color: red;
}

/** profile files close **/

/** === PROGRESS === */
.progress-container {
  width: 100%;
  background-color: #f3f3f3;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.progress-bar {
  height: 20px;
  width: 0;
  background-color: #4caf50;
  background: linear-gradient(
    270deg,
    rgba(249, 183, 59, 1) 0%,
    rgba(135, 5, 241, 1) 100%,
    rgba(0, 212, 255, 1) 100%
  );
  text-align: center;
  line-height: 20px;
  color: white;
  border-radius: 10px;
  transition: width 0.3s ease;
}

/*** === END PROGRESS **/

/*** === EDITOR === ***/
.ck-editor__editable {
  resize: vertical;
  min-height: 350px;
}

/*** === EDITOR END === ***/

/*** == MATCH ***/
.job-post-job-seeker-match {
  background-color: #6e46ae !important;
  color:white !important;
  font-weight: 600 !important;
}
/*** === MATCH END === ***/

/*** === SERVICE === ***/

#services {
  max-width: 800px;
  margin: 0 auto;
}

.service-item {
  margin-bottom: 30px;
}

.service-title {
  font-size: 1.5em;
  color: #007BFF;
  color: #DE1414;
  color:#c8b50a;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 10px;

  /* text-decoration-line: underline;
  text-decoration-style:wavy;
  text-decoration-color: red; */
}

.service-description {
  /* font-size: 1.15em; */
  color: #555;
}

/*** === END SERVICE === ***/


  /* Medium devices (landscape tablets, 768px and up) */
  @media only screen and (max-width: 600px) {
    body {
      font-size: 0.8rem;
      line-height: 1.4;
    }
   
    .main-wrapper {
      width: 100%;
      margin: 80px auto 350px auto;
      
    }
    .row {
      flex-direction: column;
    }
  
    /*   nav {
      display: flex;
      flex-direction: column;
      align-content: flex-start;
    }
    nav li {
      list-style: none;
      margin: 5px auto;
    }
    nav li a {
      font-size: 0.8rem;
    } */
    main {
      width: 100%;
      margin: 10px uto;
      padding: 15px;
    }
    .hero {
      display: flex;
      flex-direction: column;
    }
    h1 {
      margin: 10px auto;
      font-size: 22px;
    }
    h2 {
      font-size: 20px;
    }
    h3 {
      font-size: 18px;
    }
    h4 {
      font-size: 16px;
    }
    button.getsita-btn-search {
      width: 100% !important;
      font-size: 1rem;
    }
  
    .getsita-btn-search:hover {
      width: 120px;
    }
    /* === LANDING === */

    .hero h1 {
        font-size: 2rem;
        margin-bottom: 10px;
      }
      
      .hero p {
        font-size: 1.15rem;
        margin-bottom: 10px;
      }
   
      /* === LANDING ENDS === */

      /* === NAVBAR === */

      nav {
        padding: 15px 20px;
      }
      nav img {
        width: 130px;
   
      }
      #menu-btn {
        display: initial;
      }
      #menu-close {
        display: initial;
        font-size: 1.6rem;
        color: white;
        padding: 30px 0 20px 20px;
      }
      nav .navigation ul {
        position: absolute;
        top: -20px;
        right: -220px;
        width: 220px;
        background-color: rgba(80, 80, 87, 0.45);
        backdrop-filter: blur(4.5px);
        border: 1px solid rgb(255, 255, 255, 0.18);
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: start;
        align-items: start;
        transition: all 0.75s ease;
      }
      nav .navigation ul li {
        padding: 25px 0 20px 40px;
        margin-left: 0px;
      }
      nav .navigation ul li a {
        color: white;
      }
    
      .active {
        right: 220px;
      }
    
      .nav-bar-badge {
        display: block;
        position: absolute;
        top: -12px;
        left:130px;
        color:white;
      }

      /* === NAVBAR ENDS === */

    /* === BLOG === */

    .blog-card {
        display: flex;
        flex-direction: column;
        background-color: white;
     }
     .blog-card-top {
        display: flex;
        flex-direction: column;
  
  
     }
     .blog-right a {
        font-size:20px;
        margin:10px auto;
        
     }

     /* === BLOG ENDS === */

     /* === COMPANY === */
     .company-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
      }
      .company-item {
        width: 100%;
        margin: 20px auto;
      }
      img.company-logo {
        width: 35%;
        height: 200px;
        border: 2px solid green;;
      
      }

     /* === COMPANY ENDS === */

     /* === DASHBAORD === */
     .dashboard {
        flex-direction: column;
      }
      .dashboard > div {
        margin: 0px;
      }
      .dashboard .side-bar {
        min-height: 10vh;
        width: 100%;
      }
     
      ul.side-bar-menu {
        /* flex-direction: row; */
      }
      .widgets {
        width: 100%;
        flex-direction: column;
        padding: 5px;
        margin: 10px auto;
      }
      .widget {
        width: 98%;
       
      }
      /* li.widget-list-item{
    
        margin: 10px auto;
        padding: 10px;
      } */
      li.widget-list-item {
        font-size: 0.75rem;
      }

     

      /* === DASHBOARD ENDS === */

      /* === JOB === */
      .job-details {
        margin: 10px auto;
        padding: 10px;
        border-radius: 15px;
        font-size: 0.85rem;
      }
      h2.job-title {
        font-size: 0.85rem;
      }
      .job-company-posted-date-location {
        flex-direction: column;
        margin: 0px 0px 30px 0px;
      }
      .job-footer {
        flex-direction: column;
    
      }
    
      .job-card {
        background-color: #f9f9f9;
        border: 1px solid #ddd;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
        padding: 15px;
        margin-bottom: 10px;
    
      }
      .btn {
        font-size: 0.85rem !important;
      }
      .job-footer-bottom {
        width: 100%;
        flex-direction: column;
      }
      
      /* === JOB ENDS === */

      /** === READ MORE   === **/
      .read-more {
  
        padding:5px 10px;
     
      }


      /** === END READ MORE === */

       /* === VISITORS === */

 .visitors {
    margin:25px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f7f5f8;
    padding: 15px;
 }

  
 .visitors span {
    font-size: 36px;;
 }

 .visitors span strong {
    color: rgba(135, 5, 241, 1);
    color:#6f42c1;
    
  }
  .fa-eye {
    color: rgba(135, 5, 241, 1);
    margin-right: 10px;
    font-weight: 600;
    color:rgba(249, 183, 59, 1);
    font-size: 36px;
  }


  /* === VISITORS ENDS === */
  .profile {
    padding: 15px;
  }

  .profile-user-name {
    font-size:22px;
    font-weight: 600;
    letter-spacing: 2px;
  }
  .para-companies, .para-jobs {
    font-size: 1.15rem;

  }
  .job-list{
    display: flex;
    flex-direction: column;
   
  }
  .job-list > div {
    width: 100%;
  
  }
  .job, .job-card {
    width: 100%;
  }



  }
  