/* @import url('https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200..800&family=Tilt+Neon&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Beau+Rivage&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&family=Sacramento&display=swap');

*{
    padding: 0;
    margin: 0;
    /* font-family:Dosis,Tilt Neon, sans-serif, 'Times New Roman', Times, serif; */
}

header{
    background-color: hsla(123, 93%, 48%, 0.46);
    text-align: left;
    padding-left: 10%;
    padding-top: 15px;
    padding-bottom: 15px;

}
header h2{
    font-family: "Libre Baskerville", serif;
    font-weight: 700;
    font-size: 3rem;
    color: transparent;
    -webkit-text-stroke: 1px black;
    animation: back 3s linear forwards;
    transform: translateY(-30%);
    animation-delay: 0.5s;
    opacity: 0;
}
.text-NH{
    font-family: "Sacramento", cursive;
    font-weight: 400;
    font-style: normal;
    text-shadow: #ef0303 5px 0 10px;
    
  }
@keyframes back {
    30%{
        opacity: 1;
        color: rgb(235, 246, 246);
        transform: translateY(0);
    }
    100%{
        opacity: 1;
        color: rgb(55, 71, 71);
        transform: translateY(0);
        size: -10px;
    }
    
}
.navbar{
    background-color: darkslategrey;
    text-align: right;
    font-size: 1.25em;
    padding-right: 10%;
    padding-left: 10%;
    font-weight: 600;
}
.navbar a {
    text-decoration: none;
    color: aliceblue;
    justify-content: center;
    padding: 20px 3px;
    display: inline-block;
    margin: 0;
    border-radius: 0.3em;
    font-family: Dosis;
    position: relative;
}
.navbar a::after{
    content: '';
    width: 0;
    height: 3px;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #fff;
    transition: width 0.3s;
}
.navbar a:hover::after{
    width: 70%;
}
.section{
    display: flex;
    flex: 1;
}
main{
    align-content: center;
    justify-content: center;
    align-items: center;
    gap: 1em;
}
.container{
    display: flex;
    margin: 0 auto;
    width: 80%;
    height: 70vh;
    background-color: darkslategrey;
    /* justify-content: center;
    align-items: center;
    text-align: center; */
    padding-top: 50px;
    padding-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
    color: #f7f7f7;
}
.container-contact{
    color: #f7f7f7;
    display: flex;
    flex-direction: column;
    width: 80%;
    height: 80%;  
}
.container-grid-armada{
    color: #f7f7f7;
    display: grid;
    gap: 5px;
    margin-left: 10%;
    margin-right: 10%;
    grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
    width: 80%;
    padding-bottom: 40px;
}
.detail-grid{
    color: #111;
    border:#07bc10 2px solid;
    width: inherit;
    background: #21ed2b;
    font-size: 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out ;
}
.container2{
    color: #f7f7f7;
    display: flex;
    flex-direction: column;
    margin: 0;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 0;
    width: 80%;
    height: auto;
    padding-bottom: 100px;
    background-image: linear-gradient(45deg,darkslategray,grey);
    align-items: center;
    font-family: Dosis,sans-serif;
}
.container2 .title-2{
    padding-left: 10%;
    padding-right: 10%;
    padding-bottom: 30px;
    width: 80%;
    text-align: center;
}
.container2 .title {
    color: #f7f7f7;
    font-size: 3rem;
    margin: 2rem 0rem;
    border-bottom: 1px solid#21ed2b;
}
.container2 p,ul li{
    width: 70%;
}
.container2 ul li{
    margin-left: 15%;
}
.containerAbout{
    flex-direction: column;
    flex: 1;
    margin: 1em;
    text-align: center;
    width: 80%;
}
.containerAbout p{
    font-size: 1.25rem;
}
.container-grid-armada img{
    max-width: 90%;
    max-height: 90%;
    border-radius: 1.25em;
    cursor: pointer;
    transition: max-width 300ms ease-out;
}
.container-grid-armada img:hover{
    max-width: 95%;
    max-height: 95%;
}
.faq{
    border-bottom: 3px solid #111;
    width: 70%;
    margin-top: 2rem;
    padding-bottom: 1rem;
    color: aliceblue;
    cursor: pointer;
}
.question{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.answer{
    max-height: 0;
    overflow: hidden;
    transition: max-height 300ms ease-in-out ;
}

main{
    margin: 0;
    padding: 0;
}
.content{
    justify-content: center;
    text-align: center;

}

.icon-bank{
    width: 36px;
}
footer{
    display: flex;
    border-top: rgb(255, 167, 122) solid 1px;
    background-color:#08d412;
    padding: 0 20px;
    height: auto;
    justify-content: center;
}
.bottom{
    margin: 1;
    display: flex;
    background-color:hsla(123, 93%, 48%, 0.46);
    text-align: left;
    padding: 0 20px;
    height: auto;
}
button{
    background-color: lavender;
    color: black;
    justify-content: center;
}
.detail-container{
    display: flex;
    flex-direction: column;
    color: #111;

}
.detail-text{
    max-height: 0;
    overflow: hidden;
    transition: max-height 500ms ease-in-out;
}
.detail-btn{
    background-color: #09ec14;
    color: rgb(232, 238, 229);
    text-align: center;
    cursor: pointer;
    padding: 3px;
    border-radius: 2em;
}
.detail-text--show{
    max-height: 300px;
    transition: max-height 500ms ease-in-out;
}

section a{
    text-decoration: none;
}
.fa-youtube{
    color: red;
    font-size: 1.5em;
    margin: 4px;
    text-decoration: none;
}
.fa-whatsapp{
    color: #f7f5f5;
    font-size: 1.5em;
    /* text-decoration:solid #f7f5f5;
    background-color: #f7f5f5; */
    border-radius: 50%;
    border-color: #07bc10 solid 3px;
    padding: 3px;
}
.fa-tiktok{
    color: rgb(1, 1, 1);
    font-size: 1.5em;
    margin: 4px;
    text-decoration: none;
}
.banner{
    display: flex;
    flex-direction: column;
    padding: 5px;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    background-size:cover;
    background-position: center;
    align-items: center;
    text-align: center;
    justify-content: center;
    animation: forwards 5s linear;
}
.banner-service{
    display: flex;
    padding: 5px;
    width: 100%;
    height: 100%;
    min-height: 30vh;
    box-sizing: border-box;
    background-image: url(img/banner-service.jpg);
    background-size:cover;
    background-position: center;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 10%;
}
.banner-unggul{
    display: flex;
    padding: 5px;
    width: 100%;
    height: 100%;
    min-height: 30vh;
    box-sizing: border-box;
    background-image: url(img/banner-unggul.jpg);
    background-size:cover;
    background-position: center;
    align-items: center;
    text-align: center;
    justify-content: center;
    margin-bottom: 10%;
}
.banner h1{
    margin: 7% ;
    color: hsla(120, 93%, 56%, 0.84);
    padding: 20px 10%;
    border: 2px solid #07bc10;
    border-radius: 5em;
    border-style: solid;
    font-size: 4em;
    text-shadow: #111 2px 0 5px;
    box-shadow: #f7f5f5 3px 0 50px inset;
    opacity: 0;
    animation: title 3s linear forwards;
}
@keyframes title{
    100%{
        opacity: 1;
    }
}
.service,.unggul{
    width: 100%;
    box-sizing: border-box;
    color: #fff;
    align-items: center;
    text-align: center;
    align-content: center;
    text-shadow: #0a0a0a 0px 0 10px;
}

.icon-index{
    background:#fff;
    width: 70px;
    height: 70px;
    border:  #09ec14 solid 5px;
    border-radius: 50%;
    text-align: center;
    align-content: center;
    font-size: 1.75rem;
    margin: 10px auto;
    cursor: pointer;
}
.box{
    width: 200px;
    float: left;
}
.box-icon{
    width: 70px;
  -webkit-filter: drop-shadow(5px 5px 5px #222);
  filter: drop-shadow(5px 5px 5px #222);
    float: left;
}
table{
    background-color: #f7f7f7;
    width: 80%;
    font-family: Arial, Helvetica, sans-serif;
    box-sizing: border-box;
}
table th{
    color: #111;
    background-color: #09ec14;
}
table td{
    background-color: darkslategray;
    padding: 3px;
}
table .Harga{
    text-align: right;
    padding-right: 10px;
    padding-left: 10px;
    font-size: small;
    font-family: serif;
}
.Pesan{
    background-color: darks;
    border: #09ec14  solid 5px;
    padding: 5px;
    border-radius: 3em;
    font-weight: 700;
    color: #058d0c;
    text-shadow: #0a0a0a 0px 0 5px;
    cursor: pointer;
}
.Pesan:hover::after{
    max-width: 110%;
    max-height: 110%;
}
a.pesan-1{
    cursor: pointer;
}
@media  (max-width:320px){
    h2{font-size: 5px;
    }
    .icon-index{
        font-size: 5px;
    }
}
@media  (max-width:375px){
    .container-grid-armada{
        grid-template-columns: repeat(auto-fit,minmax(200px,1fr));
    }
    h2{font-size: 1em;
    }
    .icon-index{
        font-size: 1em;
    }
    .box{
        width: auto;
    }
    table td{
        padding: 0;
    }
}
@media  (max-width:450px){
    .navbar a::after{
        bottom: 5px;
    }
    h2{font-size: 1em;
    }
    .icon-index{
        font-size: 1em;
    }
    /* .navbar{
        padding: 0 3px;
    } */
    .navbar a{
        font-size: small;
        padding: 10px 3px;
    }
    table td{
        padding: 0;
    }
}    
@media  (max-width:768px){
    .banner{
        background-size: contain;
        background-repeat: no-repeat;
    }

    .banner h1 {
        font-size: 1em;
        padding: 1em;
    }
    .icon-index{
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }
    .box{
        align-items: center;
        float: none;
    }
    .detail-grid{
        font-size: 1.5em;
    }
    table td{
        padding-top: 2px;
        padding-bottom: 2px;
        font-size: x-small;
    }
    table th{
        font-size: x-small;
    }
    table .Harga{
        padding-left: 2px;
        padding-right: 2px;
        font-size: xx-small;
    }
}
@media (max-width:1440px){
    .banner{
        background-size: contain;
        background-repeat: no-repeat;
    }
    .box{
        align-items: center;
    }
    .banner h1 {
        font-size: 2em;
    }
}
@media (min-width:1440px){
    .navbar a{
        font-size: 1.5em;
    }
    .container2{
        min-height: 100vh;
        align-items: center;
        justify-content: center;
        font-size: x-large;
    }
}