.hero-section {
    position: relative;
    background-color: var(--secondary-color-lighter);
    background: url("/static/images/core/hiring.jpg");
    background-position: right!important;
    background-repeat: no-repeat;
    background-size: cover;
    vertical-align: center;
    text-align: center;
    color: var(--color-lighter);
    padding: 4em 2.5em;
    text-align: center;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right, rgb(138, 43, 226, .5), rgb(138, 43, 226, .25));
}

.hero-section div {
    position: relative;
}

.hero-section .h1-45 {
    text-transform: capitalize;
}

.hero-section .p-20 a {
    text-shadow: 0 2px 2px var(--color-lighter)!important;
}


/* begin section-2 */

.section-2 {
    margin: 1em;
}

.section-2 .container {
    width: 80%;
    margin: auto;
}

.section-2 .item-list {
    box-shadow: 2px 2px 0 var(--color-light);
    background-color: var(--secondary-color-lighter);
    padding: 1em;
    margin: 1em ;
    border-radius: 10px;
}

.section-2 .item-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1em;
}

.section-2 .item-row span {
    padding-right: .5em;
}

.section-2 .info {
    padding: .5em;
}
.section-2 .btn {
    border-radius: 0;
    padding: .25em .5em;
    border: none!important;
    color: var(--color-lighter);
    background-image: var(--primary-gradient-color);
}

.section-2 .btn-2 {
    display: none;
}

.section-2 .more {
    display: none;
    padding: 0 .5em .5em;
    max-height: 15em;
    overflow-y: scroll;
    font-family: Georgia, 'Times New Roman', Times, serif;
    color: var(--color-dark);
}

.section-3 {
    margin: 2.5em auto;
    background-color: unset;

}

.section-3 h1, .section-3 .title-header {
    color: var(--color-dark);
    text-align: center;
}
.section-3 .title-header {
    width: 80%;
    margin: 1em auto;
}

.section-3 .form-container {
    color: var(--color-dark);
    background-color: var(--secondary-color-lighter);
    max-width: 70%;
    margin: auto;
    padding:1em;
    border-radius: 10px;
}
.section-3 form{
width: 100%;
}
.section-3 hr{
    border: .5px solid var(--color-light);
    margin-bottom: 1em;
}
.section-3 .form-input{
    width: 100%;
    display: flex;
    flex-flow: wrap;
    justify-content: left;
    padding: .5em 0em;
}
.section-3 .form-input:last-of-type{
   margin: 1em inherit;
}
.section-3 input, .section-3 select{
    height: 2em;
    width: 100%;
    padding: .5em;
    border-radius: 5px;
    border: none;
    outline: none;
}
.section-3 .form-input textarea{
    width: 100%;
    padding: .5em;
    border-radius: 10px;
    border: none;
    outline: none;
}
.section-3 input:hover, .form-input textarea:hover{
    border-bottom: 2px solid var(--secondary-color-light);
}
.section-3 .submit{
    text-align: center;
}
/* end section-2 */

@media screen and (max-width:992px) {
    /* begin section-2 */
    
    /* end section-2 */
}

@media screen and (max-width:600px) {
    .section-2 .container {
        width: 100%;
    }
}