.page-template-careers .site-inner .wrap {
    max-width: 100%;
}


#hero {
    position: relative;
    /* max-height: 700px; */
    aspect-ratio: 16 / 6;
}

.background {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
}

.background img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.hero-content {
    position: relative;
    height: 100%;
    width: 100%;
}

.hero-wrap {
    height: 100%;
    max-width: 800px;
    /* background: red; */

    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px;
}

.hero-title {
    font-size: 80px;
    color: white;
    text-shadow: -10px 5px 15px #d48117;
}

.hero-btn {
    padding: 5px 20px;
    border-radius: 50px;
    border: 3px solid white;
    width: fit-content;
    color: #d48117;
    background: white;
    font-weight: bold;
    box-shadow: -10px 5px 15px #d48117;

    overflow: hidden;
    transition: .3s;
}

.hero-btn:hover {
    color: #d48117;
    box-shadow: -15px 10px 25px #d48117;
    transform: scale(1.05);
}

.hero-btn i {
    margin-left: 10px;
    transform: rotate(-90deg);
    transition: .3s;
}

.hero-btn:hover i {
    color: #d48117;
    transform: rotate(0deg);
}




/* join */

#join {
    padding: 50px 30px;
}

#join .wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.join-title {
    font-size: 60px;
    text-align: center;
}

#join ul {
    display: flex;
    margin: auto;
}

#join li {
    list-style-type: disc;
    margin-left: 40px;
    font-size: 30px;
    list-style-position: inside;
}

#join li:first-of-type {
    margin: 0px;
    list-style-type: none;
}

#culture .wrap, #benefits .wrap {
    max-width: 1200px;
}

/* CULTURE */

#culture {
    padding: 50px 30px;
    padding-bottom: 0px;
    background: linear-gradient(0deg, #5cc3de 0%, rgba(0,113,188,1) 100%);
}

#culture hr, #benefits hr {
    /* max-width: 300px;
    margin: auto;
    height: 8px;
    color: white;
    background: white;
    border: 0px;
    border-radius: 50px;
    margin-bottom: 30px; */
}

.culture-title, .benefits-title {
    color: white;
    text-align: center;
    font-size: 60px;
}

#culture ul, #benefits ul {
    display: flex;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 30px;
    color: white;
}

#culture li, #benefits li {
    font-weight: bold;
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#culture li::before, #benefits li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

#culture ul li, #benefits ul li {
    width: calc(33.3% - 30px);
}


.ap-logo {
    margin: auto;
    display: flex;
    padding-top: 50px;
    width: 200px;
	height: auto;
}


/* BENEFITS */

#benefits {
    padding: 50px 30px;
    background: linear-gradient(0deg, #5cc3de 0%, #5cc3de 100%);
}



/* CONTACT */

#contact {
    padding: 30px;
}

#contact .wrap {
    max-width: 1200px;
}

.contact-title {
    font-size: 60px;
    text-align: center;
}







@media(max-width: 1550px) {

    .hero-content {
        height: 100%;
    }
    
    .hero-wrap {
        max-width: 100%;
        height: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 10px;
    }

    .background {
        position: relative;
        aspect-ratio: 16 / 6;
    }

    #hero {
        background: #fbbc39;
        aspect-ratio: initial;
        display: flex;
        align-items: center;
        flex-direction: row-reverse
    }
}


@media(max-width: 1200px) {
    .background {
        aspect-ratio: 1 / 1;
        max-height: 500px;
    }

    .hero-title {
        font-size: 60px;
    }
}


@media(max-width: 900px) {
    #hero {
        flex-direction: column;
    }

    .background {
        height: 300px;
    }

    .hero-title {
        font-size: 45px;
    }

    .ap-logo {
        max-height: 250px;
    }
}

@media(max-width: 750px) {
    .join-title {
        font-size: 45px;
    }

    #join li {
        font-size: 16px;
        padding-left: 10px;
    }
    
    #culture ul li, #benefits ul li {
        width: calc(50% - 30px);
        font-size: 16px;
        text-align: left;
    }

    .culture-title, .benefits-title, .contact-title {
        font-size: 45px;
    }
}

@media(max-width: 500px) {
    .background {
        height: 200px;
    }

    .hero-title, .benefits-title, .join-title, .culture-title, .contact-title {
        font-size: 30px;
    }

    .hero-btn {
        font-size: 16px;
    }

    .hero-wrap {
        overflow: hidden;
    }

    #benefits, #culture {
        padding: 30px;
    }

    #culture ul li, #benefits ul li {
        width: calc(100%);
    }

    #culture ul, #benefits ul {
        gap: 10px;
    }
}