html {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}


@font-face {
    font-family: Poppins;
    font-weight: 900;
    font-display: auto;
    src: url("/Assets/Fonts/Poppins/Poppins-Bold.ttf");
}

@font-face {
    font-family: Poppins;
    font-weight: 600;
    font-display: auto;

    src: url("/Assets/Fonts/Poppins/Poppins-Regular.ttf");
}

@font-face {
    font-family: Poppins;
    font-weight: 300;
    font-display: auto;

    src: url("/Assets/Fonts/Poppins/Poppins-ExtraLight.ttf");
}


@font-face {
    font-family: Vogue;
    font-weight: 600;
    font-display: auto;

    src: url("/Assets/Fonts/Classyvogueregular.ttf");
}

:root {
    --font-primary: Vogue;

    --font-secondary: Poppins;

    --text-color: rgb(238, 247, 236);
    --text-color-dark: #27211d;
    --background-color: #a49f56;
    --background-color: #76846e;
    --background-color-lighter: #fcfff4;

    --color-button-light: #f3f3e4;
    --color-button-dark: #161514;

    /*Blob effect vars*/
    --blob-radius: 900px;
    --blob-blendmode: hard-light;
}

* {
    font-family: var(--font-secondary);
    font-weight: 600;
    font-size: 16px;
    box-sizing: border-box;
    color: var(--text-color);
    padding: 0;
    margin: 0;
}

input,
textarea {
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

@keyframes fadein {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    text-decoration: none;
}

h2 {
    font-family: var(--font-primary);
    font-size: 1.75rem;
}

h3 {
    font-family: var(--font-secondary);
    color: var(--text-color);
    font-size: 1.25rem;
}

h4 {
    font-family: var(--font-secondary);
    font-size: 1rem;
}

p {
    font-family: var(--font-primary-light);
    font-size: 1rem;
}

.smaller-p {
    font-size: 0.7em;
}

/*Page layout setup
  */
body {
    display: flex;
    flex-direction: column;
    background-color: var(--background-color-lighter);
    scroll-behavior: smooth;
    overflow-x: hidden;

}

main {
    display: flex;
    flex-direction: column;
    min-height: 100dvh;
    overflow-x: hidden;
}

body.active {
    overflow-y: hidden;
}

/*Header and nav links*/
header {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: center;
    height: fit-content;
    background-color: rgb(200, 206, 195);
    z-index: 6;
}

nav {
    display: flex;

    justify-content: start;
    width: 100%;
    height: 100%;
    align-items: center;
}

.empty_space {
    width: 15rem;
}

.logo {
    display: flex;
    position: absolute;
    width: 4rem;
    margin-left: 1.15rem;
    justify-content: center;
    z-index: 7;
}

.title_company {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 5rem;
    max-width: fit-content;

    align-items: start;
    justify-content: center;
    margin: 0 auto;
    margin-left: 5.5rem;

    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 3px;

    color: rgb(44, 48, 40);
    z-index: 7;

}

.title_company span {

    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 3px;
    z-index: 7;

    color: rgb(44, 48, 40);
}



.logo img {
    width: 100%;
    object-fit: cover;
}

.nav-button-conatiner {
    display: flex;
    position: absolute;
    width: 100%;
    height: 5.75rem;
    justify-content: end;
    z-index: 6;
    background-color: rgb(200, 206, 195);
}



.hamburger_menu-btn {
    position: relative;
    width: 1.8rem;
    height: 2.8rem;
    align-self: center;
    padding: .25rem 0;
    margin: 1rem 1.75rem;
}

.hamburger_menu-btn .hamburger_menu-btn:hover {
    cursor: pointer;
}

.hamburger_menu-btn span {
    position: absolute;

    width: 2.5rem;
    height: 2.8px;

    background-color: #000000;

    top: 20%;
    left: 0%;
    transform: translateY(-50%);
    transition: all .1s ease-out;
}

.hamburger_menu-btn span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger_menu-btn span:nth-child(3) {
    top: 80%;
    transform: translateY(-50%);
}

.hamburger_menu-btn:hover span {
    background-color: rgb(251, 255, 219);
}


.nav-menu {
    display: none;
    position: absolute;
    inset: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 720px;
    background-color: #27211d00;
}

.nav-menu.active {
    display: flex;
    min-height: fit-content;
    background-color: var(--background-color-lighter);

    z-index: 5;
}

.nav-menu-ul {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    width: 100%;
    height: 80%;
    margin-top: 25%;
    justify-content: start;
    align-items: center;

}

.nav-menu li {
    display: flex;
    position: relative;
    height: 4rem;

    margin: 2rem 0;

    justify-content: center;
    align-items: center;

    list-style-type: none;
}

.nav-menu-ul li::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    top: 100%;
    background-color: #131d0c;
    transition: width ease-out .1s .02s;
    z-index: 2;
}

.nav-menu a {
    font-family: var(--font-secondary);

    font-size: 2.5rem;
    letter-spacing: 0.25px;
    user-select: none;
    color: rgb(53, 59, 43);

    transition: color .3s ease-in;

}

.nav_category {
    position: relative;
    padding: 1.55rem 1rem;
}

.nav_category.active {
    background-color: var(--background-color);

}

.nav_category .dropdown_category {
    display: none;
    position: absolute;

    flex-direction: column;
    align-items: center;
    justify-content: center;

    top: 90%;
    left: 0%;
    width: 100%;
    height: auto;
    overflow-y: scroll;
    background-color: #27211d00;
    backdrop-filter: blur(10rem);
    box-shadow: inset 0 8px 5px -9px rgba(0, 0, 0, 0.35);
}

.btn-category {
    display: flex;
    align-items: center;
}

.btn-category img {
    width: 1rem;
    height: 1rem;
    margin-top: 3px;
    margin-left: 8px;
    opacity: 60%;
}

.dropdown_category.active {
    display: flex;
    z-index: 2;
    background-color: rgb(200, 206, 195);
}


.nav_category li::after {
    position: absolute;
    content: '';
    width: 20px;
    height: 2px;
    top: 100%;
    background-color: #131d0c;
    transition: width ease-out .1s .02s;
    z-index: 2;
}

.dropdown_category {
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
    justify-content: center;
    align-items: center;

}

.dropdown_category li {
    display: flex;
    position: relative;
    width: 100%;
    height: 4.75rem;
    padding: .25rem;

    border-bottom: #000 1px solid;

    margin: 0;
    justify-content: center;
    align-items: center;

    color: var(--text-color);
    font-weight: 300;
}

.dropdown_category li::after {
    content: '';
    width: 0;
}

.dropdown_category a {
    display: flex;
    font-size: 1.5rem;
    justify-content: center;
    align-items: center;
}

.dd_item:hover {
    cursor: pointer;
    background-color: var(--background-color);
}

footer {
    justify-self: flex-end;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    padding: 1rem;
    background-color: rgb(41, 43, 39);
    scroll-snap-align: center;
}

.footer-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-about h4 {
    text-align: center;
}

#footer p {
    font-size: .8rem;
    max-width: 20rem;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-align: center;
    margin: 1rem;

}

.footer-contactInfo {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    margin: 1rem 0;
}

.footer-contactInfo a {
    text-align: center;
    margin: .25rem;
}

/*Layout classes*/

.page-section {
    display: flex;
    flex-direction: column;
    position: relative;
    justify-content: space-around;
    align-items: center;

    width: 100%;
    height: fit-content;

    scroll-snap-align: center;

    animation: fadein .35s;
}

.section_divider_graphic,
.section_divider_graphic_inverted {
    display: none;

}

.col {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    width: 90%;
    height: 100%;
    max-width: 1800px;
    min-width: 300px;
    align-items: center;
    margin-left: auto;
    margin-right: auto;

}

.row {
    display: flex;

    width: 100%;
    height: 100%;

    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 5rem 0;
}

/*Individual sections*/

/*Hero section*/
#banner {
    position: relative;
    display: flex;

    width: 100%;
    max-height: 1900px;

    margin: 0;

    justify-content: space-between;

    overflow: hidden;
    z-index: 0;

    background-color: var(--background-color);
}


#banner::before {
    content: '';

    width: 100%;
    height: 100%;
    z-index: -2;

    background-image: url('../Images/cardboard-texture.jpg');
    mix-blend-mode: multiply;
    opacity: 10%;
    background-size: contain;
}

#banner .col {
    width: 100%;
    max-width: 2000px;
    justify-content: space-between;
}

#banner .row {
    padding: 0;
    width: 100%;
    height: 100%;
}

#banner::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -2;
    background-color: var(--background-color-lighter);
}

.container-gallery {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    position: relative;

    width: 100%;

}

#banner .carousel {
    width: 90%;
}

#banner .carousel_track_container::after {
    content: '';
    position: absolute;

    width: 100%;
    height: 100%;

    top: 15%;
    left: 5%;

    transform: translate(-50%, -50%);

    transform: rotate(-25deg);
    z-index: -1;

    opacity: 90%;
    background-image: url('../Images/flower_set (2).png');
    background-repeat: no-repeat;
    background-size: contain;

}

#banner .carousel_track_container::before {
    content: '';
    position: absolute;

    top: 75%;
    left: 75%;
    transform: translate(-85%, -75%);

    width: 70%;
    height: 70%;
    z-index: -1;



    background-image: url('../Images/blob.png');
    background-repeat: no-repeat;
    background-size: contain;

}

.container_banner_img {
    display: flex;

    width: 100%;
    height: 100%;
    overflow: visible;
    justify-content: end;
}

.container_banner_img img {
    width: 100%;
    aspect-ratio: 1;

    user-select: none;
    overflow: visible;
    filter: blur(.75px);
    box-shadow: 20px 20px 70px rgba(225, 255, 225, 0.401);
}

.container_banner_img h1 {
    position: absolute;

    width: 50%;

    top: 75%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);

    letter-spacing: .2rem;
    font-size: 3.5rem;
    font-family: var(--font-primary);
    font-weight: 300;

    color: rgb(42, 46, 28);


    animation: fadeIn linear 1s;
}



.title h1 {
    position: absolute;
    left: -9999px;
    font-weight: 900;
    color: rgb(252, 241, 210);
}


/*About*/

#about {
    position: relative;
    height: 80vh;
    min-height: 1000px;

    background-color: #fffef4;
    z-index: 0;
    user-select: none;
}

#about .row {
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;

    justify-content: space-evenly;
    align-items: center;
}

#about::after {
    position: absolute;
    content: '';

    width: 140%;
    height: 140%;

    top: 100%;
    left: 50%;

    transform: translate(-50%);

    background-image: url('../Images/blob_2.png');
    background-size: contain;
    background-repeat: no-repeat;
    z-index: -1;
}

#about h1 {
    position: relative;
    text-align: center;
    width: 100%;
    margin-bottom: 3rem;
    letter-spacing: .2rem;

    font-family: var(--font-primary);
    font-size: 2.8rem;

    color: var(--background-color);

    z-index: 1;
}

#about h1::before {
    content: '';
    position: absolute;

    width: 4rem;
    height: 4rem;
    left: 20px;
    top: -25px;
    background-image: url('../Images/dots.png');
    background-repeat: no-repeat;
    background-size: contain;
    filter: hue-rotate(300deg);
    opacity: 70%;
    z-index: -1;

}

#about h2 {
    width: 100%;

    text-align: center;
    z-index: 1;

    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 2.5rem;
    letter-spacing: .25rem;

    color: var(--text-color-dark);

}



.about-icons {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: start;

    z-index: 1;
}

.about-items {
    display: flex;
    position: relative;

    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    max-width: 25rem;
    padding: 0 1.25rem;
    margin: 1rem 0;
}

.about-items img {
    width: 3rem;
    filter: invert(1);
}

.about-items::before {
    content: '';
    position: absolute;
    width: 4.25rem;
    height: 4.25rem;
    top: -6.5%;
    left: 50%;
    transform: translate(-50%);
    border-radius: 100%;
    background-color: var(--background-color);
    z-index: -1;
}

.about-items h3 {
    width: 10rem;
    margin: .75rem;
    font-size: .9rem;
    text-align: center;
    color: #2a2e27;
}



#categories {
    position: relative;

    height: fit-content;
    min-height: 1000px;
}

#categories .page-section {
    justify-content: space-between;
}


#categories .col {
    flex-direction: column;
    justify-content: space-between;
    max-width: 1800px;
}

.container-category {
    display: flex;
    justify-content: space-between;

    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;

    z-index: 0;

    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.title-category {
    display: flex;
    width: 100%;
    max-width: 370px;

}

.title-category h1 {
    position: relative;
    text-align: center;

    margin-bottom: 3rem;
    letter-spacing: .2rem;

    font-family: var(--font-primary);
    font-size: 3rem;

    color: var(--background-color);

    z-index: 1;
}

.title-category h1::before {
    content: '';
    position: absolute;

    width: 4rem;
    height: 4rem;
    left: 20px;
    top: -25px;

    background-image: url('../Images/dots.png');
    background-repeat: no-repeat;
    background-size: contain;
    filter: hue-rotate(300deg);
    opacity: 70%;
    z-index: -1;
}

.card-category {
    display: flex;
    position: relative;
    flex-shrink: 0;

    aspect-ratio: 9/10;
    overflow: hidden;
    margin: 0 1rem;
    align-items: center;
    justify-content: center;

}

.gallery-2-item h3 {
    position: absolute;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: black;
    bottom: 0;
    padding: 0 1rem;
    z-index: 1;
}

.container-category:hover .gallery-2-item img {
    filter: blur(8px) saturate(25%) hue-rotate(45deg);
}

.container-category:hover .gallery-2-item:hover img {
    filter: none;
}

.gallery-2-item img {
    width: 300px;
    filter: brightness(102%) contrast(.8);
    transition: filter .3s ease-out;
}

.gallery-2-item h3 {
    position: absolute;
    font-family: var(--font-secondary);
    font-weight: 300;
    color: rgb(255, 255, 255);
    text-shadow: 1px 1px 7px rgba(26, 25, 25, 0.642);
    bottom: 0;
    padding: 0 1rem;
    z-index: 1;
    user-select: none;

}

.gallery-2 {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: minmax(290px, 1fr);
    gap: 1rem;
    padding: 2rem;
    
    width: 100%;
  align-items: center;
  justify-content: center;
    
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.gallery-2-item {
    scroll-snap-align: start;
    border-radius: 8px;
    padding: 4px;
}

.gallery-2 .image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.gallery-2 img {
    width: 100%;
    object-fit: contain;
}

.w-2 {
    grid-row: span 2;
    margin-top: 20px;
    height: 300px;
}


/*Find us*/

#find-us {
    position: relative;
    display: flex;

    width: 100%;
    height: 100vh;
    min-height: 1000px;
    max-height: 1500px;
    margin: 0;
    padding-bottom: 12rem;
    overflow: hidden;

    z-index: 0;

}

#find-us::before {
    content: '';
    position: absolute;

    width: 100%;
    height: 100%;
    z-index: -1;

    background-image: url('../Images/cardboard-texture.jpg');

    opacity: 50%;
    background-size: contain;
}

#find-us .col {
    width: 100%;
    height: 100%;
    justify-content: end;

    max-width: 100%;
    margin: 0;
}

#find-us .row {
    padding: 0;
}

.map_store {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    z-index: 1;
}


.contact-container {
    display: flex;
    position: relative;

    height: 50%;

    z-index: 1;
}


/* Form */
.contact-form {
    display: flex;
    position: relative;

    margin: 0rem 2.5rem;

    justify-content: space-between;
    align-items: center;

    flex-direction: column;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 25%;
    left: 0;
    width: 250%;
    height: 280%;
    max-height: 900px;
    transform: translate(-30%, -25%);

    border-radius: 30% 70% 0% 79% / 65% 30% 70% 35%;
    background-color: #58803c57;
    z-index: -1;
}

.contact-form::after {
    content: '';
    position: absolute;

    top: 25%;
    left: 0;
    transform: translate(-30%, -25%);

    width: 250%;
    height: 280%;
    max-height: 900px;

    border-radius: 30% 70% 0% 79% / 65% 30% 70% 35%;
    background-image: url('../Images/cardboard-texture.jpg');
    background-size: contain;
    mix-blend-mode: multiply;

    opacity: 70%;
    z-index: -1;
}

/* Heading */
.contact-heading {
    width: 100%;
    font-family: var(--font-primary);
    font-size: 4rem;
    color: #1a1b16;
    margin-bottom: 2rem;
}


/* Inputs & Textarea */
.contact-input,
.contact-textarea {
    width: 100%;
    max-width: 450px;
    margin: 0.5rem 0;
    font-size: 1.125rem;
    color: #000;
    font-family: var(--font-secondary);
    font-weight: 300;
    padding: 1rem;
}

.contact-input {
    height: 3rem;
}

.contact-textarea {
    height: 5rem;
    min-height: 7rem;

    resize: none;
}

/* Submit Button */
.contact-button {
    background-color: #000;
    color: #fff;
    width: 100%;
    max-width: 450px;
    margin: 1rem 0;
    padding: 1rem;
    white-space: nowrap;
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.25rem;
    border: none;
    cursor: pointer;
}

.contact-button:hover {
    background-color: #fff;
    color: #000;
}



.developer_wm,
.developer_wm a {
    border-bottom: #c5c5c5 solid 1px;
    margin-top: 2rem;
    font-size: 1rem;
    font-size: .7rem;
    max-width: 20rem;
    font-family: var(--font-secondary);
    font-weight: 600;
}

.FadeInOnScroll {
    opacity: 0;
    transform: rotate(0deg);
}

.FadeInOnScroll.visible {
    animation: Fade_in 1s ease-out forwards;
}


.carousel {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
}

.carousel_track_container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.carousel_track {
    position: relative;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    list-style: none;
    transition: transform 1.75s cubic-bezier(0.2, 1, 0.25, 1);
}

.carousel_slide {
    position: absolute;
    display: flex;

    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;

    overflow: hidden;
}

.carousel_slide img {
    width: 95%;
    height: 95%;
    object-fit: contain;
}

.carousel_buttons {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
    z-index: 1;
}

.carousel_butn {
    position: relative;
    width: 1.8rem;
    height: 2rem;

    top: 0;
    border: 0;

    background-color: transparent;
    cursor: pointer;

    z-index: 1;
}

.carousel_butn img {
    width: 100%;
    filter: invert(1);
}

.carousel_butn-left {
    transform: scaleX(-1);
}

.carousel_butn :hover {
    filter: drop-shadow(1px 1px rgb(152, 111, 111)) invert(1);
}

.carousel_nav {
    display: flex;
    position: relative;

    flex-direction: column;
}

.carousel_nav button {
    width: .35rem;
    height: .35rem;
    margin: 5px;
    border: 0;
    border-radius: 100%;
    background-color: #fffffd;

    cursor: pointer;

}

.carousel_nav .current_slide {
    background-color: #5f593d;
    box-shadow: 1px 1px 10px rgba(234, 234, 228, 0.645)
}




/*#PAGE: Abous Us */

#we-offer {
    position: relative;
    display: flex;

    height: 100vh;
    max-height: 1900px;

    justify-content: space-between;

    background-color: var(--background-color);

    overflow: hidden;
    z-index: 1;
}

#we-offer .col {
    width: 100%;
}

#we-offer .row {
    padding: 0;
}

#we-offer .carousel {
    z-index: 5;

}

#we-offer .carousel_slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#we-offer .carousel_track_container {
    box-shadow: 15px 15px 50px rgba(124, 124, 122, 0.297);
}

.container-we-offer_carousel {
    display: flex;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 2rem;
    align-items: center;
    justify-content: center;
    position: relative;


}


.container_we-offer {
    display: flex;
    position: relative;

    height: 100%;
    padding: 1.5rem;

    flex-direction: column;
    justify-content: center;
}


.container_we-offer h1 {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;

    font-family: var(--font-primary);
    font-size: 3rem;

    color: var(--text-color);

    z-index: 1;
}

.container_we-offer h1::before {
    content: '';
    position: absolute;

    width: 4rem;
    height: 4rem;

    left: -5%;
    top: -20%;

    background-image: url('../Images/dots.png');
    background-repeat: no-repeat;
    background-size: contain;

    filter: brightness(500%);
    opacity: 30%;

    z-index: -1;
}

.container_we-offer h2 {
    width: 100%;
    margin: .5rem 0;

    text-align: center;

    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1.25rem;

    color: var(--text-color);

}


.container_we-offer h3 {
    width: 100%;
    margin-top: 1rem;

    font-size: .9rem;
    font-weight: 300;
    text-align: center;

    color: var(--text-color);
}

/*Process section*/
#process {
    position: relative;
    height: fit-content;
    background-color: var(--background-color-lighter);
    z-index: 0;
}

#process::before {
    content: '';
    position: absolute;

    top: -6%;
    left: 5%;
    width: 700px;
    height: 400px;
    border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
    background-image: url('../Images/shape_bg.png');
    background-repeat: no-repeat;
    background-size: contain;

    transform: scale(-1, -1);

    z-index: -1;

}

/* '';
  position: absolute;
  top: 50%;
  left: -27%;
  width: 200%;
  height: 200%;
  border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
  background-image: url('../Images/shape_bg.png');
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1; */

/*Title*/
.title-process {
    display: flex;
}

.title-process h1 {
    position: relative;
    text-align: left;

    margin-bottom: 3rem;
    letter-spacing: .2rem;

    font-family: var(--font-primary);
    font-size: 3rem;

    color: var(--text-color-dark);

    z-index: 1;
}

.title-process h1::before {
    content: '';
    position: absolute;

    width: 4rem;
    height: 4rem;
    left: 0%;
    top: -25%;
    transform: translate(-50%);
    background-image: url('../Images/dots.png');
    background-repeat: no-repeat;
    background-size: contain;
    filter: hue-rotate(300deg);
    opacity: 70%;
    z-index: -1;
}

.container-steps {
    width: 100%;
    height: 100%;
    justify-content: end;
}

/*Step grid*/

.steps_grid {
    display: grid;

    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 4rem 0rem;
}


.steps_grid_cell {
    display: flex;
    justify-content: center;
    align-items: center;
}

.steps_grid_cell.steps_grid_offset img {
    transform: rotate(15deg);
}

.steps_grid_offset {
    grid-row: span 2;
}

.step_content {
    display: flex;
    position: relative;
    flex-direction: row;
    justify-content: space-between;
    padding: .75rem;
}

.step_content img {
    width: 100%;
    max-width: 220px;
    transform: rotate(-15deg);
}

.step_content::before {
    position: absolute;
    content: '';

    width: 100%;
    height: 100%;

    left: 0%;
    top: 0%;

    background-image: url('../Images/blob_6.png');
    background-size: contain;
    background-position: 50%;
    background-repeat: no-repeat;

    z-index: -1;
}

.step_content.step_2::before {
    background-image: url('../Images/blob_5.png');
}

.step_content.step_3::before {
    background-image: url('../Images/blob_4.png');
}

/*Numbering*/
.step_number {
    font-family: var(--font-primary);
    font-weight: 300;
    font-size: 2rem;
    align-self: flex-start;
    color: var(--text-color-dark);

}

.step_content_descrip {
    display: flex;
    flex-direction: column;

    width: 40%;
    padding-top: 2.5rem;
}

.step_content_descrip h2 {
    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 2rem;
    letter-spacing: 3px;

    color: var(--text-color-dark);

    margin-top: 2rem;
    align-self: self-start;

}

.step_content_descrip h3 {

    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 1rem;

    letter-spacing: 1px;

    color: var(--text-color-dark);
}


/*Product category list page*/

#product_listing {
    position: relative;
    display: flex;

    min-height: 100vh;

    justify-content: center;

    background-color: var(--background-color-lighter);

    overflow: hidden;
    z-index: 0;
}

#product_listing .col {
    width: 100%;
}

#product_listing .row {
    padding: 4rem 0;
    align-self: center;
}

.product_listing_row {
    display: flex;
    position: relative;

    min-height: fit-content;
}

.product_listing_row::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 500%;
    aspect-ratio: 1;
    background-color: var(--background-color);
    opacity: 75%;
    border-radius: 100%;
    z-index: -1;
}



.product_listing_title {
    display: flex;
    height: 80%;

    justify-content: center;
}

.product_listing_title h1 {
    position: relative;
    width: 80%;
    text-align: center;
    margin-top: 2rem;
    font-family: var(--font-primary);
    font-size: 3rem;
    letter-spacing: 2px;

    color: rgb(59, 65, 59);

    z-index: 1;
}

.product_listing_title h1::before {
    content: '';
    position: absolute;

    width: 4rem;
    height: 4rem;

    left: 5%;
    top: -20%;

    background-image: url('../Images/dots.png');
    background-repeat: no-repeat;
    background-size: contain;
    filter: hue-rotate(320deg);
    opacity: 95%;

    z-index: -1;
}

.product_listing_type h1 {
    position: relative;
    text-align: center;

    font-family: var(--font-secondary);
    font-weight: 300;
    font-size: 3.25rem;

    letter-spacing: 4px;

    color: white;

    z-index: 1;
}

/*
.product_listing_type h1 {
    margin-right: 1rem;
    }
    */
.product_list_container ul {
    position: relative;
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 2.5rem;
}

.product_list_container ul::before {
    content: '';
    position: absolute;
    left: 0%;
    top: 0%;
    transform: translate(-50%, -50%);
    width: 300%;
    overflow: visible;
    height: 1px;
    background-color: var(--background-color-lighter);
    z-index: -1;
}

.product_list_container li {
    margin: 1rem;
    list-style: none;

}

.listing_item h2 {
    font-size: 1.5rem;
    font-family: var(--font-secondary);
    font-weight: 300;
    text-align: center;
}

.listing_highlited h2 {
    color: #161514;
}

.we-offer-row_text {
    display: flex;
    flex-direction: row;
}

.we-offer-row_text h2 {
    font-size: 1.5rem;
}

#about-company {
    position: relative;

    min-height: 600px;
    align-items: left;
}

#about-company::before {
    content: '';
    position: absolute;
    top: 80%;
    left: -50%;
    transform: translate(0, -50%);
    width: 700px;
    height: 400px;
    border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
    background-image: url('../Images/shape_bg.png');
    background-repeat: no-repeat;
    background-size: contain;

    z-index: -1;

}

#about-company .row {
    align-items: start;
    justify-content: left;
    padding: 2rem;
}

#about-company h1 {
    position: relative;
    width: 100%;

    text-align: center;

    margin-bottom: 1rem;
    letter-spacing: .2rem;

    font-family: var(--font-primary);
    font-size: 3rem;

    color: var(--text-color-dark);

    z-index: 1;
}

#about-company p {
    width: 100%;

    margin: 2rem 0;

    text-align: center;
    font-size: 1rem;

    font-family: var(--font-secondary);
    color: var(--text-color-dark);
}

@keyframes Fade_in {
    from {
        transform: rotate(0deg);
        opacity: 0;
    }

    to {
        transform: rotate(360deg);
        opacity: 1;
    }
}

@media screen and (min-width:720px) {
    html {
        font-size: 14px;
    }

    header {
        height: fit-content;
    }

    .dropdown_category .dd_item {
        height: 3.75rem;
    }

    nav {
        justify-content: start;
    }

    .logo {
        display: flex;
        justify-content: center;
        width: 5.5rem;
        padding: .5rem;
    }

    .hamburger_menu-btn {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;

        position: relative;

        height: auto;
        max-width: 100%;
        overflow: visible;

        align-items: center;
        justify-content: center;
    }

    .section_divider_graphic {
        display: block;
        position: absolute;

        bottom: 2%;
        right: 1%;

        width: 30%;
        height: 30%;

        opacity: 70%;
    }

    .section_divider_graphic_inverted {
        display: block;
        position: absolute;

        top: 2%;
        left: 1%;

        width: 30%;
        height: 30%;

        scale: -1;
        opacity: 70%;

    }

    .nav-menu-ul {

        width: 100%;
        margin-top: 0;

        flex-direction: row;
        justify-content: end;

        overflow-y: visible;
    }

    .nav-menu li {
        margin: 0;
        height: auto;

    }

    .nav-menu-ul li {
        margin: 1rem;

    }

    .dropdown_category li {
        margin: 0;
    }

    .nav-menu li::after {
        height: 1px;
        width: 0%;

    }

    .nav-menu a {
        position: relative;
        font-weight: 300;
        font-size: 1.2rem;
        margin: 0;
        width: 100%;
        height: 100%;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .nav-button-conatiner {
        height: 3rem;
        z-index: 0;
    }

    .title_company {
        position: relative;
        display: flex;
        flex-direction: row;
        width: 50%;
        max-width: fit-content;

        align-items: center;
        justify-content: center;
        margin: 0 auto;
        margin-left: 8rem;

        color: rgb(44, 48, 40);
        z-index: 7;

    }

    .title_company span {

        font-size: 1.3rem;
        font-weight: 300;
        letter-spacing: 5px;
        z-index: 7;
margin:0 4px;
        color: rgb(44, 48, 40);
    }

    .title_company::after {
        content: '';
        position: absolute;

        width: 1px;
        height: 3.25rem;

        left: -27px;
        top: 50%;
        transform: translateY(-50%);

        background-color: var(--text-color-dark);
        opacity: 90%;
    }

    footer {
        flex-direction: row;
    }


    h2 {
        font-size: 3rem;
    }

    .col {
        flex-direction: row;
    }

    .row {
        width: fit-content;
        height: fit-content;
    }

    .row-100 {
        display: flex;
        width: 100%;
    }

    .row-70 {
        display: flex;
        width: 70%;
    }

    .row-50 {
        display: flex;
        width: 50%;
    }

    .row-30 {
        display: flex;
        width: 33%;
    }

    #banner {
        height: fit-content;
        z-index: 0;

    }

    .container-gallery {
        aspect-ratio: 1;
    }

    .container-we-offer_carousel {
        aspect-ratio: 1;

    }

    #banner .carousel {
        width: 80%;
        height: 80%;
    }

    .container_banner_img img {
        filter: blur(.25px);

    }

    #banner .carousel_track_container::after {
        content: '';
        position: absolute;

        width: 90%;
        height: 90%;

        top: 15%;
        left: 12%;


        transform: rotate(-25deg);
        z-index: -1;


        opacity: 80%;
        background-image: url('../Images/flower_set (2).png');
        background-repeat: no-repeat;
        background-size: contain;
    }

    #banner .carousel_track_container::before {
        content: '';
        position: absolute;

        top: 80%;
        left: 75%;
        transform: translate(-85%, -80%);

        width: 65%;
        height: 65%;
        z-index: -1;



        background-image: url('../Images/blob.png');
        background-repeat: no-repeat;
        background-size: contain;

    }

    .container_banner_img h1 {
        position: absolute;

        width: fit-content;

        margin: auto;
        top: 1.7%;
        left: 52%;
        transform: translateX(-50%);

        letter-spacing: .6rem;
        font-size: 2.5rem;
        font-family: var(--font-primary);
        font-weight: 300;


        color: rgb(42, 46, 28);
        text-shadow: 1px 1px 20px rgba(209, 203, 203, 0.381);

        animation: fadeIn linear 1s;
        z-index: 1;
    }

    .gallery-item img {
        max-width: 150px;
    }

    #about h1 {
        margin-bottom: 2rem;
    }



    #about::after {
        position: absolute;
        content: '';

        width: 120%;
        height: 120%;

        left: 60%;
        top: 40%;
        transform: translate(-50%);

        background-image: url('../Images/blob_2.png');
        background-size: contain;
        background-repeat: no-repeat;

        z-index: -1;
    }

    .row-banner_img img {
        width: 100%;
        max-width: 510px;
    }

    .container_banner_img h1 {
        font-size: 3.5rem;
    }

    #about h1 {
        width: 100%;
        font-size: 4rem;
        letter-spacing: .5rem;
    }

    #about h1::before {
        content: '';
        position: absolute;

        width: 4rem;
        height: 4rem;
        left: -1rem;
        top: -1.5rem;
    }

    .about-icons {
        flex-direction: row;
    }

    .contact-form {


        margin: 4rem;
    }

    .title-category h1 {
        font-size: 4rem;
    }

    .title-category h1::before {

        width: 4rem;
        height: 4rem;
        left: 0px;
        top: -15px;
    }

    #we-offer {
        height: fit-content;
    }

    .container_we-offer h1 {
        position: relative;
        text-align: left;

        margin: 1rem 0;
        letter-spacing: .2rem;

        font-size: 3rem;
    }

    .container_we-offer h1::before {
        content: '';
        position: absolute;

        width: 4rem;
        height: 4rem;
        left: -5%;
        top: -15%;
    }

    .container_we-offer h2 {
        width: 100%;
        margin: 1rem 0;

        text-align: left;

        font-weight: 300;
        font-size: 1.5rem;

    }


    .container_we-offer h3 {
        width: 100%;
        margin-top: 2rem;

        text-align: left;
    }

    .contact-form::before,
    .contact-form::after {
        top: 10;

    }

    .title-category {
        display: flex;
        width: 100%;
        max-width: 1200px;
    }

    .steps_grid {
        gap: 8rem 2rem;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .step_content_descrip h3 {
        text-wrap: nowrap;
    }

    .step_content img {
        width: 100%;
        max-width: 250px;
    }

    .product_listing_row {
        display: flex;
        flex-direction: row;
        width: 50%;
    }

    .product_list_container ul::before {

        left: 5%;
        top: 50%;
        width: 1px;
        height: 100%;

    }

    .product_listing_title {
        width: 90%;
        text-align: left;
        justify-self: start;
        align-self: self-start;
    }

    .product_listing_type h1 {
        margin: 0;
        width: 70%;
        font-size: 2rem;
    }

    .product_listing_row::before {
        content: '';
        position: absolute;
        left: 87%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 190%;
        min-width: 1300px;
        aspect-ratio: 1;
        background-color: var(--background-color);
        opacity: 75%;
        border-radius: 100%;
        z-index: -1;
    }


    .product_listing_title h1::before {
        left: -5%;
        top: -20%;
    }

    #product_listing .row {
        align-self: center;
    }

    .listing_item h2 {
        text-align: start;
    }

    #process::before {
        content: '';
        position: absolute;

        top: -10%;
        left: 25%;
        width: 700px;
        height: 400px;
        border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
        background-image: url('../Images/shape_bg.png');
        background-repeat: no-repeat;
        background-size: contain;

        transform: scale(-1, -1) translate(-50%);

        z-index: -1;

    }

    #about-company p {
        width: 60%;
        margin: 2rem 0;
        text-align: left;
        font-size: 1.1rem;
    }

    #about-company h1 {
        width: 100%;

        text-align: left;
    }

    #about-company::before {
        content: '';
        position: absolute;
        top: 80%;
        left: -15%;
        transform: translate(0, -50%);
        width: 700px;
        height: 400px;
        border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
        background-image: url('../Images/shape_bg.png');
        background-repeat: no-repeat;

        z-index: -1;

    }

    .gallery-2 {
        grid-auto-flow: column;
    }

    footer p {
        font-size: 1rem;
    }
}

@media screen and (min-width:920px) {
    html {
        font-size: 16px;
    }

    .logo {
        position: absolute;
        width: 5.5rem;
    }


    .gallery-item img {
        max-width: 220px;
    }

    .row-banner_img img {
        width: 100%;
        max-width: 800px;
    }

    #about h1::before {
        content: '';
        position: absolute;

        width: 4rem;
        height: 4rem;
        left: -3rem;
        top: -2rem;
    }

    .title-category {
        justify-content: center;
    }

    .title-category h1::before {

        width: 4rem;
        height: 4rem;
        left: -3rem;
        top: -2rem;
    }

    .container-category {
        display: flex;
        justify-content: space-between;

        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;

        z-index: 0;

        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
    }

    #product_listing .row {
        align-self: center;
    }

    #process::before {
        content: '';
        position: absolute;

        top: -7.5%;
        left: 50%;
        width: 700px;
        height: 400px;
        border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
        background-image: url('../Images/shape_bg.png');
        background-repeat: no-repeat;
        background-size: contain;

        transform: scale(-1, -1) translate(-50%);

        z-index: -1;

    }


}

@media screen and (min-width:1800px) {
    html {
        font-size: 18px;
    }

    .col {
        flex-direction: row;
        width: 100%;
    }


    .row-banner_img img {
        width: 100%;
        max-width: 1000px;
    }

    .row-banner_img h1 {
        width: 600px;
    }

    #about h1::before {
        content: '';
        position: absolute;

        width: 4rem;
        height: 4rem;
        left: -3rem;
        top: -2rem;
    }


    .title-category h1::before {

        width: 4rem;
        height: 4rem;
        left: 8rem;
        top: -2rem;
    }

    #about-company::before {
        content: '';
        position: absolute;
        top: 65%;
        left: -10%;
        width: 150%;
        height: 90%;
        border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
        background-image: url('../Images/shape_bg.png');
        background-repeat: no-repeat;
        z-index: -1;

    }

    #process::before {
        content: '';
        position: absolute;
        top: -15%;
        left: 25%;
        width: 100%;
        height: 90%;
        transform: scale(-1, -1) translate(-50%);
        border-radius: 0% 100% 100% 0% / 30% 100% 0% 70%;
        background-image: url('../Images/shape_bg.png');
        background-repeat: no-repeat;

        z-index: -1;

    }
}