:root {
    --color-gray: #2d3136;
    --color-default: #967942;
    --color-white: #fff;
    --color-bg: #e4e4e4;
}

h2 {
    color: var(--color-default);
    font-family: 'Safira March';
    margin: 0;
    line-height: 1;
}

/* hero */
.hero-banner {
    height: 80vh;
    background-image: url('/assets/index/img/banner/hero.webp');
    background-size: cover;
    background-position: center 85%;
    border-bottom: 8px solid var(--color-default);
}

h1 {
    padding-top: 50px;
    padding-left: 45px;
    font-size: 11.8rem;
    color: var(--color-default);
    font-family: 'Safira March';
    line-height: 195px;
    letter-spacing: 10px;
}

/* main content */

.main-content {
    background-color: var(--color-bg);
    padding-top: 2rem;
}



/* news */
.news {
    background-color: var(--color-bg);
    padding: 3rem 0;
}


.news h2 {
    text-align: center;
    font-size: 5rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
}


/* products card */
.custom-card {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    background-color: #ebebeb;
    border-radius: 20px;
    padding: 30px;
}

.filter-section {
    margin: 3rem 0;
}

.filter-section .icons {
    width: 25px;
    height: 25px;
    object-fit: contain;
    margin-right: 10px;
}

.filter-section h2 {
    font-size: 3.7rem;
}

.filter-section a {
    color: var(--color-gray);
    font-size: 1.3rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.products-cards h2,
.products-title {
    text-align: center;
    font-size: 4rem;
    padding-bottom: 1rem;
}

.custom-card.product-card {
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}


.custom-card.product-card .img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    padding: 10px;
    border: 2px solid #cacaca6e;
    background-color: #fafafa;
    border-radius: 8px;
}

.custom-card.product-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 6px;
    aspect-ratio: 1 / 1;
}

.custom-card.product-card .product-info {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.custom-card.product-card .product-info h4 {
    color: var(--color-default);
    text-align: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.product-card h5 {
    color: var(--color-gray);
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.custom-card.product-card .product-info p {
    color: var(--color-gray);
    font-size: 1rem;
    line-height: 1;
    margin: 0;
}

.custom-card.product-card .product-info p:first-of-type {
    font-weight: 800;
    margin-bottom: 5px;
}

.custom-card.product-card .product-info p:first-of-type span:first-of-type {
    font-size: 2rem;
}

.main-btn.card {
    text-decoration: none;
    width: 60%;
    text-align: center;
    padding: 5px;
    font-size: 1.15rem;
    border: 3px solid var(--color-default);
    transition: all 0.15s ease;
}

.main-btn.card:hover {
    color: var(--color-gray);
    background-color: #fafafa;
}

/* banner */
.parallax-window {
    position: relative;
    width: 100%;
    height: 500px;
    background: transparent;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}

/* register section */
.register-section {
    padding: 6rem 0;
    background-color: var(--color-bg);
}

.register-section h2 {
    text-align: center;
    font-size: 6rem;
}

.register-section .input-button-group {
    display: flex;
    justify-content: center;
}

.register-section ul {
    padding-top: 30px;
    display: flex;
    justify-content: center;
    gap: 50px;
}

.register-section ul label {
    color: var(--color-gray);
    font-size: 1.3rem;
}

.register-section input[type="text"] {
    width: 60%;
    height: 65px;

    padding: 10px;
    font-size: 1.3rem;
    background-color: var(--color-bg);
    border: 2px solid var(--color-default);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    color: var(--color-gray);
    padding-top: 10px;

    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.register-section input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-default);
    margin-right: 5px;
    border-radius: 50%;
    background-color: var(--color-bg);
    cursor: pointer;
    position: relative;
    transition: 0.2s;
}

.register-section input[type="radio"]:checked {
    background-color: var(--color-default);
    box-shadow: inset 0 0 0 3px var(--color-bg);
}

.register-section button {
    padding: 0px 9px;
    width: 10%;
    font-size: 1.3rem;
    color: var(--color-white);
    background-color: var(--color-default);
    border: 2px solid var(--color-default);
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;

    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.register-section .container>p {
    color: var(--color-gray);
    padding-top: 40px;
    text-align: center;
    font-size: 1.1rem;
}


.register-section .error-msg {
    color: #ff0000;
    font-size: 1.1rem;
    text-align: center;
}

/* blog  */
.blogs {
    background-color: var(--color-bg);
    padding: 3rem 0;
}

.blogs h2 {
    text-align: center;
    font-size: 5rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
}

@media (max-width: 1810px) {
    h1 {
        font-size: 10rem;
        letter-spacing: 8px;
    }
}

@media (max-width: 1499px) {
    .hero-banner {
        height: 67vh;
    }

    h1 {
        font-size: 7.6rem;
        line-height: 107px;
    }
}

@media (max-width: 1399px) {
    .filter-section h2 {
        font-size: 3rem;
    }
}

@media (max-width: 1199px) {
    .hero-banner {
        height: 57vh;
    }

    h1 {
        font-size: 6.3rem;
        line-height: 89px;
    }

    .products-cards h2,
    .products-title {
        font-size: 3.4rem;
    }

    .news h2,
    .blogs h2 {
        font-size: 3.3rem;
        padding-top: 0;
    }

    .custom-card {
        padding: 40px;
    }

    .hide-on-small {
        display: none !important;
    }

    .filter-section {
        margin: 0;
    }
}

@media (max-width: 991px) {
    .hero-banner {
        background-position: 82%
    }

    h1 {
        font-size: 4.5rem;
        line-height: 72px;
        padding-top: 33px;
        padding-left: 27px;
    }

    .hide-on-sm {
        display: none !important;
    }

    .filter-section h2 {
        font-size: 2.5rem;
    }

    .filter-section .icons {
        width: 21px;
        height: 21px;
        margin-right: 7px;
    }

    .filter-section a {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    h1 {
        font-size: 3.3rem;
        line-height: 49px;
        padding: 30px 0;
        padding-left: 0px;
    }

    .products-cards h2,
    .products-title {
        font-size: 3rem;
    }

    .news h2,
    .blogs h2 {
        font-size: 3rem;
    }

    .custom-card.product-card .product-info h4 {
        font-size: 0.9rem;
    }

    .product-card h5 {
        font-size: .9rem;
        margin: 10px;
    }

    .custom-card.product-card .product-info p:first-of-type span:first-of-type {
        font-size: 1.5rem;
    }


    .main-btn.card {
        width: 100%;
        font-size: .9rem;
    }

    .filter-section a {
        font-size: 1rem;
    }

    .filter-section .icons {
        width: 16px;
        height: 16px;
    }

    .parallax-window {
        height: 305px;
    }
}

@media (max-width: 575px) {
    h1 {
        font-size: 3.3rem;
        line-height: 3.3rem;
        letter-spacing: 0;
        padding-top: 20px;
        padding-bottom: 10px;
        padding-left: 0px;
        margin: 0;
    }

    .hero-banner {
        height: 30vh;
        border-top: 4px solid var(--color-default);
        border-bottom: 4px solid var(--color-default);
        background-position: 100%;
    }

    .custom-card.product-card {
        border-radius: 0px;
        box-shadow: none;
        border: 1px solid #cacaca6e;
    }

    .main-btn.card {
        padding: 2px;
        width: 70%;
    }

    .custom-card {
        padding: 25px;
        border-radius: 0;
        box-shadow: none;
        border: 1px solid #cacaca6e;
        border-left: none;
        border-right: none;
    }

    .news {
        padding: 2rem 0;
    }

    .parallax-window {
        height: 270px;
    }
}

@media (max-width: 480px) {
    .custom-card.product-card {
        padding: 10px;
    }
}

@media (max-width: 350px) {
    .custom-card.product-card {
        padding: 10px;
    }

    .main-btn.card {
        width: 100%;
    }
}