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

:root {
    --blue-hover: #1976D2;
    --blue: #006ED9;
    --orange: #F3731F;
    --green: #62B237;
    --clay-color: #87898F;
    --dark-gray: #F5F5F5;
    --light-blue: #00adff;
    --transition: .75s cubic-bezier(.2, .6, 0, 1);
}

@media (max-width: 2000px) {
    html {
        font-size: 0.95vw;
    }
}

@media (max-width: 767.9808px) {
    html {
        font-size: 3.4vw !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    max-width: 120rem;
    margin: 0 auto;
}

.container {
    max-width: 100%;
    margin: 0 4rem;
}

/* maincss */

header {
    display:-ms-grid;
    display:grid;
    -webkit-box-shadow: 0.0625rem 0.25rem 0.625rem 0 rgba(160, 160, 160, .20);
            box-shadow: 0.0625rem 0.25rem 0.625rem 0 rgba(160, 160, 160, .20);

    z-index: 200;
}

button {
    background-color: var(--light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

a {
    text-decoration: none;
    color: #000;
}

a:hover {
    /* color: var(--blue-hover); */
    color: #6A72D9;
}

.banner-fixed {
    padding: 2rem;
    background-image: url('/public/images/main-banner-02.jpg');
    background-size: cover;
    background-repeat: no-repeat;
}

.main-banner-inner span {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
}

.main-banner-inner p {
    font-size: 1.125rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.main-banner-inner button {
    background-color: var(--light-blue);
    padding: 0.5rem 1rem;
    font-weight: 600;
    color: #fff;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    text-align: center;
    -webkit-transition: var(--transition);
    -o-transition: var(--transition);
    transition: var(--transition);
    border: 0.0625rem solid transparent;
}

.banner-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: #00ADFF;
    color: white;
    border: none;
    padding: 0.875rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.9375rem rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.product-stock {
    font-size: 0.75rem;
}