/* reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
/* system */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 40px;
}
body {
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}
a {
    text-decoration: none;
    color: inherit;
}
img {
    display: block;
    max-width: 100%;
    height: auto;
    pointer-events: none;
    user-select: none;
}
p {
    color: #42424f;
    line-height: 28px;
}
ul,
span {
    color: #42424f;
}
b {
    font-weight: 700;
}
/* classes */
.wrapper {
    display: block;
}
.container {
    max-width: calc(1300px + 24px + 24px);
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}
.button {
    transition: all 0.3s ease-in-out;
}
.button:hover {
    cursor: pointer;
    transform: scale(1.05);
    filter: brightness(1.075);
}
.button-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}
.animate-up {
    transition: all 0.3s ease-in-out;
    box-shadow: 0 0 0 #00000000;
}
.animate-up:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px #0000000a;
}
.link {
    transition: all 0.3s ease-in-out;
    position: relative;
}
.link:hover {
    color: #3d41b5;
}
.link::after {
    content: "";
    display: block;
    position: absolute;
    width: 0;
    height: 1px;
    background: #3d41b5;
    transition: all 0.6s ease-in-out;
    left: 0;
    bottom: -2px;
}
.link:hover::after {
    width: 100%;
}
/* header */
header {
    position: sticky;
    top: 0;
    z-index: 10;
    overflow-x: clip;
}
header .header-top {
    background: #3d41b5;
    min-height: 36px;
    color: #ffffff;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header .header-top .container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
header .header-top > img:first-child {
    position: absolute;
    left: 0;
    top: 0;
}
header .header-top > img:last-child {
    position: absolute;
    right: 0;
    bottom: 0;
}
header .header-top-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
@media (max-width: 950px) {
    header .header-top-content {
        max-width: 768px;
        width: 100%;
        gap: 32px;
    }
}
header .header-top-content span {
    font-weight: 600;
    font-size: 12px;
    color: #ffffff;
}
@media (max-width: 950px) {
    header .header-top-content span {
        display: none;
    }
}
header .header-social {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    background: #ffffff33;
    padding: 5px 10px;
    border-radius: 9999px;
}
@media (max-width: 950px) {
    header .header-social {
        max-width: 84px;
        width: 100%;
    }
}
header .header-social span {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}
@media (max-width: 950px) {
    header .header-social span {
        display: none;
    }
}
header .header-main {
    min-height: 80px;
    background: #ffffff;
}
header .header-main .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    min-height: 80px;
    gap: 24px;
}
header .header-main nav {
    flex: 1;
    max-width: 586px;
}
header .header-main nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-weight: 600;
    font-size: 14px;
}
@media (max-width: 1300px) {
    header .header-main nav ul {
        justify-content: center;
    }
}
@media (max-width: 950px) {
    header .header-main nav ul {
        display: none;
    }
}
header .header-button a,
header .header-hamburger-menu .header-button a {
    background: linear-gradient(180deg, #6672ff 0%, #3d41b5 100%);
    color: #ffffff;
    padding: 16px 22px;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
@media (max-width: 950px) {
    header .header-button a {
        display: none;
    }
}
header .header-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
}
@media (max-width: 950px) {
    header .header-hamburger {
        display: flex;
    }
}
header .header-hamburger span {
    width: 24px;
    height: 3px;
    background: #3d41b5;
    border-radius: 9999px;
    transition: all 0.3s ease-in-out;
}
header .header-hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(12.5px);
}
header .header-hamburger.active span:nth-child(2) {
    opacity: 0;
}
header .header-hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12.5px);
}
header .header-hamburger-menu {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #ebecf9;
    padding: 16px 24px;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    height: calc(100vh - 80px);
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
    max-width: 80%;
    width: 100%;
}
header .header-hamburger-menu.active {
    display: flex;
    opacity: 1;
    transform: translateX(0);
}
header .header-hamburger-menu ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-top: 40px;
}
header .header-hamburger-menu a {
    font-weight: 600;
    font-size: 14px;
    color: #3d41b5;
    padding: 12px 0;
}
header .header-hamburger-menu .header-button {
    margin-top: auto;
    margin-bottom: 24%;
}
/* section-hero */
#hero {
    position: relative;
    min-height: 800px;
    background: url(img/hero.webp);
    background-size: cover;
    background-position: bottom center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: clip;
    margin-bottom: 32px;
    padding-top: 24px;
    padding-bottom: 104px;
}
@media (max-width: 1300px) {
    #hero {
        min-height: 720px;
    }
}
@media (max-width: 768px) {
    #hero {
        min-height: 640px;
    }
}
#hero .container {
    z-index: 1;
}
#hero .hero-product {
    z-index: 0;
}
#hero .hero-content .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
#hero .hero-city {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    max-width: 438px;
    margin-inline: auto;
    margin-bottom: 40px;
    text-transform: uppercase;
}
@media (max-width: 768px) {
    #hero .hero-city {
        display: none;
    }
}
#hero .hero-city span {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
}
#hero h1 {
    font-weight: 800;
    font-size: 64px;
    line-height: 80px;
    color: #ffffff;
    text-align: center;
    text-transform: uppercase;
    text-shadow: 0px 0px 100px #5a66d2;
    max-width: 820px;
    margin-inline: auto;
    margin-bottom: 40px;
    visibility: hidden;
    display: none;
}
#hero .hero-text {
    max-width: 720px;
    margin-inline: auto;
    margin-bottom: 40px;
    transition: all 0.3s ease-in-out;
}
#hero:has(.button:hover) .hero-text {
    filter: brightness(1.075);
    transform: translateY(-5px);
}
#hero .hero-product img {
    position: absolute;
    max-width: 520px;
    left: -60px;
    bottom: -22px;
    right: auto;
    z-index: 2;
    transition: all 0.6s ease-in-out;
}
@media (max-width: 768px) {
    #hero .hero-product > img {
        display: none;
    }
}
@media (max-width: 1300px) {
    #hero .hero-product img {
        max-width: 420px;
    }
}
#hero:has(.button:hover) .hero-product > img {
    filter: brightness(1.075);
    transform: translateY(-5px);
}
#hero .hero-product img:nth-child(2) {
    right: -130px;
    left: auto;
    bottom: -42px;
    z-index: 1;
}
#hero a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 23px;
    gap: 10px;
    font-weight: 700;
    background: linear-gradient(180deg, #fcce45 0%, #fabb00 100%);
    border: 1.5px solid #ffd760;
    border-radius: 9999px;
    max-width: max-content;
    margin-inline: auto;
    z-index: 3;
}
#hero .hero-ridge {
    position: absolute;
    bottom: -100px;
    left: 0;
    width: 100%;
    z-index: 1;
}
@media (max-width: 1300px) {
    #hero .hero-ridge {
        bottom: -80px;
    }
}
@media (max-width: 768px) {
    #hero .hero-ridge {
        bottom: 0;
        width: 150%;
        left: 50%;
        transform: translateX(-50%);
    }
}
#hero .hero-ridge img {
    max-width: none;
    width: 100%;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}
/* section-product */
#product .container:first-child {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-block: 22px 80px;
    gap: 24px;
}
#product .container:first-child h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #3d41b5;
    max-width: max-content;
    text-align: center;
}
#product .container:first-child p {
    max-width: 607px;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    color: #42424f;
}
#product .product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 1300px) {
    #product .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 950px) {
    #product .product-grid {
        display: flex;
        flex-direction: column;
    }
}
#product .product-card {
    background: #fdfdfe;
    border: 1px solid #ebecf9;
    padding: 38px 29px;
    border-radius: 40px;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 6px;
    overflow: hidden;
}
#product .product-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    max-width: 206px;
    margin-left: auto;
}
@media (max-width: 1300px) {
    #product .product-copy {
        max-width: none;
        padding-left: 24px;
    }
}
#product .product-copy h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #3d41b5;
    text-wrap: nowrap;
}
#product .product-card-cta {
    background: url(img/product-cta.webp);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 40px;
    padding: 20px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
@media (max-width: 1300px) {
    #product .product-card-cta {
        text-align: center;
        grid-column: span 2;
        align-items: center;
        padding: 64px 24px;
    }
}
#product .product-card-cta h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #ffffff;
    margin-bottom: 8px;
}
#product .product-card-cta p {
    font-size: 16px;
    line-height: 25px;
    color: #ffffff;
    margin-bottom: 24px;
}
@media (max-width: 1300px) {
    #product .product-card-cta p {
        margin-bottom: 40px;
    }
}
#product .product-card-cta a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 14px 20px;
    gap: 8px;
    background: linear-gradient(180deg, #fcce45 0%, #fabb00 100%);
    border: 1px solid #ffd760;
    border-radius: 9999px;
    font-weight: 600;
}
/* section-location */
#location {
    margin-top: 80px;
    margin-bottom: 100px;
}
#location .location-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 64px;
    gap: 24px;
    background: url(img/location.webp);
    border-radius: 50px;
}
@media (max-width: 768px) {
    #location .location-content {
        flex-direction: column;
        padding: 64px 32px;
    }
}
#location .location-copy {
    max-width: 432px;
}
#location h2 {
    font-weight: 700;
    font-size: 30px;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 20px;
}
#location p.location-copy {
    color: #ffffff;
    max-width: 684px;
    font-weight: 600;
    margin-bottom: 26px;
}
#location p.location-address {
    color: #ffffff;
    max-width: 582px;
    font-weight: 400;
    margin-bottom: 60px;
}
#location .location-showroom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 17px 20px;
    gap: 8px;
    background: #fabb00;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 14px;
    width: 100%;
}
#location .location-whatsapp {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 17px 20px;
    gap: 8px;
    border: 1px solid #ffffff;
    border-radius: 9999px;
    background: transparent;
    font-weight: 600;
    color: #ffffff;
    font-size: 14px;
    width: 100%;
}
#location .location-video {
    max-width: 660px;
    width: 100%;
    min-height: 372px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fabb00;
    border-radius: 36px;
}
@media (max-width: 1300px) {
    #location .location-content .location-copy {
        max-width: none;
    }
    #location .location-video {
        display: none;
    }
}
#location .location-video span {
    font-size: 48px;
    color: #ffffff;
    font-weight: 700;
}
@media (max-width: 768px) {
    #location .location-copy .button-group {
        flex-direction: column;
        width: 100%;
    }
}
/* section-statistic */
#statistic {
    margin-bottom: 94px;
}
#statistic h2 {
    font-weight: 700;
    font-size: 22px;
    line-height: 27px;
    color: #3d41b5;
    margin-bottom: 14px;
    text-align: center;
}
#statistic .container > p {
    max-width: 518px;
    text-align: center;
    margin-inline: auto;
}
#statistic .statistic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media (max-width: 1300px) {
    #statistic .statistic-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    #statistic .statistic-card:nth-of-type(3) {
        grid-column: span 2;
    }
}
@media (max-width: 950px) {
    #statistic .statistic-grid {
        display: flex;
        flex-direction: column;
    }
}
#statistic .statistic-card {
    background: linear-gradient(180deg, rgba(247, 64, 103, 0) 0%, rgba(247, 64, 103, 0.07) 100%);
    border-radius: 40px;
    padding: 32px 40px;
}
#statistic .statistic-card img {
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    #statistic .statistic-card img {
        margin-bottom: 24px;
    }
}
#statistic .statistic-card h3,
#statistic .statistic-card h3 > span {
    font-weight: 700;
    font-size: 36px;
    color: #f74067;
    margin-bottom: 20px;
}
#statistic .statistic-card:nth-of-type(2) {
    background: linear-gradient(180deg, rgba(44, 193, 248, 0) 0%, rgba(44, 193, 248, 0.09) 100%);
}
#statistic .statistic-card:nth-of-type(2) h3,
#statistic .statistic-card:nth-of-type(2) h3 > span {
    color: #2cc1f8;
}
#statistic .statistic-card:nth-of-type(3) {
    background: linear-gradient(180deg, rgba(250, 187, 0, 0) 0%, rgba(250, 187, 0, 0.09) 100%);
}
#statistic .statistic-card:nth-of-type(3) h3,
#statistic .statistic-card:nth-of-type(3) h3 > span {
    color: #fabb00;
}

#trusted p {
    margin-bottom: 55px;
    text-align: center;
}
#trusted .trusted-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    max-width: 1075px;
    margin-inline: auto;
    flex-wrap: wrap;
    width: 100%;
}
@media (max-width: 1300px) {
    #trusted .trusted-grid {
        justify-content: center;
    }
}
/* section-feature */
#feature {
    margin-top: 128px;
    margin-bottom: 112px;
}
#feature img {
    object-fit: cover;
    image-rendering: optimizeQuality;
}
/* section-testimonial */
#testimonial {
    margin-bottom: 128px;
}
#testimonial h2 {
    font-weight: 700;
    font-size: 22px;
    color: #3d41b5;
    text-align: center;
    margin-bottom: 14px;
}
#testimonial .container > p {
    max-width: 604px;
    text-align: center;
    margin-bottom: 92px;
    margin-inline: auto;
}
#testimonial .testimonial-grid-wrapper {
    overflow: hidden;
    max-width: 1210px;
    margin-inline: auto;
    padding-top: 48px;
    margin-top: -32px;
}
#testimonial .testimonial-grid {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
}
#testimonial .testimonial-card {
    padding: 32px;
    min-width: 280px;
    max-width: 280px;
    background: #fdfdfe;
    border: 1px solid #ebecf9;
    border-radius: 20px;
    position: relative;
    flex-shrink: 0;
}
#testimonial .testimonial-card img:first-of-type {
    border-radius: 9999px;
    max-width: 72px;
    border: 4px solid #ffffff;
    position: absolute;
    left: auto;
    top: -36px;
}
#testimonial .testimonial-card h3 {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    color: #3d41b5;
    margin-top: 28px;
    margin-bottom: 8px;
}
#testimonial .testimonial-card span {
    font-weight: 500;
    line-height: 20px;
    color: #42424f;
    margin-bottom: 16px;
    display: inline-block;
}
#testimonial .testimonial-card p {
    font-size: 14px;
    line-height: 23px;
    margin-bottom: 20px;
    max-width: 207px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
#testimonial .testimonial-nav {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    margin-top: 54px;
    max-width: 246px;
    margin-inline: auto;
}
#testimonial .testimonial-prev {
    background: #f7f7ff;
    padding: 10px;
    border-radius: 9999px;
}
#testimonial .testimonial-prev:hover {
    cursor: pointer;
}
#testimonial .testimonial-next {
    background: #f7f7ff;
    padding: 10px;
    border-radius: 9999px;
}
#testimonial .testimonial-next:hover {
    cursor: pointer;
}
#testimonial .testimonial-dot {
    display: flex;
    gap: 22px;
}
#testimonial .testimonial-dot-indicator {
    width: 12px;
    height: 12px;
    background: #c4c4c4;
    border-radius: 9999px;
    display: inline;
}
#testimonial .testimonial-dot-indicator.active {
    background: #3d41b5;
}
/* section-cta */
#cta {
    margin-bottom: 128px;
}
#cta .cta-body {
    background: url(img/cta.webp), linear-gradient(0deg, #3d41b5 13%, #6571ff 100%);
    background-size: cover;
    background-position: center;
    border-radius: 50px;
    min-height: 350px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.6s ease-in-out;
}
#cta .cta-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 64px;
    z-index: 1;
}
#cta h2 {
    font-size: 30px;
    color: #ffffff;
    margin-bottom: 30px;
}
#cta p {
    color: #ffffff;
    max-width: 684px;
    font-weight: 400;
    text-align: center;
}
#cta .cta-body > img {
    position: absolute;
    bottom: 0;
}
@media (max-width: 1300px) {
    #cta .cta-body > img {
        max-width: 370px;
    }
}
@media (max-width: 768px) {
    #cta .cta-body > img {
        display: none;
    }
}
#cta .cta-body > img:first-child {
    left: 0;
}
#cta .cta-body > img:last-child {
    right: 0;
}
#cta .cta-body a {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 16px 23px;
    gap: 10px;
    background: linear-gradient(180deg, #fcce45 0%, #fabb00 100%);
    border: 1.5px solid #ffd760;
    border-radius: 9999px;
    font-weight: 600;
    margin-top: 40px;
}
#cta:has(.cta-body a:hover) .cta-body {
    filter: brightness(1.075);
}
/* section-footer */
footer {
    padding-bottom: 45px;
}
footer ul {
    padding: 0;
    list-style-type: none;
}
footer .container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    padding-block: 22px;
    gap: 24px;
}
@media (max-width: 768px) {
    footer .container {
        flex-direction: column;
    }
}
footer .footer-contact {
    max-width: 272px;
}
footer .footer-detail {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 900px;
    width: 100%;
}
footer .footer-detail-top {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
}
@media (max-width: 1300px) {
    footer .footer-detail-top {
        flex-wrap: wrap;
        gap: 24px;
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    footer .footer-detail-top {
        flex-direction: column;
    }
}
footer .footer-detail-bottom {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
}
@media (max-width: 950px) {
    footer .footer-detail-bottom {
        flex-wrap: wrap;
    }
}
footer .footer-contact > a {
    margin-bottom: 34px;
    display: inline-block;
}
footer .footer-contact-detail {
    background: #fdfdfe;
    border: 1px solid #ebecf9;
    border-radius: 18px;
    padding: 40px 38px;
}
footer .footer-contact-detail h3 {
    font-weight: 700;
    color: #3d41b5;
    margin-bottom: 26px;
}
footer .footer-contact-detail a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    padding: 9px 0;
    font-weight: 500;
}
footer .footer-contact-detail > ul:first-of-type {
    margin-bottom: 24px;
}
footer .footer-contact-detail > ul:last-of-type {
    display: flex;
    flex-direction: row;
    gap: 14px;
}
footer .footer-detail-top h3 {
    font-weight: 700;
    color: #3d41b5;
    margin-bottom: 24px;
}
footer .footer-detail-top ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-size: 14px;
}
footer .footer-package {
    min-width: 132px;
}
@media (max-width: 1300px) {
    footer .footer-package {
        min-width: none;
        max-width: 50%;
        flex: 1;
    }
}
@media (max-width: 768px) {
    footer .footer-package {
        max-width: none;
    }
}
footer .footer-about {
    min-width: 192px;
}
@media (max-width: 1300px) {
    footer .footer-about {
        min-width: none;
        max-width: 50%;
        flex: 1;
    }
}
@media (max-width: 768px) {
    footer .footer-about {
        max-width: none;
    }
}
footer .footer-address {
    max-width: 370px;
    font-size: 14px;
}
footer .footer-address > span {
    font-weight: 600;
    margin-bottom: 20px;
    display: inline-block;
}
footer .footer-location span {
    font-weight: 500;
    margin-bottom: 18px;
    display: inline-block;
}
footer .footer-location p {
    font-size: 13px;
    line-height: 20px;
    border-left: 3px solid #3d41b5;
    padding-left: 14px;
}
footer .footer-location p:first-of-type {
    margin-bottom: 20px;
}
footer hr {
    border: none;
    border-top: 1px solid #e2e2e2;
}
footer .footer-detail-bottom {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    gap: 34px;
}
footer .footer-kemenperin {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    border: 1px solid #ebecf9;
    border-radius: 10px;
}
footer .footer-kemenperin div {
    display: flex;
    flex-direction: column;
}
footer .footer-kemenperin span:first-of-type {
    font-size: 12px;
    font-weight: 500;
}
footer .footer-kemenperin span:last-of-type {
    font-size: 16px;
    font-weight: 700;
}
footer .footer-copyright {
    font-size: 14px;
    font-weight: 400;
    display: flex;
    flex-direction: column;
}
