@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    display: flex;
    align-items: center;
    min-height: 100vh;
    justify-content: space-between;
    flex-direction: column;
    font-family: 'Barlow';
    background-color: #f5f5f5;
}

a {
    text-decoration: none;
}

.container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

header {
    width: 100%;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    background-color: #214aff;
}

nav {
    width: 100%;
    display: flex;
    height: 80px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: 1500px;
    z-index: 99;
}

.logo {
    width: 250px;
}

.nav__menu {
    margin-right: 52px;
    width: 150px;
}

ul {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between
}

li {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li .nav__link {
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 19px;
    transition: 0.4s;
}

li .nav__link:hover {
    font-size: 20px;
}

.nav__toggle {
    display: none;
}

@media (max-width: 1100px) {
    .logo {
        width: 190px;
    }

    .nav__menu {
        position: absolute;
        width: 160px;
        height: 100vh;
        top: 0px;
        left: -163px;
        background: #fff;
        filter: drop-shadow(0px 3px 3px rgba(0, 0, 0, 0.25));
        transition: 0.4s;
    }

    ul {
        flex-direction: column;
        margin-top: 72px;
        height: 80px;
        justify-content: space-between;
    }

    .nav__toggle {
        display: flex;
        align-items: center;
        flex-direction: column;
        height: 13px;
        justify-content: space-between;
        margin-right: 30px;
    }

    li .nav__link {
        color: #214aff;
        font-size: 22px;
    }
    
    .bx {
        width: 20px;
        height: 2px;
        border-radius: 6px;
        background-color: #fff;
        z-index: 1;
    }

    .show-menu {
        left: 0;
        transition: 0.4s;
    }
}

.content {
    display: flex;
    width: 100%;
    max-width: 1500px;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1530px) {
    .content {
        padding: 0 10px;
    }
}

.banner {
    width: 100%;
    margin-top: 30px;
    border-radius: 16px;
}

@media (max-width: 1100px) {
    .banner {
        width: 96%;
    }
}

.box-title {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 46px;
}

.box-title h1 {
    font-weight: 600;
    font-size: 32px;
    line-height: 24px;
    color: #2B2B2B;
}

.line {
    width: 79px;
    height: 0px;
    border: 1px solid #6F6D6D;
    margin-top: 14px;
}

.box-title h2 {
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    color: #6F6D6D;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .box-title {
        width: 90%;
        margin-top: 25px;
    }

    .box-title h1 {
        font-size: 20px;
    }
    
    .line {
        width: 102px;
    }
    
    .box-title h2 {
        font-size: 16px;
        margin-top: 10px;
    }
}

.container-card1 {
    display: flex;
    flex-direction: row;
    margin-top: 13px;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.card1 {
    display: flex;
    flex-direction: column;
    width: 230px;
    height: 350px;
    padding: 15px;
    cursor: pointer;
    margin-top: 17px;
    margin-right: 10px;
    margin-left: 10px;
    text-decoration: none;
    transition: 0.3s;
    border-radius: 8px;
    background-color: #fff;
}

.card1:hover {
    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.19);
}

.bx-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-card1 {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    border-radius: 4px;
    background: #D9D9D9;
}

.bx-info1 {
    width: 100%;
    flex-direction: column;
    display: flex;
    justify-content: space-between;
}

.bx-info1 h5 {
    font-weight: 300;
    font-size: 13px;
    color: #2B2B2B;
    margin-top: 24px;
    border-top: 1px solid #cecece;
    padding-top: 5px;
    width: max-content;
    text-transform: uppercase;
}

.bx-info1 h2 {
    font-weight: 300;
    font-size: 13px;
    color: #2B2B2B;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 16px;
    max-height: 70px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.bx-info1 p {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
    color: #2B2B2B;
    margin-top: 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    line-height: 18px;
    max-height: 70px;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.bx-value {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin: 12px 0 0 0;
}

.bx-value h1 {
    font-size: 21px;
    color: #214aff;
}

.bx-value h3 {
    font-size: 13px;
    color: #2B2B2B;
    margin: 3px 0 0 7px;
    text-decoration: line-through;
}

@media (max-width: 1100px) {
    .container-card1 {
        width: 90%;
        padding: 0 0 12px 0;
        margin-top: 3px;
    }

    .card1 {
        flex-direction: row;
        width: 100%;
        height: max-content;
        padding: 15px;
        margin-right: 0px;
        margin-left: 0px;
    }
    
    .image-card1 {
        width: 100px;
        height: 120px;
        margin: 0 10px 0 0;
        object-fit: cover;
    }

    .bx-info1 {
        margin-left: 6px;
    }

    .bx-info1 h5 {
        margin-top: 15px;
    }
    
    .bx-info1 p {
        margin-top: 0px;
    }

    .bx-value {
        margin: 12px 0 0 5px;
    }
}

.content-categori {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 25px;
}

.box-categori {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 0 18px;
}

.box-categori img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 100%;
    border: 6px solid #214aff;
    transition: 0.2s;
}

.box-categori img:hover {
    box-shadow: 0 8px 10px 0 rgba(0,0,0,0.2), 0 6px 10px 0 rgba(0,0,0,0.19);
}

.box-categori label {
    font-weight: 600;
    font-size: 18px;
    text-align: center;
    color: #2B2B2B;
    margin-top: 5px;
}

@media (min-width: 1533px) {
    .content-categori {
        justify-content: center;
        flex-wrap: wrap;
    } 
}

@media (max-width: 1532px) {
    .content-categori {
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        -ms-scroll-snap-type: x mandatory;
        scroll-snap-type: x mandatory;
        white-space: nowrap;
        padding: 0 0 10px 0;
    }
}

@media (max-width: 1100px) {
    .box-categori {
        margin: 0 10px;
    }
    
    .box-categori img {
        width: 110px;
        height: 110px;
        border: 4px solid #214aff;
    }
    
    .box-categori label {
        font-weight: 600;
        font-size: 15px;
    }
}

.container-product {
    display: flex;
    flex-direction: row;
    margin-top: 20px;
    width: 96%;
    justify-content: space-between;
}

@media (max-width: 1100px) {
    .container-product {
        flex-direction: column-reverse;
    }
}

.content-product1 {
    display: flex;
    flex-direction: column;
    width: 57%;
    box-shadow: 0 6px 8px 2px rgba(0,0,0,0.19);
    border-radius: 8px;
    background-color: #fff;
    padding: 30px;
}

.box-img {
    display: flex;
    align-items: center;
    justify-content: center;
}

.box-img img {
    width: 450px;
    height: max-content;
    max-width: 500px !important;
}

.description {
    font-weight: 300;
    font-size: 22px;
    color: #2B2B2B;
    margin-top: 20px;
}

@media (max-width: 1100px) {
    .content-product1 {
        width: 100%;
        padding: 20px;
        margin-top: 30px;
    }
    
    .box-img img {
        width: 250px;
        max-width: 250px !important;
    }
    
    .description {
        font-size: 20px;
    }
}

.content-product2 {
    display: flex;
    flex-direction: column;
    width: 41%;
    border-left: 1px solid #cecece;
    padding: 30px;
    height: max-content;
    box-shadow: 0 6px 8px 2px rgba(0,0,0,0.19);
    background-color: #fff;
    border-radius: 8px;
}

.content-product2 h1 {
    font-size: 28px;
    color: #0a0a0a;
}

.content-product2 p {
    font-weight: 300;
    font-size: 18px;
    color: #2B2B2B;
    margin-top: 5px;
}

.content-product2 h4 {
    font-weight: 400;
    font-size: 27px;
    color: #2B2B2B;
    margin-top: 40px;
    text-decoration: line-through;
}

.content-product2 label {
    font-weight: 300;
    font-size: 17px;
    color: #2B2B2B;
    margin-top: 11px;
}

.content-product2 h3 {
    font-weight: 600;
    font-size: 45px;
    color: #214aff;
}

.content-product2 a {
    background-color: #02c456;
    color: #fff;
    font-weight: 500;
    font-size: 20px;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    margin-top: 40px;
    transition: 0.3s;
    border-radius: 8px;
}

.content-product2 a:hover {
    box-shadow: 0 6px 8px 2px rgba(0,0,0,0.19);
}

@media (max-width: 1100px) {
    .content-product2 {
        width: 100%;
        padding: 20px;
    }
    
    .content-product2 h1 {
        font-size: 24px;
    }
    
    .content-product2 p {
        font-size: 17px;
    }
    
    .content-product2 h4 {
        font-size: 25px;
        margin-top: 25px;
    }
    
    .content-product2 label {
        font-size: 15px;
    }
    
    .content-product2 h3 {
        font-size: 30px;
    }
    
    .content-product2 a {
        font-size: 18px;
        margin-top: 25px;
    }
}

.box-term {
    display: flex;
    flex-direction: column;
    width: 95%;
    margin: 30px 0;
}

.box-term h1 {
    font-size: 35px;
    color: #0a0a0a;
    text-align: center;
}

.box-term h2 {
    font-size: 18px;
    color: #3e3e3e;
    font-weight: 500;
    margin-top: 40px;
}

@media (max-width: 1100px) {
    .box-term {
        width: 96%;
        margin: 25px 0;
    }
    
    .box-term h1 {
        font-size: 30px;
    }
    
    .box-term h2 {
        font-size: 15px;
        margin-top: 25px;
    }
}

.box-contact {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 900px;
    margin: 30px 0;
    align-items: center;
}

.box-contact h1 {
    font-size: 35px;
    color: #0a0a0a;
}

.box-contact h2 {
    font-size: 25px;
    color: #214aff;
    font-weight: 500;
    width: 100%;
    margin-top: 35px;
    border-bottom: 1px solid #cecece;
    padding: 0px 0px 8px 8px;
}

.contact {
    display: flex;
    margin-top: 25px;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.box-text{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}

.text {
    width: 49%;
}

textarea {
    margin-top: 15px;
    height: 280px;
    max-height: 280px;
    min-height: 280px;
    width: 900px;
    max-width: 900px;
    min-width: 900px;
}

.text,
textarea {
    padding: 12px 20px;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    font-size: 20px;
    color: #0a0a0a;
}

button {
    background-color: #02c456;
    border: none;
    color: #fff;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
    border-radius: 8px;
    margin-top: 20px;
    transition: 0.3s;
}

button:hover {
    box-shadow: 0 6px 8px 2px rgba(0,0,0,0.19);
}

@media (max-width: 1100px) {
    .box-contact {
        width: 96%;
        max-width: 96%;
    }
    
    .box-contact h1 {
        font-size: 28px;
    }
    
    .box-contact h2 {
        font-size: 20px;
        margin-top: 20px;
        width: max-content;
        border-bottom: none;
        padding: 0px;
    }
    
    .contact {
        margin-top: 10px;
    }
    
    .box-text{
        flex-direction: column;
    }
    
    .text {
        width: 100%;
        margin-top: 10px;
    }
    
    textarea {
        height: 280px;
        max-height: 280px;
        min-height: 280px;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }
    
    .text,
    textarea {
        font-size: 16px;
    }
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 50px;
    border-top: 1px solid #E1E1E1;
    padding: 20px 20px 50px 20px;
    background-color: #0a0a0a;
}

.bx2 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1500px;
}

.bx-1 {
    display: flex;
    flex-direction: column;
}

.bx-1 img {
    position: relative;
    right: 22px;
}

.bx-1 p {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.bx-social {
    display: felx;
    felx-direction: column;
    margin-top: 39px;
}

footer label {
    font-weight: 700;
    font-size: 20px;
    color: #fff;
}

.bx-icon {
    display: flex;
    flex-direction: row;
    margin-top: 17px;
}

.bx-icon div {
    display: flex;
    align-items: center;
    width: 55px;
    height: 55px;
    border: 1px solid #214aff;
    border-radius: 14px;
    justify-content: center;
    margin-right: 10px;
    transition: 0.3s;
}

.bx-icon div:hover {
    background: #d9e3ff;
}

.bx-2 {
    display: flex;
    flex-direction: row;
    margin-top: 30px;
}

.bx-poli {
    display: flex;
    flex-direction: column;
}

.bx-poli p {
    font-weight: 400;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    margin-top: 15px;
}

.bx-down {
    display: flex;
    flex-direction: column;
    margin-left: 100px;
}

.bx-down img {
    width: 160px;
    height: auto;
    margin-top: 19px;
    cursor: pointer;
    transition: 0.8s;
}

@media (max-width: 1100px) {
    footer {
        padding: 10px 40px;
        padding: 10px 40px 30px 40px;
    }

    .bx2 {
        flex-direction: column;
    }

    .bx-1 p {
        font-size: 17px;
    }
    
    .bx-poli {
        flex-direction: column;
    }

    .bx-2 {
        flex-direction: column;
    }

    .bx-down {
        display: none;
    }

    .bx-down img {
        width: 140px;
    }
}

.bx-locat {
    display: flex;
    justify-content: center;
    width: 100%;
    padding: 20px 0 20px 0;
    border-top: 1px solid #E1E1E1;
    background-color: #fff;
}

.content-locat {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    max-width: 1500px;
    justify-content: space-between;
}

.content-locat div {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.content-locat h6 {
    font-size: 15px;
    color: #2B2B2B;
}

@media (max-width: 1100px) {
    .content-locat {
        flex-direction: column;
    }
    
    .content-locat div {
        flex-direction: row;
    }
    
    .content-locat h6 {
        font-size: 12px;
        color: #2B2B2B;
    }
}