:root {
  --primary-bg: #040610; 
  --secondary-bg: #0f242b; 
  --accent-blue: #1577a0; 
  --accent-green: #699c74; 
  --highlight-gray: #494844; 
  --light-gray: #b3af9f; 
  --text-dark: #26282a; 
  --text-medium: #3c5965; 
  --text-light: #324447; 
  --overlay-dark: #0e283a;
}

body{
  background: url("../img/bg1.gif") top center;
  background-size:fill;
  color: #ffffff;
  /* background-color: #013237; */
}

.banner_div {
  background: url(../img/image-1.png);
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;

  height: 80vh;
}
.banner_text_div{
    padding: 3rem;
    padding-top: 5rem;
    margin-top: 3rem;
    width: 65%;
    p{
        text-align: justify;
    }
}

.overlay_dark_1{
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(to right, #000000ef, #000000d0, #000000bd, #0000008f,transparent);    
}

.sub_div, .sub_div_two {
  /* background-color: #000307e0; */
  background-color: #111015e3;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.why_us {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  background-color: #00000075;
  border-radius:8px;

  .why_us_container {
    width: 50%;
    justify-content: start;
    text-align: start;
    padding: 10px;
  }

  ul li{
    list-style: decimal;
    font-weight: bold;
  }

}

.img_frame {
  width: 400px;
  height: 400px;
  padding: 8px;
  /* border: 1px solid #ffffff2f; */
  display: inline-block;
}

.img_inner {
  width: 100%;
  height: 100%;
  background-image: url(../img/image-2.png);
  background-size: cover;
  background-position: center;
}


.underline-input {
  border: none;
  border-bottom: 1px solid var(--accent-blue);
  background-color: transparent;
  color: #000000;
  border-radius: 0;
  box-shadow: none;
  padding-left: 0;
}

.underline-input::placeholder {
  color: var(--light-gray);
  opacity: 0.8;
  font-size: 0.95rem;
}

.underline-input:focus {
  outline: none;
  border-bottom: 1px solid var(--accent-blue);
  background-color: transparent;
  box-shadow: none;
}

.content{
  background-color: #00000075;
  padding: 2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
  text-align: start;
}

.list_div{
  margin-top: 3rem;
}

.jobseeker_main_div ul,
.recruiter_main_div ul {
  padding-left: 1.2rem;
  margin-bottom: 2rem;
}

.jobseeker_main_div ul li,
.recruiter_main_div ul li {
  list-style: decimal;
  font-weight: bold;
}

.application{
  margin-top: 2rem;
  padding: 3rem;
  background-color: #ffffff;
  color: #000000;
  border-radius: 8px;
}

.application input::placeholder{
  color: #000000;
}
.appli_head{
  color: var(--accent-blue);
}

.contact_div {
  padding: 20px;
  border-radius: 8px;
}

.bg_trans_dark1{
  background-color: #00000075;
}
.bg_trans_dark2{
  background-color: #292b2eea;
  border-radius: 8px;
}

@media (max-width:765px) {
    .banner_text_div{
        width: 100% !important;
        margin-top: 5rem;
    }
    .banner_text_div{
        padding: 2rem;
    }
    .why_us {
      .why_us_container {
        width: 100% !important;
      }
    }

    .img_frame {
      width: 100%;
    }
    .application{
      padding: 1.5rem;
    }
    
}