* {
    margin: 0;
    padding: 0;
    border: 0;
    background-color: transparent;
    background: none;
}

img {
    display: block;
}
.wrapper-secondary {
    width: 85%;
    margin: 0 auto;
}
#careers-spotlight {
    padding: 170px 0;
}
#careers-spotlight .wrapper-secondary {
    width: 80%;
}
#careers-spotlight .left {
    display: flex;
    flex-direction: column;
}

#careers-spotlight .left h1 {
    color: #ffffff;
    font-size: 55px;
}

#careers-spotlight .left p {
    color: #ffffff;
    letter-spacing: 0.5px;
    width: 35%;
}
#vacancies {
    padding: 100px 60px;
}
#vacancies .wrapper-secondary {
    width: 80%;
    margin: 0px auto;
    max-width: 1350px;
}

#vacancies div.top {
}

#vacancies div.top h4.notification {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.5;
    color: #232323;
}
#vacancies div.top h2.vacancy-heading {
}

#vacancies .cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 65px;
}

#vacancies .cards-container .card {
    border: 1px solid #e1e1e1;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#vacancies .cards-container .card .img-container {
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 10px;
}

#vacancies .cards-container .card .img-container img {
    width: 100%;
    display: block;
    object-fit: contain;
    transition: transform 0.2s;
}

#vacancies .cards-container .card:hover .img-container img {
    transform: scale(1.1);
}

#vacancies .cards-container .card .bottom {
    font-family: "poppins-light";
}

#vacancies .cards-container .details {
}

#vacancies .cards-container .details h3 {
    font-size: 20px;
    color: #232323;
    font-weight: 400;
    margin-bottom: 5px;
}
#vacancies .cards-container .details p {
    font-size: 16px;
    line-height: 1.3em;
    margin-bottom: 10px;
    color: #828282;
}
#vacancies .cards-container .card a.apply {
    color: #032a58;
    display: flex;
    align-items: center;
    font-family: "poppinsregular";
}
#vacancies .cards-container .card a.apply img.arrow {
    display: inline-block;
    margin-left: 10px;
    width: 30px;
}
#application-form {
    padding: 80px;
    background: #e1efff;
}
#application-form div.top {
}
#application-form div.top h4.small-heading {
    margin-bottom: 20px;
    font-size: 16px;
    opacity: 0.5;
    color: #232323;
}
#application-form div.top h2.main-heading {
    margin-bottom: 10px;
    color: #054289;
}
#application-form div.top p.description {
    font-size: 16px;
    color: #828282;
    letter-spacing: 0.6px;
    font-family: "poppins-light";
}
#application-form .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
    padding: 18px 22px;
    background: #fff;
    width: 75%;
    margin: 0 auto;
    border-radius: 12px;
}
#application-form .row .left {
    display: flex;
    align-items: center;
    gap: 12px;
}
#application-form .row .left .pdf-icon {
    width: 18px;
}
#application-form .row .left .pdf-icon img.icon {
    width: 100%;
    height: 100%;
    display: block;
}
#application-form .row .left h5 {
    font-size: 16px;
    color: #232323;
    font-family: "poppins-light";
}
#application-form .row .right {
    display: flex;
    align-items: center;
    gap: 25px;
}
#application-form .row .right .download {
    width: 28px;
    height: 28px;
    cursor: pointer;
    min-width: 30px;
}
#application-form .row .right .download img.download-icon {
    width: 100%;
    height: 100%;
    display: inline-block;
}
@media all and(max-width:480px){
    #application-form {
        padding: 50px 0px;
        background: #e1efff;
    }
}