* {
    padding: 0%;
    margin: 0%;
    box-sizing: border-box;
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
}

.body-parent-div {
    background-color: #07080A;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    padding: 10px;
    position: relative;
}

.nav-parent-div {
    width: 98%;
    max-width: 1400px;
    height: 60px;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid #363334;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.zornn-logo {
    width: 29px;
    height: 29px;
}

.nav-child-2 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.nav-links {
    font-size: 20px;
    font-family: K2D;
    text-decoration: none;
    color: #363334;
}

.nav-links:hover {
    color: white;
}

.active {
    color: white;
}

.banner-parent {
    width: 100%;
    height: 360px;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.banner-parent video {
    width: 100%;
    content: "";
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.banner-parent .content {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(255, 255, 255);
    text-align: center;
}

.zornn-banner-title {
    font-size: 128px;
    font-family: Karantina;
}

.zornn-banner-text {
    font-size: 20px;
    font-family: K2d;
}

.zornn-banner-text span {
    color: #363334;
}

.body-product {
    padding-left: 60px;
    padding-right: 60px;
    width: 100%;
    height: 100%;
}

.body-product-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0px;
}

.body-product-head-text {
    font-size: 20px;
    font-family: K2D;
    color: white;
    font-weight: 400;
}

.product-body-grid {
    width: 100%;
    margin-top: 30px;
}

.grid-product {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.product-body-grid-div {
    width: 310px;
    height: 470px;
}

.product-body-grid-div-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.product-body-grid-div-h1 {
    font-size: 20px;
    font-family: K2D;
    color: white;
    font-weight: 400px;
    margin-top: 5px;
}

.product-body-grid-div-price {
    font-size: 16px;
    font-family: K2D;
    color: white;
    font-weight: 400px;
    margin-top: 5px;
}

.highlight-subtitle {
    font-size: 22px;
    font-family: K2D;
    color: white;
    font-weight: 400px;
    margin-top: 50px;
}

.highlight-subtitle-bold {
    font-size: 32px;
    font-family: K2D;
    color: white;
    font-weight: bold;
    margin-top: 10px;
}

.highlight-links-parent{
    width: 100%;
    height: 100%;
    padding: 10px 0px;
}

.highlight-links {
    font-size: 22px;
    font-family: K2D;
    color: #363334;
    font-weight: 400px;
    margin-top: 40px;
    text-decoration: none;
}

.highlight-links:hover {
    color: white;
}

.footer {
    width: 100%;
    height: 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
    margin-top: 50px;
}

.footer-child-1 {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-direction: column;
}

.footer-child-2 {
    width: 50%;
        height: 100%;
    display: flex;
    justify-content: flex-end;
    gap: 30px;
}

.footer-link-holder {
    display: flex;
    gap: 5px;
    flex-direction: column;
}

.footer-link-title {
    font-size: 22px;
    font-family: K2D;
    color: white;
    font-weight: 400px;
}

.footer-links {
    font-size: 16px;
    font-family: K2D;
    color: white;
    font-weight: 400px;
    margin-top: 20px;
    text-decoration: none;
}

.footer-links:hover {
    color: #363334;
}
.footer-icons-parent{
    width: 30%;
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
}