*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

body {
    background: #ffffff;
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}


/* Header */
.head{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.head-detail{
    gap: 80px;
    margin-right: 50px;
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.head-detail a{
    display: flex;
    align-items: center;
    gap: 5px;
    color: black;
    font-weight: bold;
}

.head-detail p{
    font-size: 13px;
    margin-left: 5px;
}

.head .button-header{
    padding: 0.5rem 1rem;
    color: #fff;
    border: none;
    outline: none;
    display: inline-block;
    font-weight: bold;
    font-size: 0.9rem;
    background: #C01F25;
    width: auto;
    height: auto;
    border-radius: 10px;
}

.logo-head1{
    height: 65.2px;
    margin-left: 10px;
}

.logo-head2{
    display: none;
    height: 50px;
    margin-left: 10px;
}

.head .burger-menu{
    display: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Dropdown Header */
.dropdown-head{
    display: none;
    position: absolute;
    right: 2rem;
    top: 120px;
    width: 300px;
    height: 0%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px; 
    overflow: hidden;
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.dropdown-head.open{
    height: 270px;
}

.dropdown-head li{
    list-style: none;
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dropdown-head li a{
    text-decoration: none;
    color: #111;
    font-size: 1rem;
}

.dropdown-head li a:hover{
    color:#C01F25;
    font-weight: bold;
}

.dropdown-head li .action-button:hover{
    color:#000000;
}

.dropdown-head .action-button{
    padding: 0.5rem 1rem;
    color: #fff;
    border: none;
    outline: none;
    font-weight: bold;
    font-size: 0.9rem;
    background: #C01F25;
    border-radius: 10px;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Navbar */
nav{
    background: #C01F25;
    width: auto;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav .nav{
    height: 75px;
    width: 80%;
    display: flex;
}

.nav ul{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
}

nav .nav ul li a{
    color: #fff;
}

/* Dropdown Services Navbar*/
nav .nav .dropdown-service{
    position: absolute;
    height: 235px;
    width: 200px;
    color:#C01F25;
    backdrop-filter: blur(15px);
    transition: height 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: none;
}

nav .nav ul li{
    position: relative;
}

nav .nav ul li a{
    display: block;
    padding: 20px 25px;
    text-decoration: none;
    text-align: center;
}


nav .nav ul li a:hover{
    background: #631316;
    width: 100%;
}

nav .nav ul li:hover ul.dropdown-service{
    display: block;
}

/* Hero */
.hero{
    width:100%;
}

/* Contact Section */
.contact-body{
    display: flex;
    justify-content: center;
    align-content: center;
    min-height: 50vh;
}
.contact h2{
    font-size: 40px;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.contact form{
    width: 600px;
    text-align: center;
}

form .input-box{
    display: flex;
    justify-content: space-between;
}

.input-box .input-field{
    width: 48.5%;
}

.field .item{
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid #13253F;
    outline: none;
    border-radius: 6px;
    font-size: 16px;
    color: #111;
    margin: 12px 0;
}

.field .item:placeholder{
    color: rgba(255, 255, 255, .1);
}

.field .error-txt{
    font-size: 14.5px;
    color: #d93025;
    text-align: left;
    margin: -5px 0 10px;
    display: none;
}

form .textarea-field .item{
    resize: none;
}

form .textarea-field .error-txt{
    margin-top: -10px;
}

form button{
    padding: 12px 32px;
    background: #13253F;
    border: none;
    outline: none;
    border-radius: 6px;
    box-shadow: 0 0 10px #13253F;
    font-size: 16px;
    color: #fff;
    letter-spacing: 1px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: .5s;
}

form button:hover{
    box-shadow: none;
}

/* Profile Section */
.profile-section{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    margin-top: 40px;
}

.profile-section-width{
    max-width: 1100px;
    width: 100%;
    position: relative;
    flex-direction: column;
}

.profile-section .logo-profile{
    width: 40%;
}

.profile-section p{
    margin-top: 5px;
    text-align: justify;
    line-height: 25px;
}

.profile-section span{
    font-weight: bold;
} 

.profile{
    display: flex;
    gap: 50px;
}

.profile-company{
    text-align: left;
    margin-left: 20px;
    font-weight:700;
}

.visi-company{
    align-items: center;
    width: 75%;
    margin-top: 20px;
}

.visi-company p{
    margin-top: 5px;
    margin-left: 0px;
    line-height: 25px;
    text-align:left;
}

/* Service Section */
.service-section{
    display: flex;
    gap: 40px;
    margin-top: 40px;
    margin-left: 60px;
    margin-right: 60px;
    margin-bottom: 40px;
}

.service-section h1{
    color: black;
    font-size: 40px;
    font-weight: bold;
}

.service-section p{
    color: gray;
}

.cards{
    background: #fff;
}

.service-card{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 50px;
}

/* Service Page */
.service{
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-page{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1100px;
    border-style: double;
    margin-top: 40px;
    margin-left: 40px;
    margin-right: 40px;
    line-height: 20px;
    border-radius: 10px;
}

.service-page h1{
    margin-top: 50px;
    margin-left: 30px;
    font-size: 40px;
}

.service-page .service-list{
    font-size: 16px;
    margin-right: 125px;
    margin-top: 10px;
    margin-left: 30px;
}

.service-page .project1 .detail{
    margin-bottom: 50px;
}

.service-page .project1 .detail p{
    margin-top: 10px;
    text-align: justify;
    line-height: 25px;
    color: #000000;
}

.service-page .project1 .detail li{
    list-style:square;
    margin-top: 20px;
    line-height: 5px;
}

.service-page .project1 .detail .back{
    list-style: none;
    margin-top: 50px;
}

.service-page .project1 .detail .back a{
    color: #C01F25;
    font-weight: bold;
}

.service-page .project1 .detail h5{
    color: #4A86E8;
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 5px;
}

.service-page ul .list{
    list-style:none; 
    margin-top: 30px;
    margin-left: 10px;
    margin-bottom: 10px;
    color: blue;
    font-weight: bold;
    font-size: 20px;
}

.service-page .project1{
    margin-left: 40px;
    display: flex;
}

.service-page .detail li{
    list-style:square;
    margin-left: 40px;
    margin-right: 40px;
}

.service-page .documentation{
    padding: 20px 40px;
    display: flex;
    gap: 20px;
}


/* Project Section */
.project-section{
    box-sizing: border-box;
    margin-top: 40px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-section .project-section-bar{
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1100px;
    width: 100%;
}

.project-section .project-section-bar h1{
    font-size: 40px;
    font-weight: bold;
}

.project-section .project-section-bar p{
    margin-top: 20px;
}

.project-border{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    margin-top: 40px;
}

.carousel-project{
    display: flex;
    max-width: 1100px;
    width: 100%;
}

.card-project{
    width: 380px;
    height: 300px;
    border-radius: 20px;
    overflow: hidden;
    /* border: 8px solid #111; */
    position: relative ;
    margin-left: 20px;
}

.card-img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.card-body{
    width: 100%;
    height: 100%;
    top: -100%;
    right: 0;
    position: absolute;
    background: #1e212238;
    backdrop-filter: blur(7px);
    border-radius: 15px;
    color: #fff;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
}

.card-project:hover .card-body{
    /* right: 0; */
    top: 0;
}

.card-title{
    text-align: center;
    font-size: 20px;
    font-weight: bold;
 }

.card-btn{
    margin-top: 20px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
}

/* Project Page */
.project-container{
    /* max-width: 1100px; */
    margin-top: 50px;
    margin-bottom: 100px;
    display: grid;
    grid-template-areas: 
    'description picture1'
    'description picture2';
    align-items: center;
    justify-content: center;
}

.description{
    grid-area: description;
    margin-top: 50px;
    margin-right: 50px;
    min-height: 250px;
    /* border: solid; */
}

.description h1{
    font-size: 16px;
}

.description .title{
    font-weight: bold;
}    

.description .sub-title{
    margin-top: 5px;
    margin-bottom: 35px;
    font-size: 10px;
    line-height: 14px;
}    

.project-container .picture1{
    display: flex;
    justify-content: center;
    align-items: center;
}

.picture1 img, 
.picture2 img{
    transition: 0.5s;
    border-radius: 20px;
    box-shadow: 0 0 20px 2px rgba(0,0,0,.1);
}

.picture1 img:hover{
    transform:scale(1.1);
    z-index: 3;
}

.picture2 img:hover{
    transform:scale(1.1);
    z-index: 3;
}

.project-container img{
    width: 200px;
    height: 200px;
    margin-right: 20px;
}

/* .project-container .picture2 img{
    grid-area: picture2;
    width: 200px;
    height: 200px;
    margin-right: 20px;
} */


/* Client Section */
.client-section{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.partner{
    max-width: 1200px;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;  
}

.partner h1{
    /* text-decoration: underline; */
    color: #111;
    padding-bottom: 20px;
    text-align: center;
    font-size: 40px;
    font-weight: bold;
}

.partner .card{
    display: flex;
    align-items: center;
    margin-left: 60px;
    margin-right: 60px;
    padding-bottom: 40px;
    gap: 10px;
    width: 60%;
}

/* .partner .card2{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0px;
    margin-top: 20px;
} */

.partner .card img{
    width: 100%;
}

.partner .card .card-profile1,
.card-profile2,.card-profile3{
    background: #fff;
    text-align: center;
}

.partner .card .card-profile1{
    width: 80%;
}

.partner .card .card-profile2{
    width: 55%;
}

.partner .card .card-profile3{
    width: 35%;
}

/* Cards Section */
.wrapper-body1{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

.wrapper1{
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.wrapper1 .carousel1{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    gap: 20px;
}

.carousel1 :where(.card, .img){
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel1 .card1{
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    /* background: linear-gradient(to  top, #13253F, #b44448, #13253F); */
    border: solid #13253F;
    border-width: 5px;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel1 .card1 a{
    color: #111;
}

.card1 .img{
    background: #13253F;
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;
    
}

.card1 .img img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}

.card1 h2{
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
    margin-bottom: 30px;
}

.card1 span{
    color: #ffffff;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify;
}




/* AutoScroll Cards */
.wrapper-body{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

.wrapper{
    display: none;
    max-width: 1100px;
    width: 100%;
    position: relative;
}

.wrapper .right{
    height: 35px;
    width: 35px;
    background: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem; 
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    right: -22px;
}

.wrapper .left{
    height: 35px;
    width: 35px;
    background: #fff;
    text-align: center;
    line-height: 50px;
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    top: 50%;
    font-size: 1.25rem; 
    transform: translateY(-50%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.23);
    left: -22px;
}

.wrapper .carousel{
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% / 4) - 12px);
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: 0;
}

.carousel::-webkit-scrollbar {
    display: none;
}

.carousel :where(.card, .img){
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel.no-transition{
    scroll-behavior: auto;
}

.carousel.dragging{
    scroll-snap-type: none;
    scroll-behavior: auto;
}

.carousel.dragging .card{
    cursor: grab;
    user-select: none;
}

.carousel .card{
    scroll-snap-align: start;
    height: 342px;
    list-style: none;
    /* background: linear-gradient(to  top, #13253F, #b44448, #13253F); */
    border: solid #13253F;
    border-width: 5px;
    border-radius: 8px;
    display: flex;
    cursor: pointer;
    padding-bottom: 15px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.carousel .card a{
    color: #111;
}

.card .img{
    background: #13253F;
    width: 148px;
    height: 148px;
    object-fit: cover;
    border-radius: 50%;

}

.card .img img{
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
}

.card h2{
    font-weight: 500;
    font-size: 1.56rem;
    margin: 30px 0 5px;
    margin-bottom: 30px;
}

.card span{
    color: #ffffff;
    margin-left: 20px;
    margin-right: 20px;
    text-align: justify;
}


/* Footer Section */
.wrapper-body1{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

.wrapper1{
    max-width: 1100px;
    width: 100%;
    position: relative;
}


footer{
    background: #13253F;
    margin-top: 100px;
}

footer .footer{
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 35px;
}

footer .footer .links-container{
    display: flex;
    max-width: 1100px;
    width: 100%;
    position: relative;
    gap: 100px;
}

footer .links-container .links{
    margin-top: 40px;
    margin-bottom: 40px;
}

footer .links-container .links h3{
    color: #fff;
    padding-bottom: 20px;
}

footer .links-container .links ul li{
    list-style:square;
    color: white;
    margin-left: 20px;
}

footer .links-container .links ul .contact{
    list-style:none;
    color: white;
    margin-left: -1px;
}

footer .links-container .links ul li a{
    color: #fff;
    /* opacity: 30%; */
    line-height: 28px;
}

footer .links-container .links ul p{
    margin-top: 10px;
    color: #fff;
    /* opacity: 30%; */
    line-height: 12px;
}

footer .links-container .links ul .last{
    margin-bottom: 20px;
}

.copyright {
    background: #0c0125;
    padding-top: 5px;
    padding-bottom: 5px;
}

.copyright p{
    color: #fff;
    opacity: 30%;
    margin-left: 40px;
}


/* Responsive */
@media screen and (max-width: 1200px) {
   /* Header */
    .head-detail{
        gap: 17px;
    }

    /* .head-detail p{
        font-size: 15px;
    } */
}

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{    
        display:flex;
        align-items: center;
        justify-content: center;
    }

@media screen and (max-width: 1000px) {
    .head-detail .button-header{
        display: none;
    }
 
    /* .head-detail p{
        font-size: 13px;
    } */

    /* Navbar */
    nav .nav ul li a{
        color: #fff;
        font-size: 15px;
    }

    /* Project Section */
    .project-section .project-list{
        font-size: 14px;
    }

    .project-section h1{
        font-size: 30px;
    }

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
    }

    /* Cards */
    .card1 h2{
        font-size: 1.3rem;
    }
}


@media screen and (max-width: 900px) {
    /* Header */
    .head{
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .head-detail{
        gap: 20px;
        margin-right: 5px;
        margin-top: 30px;
        margin-bottom: 30px;
        display: flex;
        justify-content:flex-end;
        align-items:center;
    }

    .head-detail p{
        font-size: 12px;
    }

    .head-detail .button-header{
        display: none;
    }
    
    /* Profile Section */
    .profile-section p{
        font-size: 14px;
    }

    /* Navbar */
    nav .nav ul li a{
        color: #fff;
        font-size: 12px;
    }

    /* Project Section */
    .project-section .project-list{
        font-size: 13px;
    }

    .project-section h1{
        font-size: 29px;
    }

    /* Client Section */
    .partner{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;  
    }

    .partner h1{
        font-size: 40px;
    }

    .partner .card{
        display: flex;
        margin-left: 60px;
        margin-right: 60px;
        padding-bottom: 40px;
        gap: 10px;
        width: 80%;
    }

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
    }

    /* Cards */
    .wrapper1{
        display: none;
    }

   /* AutoScroll Cards */
    .wrapper-body{
        box-sizing: border-box;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 35px;
    }

    .wrapper{
        display: block;
        max-width: 1100px;
        width: 100%;
        position: relative;
    }

    .wrapper .right{
        height: 35px;
        width: 35px;
        background: #fff;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 50%;
        font-size: 1.25rem; 
        transform: translateY(-50%);
        box-shadow: 0 3px 6px rgba(0,0,0,0.23);
        right: -22px;
    }

    .wrapper .left{
        height: 35px;
        width: 35px;
        background: #fff;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        cursor: pointer;
        position: absolute;
        top: 50%;
        font-size: 1.25rem; 
        transform: translateY(-50%);
        box-shadow: 0 3px 6px rgba(0,0,0,0.23);
        left: -22px;
    }

    .wrapper .carousel{
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: calc((100% / 2) - 9px);
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        scrollbar-width: 0;
    }

    .carousel::-webkit-scrollbar {
        display: none;
    }

    .carousel :where(.card, .img){
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .carousel.no-transition{
        scroll-behavior: auto;
    }

    .carousel.dragging{
        scroll-snap-type: none;
        scroll-behavior: auto;
    }

    .carousel.dragging .card{
        cursor: grab;
        user-select: none;
    }

    .carousel .card{
        scroll-snap-align: start;
        height: 342px;
        list-style: none;
        /* background: linear-gradient(to  top, #13253F, #b44448, #13253F);*/
        border: solid #13253F;
        border-width: 5px;
        border-radius: 8px;
        display: flex;
        cursor: pointer;
        padding-bottom: 15px;
        align-items: center;
        justify-content: center;
        flex-direction: column;
    }

    .carousel .card a{
        color: #111;
    }

    .card .img{
        background: #13253F;
        width: 148px;
        height: 148px;
        object-fit: cover;
        border-radius: 50%;

    }

    .card .img img{
        width: 140px;
        height: 140px;
        object-fit: cover;
        border-radius: 50%;
        border: 4px solid #fff;
    }

    .card h2{
        font-weight: 500;
        font-size: 1.56rem;
        margin: 30px 0 5px;
        margin-bottom: 30px;
    }

    .card span{
        color: #ffffff;
        margin-left: 20px;
        margin-right: 20px;
        text-align: justify;
    }

    /* Footer */
    footer .links-container .links h3{
        color: #fff;
        padding-bottom: 10px;
        font-size: 16px;
    }

    footer .links-container .links .CU{
        color: #fff;
        line-height: 20px;
        font-size: 12px;
    }

    footer .links-container .links ul li a{
        color: #fff;
        line-height: 20px;
        font-size: 12px;
    }
    .copyright p{
        color: #fff;
        opacity: 30%;
        margin-left: 40px;
        font-size: 14px;
    }
}

@media screen and (max-width: 850px) {
    /* Header */
    .head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .head-detail{
        display: none;
    }

    .head-detail a, .head-detail p{
        font-size: 12px;
    }

    .head .burger-menu{
        display: flex;
        width: 50px;
    }

    .dropdown-head{
        display: block;
        left: 2rem;
        width: unset;
    }

    /* Navbar */
    nav{
        height: 20px;
    }

    nav .nav ul li a{
        display: none;
    }

    /* Contact Section */
    .contact h2{
        font-size: 35px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .contact form{
        width: 500px;
        text-align: center;
    }

    /* Project Section */
    .project-section .project-list{
        font-size: 12px;
    }

    .project-section h1{
        font-size: 28px;
    }

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
    }
}

@media screen and (max-width: 750px) {
    /* Header */
    .head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }
    
    .head-detail{
        display: none;
    }

    .head .burger-menu{
        display: flex;
        width: 50px;
    }

    .dropdown-head{
        display: block;
        left: 2rem;
        width: unset;
    }

    /* Navbar */
    nav{
        height: 20px;
    }

    nav .nav ul li a{
        display: none;
    }

    /* Profile Section */
    .profile-section h1{
        font-size: 25px;
    }

    .profile-section p{
        font-size: 13px;
    }

    /* Contact Section */
    .contact h2{
        font-size: 30px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .contact form{
        width: 500px;
        text-align: center;
    }

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
    }

    /* Client Section */
    .partner{
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;  
    }

    .partner h1{
        font-size: 35px;
    }
    .partner .card{
        display: flex;
        margin-left: 60px;
        margin-right: 60px;
        padding-bottom: 40px;
        gap: 10px;
        width: 80%;
    }

    .wrapper .carousel{
        grid-auto-columns: calc((100% / 2) - 9px);
    }

    /* Footer */
    footer .footer .links-container{
        gap: 70px;
    }

}

@media screen and (max-width: 700px) {
    /* Footer */
    footer .footer .links-container{
        gap: 50px;
    }
}

@media screen and (max-width: 650px) {
    /* Header */
    .head{
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-right: 10px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .head-detail{
        display: none;
    }

    .head .burger-menu{
        display: flex;
        width: 50px;
    }

    .dropdown-head{
        left: 2rem;
        width: unset;
    }

    /* Contact Section */
    .contact h2{
        font-size: 25px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .contact form{
        width: 450px;
        text-align: center;
    }

    .field .item{
        font-size: 14px;
    }
    
    /* Project Section */
    .project-section h1{
        font-size: 25px;
    }

    /* Service Section */
    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
        font-size: 35px;
    }

    .service-section p{
        display:flex;
        margin-top: 20px;
        align-items: center;
        text-align: justify;
        font-size: 16px;
    }

    /* Card */
    .wrapper .carousel{
        grid-auto-columns: 100%;
    }

    /* Footer */
    footer .footer .links-container{
        gap: 30px;
    }

    footer .links-container .links h3{
        color: #fff;
        padding-bottom: 10px;
        font-size: 13px;
    }

    footer .links-container .links .CU{
        color: #fff;
        padding-bottom: 10px;
        font-size: 9px;
    }

    footer .links-container .links ul li a{
        color: #fff;
        line-height: 15px;
        font-size: 9px;
    }

    .copyright p{
        color: #fff;
        margin-left: 40px;
        font-size: 11px;
    }
    
}

@media screen and (max-width: 500px) {
    /* Profile Section */
    .profile-section p{
        margin-left: 0px;
        font-size: 12px;
    }

    .profile-section .profile{
        margin-left: 0px;
        gap: 40px;
    }

    .visi-company{
        margin-left: 0px;
    }

    .profile .visi-company h1{
        margin-left: 0px;
        font-size: 20px;
    }
    
    /* Contact Section */
    .contact h2{
        font-size: 25px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .contact form{
        width: 400px;
        text-align: center;
    }

    .field .item{
        font-size: 12px;
    }

    /* Project Section */
    .project-section .project-list{
        font-size: 10px;
        line-height: 15px;
    }

    .project-section h1{
        font-size: 20px;
    }

    /* Client Section */
    .partner h1{
        font-size: 20px;
    }
    .partner .card{
        display: flex;
        margin-left: 60px;
        margin-right: 60px;
        padding-bottom: 40px;
        gap: 10px;
        width: 80%;
    }

    /* Service Section */

    .service-page h1{
        margin-top: 50px;
        margin-left: 30px;
        font-size: 20px;
    }

    .service-page .service-list{
        font-size: 10px;
        margin-right: 50px;
        margin-top: 75px;
    }

    .service-section{
        display: block;
    }

    .service-section h1{
        display:flex;
        align-items: center;
        justify-content: center;
        font-size: 25px;
    }

    .service-section p{
        display:flex;
        margin-top: 20px;
        align-items: center;
        text-align: justify;
        font-size: 13px;
    }

    /* Cards */
    .card h2{
        font-size: 20px;
    }
    
    .card span{
        margin-top: 10px;
        margin-left: 30px;
        margin-right: 30px;
        font-size: 13px;
    }

    /* Footer */
    footer .footer .links-container{
        gap: 25px;
    }

    footer .links-container .links h3{
        color: #fff;
        padding-bottom: 10px;
        font-size: 12px;
    }

    footer .links-container .links .CU{
        color: #fff;
        padding-bottom: 10px;
        font-size: 8px;
    }

    footer .links-container .links ul li a{
        color: #fff;
        line-height: 15px;
        font-size: 8px;
    }

    .copyright p{
        color: #fff;
        margin-left: 40px;
        font-size: 10px;
    }
}

@media screen and (max-width: 450px) {
    /* Header */
    .logo-head1{
        height: 50px;
        margin-left: 10px;
    }
    
    /* Contact Section */
    .contact h2{
        font-size: 25px;
        text-align: center;
        margin-top: 40px;
        margin-bottom: 20px;
        font-weight: bold;
    }

    .contact form{
        width: 325px;
        text-align: center;
    }

    .field .item{
        font-size: 10px;
    }
    
    /* Client Section */
    .partner h1{
        font-size: 20px;
    }
    .partner .card{
        display: flex;
        margin-left: 60px;
        margin-right: 60px;
        padding-bottom: 40px;
        gap: 10px;
        width: 80%;
    }
    
    /* Cards */
    .card h2{
        font-size: 20px;
    }
    
    .card span{
        margin-top: 10px;
        margin-left: 40px;
        margin-right: 40px;
        font-size: 13px;
    }

    /* Footer */
    footer .footer .links-container{
        gap: 15px;
    }

    footer .links-container .links h3{
        color: #fff;
        padding-bottom: 10px;
        font-size: 10px;
    }

    footer .links-container .links .CU{
        color: #fff;
        padding-bottom: 10px;
        font-size: 6px;
    }

    footer .links-container .links ul li a{
        color: #fff;
        line-height: 10px;
        font-size: 6px;
    }

    .copyright p{
        color: #fff;
        margin-left: 40px;
        font-size: 10px;
    }
}