@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
    --background: #ffffff;
    --bg-white: #ffffff;
    /* --text: #23396Cff; */
    --text: #3a023bff;
    --accent: #ff00ff;
}

/* ---------------------------------Common----------------------------------------- */

html,
body,
*,
*::after,
*::before {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    color: var(--text);
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
}

body {
    background-color: var(--background);
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 5px;
    opacity: 0.5;
}

::-webkit-scrollbar-track {
    background: var(--background);
}

::-webkit-scrollbar-thumb {
    background: var(--accent);
    border-radius: 10px;
    opacity: 0.2;
}

::-webkit-scrollbar-thumb:hover {
    opacity: 0.5;
    color: #ff88ff;
    cursor: pointer;
}

.material-symbols-outlined {
    font-size: 1.2em;
    font-weight: inherit;
    vertical-align: sub;
}

nav {
    padding: 1em;
    position: sticky;
    top: 0%;
    display: flex;
    align-content: center;
    justify-content: space-between;
    align-items: center;
    background: var(--background);
    /* backdrop-filter: blur(10px) brightness(5); */
    z-index: 10;
}

.logo {
    width: auto;
    height: 4em;
}

.navMenu {
    width: max-content;
    height: 100%;
    /* position: fixed; */
    /* top: 1em; */
    /* right: 1em; */
    /* transform: translate(-50%, -50%); */
}

.navMenu a {
    text-decoration: none;
    text-align: center;
    font-size: 1em;
    text-transform: uppercase;
    font-weight: 500;
    display: inline-block;
    width: 100px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:hover {
    color: var(--accent);
}

.navMenu .dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.navMenu a:nth-child(1):hover~.dot {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(2):hover~.dot {
    -webkit-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(3):hover~.dot {
    -webkit-transform: translateX(250px);
    transform: translateX(250px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.navMenu a:nth-child(4):hover~.dot {
    -webkit-transform: translateX(285px);
    transform: translateX(285px);
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.body-container {
    width: 100%;
    /* margin-left: 10%; */
}

.full-logo-wrapper {
    width: 100%;
    background: var(--background);
}

.full-logo {
    height: 4em;
    /* position: sticky; */
    /* top: 1em; */
    /* transform: translateX(-50%); */
}

.full-logo.mobile-logo {
    display: none;
}

section {
    padding: 2em 0;
    /* border-radius: 2em; */
    /* margin: 2em 0; */
}

.about-section {
    padding: 2em;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    flex-wrap: wrap;
}

.about {
    max-width: 60%;
    backdrop-filter: saturate(0.3) blur(2px);
    background: var(--background);
    padding: 2em;
    /* margin-left: 5%; */
    text-align: center;
    border-radius: 5em;
    font-weight: 900;
}

.about p {
    font-size: 1em;
}

.about-image {
    max-width: 35%;
    max-height: 40em;
}

.product-section {
    /* background-image: url(images/granules.jpg); */
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    padding: 5em 2em;
}

.product-div .products-title {
    text-align: center;
    background: var(--background);
    border-radius: 5em;
    padding: 1em 2em;
    width: max-content;
    margin: auto;
    margin-bottom: 5em;
}

.products-title img {
    height: 3em;
}

.products-list {
    text-align: center;
}

.products-list ul {
    /* width: 80%; */
    /* margin-left: 10%; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-evenly;
}

ul li {
    list-style: none;
    min-width: 20em;
    width: max-content;
    /* height: 7em; */
    margin: 1em;
    padding: 2em;
    background: var(--background);
    align-content: space-evenly;
    /* color: var(--background); */
    border-radius: 5em;
}

ul li b {
    display: block;
    font-size: 1.5em;
    /* color: var(--background); */
}

.contact-section {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    min-height: 50vh;
    margin: 2em;
    flex-wrap: wrap;
}

.left-contact h1 {
    font-size: 2em;
    text-transform: uppercase;
}

.contact-heading {
    padding: 1em;
    font-size: 1em;
}

.contact-heading p {
    font-size: 1em;
}

.contact-list {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    padding: 0.5em;
    font-size: 1.5em;
}

.contact-list span {
    margin-right: 1em;
    font-size: 1.5em;
}

.map-responsive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

/* .map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    border: 0;
} */

@media screen and (max-width: 60em) {
    .about-section {
        flex-direction: column-reverse;
    }

    .about {
        width: 80%;
    }

    .about-image {
        max-width: 80%;
    }

    .contact-list {
        font-size: 1em;
    }
}


@media screen and (max-width: 40em) {
    .navMenu a {
        font-size: 1em;
    }

    .full-logo {
        display: none;
    }

    .full-logo.mobile-logo {
        display: block;
        width: 80%;
        margin-left: 10%;
    }

    .about {
        width: 100%;
        padding: 0;
        font-weight: 600;
    }

    .contact-list {
        font-size: 0.8em;
    }

    .map-responsive {
        max-width: 80vw;
    }

    ul li b {
        font-size: 1.2em;
    }

    .contact-heading p {
        font-size: 0.8em;
    }
}