*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}
 
html,
body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
    background:#111111;
}

/*=====================================
CAREER SECTION
=====================================*/

.career-section{

    display:grid;
    grid-template-columns:48% 52%;

    gap:12px;

    background:#111111;

    margin-top:12px;

}


.career-left{

    background:#111111;

    display:flex;
    align-items:center;
    justify-content:center;

}

.career-content{

    width:75%;

}

.career-right{

    min-height:900px;

}

.career-right img{

    width:100%;
    height:100%;

    display:block;

    object-fit:cover;

}

.career-subtitle{

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:400;
    letter-spacing:6px;
    text-transform:uppercase;
    color:#C79A46;

}

.career-content h2{

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;
    letter-spacing:4px;
    text-transform:uppercase;
    color:#F5F2EB;

    margin:25px 0;

}

.career-content p{

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:400;
    line-height:2;
    color:#F5F2EB;
    opacity:.85;

}

@media (min-width:769px) and (max-width:1024px){

    .career-section{
        grid-template-columns:46% 54%;
        gap:60px;
    }

    .career-content{
        width:88%;
    }

    .career-form{
        gap:24px;
    }

    .career-form input,
    .career-form select,
    .career-form textarea{
        padding:22px 24px;
    }

}

@media (max-width:768px){

    .career-section{
        grid-template-columns:1fr;
        grid-template-areas:
            "image"
            "content";
    }

    .career-left{
        grid-area:content;
        padding:50px 30px;
    }

    .career-right{
        grid-area:image;
        min-height:420px;
    }

    .career-content{
        width:100%;
        padding:50px 30px;
    }

    .career-form input,
    .career-form select,
    .career-form textarea{
        padding:16px 18px;
    }

    .career-btn{
        width:100%;
    }

}

/*=====================================
CAREER CONTENT
=====================================*/

.career-content{

    width:75%;
    margin:auto;

}

.career-subtitle{

    display:block;

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:400;
    letter-spacing:6px;
    text-transform:uppercase;

    color:#C79A46;

    margin-bottom:22px;

}

.career-heading{

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;
    letter-spacing:4px;
    text-transform:uppercase;

    color:#F5F2EB;

    margin-bottom:30px;

}

.career-description{

    font-family:'Inter',sans-serif;
    font-size:15px;
    line-height:2;

    color:#F5F2EB;

    opacity:.85;

    margin-bottom:50px;

}

/*=====================================
FORM
=====================================*/

.career-form{

    display:flex;
    flex-direction:column;

    gap:18px;

}

.form-group{

    width:100%;

}

.career-form input,
.career-form select,
.career-form textarea{

    width:100%;

    padding:18px 22px;

    background:transparent;

    border:1px solid rgba(245,242,235,.18);

    color:#F5F2EB;

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:400;

    outline:none;

    transition:.35s ease;

    box-sizing:border-box;

}

.career-form input::placeholder,
.career-form textarea::placeholder{

    color:rgba(245,242,235,.55);

    font-family:'Inter',sans-serif;

}

.career-form textarea{

    resize:none;

    min-height:170px;

}

.career-form select{

    cursor:pointer;

    color:#F5F2EB;

    appearance:none;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' stroke='%23C79A46' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 20px center;

    background-size:16px;

}

.career-form option{

    background:#111111;

    color:#F5F2EB;

}

.career-form input:focus,
.career-form textarea:focus,
.career-form select:focus{

    border-color:#C79A46;

}



/*=====================================
BUTTON
=====================================*/

.career-btn{

    width:100%;

    padding:18px;

    margin-top:12px;

    background:transparent;

    border:1px solid #C79A46;

    color:#C79A46;

    font-family:'Inter',sans-serif;
    font-size:15px;
    font-weight:500;

    letter-spacing:3px;
    text-transform:uppercase;

    cursor:pointer;

    transition:.35s ease;

}

.career-btn:hover{

    background:#C79A46;

    color:#111111;

}

/*=====================================
MOBILE
=====================================*/

@media(max-width:768px){

.career-content{

    width:100%;
    padding:50px 30px;

}

.career-form input,
.career-form select,
.career-form textarea{

    padding:16px 18px;

}

.career-btn{

    width:100%;

}

}


@media (min-width:769px){

    .career-form{
        margin-top:80px;
    }

}
/* ===========================
   CTA
=========================== */

.cta-section{

    width:100%;

    min-height:55vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:80px 24px;

    text-align:center;

    box-sizing:border-box;

}

.cta-content{

    width:100%;

    max-width:650px;

    margin:0 auto;

}
.cta-content span{

    display:block;

    font-size:15px;

    font-family:'Inter',sans-serif;

    color:#F5F2EB;

    letter-spacing:4px;

    margin-bottom:20px;

}
.cta-content p{

    font-size:15px;

    font-family:'Inter',sans-serif;

    color:#F5F2EB;

    line-height:2;

    margin-bottom:30px;

}

.cta-content a{

    text-decoration:none;

    color:#F5F2EB;

    border-bottom:1px solid #F5F2EB;

    padding-bottom:4px;

    font-size:15px;

    transition:.3s;

}

.cta-content a:hover{

    color:#C79A46;

    border-color:#C79A46;

}

/*==============================
FOOTER
==============================*/


/*=====================================
FOOTER
=====================================*/

.footer{

    width:100%;

    background:#111111;

    border-top:1px solid rgba(255,255,255,.08);

    padding:60px 24px 30px;

    box-sizing:border-box;

    text-align:center;

}

/* Links */

.footer-links{

    display:flex;

    justify-content:center;

    align-items:center;

    flex-wrap:wrap;

    gap:35px;

    margin-bottom:40px;

}

.footer-links a{

    text-decoration:none;

    color:#F5F2EB;

    font-size:15px;

    transition:.35s ease;

}

.footer-links a:hover{

    color:#C79A46;

}

/* Contact */

.footer-contact{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    flex-wrap:wrap;

    margin-bottom:35px;

}

.footer-contact a,

.footer-contact span{

    color:#F5F2EB;

    text-decoration:none;

    font-size:15px;

}

/* Social */

.footer-social{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:35px;

    margin-bottom:45px;

}

.footer-social a{

    color:#F5F2EB;

    text-decoration:none;

    font-size:15px;

    transition:.35s ease;

}

.footer-social a:hover{

    color:#C79A46;

}

/* Copyright */

.footer-bottom{

    border-top:1px solid rgba(255,255,255,.08);

    padding-top:25px;

    color:rgba(245,242,235,.55);

    font-size:14px;

}

/* Mobile */

@media(max-width:768px){

.footer{

    padding:50px 24px 30px;

}

.footer-links,
.footer-contact,
.footer-social{

    width:100%;

    justify-content:center;

    align-items:center;

    margin-left:auto;

    margin-right:auto;

}

.footer-bottom{

    text-align:center;

}

}

/*=====================================
        SEARCH SECTION
======================================*/

.search-section{

    padding:80px 24px 40px;

}

.search-trigger{

    max-width:700px;

    margin:auto;

    height:70px;

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    display:flex;

    align-items:center;

    justify-content:space-between;

    padding:0 30px;

    background:rgba(255,255,255,.03);

    cursor:pointer;

    transition:.35s;

}

.search-trigger:hover{

    border-color:#C79A46;

}

.search-icon{

    color:#C79A46;

    font-size:22px;

}

.search-text{

    flex:1;

    margin-left:18px;

    color:#999;

}

.search-shortcut{

    color:#777;

    font-size:14px;

}

/*=====================================
        MODAL
======================================*/

.search-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    backdrop-filter:blur(18px);

    display:none;

    align-items:flex-start;

    justify-content:center;

    padding-top:120px;

    z-index:9999;

}

.search-modal.active{

    display:flex;

}

.search-box{

    width:min(720px,90%);

    background:#161616;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

}

.search-box input{

    width:100%;

    height:72px;

    background:none;

    border:none;

    outline:none;

    color:#fff;

    font-size:20px;

    padding:0 28px;

}

.search-results{

    max-height:420px;

    overflow-y:auto;

}

.search-item{

    display:block;

    padding:18px 28px;

    color:#fff;

    text-decoration:none;

    border-top:1px solid rgba(255,255,255,.05);

    transition:.25s;

}

.search-item:hover{

    background:#222;

}
