@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* background-color: green !important; */
    /* font-family: "Open Sans", sans-serif; */
    font-family: "Plus Jakarta Sans", sans-serif !important;
    /* position: relative; */
    /* display: none; */
}

section:nth-child(1),
section:nth-child(2),
section:nth-child(3),
section:nth-child(4) {
    width: 100%;
    height: 100vh;
    scroll-snap-align: start;
    scroll-snap-stop: normal;
    display: flex;
    flex-direction: column;
    align-items: center;
    align-content: center;
    padding: 30px 0;
}

section:nth-child(2) {
    background-color: #fcfcfc;
    height: auto !important;
    padding: 30px 0 !important;
}

@media(max-width:600px) {
    section:nth-child(2) h1 {
        font-size: 18px;
    }
}

section:nth-child(3) {
    width: 100%;
    height: auto;
    background-color: #f2f2f2;
    padding: 0;
    color: #000 !important;
}

section:nth-child(4) {
    /* background-color:green; */
    /* color:#000 !important; */
    padding: 0;
}



.accordion {
    display: flex;
    flex-direction: column;
    /* gap:10px; */
}

.accordion-item {
    /* backdrop-filter: blur(4px); */
    /* background: rgba(97, 101, 98, 0.3); */
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #000 !important;
    text-align: left;
    border-radius: 0 !important;
}

.accordion-collapse {
    /* background-color: green; */
    /* border-top: 1px solid rgba(196, 193, 193, 0.2); */
    font-size: 14px;
}

.accordion-button {
    background-color: transparent !important;
    color: #000 !important;
    font-weight: bold;
    font-size: 14px;
    /* background-color: green; */
    border: 1px solid rgba(196, 193, 193, 0.2);
    /* background-color: blue !important; */
}

.accordion-button:not(.collapsed) {
    box-shadow: none !important;
}

.accordion-button:focus {
    box-shadow: none;
    /* background-color: green; */
    /* border-top: 1px solid rgba(196, 193, 193, 0.2); */
}



.accordion-button::after {
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}


#myBtn {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Fixed/sticky position */
    bottom: 20px;
    /* Place the button at the bottom of the page */
    right: 30px;
    /* Place the button 30px from the right */
    z-index: 1111;
    /* Make sure it does not overlap */
    border: none;
    /* Remove borders */
    outline: none;
    /* Remove outline */
    background-color: #000;
    /* Set a background color */
    color: white;
    /* Text color */
    cursor: pointer;
    /* Add a mouse pointer on hover */
    padding: 15px;
    /* Some padding */
    border-radius: 10px;
    /* Rounded corners */
    font-size: 18px;
    /* Increase font size */
    width: 40px;
    height: 40px;
    align-items: center;
    align-content: center;
    justify-content: center;
}

#myBtn:hover {
    background-color: #555;
    /* Add a dark-grey background on hover */
}

.faq-content {
    background-color: #fff;
    height: auto;
    padding: 20px;
}


.footer-content {
    width: 100%;
    height: 80vh;
    /* background-color: green; */
    align-content: center;
    color: #fff;
}

.footer-content .content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.footer-content .content .text {
    color: rgba(255, 255, 255, 0.747);
    /* font-weight: bold; */
    font-size: 18px;
}

.footer-content .content span {
    font-size: 14px;
    padding: 0 20px;
    /* color: rgba(255, 255, 255, 0.6); */
}

.footer-content .content button {
    width: auto;
    padding: 10px 15px;
    border: none;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.3);
}


.products {
    /* background-color: #ffffff; */
    width: 100%;
    height: auto;
}

.products-2 {
    background-color: #f1f1f1;
    width: 100%;
    height: 100vh;
    /* margin:10px 0; */
    position: fixed;
    top: 0;
    z-index: 111;
}

@media(max-width:600px) {
    .products-2 {
        display: none;
    }

    .product-item {
        margin: 0 !important;
    }

    .head-title {
        padding: 0 10px;
    }
}


.m-view {
    padding-top: 1.5pc;
    padding-bottom: 2pc;
    position: relative;
}

@media(max-width:600px) {
    .m-view {
        padding: 0 !important;
        margin: 0 !important;
        overflow: hidden;
        padding-top: 1pc !important;
    }
}