/* banner section */

.banner-section {
    width: 100%;
}

.banner-box {
    width: 100%;
    aspect-ratio: 1728/554;
}

.banner-img-box {
    width: 100%;
    aspect-ratio: 1728/554;
    overflow: hidden;
}

.banner-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.banner-overlay {
    background: #00000099;
    z-index: 10;
    inset: 0;
}

.banner-content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    /* width: 60%; */
    color: #fff;
}

.banner-content h3 {
    font-size: 3rem;
    color: var(--main-clr);
    text-decoration: underline;
    text-underline-offset: 10px;
}

.banner-content p {
    font-size: 1rem;
}

.welcome {
    color: var(--main-clr);
}

@media (width <=768px) {
    .banner-box {
        width: 100%;
        aspect-ratio: 360/273;
    }

    .banner-img-box {
        width: 100%;
        aspect-ratio: 360/273;
        overflow: hidden;
    }

    .banner-content h3 {
        font-size: 2rem;
    }
}



/* career-input-field */

.career-input-field{
    width: 100%;
    padding: var(--pad);
}
.career-input-field h3{
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Poppins';
    color: var(--secoundry-clr);
    margin-bottom: 20px;
}
.career-input-field p{
    font-size: 1rem;

    font-family: 'Poppins';
    /* color: var(--secoundry-clr); */
    margin-bottom: 20px;
}

.input-field-grid{
    padding: 20px 30px 50px 30px;
    box-shadow: 0px 70px 96px 0px #00000040;
    border-radius: 20px
}

.input-field-box{
    width: calc(50% - 30px);
    margin-bottom: 20px;
}
.input-field-box label{
  display: block;
  margin-bottom: 10px;
  font-size: 1rem;
}
.input-field-box input , .input-field-box select{
  width: 100%;
  border: none;
  outline: none;
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
}

.input-field-box select{
    color: #00000066;
}
.input-field-box input::placeholder{
    color: #00000066;
}


.input-field-box button{
    width: 100%;
    border-radius: 10px;
    background: var(--main-clr);
    padding: 8px 16px;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Poppins';
}

@media (width <=768px){
    .input-field-grid{
        padding: 0px;
        box-shadow: none;
    }
    .input-field-box{
        width:100%;
        /* margin-bottom: 20px; */
    }
}