:root {
    --primary: #EE2B47;
    --secondary: #34374C;
    --secondary-dark: #2C2E3E;
    --bg: #F6F6F6;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    overflow-x: hidden;
}


.container {
    width: 100%;
    max-width: 1385px;
}

/* navbar */

.navbar {
    height: 75px;
    background: rgb(44, 46, 62, 0.98);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
    position: fixed;
    z-index: 9999;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem;
}


.navbar-nav a {
    color: #fff;
    display: inline-block;
    font-weight: 600;
    padding: 1rem;
    padding-bottom: 0.5rem;
    font-size: 14px;
}

.navbar-nav a:hover {
    color: var(--primary);
}

.navbar-nav a::after {
    content: '';
    display: block;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--bg);
    transform: scaleX(0);
    transition: 0.2s linear;
}

.navbar-nav a:hover::after {
    transform: scaleX(0.8);
}

#toogle-nav {
    display: none;
}

#toogle-nav i {
    font-size: 24px;
    color: var(--bg);
}

.close-btn {
    display: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    position: absolute;
    padding-bottom: 2.5px;
    right: 20px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    top: 20px;
    color: var(--bg);
    border: 1px solid var(--bg);
}

.overlay-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 900;
    right: 0;
    background-color: #151515;
    opacity: 0;
    visibility: hidden;
}



/* hero section */

.hero {
    height: 100vh;
    display: flex;
    justify-content: center;
    background-image: url('../img/bg-hero.png');
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
}

.hero .content {
    display: flex;
    padding: 1rem;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
}

.hero .content .content-left {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero .content .content-left h1 {
    width: 400px;
    text-transform: capitalize;
    font-size: 36px;
    letter-spacing: 2px;
    font-weight: 800;
}

.hero .content .content-left h1 span {
    color: var(--primary);
}

.hero .content .content-left p {
    width: 350px;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.btn-content {
    display: flex;
    gap: 1.2rem;
    font-size: 14px;
}


.btn-primary {
    cursor: pointer;
    color: #fff;
    background-color: var(--primary);
    padding: 15px 25px;
    border-radius: 20px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    transition: all .3s ease-in-out;
}

.btn-primary:hover {
    background: #e00829;
}

.btn-secondary {
    /* background-color: var(--primary); */
    padding: 15px 25px;
    border-radius: 20px;
    outline: 3px solid var(--primary);
}

.hero .content .content-right {
    width: 50%;
}

.hero .content .content-right img {
    width: 100%;
    animation-name: fadeimg;
    animation-duration: 2s;
}

footer {
    text-align: center;
    padding: 20px;
    background: var(--secondary-dark);
    font-size: 14px;
    color: #acacac;
    font-weight: 600;
}

@keyframes fadeimg {
    0% {
        opacity: 0;
        transform: translateX(10%);
        filter: blur(30%);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }

}

/* domain section */

.domain {
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    opacity: 0;
    /* Awalnya tidak terlihat */
    transform: translateY(20px);
    /* Pindahkan ke bawah */
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.domain .container h1 {
    margin-bottom: 30px;
    font-size: 32px;
}

.domain .container h1 span {
    color: var(--primary);
}

.domain .container form {
    display: flex;
    justify-content: center;
}

.search-domain {
    padding: 10px 20px;
    border: 3px solid var(--primary);
    border-radius: 10px;
    width: 1000px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

input.domain-choosed {
    width: 100%;
    flex: 1;
    background-color: transparent;
    font-size: 23px;
    color: #575757;
}

select.domain-tld {
    border-right: 8px solid transparent;
    padding-left: 8px;
    border-radius: 5px;
    font-size: 20px;
    color: #575757;
}

form .btn-primary {
    border-radius: 5px;
    font-size: 20px;
    box-shadow: none;
}

#btn-domain i {
    display: none;
}

.alert-domain {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.alert-not-available {
    width: 1000px;
    text-align: start;
    margin-top: 20px;
    padding: 1.5rem 2rem;
    background: #ffeaea;
    color: #580000;
    border-radius: 10px;
    display: none;
}

.alert-min-input {
    width: 1000px;
    text-align: start;
    margin-top: 20px;
    padding: 1.5rem 2rem;
    background: #ffeaea;
    color: #580000;
    border-radius: 10px;
    display: none;
}

.alert-available {
    width: 1000px;
    text-align: start;
    margin: 20px 0;
    padding: 1.5rem 2rem;
    background: #e4fbe6;
    color: #005901;
    border-radius: 10px;
    display: none;
}

.loader {
    border: 5px solid #ffa6b4;
    border-radius: 50%;
    border-top: 5px solid #ec5068;
    width: 20px;
    height: 20px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    margin-right: 10px;
    display: none;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* section fitur */

.fitur,
.harga,
.contact,
.faq {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.fitur .container,
.harga .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 1.2rem;
}

.fitur .container h1 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transform: translateY(20px);
}

.fitur-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}


.fitur-card {
    background-color: #fff;
    box-shadow: 0 0 15px rgb(52, 55, 76, 0.15);
    border-radius: 10px;
    padding: 33px 28px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.fitur-card:nth-child(2) {
    transition-delay: .2s;
}

.fitur-card:nth-child(3) {
    transition-delay: .4s;
}

.fitur-card:nth-child(4) {
    transition-delay: .2s;
}

.fitur-card:nth-child(5) {
    transition-delay: .4s;
}

.fitur-card:nth-child(6) {
    transition-delay: .6s;
}

.fitur-card:nth-child(7) {
    transition-delay: .2s;
}

.fitur-card.show {
    opacity: 1;
    transform: translateX(0);
}

.fitur-card .icon-fitur {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background-color: rgba(238, 43, 72, 0.1);
    margin-bottom: 24px;
    border-radius: 50%;
    color: var(--primary);
}

.fitur-card .icon-fitur i {
    color: var(--primary);
    font-weight: 700;
    font-size: 23px;
}

.fitur-card h4 {
    font-weight: bold;
    font-size: 20px;
    line-height: 34px;
    color: #505051;
    margin-bottom: 20px;
}

.fitur-card p {
    font-size: 14px;
    line-height: 20px;
    color: #6d6f7c;
}

/* section harga */

.harga .container h1,
.table-harga h1,
.table-harga p,
.faq .container h1,
.faq .container p {
    text-align: center;
    color: var(--secondary);
    margin-bottom: 5px;
}

.header-harga {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.harga-tab {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 597px;
    background: #fff;
    box-shadow: 0 0 15px rgb(52, 55, 76, 0.15);
    border-radius: 50px;
    padding: 4px;
    margin-top: 40px;
    list-style-type: none;
}

.harga-tab li {
    width: 100%;
    text-align: center;
    border-radius: 50px;
    padding: 13px 20px;
    cursor: pointer;
}

.harga-tab li.active {
    background-color: var(--primary);
}

.harga-tab li span {
    border: none;
    background: transparent;
    color: #505051;
    font-size: 18px;
    line-height: 1rem;
    padding: 20px;
    white-space: nowrap
}

.harga-tab li.active span {
    color: #fff;
}

.paket-harga {
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.harga-card {
    background-color: #fff;
    color: #505051;
    padding: 40px 25px;
    border-radius: 20px;
    border-width: 1px;
    box-shadow: 0 0 10px rgb(52, 55, 76, 0.05);
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

#custom .harga-card {
    padding: 20px 40px;
}

#custom.paket-harga {
    grid-template-columns: repeat(1, 1fr);
}

.harga-card a {
    font-size: 18px;
    font-weight: 500;
}

.harga-card a {
    color: inherit;
}

.harga-card a:hover {
    color: var(--primary);
}

#custom .harga-card {
    transition-delay: 0s;
}

.harga-card.show {
    opacity: 1;
    transform: translateX(0);
}

.harga-card:nth-child(2) {
    transition-delay: 0.2s;
}

.harga-card:nth-child(1) {
    transition-delay: 0.4s;
}

.harga-card .paket-silver,
.harga-card .paket-gold,
.harga-card .paket-platinum,
.aff-detail {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
}

.harga-card div span.paket {
    padding: 10px 20px;
    text-align: center;
    border-radius: 50px;
    color: rgb(40 161 102);
    background: rgb(40, 161, 102, 0.15);
    font-weight: 600;
}

.harga-card .paket-silver span.paket {
    color: rgb(40 161 102);
    background: rgb(40, 161, 102, 0.15);
}

.harga-card .paket-gold span.paket {
    color: rgb(220 142 1);
    background: rgb(220, 142, 1, 0.15);
}

.harga-card .paket-platinum span.paket {
    color: rgb(0, 158, 237);
    background: rgb(0, 158, 237, 0.15);
}

.harga-card div h3 {
    margin: 20px 0;
    font-size: 24px;
    margin-bottom: 10px;
}

.harga-card div h3 span {
    margin: 20px 0;
    font-size: 28px;
    margin-bottom: 10px;
}

.harga-card .paket-silver h3 {
    color: rgb(27, 121, 75);
}

.harga-card .paket-gold h3 {
    color: rgb(153, 99, 0);
}

.harga-card .paket-platinum h3 {
    color: rgb(0, 125, 188);
}

.aff-detail .container .right-detail .fitur-card:nth-child(2),
.aff-detail .container .right-detail .fitur-card:nth-child(3),
.aff-detail .container .right-detail .fitur-card:nth-child(4) {
    transition-delay: 0s;
}

.harga-card p {
    font-weight: 400;
    font-size: 15px;
}

.harga-card hr {
    margin: 20px 0 20px;
    border-bottom: 1px solid rgba(141, 141, 141, 0.462);
}

.list-fitur {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.list-menu {
    display: flex;
    gap: 10px;
    font-size: 13px;
    line-height: 20px;
}

.list-menu div i {
    font-weight: 900;
    padding: 5px;
    font-size: 8px;
    border-radius: 50%;
}

.list-fitur.silver .list-menu div i {
    color: rgb(40 161 102);
    background: rgb(40, 161, 102, 0.15);
}

.list-fitur.gold .list-menu div i {
    color: rgb(220 142 1);
    background: rgb(220, 142, 1, 0.15);
}

.list-fitur.platinum .list-menu div i {
    color: rgb(0, 158, 237);
    background: rgb(0, 158, 237, 0.15);
}

.table-harga {
    width: 100%;
    padding: 10px 40px;
    opacity: 0;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.table-harga h1,
.table-harga p {
    text-align: center;
    color: var(--secondary);
}

.dropdown-filter {
    display: none;
    margin-top: -5px;
    min-width: 260px;
    max-height: 75vh;
    overflow-x: auto;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    background-color: #fff;
    transform: translate(0);
    transition: 0.5s ease-in-out;
    z-index:99;
}

.search-input {
    width: calc(100% - 20px);
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.dropdown-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.dropdown-item:hover {
    background-color: #f2f2f2;
}

.dropdown-item:last-child {
    border-bottom: none;
}


.dataTable {
    /* border: 1px solid #292F4A !important; */
    border-radius: 8px;
}

th {
    padding: 12px 8px;
    color: var(--primary);
    background: var(--bg) !important;
}

td {
    font-size: 14px;
    color: #505051;
}

th:not(:first-child),
td:not(:first-child) {
    text-align: end !important;
}

td:not(:first-child) {
    font-weight: 600;
}


.table-harga .btn-primary {
    margin-top: 40px;
    margin-bottom: 15px;
    min-width: 260px;
    padding: 10px;
    border-radius: 5px;
    font-size: 17px;
    box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12)
}

.dt-paging nav{
    display: flex;
    gap: 10px;
}
#example_wrapper > div:nth-child(3) > div > div > nav > button.dt-paging-button.disabled.first, #example_wrapper > div:nth-child(3) > div > div > nav > button.dt-paging-button.last,#example_wrapper > div:nth-child(3) > div > div > nav > button.dt-paging-button.first{
    display: none;
}
div.dt-container .dt-paging .dt-paging-button{
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    color: #575757 !important;
    border: none  !important;
}
div.dt-container .dt-paging .dt-paging-button:hover{
    background:#cecece98;
    color: #575757 !important;
}
div.dt-container .dt-paging .dt-paging-button:active{
    box-shadow: none;
}
#example_wrapper > div:nth-child(3) > div > div > nav > button.dt-paging-button.current{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff !important;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    background-color: var(--primary);
    border:none;
}
table.dataTable > thead > tr > th{
    border-bottom: none !important;
    border-top: 1px solid #ddd ;
    border-right: 1px solid #ddd;
    padding: 12px 10px;
}
table.dataTable > thead > tr > th:first-child{
    border-left: 1px solid #ddd;
    border-radius: 10px 0 0 0;
}

table.dataTable > thead > tr > th:last-child{
    border-right: 1px solid #ddd;
    border-radius: 0 10px 0 0;
}
div.dt-container.dt-empty-footer tbody > tr:first-child > * {
    border-top: 1px solid #ddd ;
}
div.dt-container.dt-empty-footer tbody > tr:last-child > * {
    border-bottom: 1px solid #ddd ;
}
div.dt-container.dt-empty-footer tbody > tr:last-child > td:first-child {
    border-radius: 0 0 0 10px;
}
div.dt-container.dt-empty-footer tbody > tr:last-child > td:last-child {
    border-radius: 0 0 10px 0 ;
}
table tr:nth-child(odd) {
    background-color: #ebebeb !important;
}
.dt-layout-cell.dt-layout-start{
 color: #505051 !important;
 font-size: 13px;
}


table.dataTable > tbody > tr > td:first-child{
    border-left: 1px solid #ddd;
    
}
table.dataTable > tbody > tr > td{
    border-top: 1px solid #ddd;
    border-right: 1px solid #ddd;
}
div.dt-container div.dt-layout-row:last-child{
    margin-top: 20px;
}
div.dt-container select.dt-input {
    padding: 8px 5px;
    margin: 0 8px;
    border-radius: 5px;
}
#example_wrapper > div:nth-child(1){
    display: none!important;
}
div.dt-container div.dt-layout-row{
    margin: 0 0 0 0;

}
#example_wrapper > div.dt-layout-row.dt-layout-table{
    overflow-x: auto;
}


.contact {
    margin: 60px 0 40px;
    align-items: center;
    background-image: url('../img/bg-hero.png');
    height: 460px;
    background-size: cover;
    background-repeat: no-repeat;
}

.contact .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

.contact .container .contact-detail {
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    transition-delay: 0.3s;
}

.contact .container .contact-detail h1 {
    font-size: 40px;
    margin-bottom: 25px;
}

.contact-img {
    width: 100%;
    margin-left: 80px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.contact-img img {
    width: 50%;
}

.faq-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    padding: 50px 30px;
}


.faq-card {
    border-radius: 8px;
    box-shadow: 0 0 0 0.05rem rgba(8, 60, 130, 0.06), 0rem 0rem 1.25rem rgba(30, 34, 40, 0.04);
    padding: 20px 24px 0;
    font-weight: 500;
    font-size: 16px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

.faq,
.web-detail {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.faq-quest {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.faq-card .faq-quest i {
    font-size: 14px;
    color: var(--primary);
}

.faq-card .faq-quest:hover {
    color: var(--primary);
}


.faq-card .faq-quest i:nth-child(2) {
    display: none;
}

.faq-card.active .faq-quest i:first-child {
    display: none;
}


.faq-card.active .faq-quest i:nth-child(2) {
    display: block;
}

.faq-card.active .faq-quest {
    color: var(--primary);
}

.faq-card .faq-answer {
    margin-left: 24px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    color: #575757;
    max-height: 0;
    transition: all 0.5s ease;
    /* transition: 0.5s all; */
    overflow: hidden;
}


.faq-card.active .faq-answer {
    max-height: 500px;
    transition: all 1s ease;
}

.web-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 80px 0 100px 0;
    width: 100%;
    padding: 10px 200px;
}

.web-detail p {
    text-align: center;
    font-weight: 600;
    color: #747272 !important;
}

.web-detail h1 {
    font-size: 36px;
    text-align: center;
}

.faq .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 20px;
}

.stat {
    margin: 40px 0;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 60px;
}

.statistika .jumlah {
    font-size: 38px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
}

.statistika .keterangan {
    font-weight: 500;
    color: #747272;
}

.btn-wa {
    padding: 15px 20px;
    border-radius: 40px;
    background: #25D366;
    font-weight: 400;
    color: #fff;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

.btn-wa:hover {
    background: #1db053;
}

.hero.aff .container,
.aff-detail .container .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px
}

.hero.aff .container .content-right {
    display: flex;
    justify-content: center;
    align-items: end;
    padding: 40px 0;
    animation-name: faderight;
    animation-duration: 1.5s;
}

@keyframes faderight {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }

}


.hero.aff .container .content-right img {
    height: 80%;
    object-fit: cover;
}

.hero.aff .container .content-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    animation-name: fadeup;

    animation-duration: 1.5s;
}

.hero.aff .container .content-left h1 {
    font-size: 36px;
}

.aff-detail .container h1 {
    text-align: center;
    color: #505051;
    opacity: 0;
    padding: 0 20px;
    transform: translateY(30px);
    margin-bottom: 40px;
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.aff-detail .container h1 span {
    color: var(--primary);
}

.left-detail {
    display: flex;
    flex-direction: column;
    padding: 0 40px 40px 40px;
    margin-top: 100px
}

.left-detail h3,
.left-detail p {
    color: #6d6f7c;
    margin-top: 10px;
}

.left-detail p {
    line-height: 28px;
    margin-bottom: 10px;
}

.left-detail span {
    font-size: 30px;
    font-weight: 700;
    color: #505051;
    margin-bottom: 20px;
}

.left-detail h3 {
    line-height: 32px;
    font-weight: 500;
    margin-bottom: 10px;
}

.right-detail {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
}

.right-detail .fitur-card {
    display: flex;
    gap: 25px;
    width: 80%;
}

.right-detail .fitur-card h4 {
    margin-bottom: 5px;
}

.right-detail .fitur-card .icon-fitur {
    height: 50px;
    width: 50px;

}

.right-detail .fitur-card i {
    font-size: 12px;
}

.fadeUp {
    animation-name: fadeup;
    animation-duration: 1.4s;
}

.delay-fade {
    animation-delay: 0.5s;
}

@keyframes fadeup {
    0% {
        opacity: 0;
        transform: translateY(30px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}


@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 992px;
    }

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

    .fitur-card:nth-child(2),
    .fitur-card:nth-child(4),
    .fitur-card:nth-child(6) {
        transition-delay: .2s;
    }

    .fitur-card:nth-child(5),
    .fitur-card:nth-child(3),
    .fitur-card:nth-child(7) {
        transition-delay: 0s;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 768px;
    }

    /* navbar */

    .navbar-nav {
        background-color: var(--secondary-dark);
        position: absolute;
        display: block;
        top: 0;
        right: -100%;
        width: 20rem;
        height: 100vh;
        padding-top: 3rem !important;
        padding: 1rem;
        transition: 0.3s;
        z-index: 999;
    }

    .navbar-nav.active {
        right: 0;
    }

    .navbar-nav a {
        display: block;
        font-size: 18px;
    }

    .navbar-nav a::after {
        transform-origin: 0 0;
    }

    .navbar-nav a:hover::after {
        transform: scaleX(0.3);
    }

    #toogle-nav {
        display: inline-block;
    }

    .close-btn {
        display: flex;
    }

    /* hero section */
    .hero .content {
        flex-direction: column;
        justify-content: center;
        align-items: start;
    }

    .hero .content .content-left h1 {
        width: 100%;
        font-size: 40px;
    }

    .hero .content .content-right {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .hero .content .content-right img {
        width: 90%;
    }

    .paket-harga {
        grid-template-columns: repeat(2, 1fr);
        padding: 50px 15px;

    }

    .overlay-nav.active {
        visibility: visible;
        opacity: 0.8;
    }

    .alert-available,
    .alert-not-available,
    .alert-min-input {
        width: 100%;
    }




}

@media (max-width: 768px) {
    .container {
        max-width: 576px;
    }

    .hero {
        height: 950px;
    }

    .hero .content {
        padding: 1.2rem;
        align-items: center;
        gap: 60px;
    }

    .hero .content .content-left {
        align-items: center;
        gap: 25px;
    }

    .hero .content .content-left h1 {
        text-align: center;
    }

    .hero .content .content-left p {
        width: 100%;
        text-align: center;
    }

    .domain .container h1 {
        font-size: 28px;
    }

    .search-domain {
        width: 100%;
        gap: 10px;
        padding: 10px;
    }

    input.domain-choosed,
    select.domain-tld,
    form .btn-primary {
        font-size: 16px;
    }

    select.domain-tld {
        border-right: 5px solid transparent;
        padding-left: 5px;
    }

    #btn-domain {
        padding: 12px 20px;
    }

    #btn-domain i {
        display: block;
        font-size: 16px;
    }

    #btn-domain span {
        display: none;
    }

    .loader {
        border: 4px solid #ffa6b4;
        border-top: 4px solid #ec5068;
        width: 16px;
        height: 16px;
    }

    .fitur-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .harga .container p {
        text-align: center;
    }

    .harga-tab li span {
        font-size: 14px;
        line-height: 0.8;
        padding: 10px 12px;
    }

    .paket-harga {
        grid-template-columns: repeat(1, 1fr);
        padding: 50px 15px;

    }

    div.dt-container div.dt-layout-row{
        display: flex !important;
        gap: 15px;
        flex-direction: column-reverse;
    }

    .contact .container {
        grid-template-columns: repeat(1, 1fr);
        padding: 20px;
        gap: 40px;
    }

    .contact {
        height: 600px;
    }

    .contact-detail {
        text-align: center;
        align-items: center;
    }

    .contact-img {
        display: flex;
        justify-content: center;
        margin-left: 0;
    }

    .faq-flex {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0px;
        padding: 50px 0;
    }

    .faq-card {
        width: 100%;
    }

    .web-detail {
        padding: 20px;
    }

    .stat {
        flex-direction: column;
    }

    .fitur-card:nth-child(2),
    .fitur-card:nth-child(3),
    .fitur-card:nth-child(4),
    .fitur-card:nth-child(5),
    .fitur-card:nth-child(6),
    .fitur-card:nth-child(7) {
        transition-delay: 0s;
    }

    .harga-card:nth-child(2),
    .harga-card:nth-child(1) {
        transition-delay: 0s;
    }

    .table-harga {
        padding: 10px;
    }

    .hero.aff .container,
    .aff-detail .container .grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }

    .right-detail {
        order: 1;
        margin-top: 10px;
        padding: 20px;
    }

    .left-detail {
        order: 2;
        margin-top: 0;
        padding: 20px;
    }

    .left-detail span {
        font-size: 26px;
    }

    .right-detail .fitur-card {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .hero.aff {
        padding: 20px;
    }

    .hero.aff .container .content-left h1 {
        font-size: 28px;
    }

    .hero.aff .container .content-left {
        justify-content: start;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
    }

    .hero .content .content-left h1 {
        font-size: 36px;
    }

    .search-domain {
        width: 100%;
    }

    .fitur .container h1 {
        font-size: 30px;
    }

    .contact .container .contact-detail h1 {
        font-size: 30px;
    }

    .web-detail h1 {
        font-size: 30px;
    }

    .stat {
        gap: 24px
    }

}

@media (max-width: 480px) {
    .btn-content {
        flex-direction: column;

    }

    .btn-content .btn-primary {
        text-align: center;
    }

}

@media (max-width:420px) {
    .harga-tab {
        max-width: 320px;
    }

    .harga-tab li {
        padding: 20px 5px;
        font-size: 11px;
    }
}