/* Fonts */

@font-face {
    font-family: 'Aileron';
    src: url('../../fonts/Aileron-Regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aileron';
    src: url('../../fonts/Aileron-Italic.woff2') format('woff2');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Aileron';
    src: url('../../fonts/Aileron-Bold.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Aileron';
    src: url('../../fonts/Aileron-BoldItalic.woff2') format('woff2');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Aileron';
    src: url('../../fonts/Aileron-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
:root{
    --black-color: #000000;
    --dark-gray-color: #141414;
    --gray-color: #9b9b9b;
    --orange-light-color: #fd9b40;
    --orange-color: #ff6600;
    --white-color:#ffffff;
    --blue-night:#2c3e50;
    --yellow-stars:#ffd700;
    
    
    --font-family: "Aileron", "sans-serif";
    
    --normal-font:400;
    --bold-font:600;
    
    --z-tool:10;
    --z-fixed:100;
}
*{
    box-sizing: border-box;
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
    font-family: var(--font-family);
}
body{
    font-family: var(--font-family);
}
/* Nav */
.header{
    width: 100%;
    height: 100px;
    background-color: rgba(128, 128, 128, 0);
    position: fixed;
    display: flex;
    flex-direction: row;
    z-index: 1;
}
.menu-toggle {
    display: none;
    font-size: 2rem;
    color: var(--white-color);
    background: none;
    border: none;
    cursor: pointer;
}

.nav{
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: center;
}
.nav_data{
    width: 100px;
    height: 100%;
}

.nav_menu{
   width: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}
.nav_list{
    display: flex;
    flex-direction: row;
    gap: 50px;
}
.nav_list li{
    list-style: none;
}
.nav_list a{
    width: 180px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: var(--white-color);
    padding: 10px;
    background-color: var(--gray-color);
}
.nav_list a:hover{
    cursor: pointer;
    background-color: var(--black-color);
}
/* Class */
.box{
    width: 100%;
    height: 97vh;
    padding: 20px;
}
/* Home */
.box-home{
    position: relative;
    background-image: url(img/bg-1.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.logo{
    position: absolute;
    top: 10%;
    left: 5%;
    width: 215px;
    height: 215px;
    padding: 0;
}
.logo img{
   width: 100%;
   height: auto;
}
.cover-home{
    position: absolute;
    bottom: 16%;
    left: 10%;
    display: flex;
    flex-direction: column;
}
.cover-home h1{
    font-size: 6rem;
    color: var(--white-color);
    margin-bottom: 30px;
}
.cover-home span{
    display: block;
    margin-top: -23px;
}
.cover-home h4{
    font-size: 2rem;
    color: var(--gray-color);
}
/* profile */
.box-profile{
    display: flex;
    flex-direction: row;
    gap: 100px;
    align-items: center;
    background-color: var(--dark-gray-color);
    color: var(--white-color);
}
.box-profile img{
    width: 48%;
    height: auto;
    margin-left: -20px;
}
.cover-profile{
    width: 35%;
    display: flex;
    flex-direction: column;
    padding: 20px;
}
.cover-profile h2{
    font-size: 3rem;
    margin-bottom: 50px;
    font-weight: bold;
}
.cover-profile p{
    font-size: 1.4rem;
    text-align: left;
    margin-bottom: 30px;
}
.cover-profile a{
    width: 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    background-color: var(--gray-color);
    color: var(--white-color);
    padding: 10px;
}
.cover-profile a:hover{
    cursor: pointer;
    background-color: var(--black-color);
}

/* Visi */
.box-visi{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--dark-gray-color);
    color: var(--white-color);
    border-top: 1px solid var(--gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.cover-visi{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.cover-visi h2{
    font-size: 3rem;
    margin-bottom: 30px;
    font-weight: bold;
    color: var(--gray-color);
}
.cover-visi p{
    font-size: 2.3rem;
    width: 60%;
    text-align: center;
    font-weight: bold;

}
/* layanan */
.box-layanan{
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
    background-color: var(--dark-gray-color);
    border-bottom: 1px solid var(--gray-color);
}
.box-layanan .judul{
    text-align: left;
    font-size: 3rem;
    margin-left: 4rem;
    margin-bottom: 2rem;
}
.cover-layanan{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 60px;
}
.cover-layanan img{
    min-height: 320px;
    min-width: 280px;
    width: 40%;
}
.list-layanan{
    min-width: 320px;
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.layanan1{
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.layanan1 span{
    color: var(--gray-color);
    margin-right: 30px;
}
.layanan1 h2{
    font-size: clamp(20px, 2.7rem, 50px);
}
.layanan1 p{
    margin-top: -30px;
    margin-left: 80px;
}

/* Lowongan */
.box-lowongan{
    background-color: var(--dark-gray-color);
    display: flex;
    flex-direction: column;
    color: var(--white-color);
    justify-content: center;
    align-items: center;
    height: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
    border-bottom: 1px solid var(--gray-color);
}
.box-lowongan h2{
    font-size: 3rem;
    margin-bottom: 15px;
}
.box-lowongan hr{
    width: 90%;
    border: 2.2px solid;
}
.box-lowongan a{
    color: var(--white-color);
    background-color: var(--gray-color);
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 280px;
    padding: 10px;
    text-decoration: none;
    margin-top: 40px;
}
.box-lowongan a:hover{
    cursor: pointer;
    background-color: var(--black-color);
}
.cover-list-lowongan{
    width: 80%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: space-evenly;
    margin-top: 50px;
}
.list-lowongan{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 280px;
}
.list-lowongan img{
    width: 100%;
    height: auto;
    margin-bottom: 10px;
}
.list-lowongan h3{
    font-size: 1.6;
    margin-bottom: 3px;
}
.list-lowongan hr{
    width: 100%;
    margin-bottom: 10px;
}
.list-lowongan p{
    width: 100%;
    text-align: justify;
}

/* Contact */
.box-contact{
    width: 100%;
    height: 97vh;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--white-color);
    background-color: var(--dark-gray-color);
}
.box-contact h2{
    text-align: left;
    font-size: 3rem;
    margin-bottom: 20px;
    margin-left: 9rem;
}
.cover-contact{
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.cover-contact img{
    width: 40%;
}
.profil{
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.profil h4{
    font-size: 2.2rem;
    color: gray;
    margin-bottom: 5px;
}
.profil p{
    font-size: 1.1rem;
    margin-bottom: 20px;
}
.box-contact hr{
    border: 2.2px solid rgba(0, 0, 255, 0.342);
}
/* Footer */

/* responsive */
@media screen and (max-width: 1024px) {
    .nav_list {
        gap: 20px;
    }
    .cover-home span{
        margin-top: -10px;
    }
    .cover-home h1 {
        font-size: 4rem;
    }
    .cover-home h4 {
        font-size: 1.5rem;
    }
    .box-profile {
        flex-direction: column;
        text-align: center;
        justify-content: center;
        padding: 40px 20px;
        width: 100%;
        height: 100%;
    }
    .box-profile img {
        width: 80%;
    }
    .cover-profile {
        width: 80%;
    }
    .box-layanan{
        height: 100%;
    }
    .cover-layanan{
        flex-direction: column;
    }
    .cover-layanan img{
        width: 80%;
    }
    .list-layanan{
        width: 90%;
        justify-content: center;
    }
    .box-contact h2{
        text-align: center;
        font-size: 3rem;
        margin-bottom: 50px;
        margin-left: 0;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }
    .nav_menu {
        display: none;
        flex-direction: column;
        background-color: var(--dark-gray-color);
        position: absolute;
        top: 60px;
        right: 0;
        width: 200px;
        padding: 10px;
        border-radius: 5px;
    }
    .nav_menu.active {
        display: flex;
    }
    .nav_list {
        flex-direction: column;
        align-items: center;
    }
    .cover-home {
        bottom: 15%;
        left: 10%;
    }
    .cover-home h1 {
        font-size: 3.2rem;
    }
    .cover-home h4 {
        font-size: 1.2rem;
    }
    .box-profile {
        height: auto;
    }
    .box-profile img {
        width: 90%;
    }
    .cover-profile {
        width: 90%;
    }
    .cover-visi p {
        width: 90%;
        font-size: 1.8rem;
    }
    .box-layanan{
        min-height: 900px;
    }
    .cover-layanan2 {
        flex-direction: column;
        align-items: center;
    }
    .cover-layanan2 img {
        width: 80%;
    }
    .box-lowongan {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .box-contact{
        height: 100%;
        padding: 50px 20px;
    }
    .cover-contact {
        flex-direction: column;
    }
    .cover-contact img{
        width: 80%;
        align-self: center;
    }
}

@media screen and (max-width: 480px) {
    .header {
        height: 80px;
    }
    .cover-home h1 {
        font-size: 2.5rem;
    }
    .cover-home h4 {
        font-size: 1rem;
    }
    .cover-profile h2 {
        font-size: 2rem;
    }
    .cover-profile p {
        font-size: 1rem;
    }
    .cover-visi h2 {
        font-size: 2.5rem;
    }
    .cover-visi p {
        font-size: 1.5rem;
        width: 100%;
    }
    .box-layanan, .box-profile, .box-lowongan, .box-contact {
        padding: 20px;
    }
    .box-lowongan {
        flex-direction: column;
        padding: 15px;
    }
    .box-contact {
        padding: 15px;
    }
    .box-layanan .judul{
        align-items: center;
        text-align: center;
        font-size: 2.5rem;
        margin-left: 0;
    }
    .cover-layanan img{
        align-self: center;
        width: 100%;
        margin-bottom: 30px;
    }
    .list-layanan{
        min-width: 0;
    }
    .layanan1 h2{
        font-size: 1.6rem;
    }
    .layanan1 p{
        margin-top: -30px;
        margin-left: 58px;
    }
}
