  @import url('https://fonts.googleapis.com/css2?family=Ubuntu+Condensed&display=swap');

  body {
    margin: 0;
    padding: 0;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
  }

  /********  navbar and nav-links  *********/


  nav {
    width: 100%;
    background-color: rgba(245, 245, 245, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    position: sticky;
    top: 0;
    z-index: 999;
  }

  #company-name {
    margin-left: 16px;
    color: #090962;
  }

  #logo {
    margin-left: 5px;
    color: #090962;
    cursor: pointer;
  }

  #logo:before {
    font-family: 'Font Awesome 5 free';
    content: '\f2db';
    font-weight: 900;
    color: #090962;
    font-size: 25px;
    margin-right: 8px;
  }

  nav ul li {
    list-style-type: none;
    display: inline;
    padding-right: 10px;

  }

  ul li .nav-link {
    /* font-size: 18px; */
    text-decoration: none;
    color: #090962;
    margin: 10px;
    padding: 16px;
    border-radius: 8px;
    transition: background-color .15s;
  }

  .nav-form .nav-link {
    border: none;
    background: none;
    font-family: "Ubuntu Condensed", "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: inherit;
    cursor: pointer;
  }

  .nav-form {
    display: inline;
  }

  ul li .nav-link:hover {
    background-color: #090962;
    color: #fff;
  }

  a {
    text-decoration: none;

  }

  /* ******** end of navbar styles  */


  /******** about page styles ********/
  .about-page-container {
    max-width: 900px;
    text-align: center;
    margin: 30px auto 0 auto;
    padding: 10px;

  }

  .hero {
    width: 100%;
    padding: 150px 0;
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
  }

  .about-heading {
    margin-top: 100px;
    display: inline-block;
    width: 100px;
    color: #090962;
    padding: 10px 15px;
    border-radius: 20px;
    letter-spacing: 1px;
    background-color: rgb(245, 245, 245);
  }

  /*  server icon */
  #server:after {
    font-family: 'Font Awesome 5 free';
    content: '\f233';
    font-size: 40px;
    font-weight: 900;
    color: #090962;
  }

  /* window icon */
  #window-restore:after {
    font-family: 'Font Awesome 5 free';
    content: '\f2d2';
    font-size: 40px;
    font-weight: 900;
    color: #090962;
  }

  /* link to go to the top */
  .top-link {
    padding: 10px;
    color: #090962;
    transition: text-decoration .15s;
  }

  .top-link:hover {
    text-decoration: underline;
  }

  /****** service page *******/
  .service-page-container {
    max-width: 900px;
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 10px;

  }

  /* heading  styles*/
  .service-heading {
    padding: 10px;
    margin-bottom: 50px;
    color: #090962;
  }

  /* paragraph styles */
  .para {
    text-align: justify;
    line-height: 2em;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
  }

  /* computer icon */
  #database:after {
    font-family: 'Font Awesome 5 free';
    font-size: 45px;
    content: '\f1c0';
    color: #090962;
    font-weight: 900;


  }

  /* network icon */
  #network-wired:after {
    font-family: 'Font Awesome 5 free';
    font-size: 40px;
    content: '\f6ff';
    color: #090962;
    font-weight: 900;

  }

  /* tech guys image */
  .service-page-container #tech {
    max-width: 400px;
    float: right;
    border-radius: 8px;
    margin: 13px 0 2px 20px;

  }

  /* keyboard image */
  .service-page-container #keyboard {
    max-width: 400px;
    height: 266px;
    float: left;
    border-radius: 8px;
    margin: 13px 20px 2px 0;

  }


  /****** end of service pages *******/

  /**************  dropdow button nav-link styles ******************/

  .drop-btn {
    background-color: rgba(249, 247, 247, 0);
    padding: 14px;
    border: none;
    border-radius: 8px;
    color: #090962;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 16px;
    cursor: pointer;
    transition: background-color .15s;

  }

  .drop-btn:hover {
    background-color: #090962;
    color: #fff;


  }

  /* down triangle unicode */
  .drop-btn:after {
    content: ' \25BE';
  }


  .dropdown {
    position: relative;
    display: inline-block;
  }


  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 105px;
    border-radius: 8px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
    overflow: hidden;

  }

  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;

  }

  .dropdown-content a:hover {
    background-color: #ddd;


  }

  .dropdown:hover .dropdown-content {
    display: block;
    border-radius: 8px;
  }


  /*************   end of dropdown nav-link styles  *****************/


  /************ styles for job search section  ************/
  #job-search-section {
    width: 100%;
    background-image: url('../images/meeting.jpg');
    background-position: center;
    background-size: cover;
    /* background-repeat: no-repeat; */
    background-attachment: fixed;
    padding: 150px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;

  }

  .search-jobs-heading {
    color: #fff;
    text-shadow: 0px 0px 6px black;
  }

  /* search bar styles */
  #search-input-field {
    width: 350px;
    padding: 1em;
    border: none;
    outline: none;
    border-radius: 8px;
  }

  /* job search button styles */
  .job-search-btn {
    padding: 13px 15px;
    margin-left: 20px;
    border: none;
    border-radius: 8px;
    background-color: #6f086f;
    color: #fff;
    cursor: pointer;
    transition: background-color .15s;
  }

  .job-search-btn:hover {
    background-color: #5a0b5a;
  }

  .suggested-job-heading {
    color: #090962;
    margin-left: 23%;
  }

  /************** end of styles for job search section ***************/


  /* *************** styles for job search results   ****************************/


  /* unordered list styles */
  .list-wrapper {
    max-width: 800px;
    margin: 30px auto 0 auto;
    padding: 10px;
    list-style-type: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;

  }

  /* container styles for each company*/
  .all-results {
    color: #090962;
    text-align: center;
  }

  .company-info {
    width: 300px;
    margin: 15px;
    padding: 10px;
    height: 200px;
    box-shadow: 0px 0px 7px lightgrey;
    background-color: #fff;
    border: 2px solid transparent;
    border-radius: 10px;
    position: relative;
    transition: border .15s;
  }

  .company-info:hover {
    border: 2px solid goldenrod;
    box-shadow: 1px 1px 15px #c3c2c2;
  }

  /* job title styles */
  .list-company-job-title {
    margin-bottom: 5px;
    color: rgb(61, 36, 98);
  }

  /* company name styles */
  .list-company-name {
    margin-top: 6px;
    margin-bottom: 2px;
    color: rgb(110, 70, 174);
  }

  /* company location */

  .list-company-location {
    color: rgb(115, 115, 115);
  }

  /* description button styles */
  .job-details-btn {
    background-color: #090962;
    color: #fff;
    padding: 13px 20px;
    border-radius: 8px;
    transition: background-color .15s;
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 20px 20px 0;

  }

  .job-details-btn:hover {
    background-color: #0c0c8f;
  }

  /* back link styles */
  .back-link {
    padding: 10px;
    color: #090962;
    transition: text-decoration .15s;

  }

  .back-link:hover {
    text-decoration: underline;
  }

  /*  no-match-found message */
  .no-match-found-container {
    width: 430px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 1px 1px 8px lightgrey;
    margin: 50px auto 0 auto;
    text-align: center;
    padding: 30px;
    background-color: #090962;

  }

  .no-match-found-message {
    width: 430px;
    padding-top: 50px;
    color: #fff;
  }

  .no-match-found-message:after {
    font-family: 'Font Awesome 5 free';
    content: '  \f11a';
    font-size: 40px;
    font-weight: 900;
    color: #5a0b5a;
  }


  /*********** end of styles for the job search results ********************/

  /* profile page */

  .dashboard-page {
    width: 350px;
    height: 300px;
    padding: 4px;
    border-radius: 8px;
    box-shadow: 1px 1px 8px lightgrey;
    margin: 50px auto 0 auto;
    text-align: center;
    transition: transform .15s;

  }

  .dashboard-page:hover {
    transform: translate(3px, 4px);
  }

  /* delete account button styles */

  .delete-account-btn {
    color: #fff;
    background-color: #090962;
    border: none;
    border-radius: 8px;
    padding: 10px 15px;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 15px;
    margin-top: 50px;
    transition: background-color .15s;
  }

  .delete-account-btn:hover {
    background-color: crimson;

  }


  /* links inside dashboard */
  .create-resume-link {
    color: #cea135;
  }

  .create-job-post {
    color: #cea135;

  }

  .edit-job-post {
    color: #cea135;
  }

  /* end of links inside dashboard */
  /* welcome message when in profile */

  .dashboard-welcome-message {
    text-align: center;
    margin-top: 50px;
    padding: 5px;
    color: #090962;
  }


  /* logout button style */

  .logout-btn {
    width: 100px;
    margin: 10px 0 0 10px;
    padding: 5px 10px;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 16px;
    color: #090962;
    background-color: #fff;
    border: none;
    border-radius: 8px;
    transition: letter-spacing .15s;
  }

  .logout-btn:hover {
    letter-spacing: 1px;
  }

  /*********** form styles  ********************/

  /* align everything inside container */
  .form-container {
    text-align: center;
  }

  /* link styles  */

  .signup-link,
  .login-link {
    color: #cea135
  }

  .form-container h2 {
    color: #090962;
    display: flex;
    justify-content: center;
    position: relative
  }

  /* form specs */
  .the-form {
    padding: 10px;
    width: 450px;
    height: 450px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 1px 1px 8px lightgrey;
    margin: 40px auto;
    position: relative;
  }

  /* change height of create-resume form */
  #create-resume-form {
    height: 300px;

  }

  /* create resume button */
  #create-resume-btn {
    margin-top: 50px;
  }

  /* change height of application form */
  #application-form {
    height: 500px;
  }

  #resume-title {
    color: #cea135;
    ;
  }

  /* text area  */
  .text-area {
    letter-spacing: 1px;
    outline: none;
    border: none;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 14px;
    width: 450px;
    padding: 8px;
    background-color: rgb(245, 245, 245);
    border-radius: 4px;
    height: 200px;
    box-sizing: border-box;
  }

  /* create post text area styles */

  .create-post-text-area {
    letter-spacing: 1px;
    outline: none;
    width: 450px;
    padding: 10px;
    border: none;
    font-family: 'Ubuntu Condensed', "Lucida Grande", Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: rgb(245, 245, 245);
    border-radius: 4px;
    box-sizing: border-box;
  }

  /*  change height of developer signup form */
  #dev-signup-form {
    height: 500px;
  }

  /* change height of login form */
  #login-form {

    height: 250px;
  }



  .para-message {
    color: #090962;
    text-align: center;
  }

  /* label styles */
  label {
    color: #666;
    display: inline-block;
    text-align: center;
    width: 100%;
    font-size: 18px;

  }


  .the-form input,
  .the-form button {

    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: rgba(245, 245, 245);
    outline: none;
    width: 100%;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
  }


  .the-form button {

    background: #090962;
    border-radius: 5px;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    padding: 8px 16px;
    text-transform: uppercase;
    width: 100%;
    transition: .15s;
  }

  .the-form button:hover {
    background-color: #131397;

  }

  .error {
    display: block;
    background-color: crimson;
    width: 100%;
    color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 2px;
    margin-top: 40px;

  }

  .login-error {
    color: crimson;
  }


  /*************** Job description styles ***************************** */


  /* general styles for job description wrapper */
  .job-detail-container {

    overflow: scroll;
    margin: 30px auto;
    width: 550px;
    height: 450px;
    text-align: justify;
    border-radius: 10px;
    box-shadow: 1px 1px 8px lightgray;

  }

  /* styles for header with general info about company */
  .job-info-header {
    padding: 10px;
    width: 100%;
    background-color: #f3f3f3;
    box-sizing: border-box;
    color: #090962;
    position: sticky;
    top: 0;
    z-index: 999;

  }

  .job-title {
    margin-bottom: 8px;
  }

  .job-company {
    margin-top: 2px;
    margin-bottom: 2px;
  }

  .job-location {
    margin-top: 0;
  }

  .job-salary {
    padding: 0 30px 0 30px;
  }

  .job-work-hours {
    padding: 0 30px 0 30px;
  }


  .job-description {
    padding: 15px 30px;
    line-height: 2em;
  }

  /* apply-button container */
  .apply-now-btn-wrapper {
    text-align: center;
    margin-top: 40px;
  }

  /* styles for apply-now button */
  .apply-now-btn {
    width: 75px;
    color: #fff;
    padding: 12px 25px;
    background-color: #090962;
    border-radius: 20px;
  }

  .apply-now-btn:hover {
    background-color: #131397;
    ;
  }

  /* application form */
  #application {
    height: 600px;
  }

  .submission-container {
    width: 430px;
    height: 200px;
    border-radius: 10px;
    box-shadow: 1px 1px 8px lightgrey;
    margin: 50px auto 0 auto;
    text-align: center;
    padding: 30px;
    background-color: #090962;


  }

  .application-message {
    width: 430px;
    padding-top: 50px;
    color: #fff;
  }

  .application-message:after {
    font-family: 'Font Awesome 5 free';
    content: '  \f118';
    font-size: 40px;
    font-weight: 900;
    color: #5a0b5a;

  }

  .application-error {
    background-color: crimson;
    width: 100%;
    color: #fff;
    padding: 20px;
    text-align: center;
    margin: 0;

  }

  .cancel-btn {
    color: #090962;
    transition: color .15s;
  }

  .cancel-btn:hover {
    color: crimson;
  }

  /* error message styles */
  .error-msg {
    color: #090962;
  }


  /*****************  end of job description styles  ********************/

  /* *Footer */
  footer {
    margin-top: 100px;
    width: 100%;
    padding: 30px 0;
    background-color: #090962;
    color: #fff;

  }

  footer .links {
    text-align: center;
  }

  footer .links ul {
    display: inline-block;
    width: 200px;
    padding: 0;
  }


  footer ul li:first-child {
    font-weight: 500;
    margin-bottom: 10px;
  }

  .links ul li {
    list-style-type: none;

  }

  footer .links ul a {
    line-height: 1.5em;
    color: #fff;
    opacity: 0.7;
    transition: text-decoration .15s;
  }

  footer .links ul a:hover {
    text-decoration: underline;
    color: #fff;
    opacity: 1;
  }

  #copy-right {
    font-size: 12px;
    text-align: center;
    font-family: "Lato", Arial, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 0;

  }

  /********  media queries ***********/


  @media only screen and (max-width: 730px) {

    nav #logo span,
    .home-link {
      display: none;

    }

  }

  @media only screen and (max-width:490px) {
    .search-jobs-heading {
      text-align: center;
    }

    #search-input-field {
      display: block;
      margin: 0 auto;
    }

    .job-search-btn {
      margin-top: 40px;
      margin-left: 125px;
      margin-right: 125px;
    }

    #job-search-section {
      padding: 75px 0;
    }

  }

  @media only screen and (max-width: 395px) {

    .service-page-container #keyboard {
      max-width: 370px;
    }
  }