@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap');

h1, h2, h3, h4, h5, p, a {
    font-family: 'Quicksand', sans-serif;
}

h1 {
    font-size: 6vw;
    font-weight: 800;
}

h2 {
    font-size: 4vw;
    font-weight: 700;
}

h3 {
    font-size: 3vw;
    font-weight: 600;
}

h4 {
    font-size: 2vw;
    font-weight: 500;
}

p {
    font-size: 2.4vw;
    font-weight: 300;
}

h5 {
    font-size: 1vw;
    font-weight: 100;
}

a {
    font-size: 1.7vw;
}

html {
    scroll-behavior: smooth;
    transition: 2s;
}

body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0px 0px;
    background-color: rgb(226, 232, 236);
}

body::-webkit-scrollbar {
    display: none;
}

.banner, #products {
    line-height: 0.5;
}
/* HEADER & NAVIGATION */

#header {
    background-color: rgb(235, 239, 255);
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 80px;
    position: sticky;
    z-index: 1100;
    top: 0px;
    left: 0px;
}

#header .logo {
    width: 110px;
    padding-top: 10px;
}

#navbar {
    display: flex;
    align-items: center;
    justify-content: center;
}

#navbar li {
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

#navbar li a {
    text-decoration: none;
    font-weight: 500;
    color: rgb(20, 20, 20);
    transition: 0.3s;
}

#navbar li a:hover,
#navbar li a.active {
    color: rgb(248, 173, 103);
}

#navbar li a.active::after {
    content: "";
    width: 30%;
    height: 2px;
    background: rgb(248, 173, 103);
    position: absolute;
    bottom: -4px;
    left: 20px;
}

#subheader {
    background-color: rgba(216, 222, 247, 0.973);
    height: 8px;
    display: flex;
    position: sticky;
    z-index: 1000;
    align-items: center;
    justify-content: space-between;
    padding: 20px 180px;
}

#subheader .subnav {
    display: flex;
    align-items: center;
    justify-content: center;
}

#subheader .subnav li {
    list-style: none;
    padding: 0px 20px;
    position: relative;
}

#subheader .subnav li a {
    text-decoration: none;
    font-weight: 500;
    color: rgb(20, 20, 20);
    transition: 0.3s;
    font-size: 12pt;
}

#subheader .subnav li a:hover {
    color: rgb(248, 173, 103);
}

.banner {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgb(248, 173, 103);
    height: 180px;
    width: 100%;
}

.banner h1 {
    color: rgb(255, 255, 255);
    display: block;
    text-align: center;
    justify-content: center;
    font-weight: 900;
}


/* PRODUCTS */

#products .product-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

#products {
    text-align: center;
}

#products .item {
    width: 23%;
    min-width: 250px;
    padding: 10px 12px;
    margin-left: 50px;
    border-radius: 20px;
    border: 1px solid #000;
    box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.02);
}

#products .item img {
    width: 100%;
    border-radius: 20px;
}

#products .desc {
    display: block;
    text-align: left;
    padding-top: 20px;
}
/* PRODUCTS END */


/* FOOTER AND END */

#footer {
    background-color: rgba(235, 239, 255, 0.973);
}

#footer .contain {
    display: inline-block;
    text-align: left;
}

#footer .contain .col {
    display: inline-block;
    row-gap: 20px;
    column-gap: 20px;
    padding-left: 80px;
    padding-top: 50px;
    padding-bottom: 50px;
}

#footer h4 {
    font-size: 14pt;
    color: rgb(248, 173, 103);
}

#footer h5 {
    font-size: 10pt;
}

#footer ul {
    list-style: none;
    list-style-type: none;
}

#footer a {
    text-decoration: none;
    color: black;
    transition: 0.2s;
}

#footer a:hover{
    color: rgb(248, 173, 103);
}

#footer img {
    padding-left: 160px;
}

.RIGHTS {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    padding-bottom: 20px;
    margin-left: 80px;
    color: rgba(0, 0, 0, 0.473);
}

.RIGHTS a {
    font-family: 'Poppins', sans-serif;
    font-weight: 100;
    font-size: 12pt;
    color: rgba(0, 0, 0, 0.473);
}

/* FOOTER END */