@import url('https://fonts.googleapis.com/css2?family=Dosis:wght@200;300;400;500;600&display=swap');

:root {
    --peru: #128137;
    --black: #222;
    --white: #fff;
    --light-black: #666;
    --light-white: #ccc;
    --light-bg: #f5f5f5;
    --dark-bg: rgba(0, 0, 0, .7);
    --border: .1rem solid #aaa;
    --box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .1);
    --gradient: linear-gradient(0deg, rgb(132 144 255) 0%, rgb(98 189 252) 100%);
}


* {
    font-family: 'Dosis', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    border: none;
    text-decoration: none;
    transition: all .2s cubic-bezier(.43, 1.1, .62, 1.08);
    text-transform: capitalize;
}

*>img {
    user-select: none;
    pointer-events: none;
}

html {
    font-size: 62.5%;
    overflow-x: hidden;
    scroll-behavior: smooth;
    scroll-padding-top: 6rem;
}

html::-webkit-scrollbar {
    width: 1rem;
}

html::-webkit-scrollbar-track {
    background-color: var(--white);
}

html::-webkit-scrollbar-thumb {
    background-color: var(--peru);
}


/* chat Gpt Header starts  */



/* Header Section Css Starts */

section {
    padding: 5rem 10%;
}

header {
    padding: 5rem 10%;
}

main {
    padding: 5rem 10%;
}


.heading {
    text-align: center;
    margin-bottom: 3rem;
}

.heading span {
    font-size: 2.5rem;
    color: var(--peru);
}

.heading h1 {
    font-size: 4.5rem;
    color: var(--black);
}

.heading h2{
    font-size: 4.5rem;
    color: var(--black);
}

.heading h3 {
    font-size: 3.0rem;
    color: var(--black);
}

.heading b {
    font-size: 4.5rem;
    color: var(--black);
    display: block;
}


.btn {
    margin-top: 1rem;
    display: inline-block;
    background: var(--peru);
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 1rem 3rem;
}

.btn:hover {
    letter-spacing: .2rem;
}

.header {
    padding-top: 2rem;
    padding-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    z-index: 1000;
}

.header img {
    width: 220px;
    height: 80px;
}

.header .navbar {
    display: flex;
    align-items: center;
}

.header .navbar a {
    font-weight: bolder;
    font-size: 2rem;
    margin-left: 2rem;
    color: var(--light-black);
    text-decoration: none;
}

.header .navbar a:hover {
    color: var(--dark-bg);
    background-color: rgba(18, 129, 55, 0.8);
    padding: 5px 15px;
    border-radius: 5px;
}

.header .navbar a.active {
    color: var(--black);
    background-color: rgba(18, 129, 55, 0.8);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bolder;
}

.header .navbar a.active:hover {
    color: var(--peru);
    background-color: var(--black);
    padding: 5px 15px;
    border-radius: 5px;
    font-weight: bolder;
}

#menu-btn {
    font-size: 2.5rem;
    cursor: pointer;
    color: var(--black);
    display: none;
}

#para p {
    text-transform: none;
}

/* header css ends */

/* Add styles for the search container */
.search-container {
    display: flex;
    align-items: center;
}

.search-container ::placeholder {
    color: var(--white);
}

#search {
    padding: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
    /* background-color: var(--peru); */
    background-color: var(--black);
    color: var(--white);
}

#search-button {
    /* background-color: var(--peru); */
    background-color: var(--black);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 5px;
    font-size: 2rem;
    padding: 1.2rem;
}

#search-button:hover{
    background-color: var(--peru);
}

/* Add styles for the search results */
#search-results {
    margin-top: 10px;
}

.search-result {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

.search-result h3 {
    font-size: 18px;
    margin-bottom: 5px;
}

.search-result p {
    font-size: 14px;
    color: #666;
}

.search-result a {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 10px;
}



.home {
    padding: 0;
    background: var(--black);
}

.home .slide {
    /* min-height: 100vh; */
    min-height: 84vh;
    background-size: cover !important;
    background-position: center !important;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home .slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: var(--dark-bg);
    z-index: -1;
}

.home .slide .content {
    text-align: center;
    width: 70rem;
    display: none;
}

@keyframes slideHomeContent {
    0% {
        opacity: 0;
        transform: translateY(-400px);
    }
}

@keyframes fadeIn {
    0% {
        transform: scale(.5);
        opacity: 0;
    }
}


.home .slide .content span {
    font-size: 3rem;
    display: block;
    padding-bottom: .5rem;
    color: var(--light-white);
    animation: fadeIn .2s linear backwards .2s;
}

.home .slide .content strong {
    font-size: 4vw;
    text-transform: uppercase;
    color: var(--white);
    text-shadow: 0 .5rem 1rem rgba(0, 0, 0, .7);
    line-height: 1;
    padding: 2rem 0;
    animation: fadeIn .2s linear backwards .4s;
    display: block;
}


.home .slide .content .btn {
    animation: fadeIn .2s linear backwards .5s;
    border-radius: 5px;
    border: 1px solid white;
    box-shadow: var(--box-shadow);

}

.home .swiper-slide-active .content {
    display: inline-block;
}

.swiper-button-next,
.swiper-button-prev {
    height: 5rem;
    width: 5rem;
    line-height: 5rem;
    background: var(--white);
    color: var(--black);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: var(--peru);
    color: var(--white);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 2rem;
}

/* legacy Page CSS Start */
/* #legacy{
    background-color: #d5ffc9;
} */

.legacy {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.legacy .content {
    flex: 1 1 41rem;
}

.legacy .content .title {
    font-size: 3rem;
    color: var(--black);
    text-align: center;
}

.legacy .content p {
    font-size: 1.7rem;
    color: var(--light-black);
    padding: 1rem 0;
    line-height: 2;
    text-transform: none;
}

.legacy .content p span {
    color: var(--peru);
}

.legacy .content ul{
    margin-left: 60px; 
    font-size: 1.7rem; 
    color: var(--light-black); 
    line-height: 2.5;
}



/* legacy Page CSS End */

/* About Page CSS Start */

.about {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.about .content {
    flex: 1 1 41rem;
}

.about .content .title {
    font-size: 3rem;
    color: var(--black);
}

.about .content h2 {
    font-size: 1.7rem;
    color: var(--light-black);
    padding: 1rem 0;
    line-height: 2;
    text-transform: none;
}

.about .content p {
    font-size: 1.7rem;
    color: var(--light-black);
    padding: 1rem 0;
    line-height: 2;
    text-transform: none;
}

.about .content .icon-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.about .content .icon-container .icons {
    flex: 1 1 16rem;
    text-align: center;
    background: var(--light-bg);
    padding: 3rem 2rem;
}

.about .content .icon-container .icons img {
    height: 7rem;
}

.about .content .icon-container .icons h3 {
    padding-top: 1rem;
    font-size: 2rem;
    color: var(--light-black);
    font-weight: normal;
}

.about .content p span {
    color: var(--peru);
}

/* added css */

.thumbnail {
    width: 450px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .4);
    position: relative;
    background-color: #fff;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 10px;
}


.thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 8px solid #fff;
    z-index: 2;
    overflow: hidden;
    box-sizing: border-box;
}

.thumbnail img {
    /* transition: transform .9s ; */
    transition: transform 4s;
    width: 100%;
    height: auto;
}

.thumbnail:hover img {
    /* transform: scale(1.1) rotate(-5deg); */
    transform: scale(1.9);
}

.thumbnail.right {
    float: right;
    margin-left: 20px;
}

.thumbnail.left {
    float: left;
    margin-right: 20px;
    margin-top: 20px
}

/* added css */

/* About Page CSS End */

/* Hot Selling Product Starts */

.container {
    position: relative;
    background-color: var(--light-bg);
}

.container .slide-container .slide {
    /* min-height: 5vh; */
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    padding: 20px 9%;
    box-shadow: var(--box-shadow);
}

.container .slide-container .slide .content {
    flex: 1 1 350px;
    animation: slideContent .4s linear .6s backwards;
}


@keyframes slideContent {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
}

.container .slide-container .slide .image {
    flex: 1 1 500px;
}

.container .slide-container .slide .image img {
    width: 70%;
    animation: slideImage .4s linear;
}

@keyframes slideImage {

    0% {
        opacity: 0;
        transform: translateY(-50px);
    }

}

.container .slide-container .slide .content h3 {
    font-size: 35px;
    color: #333;
}

.container .slide-container .slide .content span{
    color: var(--peru);
    font-size: 30px;
}

.container .slide-container .slide .content .slide-heading{
    color: #333;
}

.container .slide-container .slide .content b {
    /* font-size: 35px; */
    color: #333;
}

.container .slide-container .slide .content p {
    font-size: 16px;
    color: var(--dark-bg);
    padding: 10px 0;
    line-height: 1.8;
}

.container .slide-container .slide .content .btn {
    margin-top: 10px;
    display: inline-block;
    background: #666;
    color: #fff;
    font-size: 17px;
    padding: 9px 40px;
}

.container .slide-container .slide .content .btn:hover {
    background-color: #333;
}

.container .slide-container {
    display: none;
}

.container .slide-container.activeSlide {
    display: block;
}

.container .slide-container:nth-child(1) .slide {
    background: linear-gradient(135deg, #f9f9f9 70%, #0f7f29 30.1%);
    /* background: linear-gradient(135deg, #f9f9f9 70%, #f9f9f9 30.1%); */
}

.container .slide-container:nth-child(2) .slide {
    background: linear-gradient(135deg, #f9f9f9 70%, #0f7f29 30.1%);
    /* background: linear-gradient(135deg, #f9f9f9 70%, #f9f9f9 30.1%); */


}

.container .slide-container:nth-child(3) .slide {
    background: linear-gradient(135deg, #f9f9f9 70%, #0f7f29 30.1%);
    /* background: linear-gradient(135deg, #f9f9f9 70%, #f9f9f9 30.1%); */

}

.container #prev,
.container #next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    background: rgb(51, 51, 51, 0.3);
    height: 50px;
    width: 50px;
    line-height: 50px;
    font-size: 25px;
    text-align: center;
    cursor: pointer;
    font-weight: bolder;
}


.container #prev:hover,
.container #next:hover {
    background: #666;
}

.container #prev {
    left: 20px;
}

.container #next {
    right: 20px;
}

/* Hot Selling Product Ends */

/* Product Page Css Starts */

.product {
    background: var(--light-bg);
}

.product .slide {
    text-align: center;
    padding: 4rem 2rem;
    border-radius: .5rem;
    transform: scale(.9);
    opacity: .5;
    margin-bottom: 4rem;
    cursor: pointer;
}

.swiper-pagination-bullet-active {
    background: var(--black);
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.product .swiper-slide-active {
    transform: scale(1);
    opacity: 1;
    background: var(--white);
    box-shadow: var(--box-shadow);
    border: var(--border);
}

.product .slide img {
    height: 25rem;
    margin-bottom: 1rem;
}

.product .slide h1 {
    font-size: 2.1rem;
    padding: 1rem 0;
    color: var(--black);
}

.product .slide h2 {
    font-size: 2.1rem;
    padding: 1rem 0;
    color: var(--black);
}

.product .slide p {
    font-size: 1.5rem;
    color: var(--light-black);
}

.product .slide a {
    margin: 1rem .5rem;
    border-radius: 5px;
}

/* Product Section Main cashew-processing-machine/cashew-processing-machine.html ka css starts */

.productsection {
    background: var(--light-bg);
}

.productsection .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
    gap: 2rem;
}

.box {
    margin-bottom: 20px;
}

.productsection .box-container .box {
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    background: var(--light-bg);
}

.productsection .box-container .box img {
    height: 15rem;
    width: 20rem;
    line-height: 6rem;
    font-size: 2.5rem;
    color: var(--black);
    margin-bottom: 1rem;
    border-radius: 10px;
}

.productsection .box-container .box h3 {
    margin-top: 2rem;
    color: var(--black);
    font-size: 1.5rem;
}

.productsection .box-container .box p {
    color: var(--light-black);
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 1.8;
}

.productsection .box-container .box a {
    margin: 0.3rem 0;
    border-radius: 5px;
    padding: 1rem 1rem;
    background-color: var(--black);
    border: 4px solid var(--border);
    font-size: 1.5rem;
    width: 100%;
}

.productsection .box-container .box a:hover {
    color: var(--black);
    /* background-color: var(--light-bg); */
    background-color: var(--light-white);
    border: 4px solid var(--black);
}

.productsection .box-container .box:hover {
    background: var(--light-bg);
    transform: scale(.9);
    cursor: pointer;
}

.productsection .box-container .box:hover h3 {
    color: var(--black);
}

.productsection .box-container .box:hover p {
    color: var(--light-black);
}

#productsection {
    margin-bottom: 10rem;
}

/* .legacy .content .variant-compare{
    min-height: 100vh;
} */

.pricing-table{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: min(1600px, 100%);
    margin: auto;
}

.pricing-card{
    flex: 1;
    background-color: var(--black);
    margin: 20px 10px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    transition: .3s linear;
}

.pricing-card-header{
    background-color: var(--peru);
    display: inline-block;
    color: #fff;
    padding: 12px 30px;
    border-radius: 0 0 20px 20px;
    font-size: 16px;
    text-transform: uppercase;
    font-weight: 600;
    transition: .4s linear;
}

/* .pricing-card:hover .pricing-card-header{
    box-shadow: 0 0 0 20em var(--peru);
} */


.pricing-card:hover, .pricing-card:hover .price{
    color: #fff;
}

.legacy .content .variant-compare ul{
    margin: 40px 0;
    line-height: 1;
    color: var(--light-bg);
}

.pricing-card li{
    font-size: 18px;
    line-height: 1.7;
    padding: 10px 40px;
    text-transform: capitalize;
    text-align: start;
    word-spacing: 5px;
   border-bottom: 2px solid var(--peru);
}

.pricing-card li strong{
   color: var(--peru);
   font-size: 20px;
}

.order-btn{
    display: inline-block;
    /* margin-bottom: 40px; */
    margin-top: 30px;
    border: 2px solid var(--peru);
    color: var(--peru);
    padding: 18px 40px;
    border-radius: 8px;
    text-transform: uppercase;
    font-weight: 500;
    transition: .3s linear;
}

.order-btn:hover{
    background-color: var(--peru);
    color: #fff;
}


/* Product Section Main cashew-processing-machine/cashew-processing-machine.html ka css endss */

/* Product Page Css Ends */

/* product specification css starts */

.product-specification {
    background: var(--light-bg);
}

.product-specification .slide .title {
    padding: 1rem;
    font-size: 3rem;
    color: var(--white);
    background: var(--peru);
    margin-bottom: 3rem;
    text-align: center;
}

.product-specification .slide a {
    margin-top: 5rem;
    background-color: var(--peru);
    color: var(--light-bg);
    border-radius: 10px;
}

.product-specification .slide .box-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding-bottom: 4rem;
}

.product-specification .slide .box-container .box {
    flex: 1 1 41rem;
    background: var(--white);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}


.product-specification .slide .box-container .box h3 {
    font-size: 2.5rem;
    color: var(--black);
    padding-bottom: .5rem;
}

.product-specification .slide .box-container .box p {
    font-size: 1.6rem;
    color: var(--light-black);
    line-height: 2;
}

.product-specification .slide .box-container .box ul{
    font-size: 1.8rem;
    margin-left: 5rem;
    line-height: 2;
}



.product-specification .slide .box-container .box .price {
    font-size: 2.5rem;
    color: var(--peru);
}

.product-specification .slide .box-container .box:hover {
    transform: scale(.9);
    cursor: pointer;
}


/* product specification css ends */

/* Gallery Page Starts */

/* #ourplants{
    padding: 50px 0;

} */

.plant-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    grid-gap: 40px;
    margin-top: 50px;
}

.plant {
    /* border-radius: 10px; */
    overflow: hidden;
    position: relative;
}

.plant img {
    height: 100%;
    width: 100%;
    /* border-radius: 10px; */
    display: block;
    transition: transform(0.5s);
}


.layer {
    width: 100%;
    height: 0%;
    background: linear-gradient(rgb(0, 0, 0, 0.6), #128137);
    /* border-radius: 10px; */
    position: absolute;
    left: 0;
    bottom: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0 40px;
    text-align: center;
    font-size: 14px;
    transition: height 0.5s;
}

.layer h2 {
    font-size: 1.8rem;
    font-weight: bolder;
    margin-bottom: 20px;
    color: var(--white);
}

.layer p {
    font-size: 1.5rem;
    font-weight: 500;
    /* margin-bottom: 20px; */
    color: var(--light-bg);
}

.layer a {
    margin-top: 20px;
    color: #128137;
    text-decoration: none;
    font-size: 18px;
    line-height: 60px;
    background: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-align: center;
}

.plant:hover img {
    transform: scale(1.1);
}

.plant:hover .layer {
    height: 100%;
}

/* Gallery Page Ends */

/* service section css starts */

.services {
    background: var(--light-bg);
}

.services .box-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
    gap: 2rem;
}

.services .box-container .box {
    text-align: center;
    padding: 2rem;
    border-radius: .5rem;
    box-shadow: var(--box-shadow);
    border: var(--border);
    /* background: var(--peru); */
    background: linear-gradient(315deg, #222222 0%, #2e2e2e 10%);

}

.services .box-container .box:hover {
    background: #cbeaf7;
    cursor: pointer;
}

.services .box-container .box i {
    height: 6rem;
    width: 6rem;
    line-height: 6rem;
    font-size: 2.5rem;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 300% 30%;
    -webkit-background-clip: text;
    color: transparent;
    border-radius: 50%;
    margin-bottom: 1rem;
}

.services .box-container .box h3 {
    /* color: var(--white); */
    color: var(--light-white);
    font-size: 2.2rem;
}

.services .box-container .box:hover h3 {
    color: var(--light-black);
}

.services .box-container .box p {
    color: var(--light-white);
    font-size: 1.4rem;
    padding: 1rem 0;
    line-height: 1.8;
}

.services .box-container .box:hover p {
    color: var(--bg-black-50);
}

.services .box-container .box a {
    background: linear-gradient(-45deg, #2e95ba, #278fb5, #2083a7, #2280a2);
    background-size: 300% 30%;
    color: var(--black);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .3);
    border-radius: 4px;
}

.services .box-container .box:hover a {
    color: var(--white);
    background: linear-gradient(-45deg, #2e95ba, #278fb5, #2083a7, #2280a2);
    background-size: 300% 30%;
}

#services {
    margin-bottom: 0.5rem;
}

/* service section css ends */


/* Contact Page Starts */

.contactus {
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 300% 300%;
    animation: color 12s ease-in-out infinite;
    width: 100%;
    padding: 40px 40px;
}

.contactus .title {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
}

.contactus .title h2 {
    color: #fff;
    font-weight: 500;
}

.contactus .heading span {
    color: var(--white);
}

.contactus .heading h3 {
    color: var(--white);
}

.form {
    grid-area: form;
}

.info {
    grid-area: info;
}

.map {
    grid-area: map;
}

.support {
    padding: 40px;
    background: #fff;
}

.contactbox {
    position: relative;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 5fr 4fr;
    grid-template-areas: "form info" "form map";
    grid-gap: 20px;
    margin-top: 20px;
}

.support h3 {
    color: #0e3959;
    font-weight: 500;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.formBox {
    position: relative;
    width: 100%;
}

.formBox .row50 {
    display: flex;
    gap: 20px;
}

.inputBox {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
    width: 50%;
}

.formBox .row100 .inputBox {
    width: 100%;
}

.inputBox span {
    font-size: 1.5rem;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: 500;
}

.inputBox input {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
}

.inputBox textarea {
    padding: 10px;
    font-size: 1.1em;
    outline: none;
    border: 1px solid #333;
    resize: none;
    min-height: 220px;
    margin-bottom: 10px;
}

.inputBox input[type="submit"] {
    background: #ff578b;
    color: #fff;
    border: none;
    font-size: 1.5rem;
    max-width: 120px;
    font-weight: 500;
    cursor: pointer;
    padding: 14px 15px;
}

.inputBox ::placeholder {
    color: #999;
    font-size: 1.2rem;
}

/* info */
.info {
    background: var(--black);
}

.info h3 {
    color: var(--white);
}

.info .infoBox div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.info .infoBox div span {
    min-width: 40px;
    height: 40px;
    color: var(--white);
    background: var(--peru);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    border-radius: 50%;
    margin-right: 15px;
}

.info .infoBox div p {
    color: var(--white);
    font-size: 1.4em;
}

.info .infoBox div a {
    color: var(--white);
    font-size: 1.4rem;
    text-decoration: none;
    text-transform: none;
}

.sci {
    margin-top: 40px;
    display: flex;
}

.sci li {
    list-style: none;
    margin-right: 15px;
}

.sci li a {
    /* color: var(--white); */
    font-size: 3rem;
    color: #ccc;
}

.sci li a:hover {
    color: var(--peru);
}

.map {
    padding: 0;
}

.map iframe {
    width: 100%;
    height: 100%;
}

.popup-container {
    position: relative;
}


.popup {
    width: 400px;
    background: var(--black);
    border-radius: 6px;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.1);
    text-align: center;
    padding: 0 30px 30px;
    color: #333;
    visibility: hidden;
    transition: transform 0.4s, top 0.4s;
}

.open-popup {
    visibility: visible;
    top: 50%;
    transform: translate(-50%, -150%) scale(1);

}

.popup img {
    width: 100px;
    margin-top: -50px;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.popup h2 {
    font-size: 38px;
    font-weight: 500;
    margin: 30px 0 10px;
    color: var(--light-bg);
}

.popup p {
    font-size: 15px;
    font-weight: 500;
    margin: 30px 0 10px;
    color: var(--light-bg);
}

.popup button {
    width: 100%;
    margin-top: 50px;
    padding: 10px 0;
    background: #6fd649;
    color: #fff;
    border: 0;
    outline: none;
    font-size: 18px;
    border-radius: 4px;
    cursor: pointer;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
}

#toastBox {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    overflow: hidden;
    padding: 20px;
}

.toast {
    width: 400px;
    height: 80px;
    background: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    margin: 15px 0;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    position: relative;
    transform: translateX(100%);
    animation: moveleft 0.5s linear forwards;
}

@keyframes moveleft {
    100% {
        transform: translateX(0)
    }
}

.toast img {
    margin: 0 20px;
    font-size: 45px;
    width: 50px;
    color: green;
    animation: loading 4s linear infinite;
}

@keyframes loading {

    from {
        transform: rotate(-360deg);
    }

    to {
        transform: rotate(360deg);
    }

}

.toast::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 5px;
    background: green;
    animation: anim 5s linear forwards;
}

@keyframes anim {
    100% {
        width: 100%;
    }
}

/* Contact Page Ends */

/* footer css starts */
footer {
    width: 100%;
    bottom: 0;
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
    padding: 100px 0 30px;
    font-size: 13px;
    line-height: 20px;
}

.footer-row {
    width: 85%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-col {
    flex-basis: 25%;
    padding: 10px;
}

.footer-col:nth-child(2),
.footer-col:nth-child(3) {
    flex-basis: 15%;
}

.footer-logo {
    cursor: pointer;
    width: 150px;
    margin-bottom: 30px;
}

.footer-col h3 {
    width: fit-content;
    margin-bottom: 40px;
    position: relative;
}

.footer-col p a {
    display: block;
    text-decoration: none;
    color: #fff;
}

.email-id {
    width: fit-content;
    border-bottom: 1px solid #ccc;
    margin: 20px 0;
    text-decoration: none;
    color: #fff;
}

.footer-ul .footer-li {
    list-style: none;
    margin-bottom: 12px;
}

.footer-ul .footer-li a {
    color: #fff;
}

.footer-ul .footer-li a:hover {
    border-bottom: 2px solid white;
}

.footer-form {
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ccc;
    margin-bottom: 50px;
}

.footer-form .far {
    font-size: 18px;
    margin-right: 10px;
}

.footer-form input {
    width: 100%;
    background: transparent;
    color: #ccc;
    border: 0;
    outline: none;
}

.footer-form button {
    background: transparent;
    border: 0;
    outline: none;
    cursor: pointer;
}

.footer-form button .fas {
    font-size: 16px;
    color: #ccc;
}

.footer-social-links .fab {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

.footer-social-links .fa {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-size: 20px;
    color: #000;
    background: #fff;
    margin-right: 15px;
    cursor: pointer;
}

hr {
    width: 90%;
    border: 0;
    border-bottom: 1px solid #ccc;
    margin: 20px auto;
}

.footer-end {
    text-align: center;
}

.underline {
    width: 100%;
    height: 5px;
    background: #767676;
    border-radius: 3px;
    position: absolute;
    top: 25px;
    left: 0;
    overflow: hidden;
}

.underline span {
    width: 15px;
    height: 100%;
    background: #fff;
    border-radius: 3px;
    position: absolute;
    left: 10px;
    animation: footer-underline-moving 2s linear infinite;
}

@keyframes footer-underline-moving {
    0% {
        left: -20px;
    }

    100% {
        left: 100%;
    }
}

/* footer css endss */

/* Chat bot css starts  */
.chatbot-toggler {
    position: fixed;
    right: 40px;
    bottom: 35px;
    height: 50px;
    width: 50px;
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
    cursor: pointer;
    background: var(--black);
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 9999;
}

.chatbot-toggler:hover {
    background: var(--peru);
}

.show-chatbot .chatbot-toggler {
    transform: rotate(90deg);
}

.chatbot-toggler span {
    position: absolute;
}

.show-chatbot .chatbot-toggler span:first-child,
.chatbot-toggler span:last-child {
    opacity: 0;
}

.show-chatbot .chatbot-toggler span:last-child {
    opacity: 1;
}

.chatbot {
    position: fixed;
    right: 40px;
    bottom: 100px;
    width: 420px;
    transform: scale(0.5);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    background: #fff;
    border-radius: 15px;
    transform-origin: bottom right;
    box-shadow: 0 0 128px 0 rgba(0, 0, 0, 0.1), 0 32px 64px -48px rgba(0, 0, 0, 0.5);
    transition: all 0.1s ease;
    z-index: 9999;
}

.show-chatbot .chatbot {
    transform: scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chatbot header {
    background: var(--black);
    padding: 16px 0;
    text-align: center;
    position: relative;
}

.chatbot header b {
    color: #fff;
    font-size: 1.9rem;
}



.chatbot header span {
    position: absolute;
    right: 20px;
    top: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    transform: translateY(-50%);
}

.chatbot .chatbox {
    height: 400px;
    overflow-y: auto;
    padding: 30px 20px 70px;
}

.chatbox .chat {
    display: flex;
}

.chatbox .incoming span {
    height: 32px;
    width: 32px;
    color: var(--black);
    align-self: flex-end;
    text-align: center;
    line-height: 32px;
    border-radius: 4px;
    margin: 0 10px 7px 0;
}


.chatbox .outgoing {
    margin: 20px 0;
    justify-content: flex-end;
}

.chatbox .chat p {
    color: #fff;
    /* max-width: 75%; */
    white-space: pre-wrap;
    font-size: 1.4rem;
    padding: 12px 16px;
    border-radius: 10px 10px 0 10px;
    background: var(--black);
}

.chatbox .chat p.error {
    color: #721c24;
    background: #f8d7da;
}

.chatbox .incoming p {
    color: #000;
    background: #f2f2f2;
    border-radius: 10px 10px 10px 0;

}

.chatbot .chat-input {
    position: absolute;
    bottom: 0;
    width: 100%;
    display: flex;
    gap: 5px;
    background: #fff;
    padding: 5px 20px;
    border-top: 1px solid #ccc;
}

.chat-input textarea {
    height: 55px;
    width: 100%;
    border: none;
    outline: none;
    max-height: 180px;
    font: 1.5rem;
    resize: none;
    padding: 16px 15px 16px 0;
}

.chat-input span {
    align-self: flex-end;
    height: 55px;
    line-height: 55px;
    color: var(--peru);
    font-size: 1.9rem;
    cursor: pointer;
    visibility: hidden;
}

.chat-input textarea:valid~span {
    visibility: visible;
}

/* Chatbot css Ends */

/* Help CSS */

.help-section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
    background: var(--black);
}

.help-section .horizontal {
    display: flex;
    justify-content: space-between;
}

.horizontal div.col {
    display: flex;
    flex-direction: column;
}

.horizontal div.left {
    flex-basis: 35%;
    min-width: 320px;
    margin-right: 60px;
}

.horizontal div.right {
    flex-basis: 60%;
}

div.left .helpTitle h2 {
    position: relative;
    font-size: 28px;
    color: var(--light-bg);
    display: inline-block;
    margin-bottom: 25px;
}

div.left .helpTitle h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: var(--white);
    top: 120%;
    left: 0;
}

div.left .helpTitle h2::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background-color: var(--peru);
    top: calc(120% - 1px);
    left: 0;
}

div.left .helpTitle p {
    font-size: 17px;
    color: #ccc;
    letter-spacing: 1px;
    line-height: 1.2;
    margin-top: 20px;
    padding-bottom: 22px;
}

div.left .help-info {
    margin-bottom: 16px;
}

.help-info .iconGroup {
    display: flex;
    align-items: center;
    margin: 25px 0;
}

.iconGroup .iconFont {
    width: 45px;
    height: 45px;
    border: 2px solid var(--peru);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.iconGroup .iconFont i {
    font-size: 20px;
    color: #ddd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconGroup .help-detail span {
    display: block;
    color: #888;
    font-size: 18px;
    text-transform: none;
}

.iconGroup .help-detail span:nth-child(1) {
    text-transform: uppercase;
    color: #ccc;
}

div.left .social-media-links {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 22px 0px 20px;
}

.social-media-links a {
    width: 35px;
    height: 35px;
    text-decoration: none;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    background-color: var(--peru);
    transition: 0.4s;
}

.social-media-links a i {
    color: #ddd;
    font-size: 18px;
    line-height: 35px;
    border: 1px solid transparent;
    transition: 0.4s;
}

.social-media-links a:hover {
    transform: translateY(-5px);
    background-color: #2e2e2e;
    color: var(--peru);
    border: 1px solid var(--peru);
}


.horizontal div.right .messageForm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.horizontal div.right .inputGroup {
    margin: 18px 0px;
    position: relative;
}

.messageForm .halfWidth {
    flex-basis: 48%;
}

.messageForm .fullWidth {
    flex-basis: 100%;
}

.messageForm input,
.messageForm textarea {
    width: 100%;
    font-size: 18px;
    padding: 2px 0px;
    background-color: var(--black);
    color: #ddd;
    border: none;
    border-bottom: 2px solid var(--peru);
    outline: none;
}

.messageForm textarea {
    resize: none;
    height: 220px;
    display: block;
}

#phone::-webkit-outer-spin-button,
#phone::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.messageForm textarea::-webkit-scrollbar {
    width: 5px;
}

.messageForm textarea::-webkit-scrollbar-track {
    color: #1e1e1e;
    border-radius: 15px;
}

.messageForm textarea::-webkit-scrollbar-thumb {
    color: var(--peru);
    border-radius: 15px;
}

.inputGroup label {
    position: absolute;
    left: 0;
    bottom: 4px;
    color: #888;
    font-size: 18px;
    transition: 0.4s;
    pointer-events: none;
}

.inputGroup:nth-child(4) label {
    top: 2px;
}

.inputGroup input:focus~label,
/* .inputGroup textarea:focus~label, */
.inputGroup input:valid~label,
.inputGroup textarea:valid~label {
    transform: translateY(-30px);
    font-size: 16px;
}

.inputGroup textarea:focus~label {
    transform: translateY(-220px);
    font-size: 16px;
}

.inputGroup button {
    padding: 8px 16px;
    font-size: 18px;
    background: var(--peru);
    color: #ddd;
    border: 1px solid transparent;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.3);
    transition: 0.4s;
}

.inputGroup button:hover {
    background: var(--black);
    color: var(--peru);
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--peru);
}

/* Help CSS Ends */

/* FAQ-css Starts */

.FAQ-header {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(FAQ2.jpg);
    background-position: top center;
    background-repeat: no-repeat;
    background-size: contain;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10% 0;
    border-radius: 30px;
    min-height: 380px;
    color: var(--light-bg);
}

.FAQ-header .FAQ-title {
    font-size: 48px;
    letter-spacing: 1.5;
}

.FAQ-header .FAQ-description {
    margin-top: 15px;
    font-size: 20px;
    letter-spacing: 1;
    text-align: center;
}

.FAQ-header .FAQ-search {
    width: 60%;
    height: 50px;
    background-color: var(--white);
    margin-top: 5%;
    border-radius: 30px;
    display: flex;
    justify-content: space-between;
    padding: 5px;
}

.FAQ-header .FAQ-search input {
    width: 80%;
    height: 100%;
    padding: 1% 3%;
    background: transparent;
    border: none;
}

.FAQ-header .FAQ-search button {
    width: 20%;
    min-width: 100px;
    height: 100%;
    background-color: var(--black);
    color: var(--light-bg);
    border: none;
    border-radius: 30px;
    cursor: pointer;
}

.FAQ-header .FAQ-search button:hover {
    background-color: var(--peru);
}

.FAQ {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    padding: 3%;
}

.FAQ .FAQ-name {
    flex: 0.5;
    padding: 2% 2% 0 0;
}

.FAQ .FAQ-name .FAQ-accordian-header {
    padding: 5% 0 0 0;
    font-size: 40px;
    letter-spacing: 2;
}

.FAQ .FAQ-name .FAQ-img {
    width: 100%;
    max-width: 400px;
}

.FAQ .FAQ-box {
    flex: 1;
    min-width: 320px;
    padding: 2% 0 4% 4%;
    border-left: 2px solid var(--peru);
}

.FAQ .FAQ-box .FAQ-wrapper {
    width: 100%;
    padding: 1.5rem;
    border-bottom: 1px solid var(--black);
}

.FAQ .FAQ-box .FAQ-wrapper .FAQBox-title {
    display: block;
    position: relative;
    width: 100%;
    letter-spacing: 1.2;
    font-size: 24px;
    font-weight: 600;
    color: var(--peru);
    cursor: pointer;
}

.FAQ .FAQ-box .FAQ-wrapper .FAQBox-title::after {
    width: 10px;
    height: 10px;
    content: "";
    float: right;
    border-style: solid;
    border-width: 2px 2px 0 0;
    transform: rotate(135deg);
    transition: 0.4s ease-in-out;
}

.FAQ .FAQ-box .FAQ-wrapper .FAQ-detail {
    line-height: 1.5;
    letter-spacing: 1;
    max-height: 0;
    overflow: hidden;
    transition: 0.3s ease-in-out;
    font-size: 18px;
    margin-top: 15px;
}

.FAQ .FAQ-box .FAQ-wrapper .FAQ-trigger {
    display: none;
}

.FAQ .FAQ-box .FAQ-wrapper .FAQ-trigger:checked+.FAQBox-title+.FAQ-detail {
    max-height: 400px;
}

.FAQ .FAQ-box .FAQ-wrapper .FAQ-trigger:checked+.FAQ-box .FAQ-wrapper .FAQBox-title::after {
    transform: rotate(45deg);
    transition: 0.4s ease-in-out;
}

#notFoundMessage {
    display: none;
    color: var(--black);
    font-size: 48px;
}

/* FAQ-css Ends */

.work-data {
    background: var(--black);
}

.work-data div {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 300% 30%;
    -webkit-background-clip: text;
    color: transparent;
}

#typed-text {
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab);
    background-size: 300% 30%;
    -webkit-background-clip: text;
    color: transparent;
    animation: color 3s ease-in-out infinite;
}

@keyframes color {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

/* Chat bot css ends  */

/* Media Quaries */
@media (max-width:1500px) {

    .messageForm .halfWidth {
        flex-basis: 100%;
    }

    .help-section .horizontal {
        flex-wrap: wrap;
    }

    .horizontal div.left,
    .horizontal div.right {
        flex-basis: 100%;
        margin: 0px;
    }
}

@media (max-width:1200px) {

    section {
        padding: 3rem 5%;
    }

    #menu-btn {
        font-size: 40px;
    }

    .work-data .counter-container .counter-data {
        margin: 10px 45px;
    }

    .work-data .counter-container .counter-data h2 {
        line-height: 1.5;
    }

    .search-container {
        display: flex;
        align-items: center;
        /* margin-left: 7rem; */
    }

    .productsection .box-container .box img {
        height: 10rem;
        width: 15rem;
        line-height: 6rem;
        font-size: 2.5rem;
        color: var(--black);
        margin-bottom: 1rem;
        border-radius: 10px;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 400px;
        animation: slideImage .4s linear;
    }

    .header img {
        width: 200px;
        height: 80px;
    }


    .messageForm .halfWidth {
        flex-basis: 100%;
    }

    .help-section .horizontal {
        flex-wrap: wrap;
    }

    .horizontal div.left,
    .horizontal div.right {
        flex-basis: 100%;
        margin: 0px;
    }



}


@media (max-width:991px) {

    section {
        padding: 3rem 2rem;
    }

    main {
        padding: 3rem 2rem;
    }

    html {
        font-size: 55%;
    }

    .home .slide .content h3 {
        font-size: 10vw;
    }

    .header img {
        width: 160px;
        height: 80px;
    }

    .work-data .counter-container .counter-data {
        margin: 10px 40px;
    }

    .work-data .counter-container .counter-data h2 {
        line-height: 1.5;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 350px;
        animation: slideImage .4s linear;
    }

    /* .contactus {
        background: linear-gradient(to right, #00093c, #2d0b00);

    } */

    .support {
        padding: 20px;
    }

    .contactbox {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas: "map" "form" "info";

    }

    .map {
        padding: 0;
        min-height: 300px;
    }

    .formBox .row50 {
        display: flex;
        gap: 0;
        flex-direction: column;
    }

    .inputBox {
        width: 100%;
    }

    .help-section .horizontal {
        flex-wrap: wrap;
    }

    .horizontal div.left,
    .horizontal div.right {
        flex-basis: 100%;
        margin: 0px;
    }

  

}

@media (max-width:840px) {
    .header img {
        width: 110px;
        height: 55px;
    }

    .header .navbar a {
        margin-left: 15px;
    }

    .pricing-card{
        flex: 50%;
    }
}

@media (max-width:768px) {

    .swiper-button-next,
    .swiper-button-prev {
        top: initial;
        bottom: 20rem;
    }

    .fa-times {
        transform: rotate(180deg);
    }

    .header .navbar {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background-color: white;
        z-index: 1001;
    }

    .header .navbar.active {
        display: flex;
    }

    .header .navbar a {
        margin: 1rem 0;
    }

    #menu-btn {
        display: block;
    }

    #menu-btn.fa-times {
        display: block;
    }

    .work-data .counter-container .counter-data {
        margin: 10px 30px;
    }

    .work-data .counter-container .counter-data h2 {
        line-height: 1.5;
    }

    .about .image img {
        width: 100%;
        height: 300px;
        border-radius: 5px;
        margin-left: 0;
        margin-top: 40px;
        border: 2px solid black;
    }

    .thumbnail.right {
        float: none;
        margin-left: 0px;
    }

    .thumbnail.left {
        float: none;
        margin-right: 0px;
    }

    .thumbnail {
        width: 100%;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 300px;
        animation: slideImage .4s linear;
    }

    footer {
        bottom: unset;
    }

    .footer-col {
        flex-basis: 100%;
    }

    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        flex-basis: 100%;
    }

    .FAQ-header {
        background-size: cover;
    }

    .FAQ-header .FAQ-search {
        width: 90%;
    }

    .FAQ-header .FAQ-title {
        margin-top: 40px;
    }

}

@media (max-width: 490px) {
    .chatbot {
        right: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 80%;
        border-radius: 0;
    }

    .chatbot .chatbox {
        height: 90%;
    }

    .chatbot header span {
        display: block;
    }

}

@media (max-width:450px) {

    #menu-btn {
        font-size: 3rem;
    }

    .header img {
        width: 120px;
        height: 60px;
    }

    .home .slide {
        min-height: 60vh;
    }

    .home .slide .content span {
        font-size: 2.5rem;
    }

    .home .slide .content strong {
        font-size: 4rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        top: initial;
        bottom: 11rem;
    }

    html {
        font-size: 50%;
    }

    .home .slide .content {
        font-size: 7rem;
    }

    .work-data .counter-container .counter-data {
        margin: 10px 40px;
    }

    .work-data .counter-container .counter-data h2 {
        line-height: 1.5;
    }

    .search-container {
        width: auto;
    }



    #search {
        width: 100%;
        padding: 1.5rem;
        font-size: 1.6rem;
    }

    #search-button {
        padding: 1.5rem;
        font-size: 1.6rem;
    }


    .productsection .box-container {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 2rem;
    }

    .productsection .box-container .box a {
        margin: 1rem 0;
        border-radius: 10px;
        padding: 1rem 1rem;
        font-size: 1.2rem;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 210px;
        animation: slideImage .4s linear;
    }


    .toast {
        margin: 0;
    }

    .FAQ-header {
        background-size: cover;
    }

    .FAQ-header .FAQ-search {
        width: 90%;
    }

    .FAQ-header .FAQ-title {
        margin-top: 40px;
    }


    .container #prev {
        left: 0px;
        /* top: 60%; */
        font-size: 25px;
        width: 35px;
    }

    .container #next {
        right: 0px;
        /* top: 60%; */
        font-size: 25px;
        width: 35px;
    }

    .policy-container .policy ol {
        margin: 20px;
    }

}




@media (max-width:388px) {

    #menu-btn {
        font-size: 2rem;
    }

    .search-container {
        position: relative;
        margin-left: 4rem;
    }

    #search {
        width: 100%;
        padding: 8px 2px;
        font-size: 1.6rem;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 180px;
        animation: slideImage .4s linear;
    }

    .container .slide-container .slide .content .btn {
        padding: 9px 30px;
    }
}


@media (max-width:280px) {

    #menu-btn {
        font-size: 1.5rem;
    }

    .search-container {
        width: 100%;
        margin-right: 2rem;
    }

    #search {
        width: 60%;
        padding: 8px;
        font-size: 1rem;
    }

    #search-button {
        padding: 8px 12px;
        font-size: 1rem;
    }

    .container .slide-container .slide .image img {
        width: 100%;
        height: 150px;
        animation: slideImage .4s linear;
    }

}