* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    scroll-behavior: smooth;
}

:root {
    --color-hitam:#1a1a1a;
    --shadow:#1a1a1a6a;
    --color-putih: #ffff;
    --color-ungu: #8685ef;
    --text-color: #ffff;
    --text-color-opacity:#b2b2b2c3;
    --background-merah: #660000;
}

.container {
    width: 80%;
    margin-inline: auto;

}

.navbar {
    width: 100%;
    padding: 25px 0 25px 0;
    position: absolute;
    z-index: 9999;
}

.navbar .navbar-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar .navbar-box .logo {
    background-color: var(--text-color-opacity);
    width: 35px;
    height: 35px;
    border-radius: 100px;
    display: grid;
    place-items: center;
}

.navbar .navbar-box .logo p {
    font-weight: bold;
    color: var(--background-merah);

}

.navbar .navbar-box .menu {
    display: flex;
    gap: 40px;

}

.navbar .navbar-box .menu li {
    list-style-type: none;
}

.navbar .navbar-box .menu li a {
    color: var(--text-color-opacity);
    text-decoration: none;
    font-size: 14px;
}

.navbar .navbar-box .social {
    display: flex;
    gap: 15px;
}

.navbar .navbar-box .social a {
    color: var(--text-color-opacity);
    text-decoration: none;
    font-size: 16px;
}

.navbar .navbar-box .menu li a:hover,
.navbar .navbar-box .social a:hover {
    color: var(--text-color);
}

.hamburger {
    padding: 0;
    margin-left: 20px;
    height: 24px;
    display: none;
}

.hamburger .hamburger-box {
    width: 30px;
}

.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #ffff;
    border-radius: 4px;
    position: absolute;
}

.hamburger.is-active .hamburger-inner, .hamburger.is-active .hamburger-inner::before, .hamburger.is-active .hamburger-inner::after {
    background-color: #ffff;
}


/* todo Header  */

.header {
    width: 100%;
    min-height: 100vh;
    background-color: #660000;
    opacity: 1;
}

.header .header-box {
    text-align: center;
}

.header .header-box img {
    width: 200px;
    margin-bottom: 20px;
    border-radius: 100px;
    margin-top: 150px;
    box-shadow: 3px 3px var(--shadow);      
}

.header .header-box h1 {
    color: var(--color-putih);
    font-weight: 500;
}

.header .header-box h2 {
    color: var(--color-putih);
    font-weight: 300;
    margin-bottom: 200px;
    font-weight: 300px;
}

.header .header-box a {
    padding: 15px 25px 15px 25px;
    background-color: var(--text-color-opacity);
    color: var(--color-putih);
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}

.header .header-box a:hover {
    background-color: #bd5f3f74;
}

.header-info {
    display: flex;
    gap: 30px;
    align-items: center;
    position: absolute;
}

.header-info div {
    background-color: #fff38766;
    padding: 10px 15px 10px 15px;
    border-radius: 55px;
    font-size: 20px;
    color: var(--color-putih);
}

.header-info i {
    font-size: 30px;
    transform:rotate(15deg);
    color: var(--text-color-opacity);
}

.header-info.info1 {
    top: 250px;
    left: 220px;
}

.header-info.info1 i {
    transform: rotate(90deg);
}

.header-info.info2 {
    top: 550px;
    left: 220px;
}

.header-info.info3 {
    top: 250px;
    right: 220px;
}
.header-info.info3 i {
    transform: rotate(-180deg);
}

.header-info.info4 {
    top: 550px;
    right: 210px;
}

.header-info.info4 i {
    transform: rotate(-90deg);
}

/* todo About  */

.about {
    width: 100%;
    min-height: 100vh;
    padding: 150px 0 150px 0;
}

.about .title {
    margin-bottom: 50px;
    text-align: center;
}

.about .title h1 {
    color: var(--color-hitam);
}

.about .title p {
    color: var(--text-color-opacity);
}

.about .about-box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    justify-content: center;
}

/* ? slider  */

.about .about-box .box .slider {
    width: 100%;
    height: 400px;
    position: relative;
}

.about .about-box .box .slider img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
    object-position: center;
}

.about .about-box .box .slider img:first-child {
    z-index: 1;
}

.about .about-box .box .slider img:nth-child(2) {
    z-index: 0;
}

.about .about-box .box .navigation-button {
    text-align: center;
    position: relative;
}

.about .about-box .box .navigation-button .dot {
    cursor: pointer;
    height: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: #717171;
    border-radius: 50%;
    display: inline-block;
}

.about .about-box .box .navigation-button .dot.active, .about .about-box .box .navigation-button .dot:hover {
    background-color: var(--color-hitam);
}

/* ? slider  */

.about .about-box .box:nth-child(2) {
    padding-left: 50px;
}

.about .about-box .box:nth-child(2) .ability {
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-color-opacity);
}

.about .about-box .box:nth-child(2) .desc {
    font-size: 14px;
    margin-top: 15px;    
}

.about .about-box .box:nth-child(2) a{
    padding: 15px 25px 15px 25px;
    background-color: var(--background-merah);
    color: var(--color-putih);
    border-radius: 10px;
    font-weight: 500;
    text-decoration: none;
}

.btn-wrapper {
    width: 100%;
    text-align: center;
    margin-top: 40px;
}

.about .about-box .box:nth-child(2) a:hover{
    background-color: #bd5f3f74;
}

.about .about-box .box:nth-child(2) .desc span {
    font-weight: 600;
    display: inline-block;
}


/* todo about  */

/* todo Division */

.division {
    width: 100%;
    min-height: 100vh;
    padding: 150px 0 150px 0;
    background-color: #660000;
}

.division .title {
    text-align: center;
    padding-bottom: 50px;
}

.division .title h1 {
    color: var(--text-color);
}

.division .title p {
    color: var(--text-color-opacity);

}

.division .division-box {
    display: flex;
    flex-wrap: wrap;
}

.division .division-box .column-box {
    flex: 50%;
    padding: 0 15px;
}

/* ? divisi photo */

.division .division-box .photography-box {
    display: flex;
    flex-wrap: wrap;
    /* width: 500px; */
    vertical-align: middle;
    padding-bottom: 20px;
}

.division .division-box .photography-box .box {
    width: 100%;
}

.division .division-box .photography-box .box h3 {
    padding-bottom: 10px;
    color: var(--text-color);
}

.division .division-box .photography-box .box img {
    width: 100%;
    margin-bottom: 5px;
    box-shadow: 5px 5px var(--shadow);
}

.division .division-box .photography-box .box p {
    font-weight: 300;
    color: var(--text-color);
    text-align: justify;
}

/* ? divisi film */

.division .division-box .film-box {
    display: flex;
    flex-wrap: wrap;
    /* width: 500px; */
    vertical-align: middle;
    padding-bottom: 20px;
}

.division .division-box .film-box .box {
    width: 100%;
}

.division .division-box .film-box .box h3 {
    padding-bottom: 10px;
    color: var(--text-color);
}

.division .division-box .film-box .box img {
    width: 100%;
    margin-bottom: 5px;
    object-fit: cover;
    object-position: center;
    box-shadow: 3px 3px var(--shadow);
}

.division .division-box .film-box .box p {
    font-weight: 300;
    color: var(--text-color);
    text-align: justify;
}

/* ? divisi design */
.division .division-box .design-box {
    display: flex;
    flex-wrap: wrap;
    /* width: 500px; */
    vertical-align: middle;
    padding-bottom: 20px;
}

.division .division-box .design-box .box {
    width: 100%;
}

.division .division-box .design-box .box h3 {
    padding-bottom: 10px;
    color: var(--text-color);
}

.division .division-box .design-box .box img {
    width: 100%;
    margin-bottom: 5px;
    object-fit: cover;
    object-position: center;
    box-shadow: 3px 3px var(--shadow);
}

.division .division-box .design-box .box p {
    font-weight: 300;
    color: var(--text-color);
    text-align: justify;
}

/* ? divisi programming */

.division .division-box .programming-box {
    display: flex;
    flex-wrap: wrap;
    /* width: 500px; */
    vertical-align: middle;
    padding-bottom: 20px;
}

.division .division-box .programming-box .box {
    width: 100%;
}

.division .division-box .programming-box .box h3 {
    padding-bottom: 10px;
    color: var(--text-color);
}

.division .division-box .programming-box .box img {
    width: 100%;
    margin-bottom: 5px;
    object-fit: cover;
    object-position: center;
    box-shadow: 3px 3px var(--shadow);
}

.division .division-box .programming-box .box p {
    /* font-size: 14px; */
    font-weight: 300;
    color: var(--text-color);
    text-align: justify;
}

/* todo Division */

/* todo Projects */

.projects {
    padding: 150px 0 150px 0;
    width: 100%;
    min-height: 100vh;
}

.projects .title {
    text-align: center;
    padding-bottom: 50px ;
}

.projects .title h1 {
    padding-bottom: 10px;
}

.projects .title p {
    color: var(--text-color-opacity);
}

.projects .projects-box {
    width: 100%;
    position: relative;
}

.projects .projects-box i {
    height: 50px;
    width: 50px;
    background-color: #660000;
    color: var(--text-color);
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    position: absolute;
    border-radius: 100px;
    top: 50%;
    font-size: 1.25 rem;
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
}

.projects .projects-box i:first-child {
    left: -22px;
}

.projects .projects-box i:last-child {
    right: -22px;
}

.projects .projects-box .carousel {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 3) - 12px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.projects .projects-box .carousel::-webkit-scrollbar {
    display: none;
}

.projects .projects-box .carousel:where(.card, .image) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects .projects-box .carousel.dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.projects .projects-box .carousel.no-transition {
    scroll-behavior: auto;
}

.projects .projects-box .carousel.dragging .card {
    cursor: grab;
    user-select: none;
}

.projects .projects-box .carousel .card {
    scroll-snap-align: start;
    height: 400px;
    width: 300px;
    list-style: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    width: 98%;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.projects .projects-box .carousel .card .image {
    width: 100%;
}


.projects .projects-box .carousel .card .image img {
    width: 100%;
    object-fit: cover;
}

.projects .projects-box .carousel .card h2 {
    font-weight: 500;
    margin: 30px 0 5px;
}

.projects .projects-box .carousel .card .info {
    color: #6a6d78;
    font-size: 14px;
}

.projects .projects-box .carousel .card .description {
    font-size: 14px;

}

/* todo Projects */

/* todo Join  */
.join {
    padding: 150px 0 150px 0;
    width: 100%;
    background-color: var(--background-merah);
}

.join .title {
    text-align: center;
    margin-bottom: 50px;
}

.join .title h1 {
    color: var(--text-color);
}

.join .title p {
    color: var(--text-color-opacity);
}

.join .join-box .box:nth-child(1) {
    display: flex;
    padding-bottom: 50px;
}

.join .join-box .box:nth-child(1) .column-join {
    width: 100%;
    height: 600px;
    overflow: hidden;
    position: relative;
    padding: 0 5px;
    scroll-behavior: auto;
    
}

.join .join-box .box:nth-child(1) .column-join .inner {
    display: flex;
    flex-direction: column;
}

.join .join-box .box:nth-child(1) .column-join img {
    margin-top: 8px;
    vertical-align: middle;
    width: 100%;
    object-fit: cover;
    box-shadow: 0 5px var(--shadow);
}

.join .join-box .box:nth-child(2) {
    text-align: center;
}

.join .join-box .box:nth-child(2) a {
    padding: 15px 25px 15px 25px;
    text-decoration: none;
    background-color: var(--text-color-opacity);
    color: var(--color-putih);
    font-size: 20px;
    text-align: center;
    border-radius: 15px;
}

.join .join-box .box:nth-child(2) a:hover{
    background-color: #bd5f3f74;
}

/* todo Join  */

/* todo Footer  */

.footer {
    width: 100%;
    padding: 100px 0 100px 0;
    background-color: var(--color-hitam);
}

.footer .footer-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
}

.footer .footer-box .box:nth-child(1) {
    width: 400px;
}

.footer .footer-box .box:nth-child(1) h2 {
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer .footer-box .box:nth-child(1) p {
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer .footer-box .box:nth-child(1) .location {
   display: flex;
   gap: 10px;
}

.footer .footer-box .box:nth-child(1) .location i {
    color: var(--text-color);
    font-size: 25px;
}

.footer .footer-box .box:nth-child(2) {
    width: 100px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footer-box .box:nth-child(2) h3 {
    color: var(--text-color);
}

.footer .footer-box .box:nth-child(2) a {
    color: var(--text-color);
    text-decoration: none;
}

.footer .footer-box .box:nth-child(2) a:hover{
    color: var(--text-color-opacity);
}

.footer .footer-box .box:nth-child(3) {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer .footer-box .box:nth-child(3) h3 {
    color: var(--text-color);
}

.footer .footer-box .box:nth-child(3) a {
    color: var(--text-color);
    text-decoration: none;
}

.footer .footer-box .box:nth-child(3) a:hover{
    color: var(--text-color-opacity);
}



/* todo Footer  */



/* todo responsive  */

@media screen and (max-width:1200px) {
    .header .header-box img {
        width: 150px;
        height: 150px;
    }

    .header .header-box h1 {
        font-size: 25px;
    }
    
    .header .header-box h2 {
        font-size: 20px;
        margin-bottom: 100px;
    }

    .header .header-box a {
        font-size: 15px;
    }

    .header-info div {
        font-size: 15px;
    }

    .header-info i {
        font-size: 25px;
    }

    .header-info.info1 {
        left: 100px;
    }

    .header-info.info2 {
        top: 450px;
        left: 100px;
    }

    .header-info.info3 {
        right: 120px;
    }

    .header-info.info4 {
        top: 450px;
        right: 120px;
    }

}

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

    .about .about-box {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(2, 1fr);
    }

    /* todo about  */
    .about .title h1 {
        font-size: 25px;
    }

    .about .title p {
        font-size: 16px;
    }

    .about .about-box .box:nth-child(2) h1 {
        font-size: 25px;
    }

    /* todo Division  */

    .division .title h1 {
        font-size: 25px;
    }

    .division .division-box .photography-box .box h3 {
        font-size: 16px;
    }

    /*  todo Projects  */

    .projects .projects-box .carousel {
        grid-auto-columns: calc((100% / 2) - 9px);
    }

    
}

@media screen and (max-width:768px){
    .hamburger {
        display: block;
    }
    
    .navbar .navbar-box .menu {
        position: absolute;
        flex-direction: column;
        top: 100px;
        gap: 0;
        background-color: var(--color-putih);
        width: 80%;
        transform: scaleY(0);
        transform-origin: top;
        transition: all 0.2s ease;
        opacity: 0;
    }

    .navbar .navbar-box .menu.menu-active {
        transform: scaleY(1);
        opacity: 1;
    }

    .navbar .navbar-box .menu li {
        text-align: center;
        padding: 15px;
        border-top: 1px solid rgba(0, 0, 0, 0.2);
    }

    .navbar .navbar-box .menu li:hover{
        background-color: var(--color-ungu);
    }

    .navbar .navbar-box .menu li a {
        color: var(--color-hitam);
        font-weight: bold;
    }

    .navbar .navbar-box .social {
        margin-left: auto;
    }

    .header .header-info {
        display: none;
    }

    /* todo About  */

    .about .about-box .box:nth-child(2) {
    padding-left: 0;
    }

    /* todo division  */
    .division .division-box .column-box {
    flex: 100%;
    padding: 0 5px;
    }

     /*  todo Projects  */

    .projects .projects-box .carousel {
        grid-auto-columns: 100%;
    }

}

@media screen and (max-width: 475px) {

    .header .header-box h1 {
        font-size: 20px;
    }

    .header .header-box h2 {
        font-size: 16px;
        margin-bottom: 50px;
    }

    .header .header-box a {
        font-size: 14px;
    }

    /* todo about  */
    .about .title h1 {
        font-size: 20px;
    }

    .about .title p {
        font-size: 14px;
    }

    .about .about-box .box:nth-child(2) h1 {
        font-size: 20px;
    }

    .about .about-box .box:nth-child(2) p {
        font-size: 14px;
    }

    .about .about-box .box:nth-child(2) .desc {
        font-size: 12px;
    }
    .about .about-box .box:nth-child(2) a {
        font-size: 14px;
    }

    /* todo Divisi  */

    .division .title h1 {
        font-size: 20px;
    }
    
    .division .title p {
        font-size: 14px;
    }


    .division .division-box .photography-box .box h3 {
        font-size: 16px;
    }

    .division .division-box .photography-box .box p {
        font-size: 14px;
    }

    .division .division-box .film-box .box h3 {
        font-size: 16px;
    }

    .division .division-box .film-box .box p {
        font-size: 14px;
    }

    .division .division-box .design-box .box h3 {
        font-size: 16px;
    }

    .division .division-box .design-box .box p {
        font-size: 14px;
    }
    
    .division .division-box .programming-box .box h3 {
        font-size: 16px;
    }

    .division .division-box .programming-box .box p {
        font-size: 14px;
    }

}
