/* landing */
body.careers-template section#landing {
    padding-top: calc(150px + 5%);
    padding-bottom: 100px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}

/* reusable pill cta button */
.tm-cta-button {
    display: inline-block;
    font-size: 15px;
    padding: 1em 2em;
    min-width: 130px;
    text-align: center;
    border-radius: 3em;
    overflow: hidden;
    border: 3px solid #131f6b;
    background: #131f6b;
    color: #f7f7f7;
    font-family: "Poppins-SemiBold";
    font-weight: normal;
    letter-spacing: .3px;
    position: relative;
    transition: .3s;
    z-index: 2;
}

.tm-cta-button:hover {
    background: none;
    color: #131f6b;
}

.tm-cta-button:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #131f6b;
    border-radius: 30px;
    transform: translateY(0);
    transition: .3s;
}

.tm-cta-button:hover:before {
    transform: translateY(100%);
}

.family-matters .left .tm-cta-button {
    margin-top: .5em;
}

/* current-opportunities */
.current-opportunities {
    padding: 90px 0 100px 0;

    @media screen and (max-width: 767px) {
        padding: 50px 0 60px 0;
    }
}

.current-opportunities .content {
    max-width: 1100px;
    margin: 0 auto;
}

.current-opportunities__top {
    position: relative;
    margin-bottom: 60px;

    @media screen and (max-width: 767px) {
        margin-bottom: 40px;
    }
}

.current-opportunities__top-left {
    max-width: 630px;

    @media screen and (max-width: 992px) {
        max-width: none;
    }
}

.current-opportunities__top-left h2 {
    font-size: 27px;
    color: #131f6b;
    margin-bottom: 0.8em;
}

.current-opportunities__description {
    font-size: 16px;
}

.current-opportunities__description p {
    font-size: 16px;
    color: #7a7a7a;
    line-height: 1.6em;
    margin-bottom: 1em;
}

.current-opportunities__description p:last-child {
    margin-bottom: 0;
}

.current-opportunities__top-icon {
    width: 130px;
    position: absolute;
    right: 0;
    top: 0;

    @media screen and (max-width: 992px) {
        display: none;
    }
}

.current-opportunities__top-icon img {
    width: 100%;
    height: auto;
}

.current-opportunities__list {
    border-top: 1px solid rgba(19, 31, 107, 0.15);
}

.current-opportunities__list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding: 30px 0;
    border-bottom: 1px solid rgba(19, 31, 107, 0.15);

    @media screen and (max-width: 600px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

.current-opportunities__list .job-info h3 {
    font-size: 20px;
    font-family: "Poppins-Medium";
    color: #131f6b;
    margin-bottom: 0.4em;
}

.current-opportunities__list .job-info p {
    font-size: 14px;
    color: #7a7a7a;
}

.current-opportunities__list .job-info p .divider {
    margin: 0 .4em;
    color: #c9c9c9;
}

.current-opportunities__list .tm-cta-button {
    flex-shrink: 0;
}
