/* ==========================
RESET
========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:#000;

    color:white;

    overflow-x:hidden;

}

/* ==========================
VIDEO
========================== */

#bgVideo{

    position:fixed;

    inset:0;

    width:100%;

    height:100vh;

    object-fit:cover;

    z-index:-3;

}

/* ==========================
OVERLAY
========================== */

.overlay{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.65);

    z-index:-2;

}

/* ==========================
CONTAINER
========================== */

.container{

    width:min(900px,92%);

    margin:80px auto;

}

/* ==========================
LOGO
========================== */

.logo{

    width:170px;

    display:block;

    margin:0 auto 30px;

}

/* ==========================
HEADINGS
========================== */

h1{

    text-align:center;

    font-size:48px;

    margin-bottom:15px;

    font-family:'Cormorant Garamond',serif;

}

.badge{

    width:fit-content;

    margin:auto;

    padding:10px 20px;

    border-radius:40px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(216,198,165,.35);

    margin-bottom:40px;

}

/* ==========================
CARD
========================== */

.card{

    background:rgba(20,20,20,.88);

    border:1px solid rgba(255,255,255,.12);

    border-radius:28px;

    padding:50px;

    line-height:1.8;

}

.card h2{

    font-size:32px;

    margin-bottom:20px;

    color:#D8C6A5;

}

.card h3{

    margin-top:35px;

    margin-bottom:15px;

    color:#D8C6A5;

}

.card h4{

    margin-top:20px;

    margin-bottom:10px;

}

.card ul{

    margin-left:20px;

    margin-bottom:20px;

}

.card li{

    margin-bottom:8px;

}

.card p{

    margin-bottom:18px;

}

a{

    color:#D8C6A5;

    text-decoration:none;

}

a:hover{

    text-decoration:underline;

}

/* ==========================
PHONE
========================== */

@media(max-width:768px){

.container{

    margin:40px auto;

}

.logo{

    width:120px;

}

h1{

    font-size:34px;

}

.card{

    padding:25px;

}

.card h2{

    font-size:24px;

}

}
/* ===================================================
   WORK WITH US FORM
=================================================== */

#careerForm{

    margin-top:35px;

}

#careerForm label{

    display:block;

    margin-bottom:12px;

    color:#D8C6A5;

    font-size:16px;

    font-weight:500;

}

#careerForm input,
#careerForm select{

    width:100%;

    height:62px;

    padding:0 22px;

    border:none;

    outline:none;

    border-radius:18px;

    background:rgba(8,28,48,.90);

    color:#fff;

    font-size:16px;

    font-family:'Inter',sans-serif;

    border:1px solid rgba(216,198,165,.18);

    transition:.35s;

    appearance:none;

    -webkit-appearance:none;

}

#careerForm input::placeholder{

    color:rgba(255,255,255,.45);

}

#careerForm input:focus,
#careerForm select:focus{

    border-color:#D8C6A5;

    box-shadow:

        0 0 25px rgba(216,198,165,.15);

}

#careerForm select{

    cursor:pointer;

    background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5l6.5 6 6.5-6' stroke='white' stroke-width='1.8' fill='none'/%3E%3C/svg%3E");

    background-repeat:no-repeat;

    background-position:right 22px center;

}

.applyButton{

    width:220px;

    height:60px;

    border:none;

    border-radius:40px;

    cursor:pointer;

    background:#B89545;

    color:white;

    font-size:20px;

    font-weight:600;

    transition:.35s;

    display:block;

    margin-left:auto;

}

.applyButton:hover{

    background:#D8C6A5;

    color:#111;

    transform:translateY(-3px);

    box-shadow:

        0 15px 30px rgba(216,198,165,.25);

}

.applyButton:active{

    transform:scale(.98);

}

/* ===================================================
   MOBILE
=================================================== */

@media(max-width:768px){

#careerForm input,
#careerForm select{

    height:56px;

    font-size:15px;

}

#careerForm label{

    font-size:15px;

}

.applyButton{

    width:100%;

    margin-top:15px;

    height:56px;

    font-size:18px;

}

}