*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.navbar{
    font-family: 'Playfair Display', serif;
    color:black;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 5;
    background-color: white;
    padding: 0 40px;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-navbar{
    display: none;
    font-family: 'Playfair Display', serif;
    color: rgb(0, 0, 0);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 6;
    border-bottom: solid 2px white;
    background-color: white;
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.16);
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}
.hamburger-icon{
    display: inline-block;
}
.hamburger-icon svg path{
    stroke: rgb(0, 0, 0);
    fill: rgb(0, 0, 0);
}
.navbar-home{
    white-space: nowrap;
}
.mobile-navbar .navbar-home{
    display: flex;
    justify-content: center;
    align-self: center;
    text-transform: capitalize;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    width: fit-content;
}
.sidebar{
    margin: 0;
    top:0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    background-color: #457A00;
    z-index: 6;
    color: white;
    padding-left: 20px;
    right: -100vw;
}
.sidebar svg{
    fill: white;
    color: white;
    position: absolute;
    top: 20px;
    right: 20px;
}
.sidebar-heading{
    font-size: 20px;
}
.sidebar-contact{
    font-size: 22px;
}
.sidebar-contact p {
    margin: 20px 0;
}
.sidebar-navs{
    display: block;
    text-decoration: none;
    color: white;
    width: 100%;
    font-size: 40px;
}
.sidebar-contact .social-media{
    justify-content: space-between;
}
.navbar .navbar-home{
    display: flex;
    justify-content: center;
    align-self: center;
    text-transform: capitalize;
    font-family: 'Playfair Display', serif;
    font-size: 22px;
}
.navbar-navs{
    display: inline-block;
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 500;
    margin: 20px;
    font-family: 'Work Sans', sans-serif;
    text-decoration: none;
    color: rgb(0, 0, 0);
}
.navbar-logo{
    height: 30px;
    margin-right: 8px;
}

.active{
    border-bottom: solid 2px black;
    margin-bottom: -2px;
    padding-bottom: 5px;
}
.our-products{
    margin-top: 100px;
    text-align: center;
    padding: 50px;
}
.title-grid{
    display: flex;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.product-heading{
    width: 50%;
    padding:40px 0;
    text-align: center;
}
.product-heading h1{
    margin: auto;
}
.product-content{
    width: 50%;
    color: #0B4737;
    padding:40px;
    font-family: 'Open Sans', sans-serif;
    border-left: 2px solid #0B4737;
    font-size: 18px;
    font-weight: bolder;
    text-align: justify;
}
.product-content p{
    display: block;
    margin: auto;
}

.our-products h1{
    color: #457A00;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
    font-weight: 300;
    margin: 30px auto;
}
.products-grid{
    margin: 60px auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    justify-content: center;
    grid-gap: 30px 120px;
    padding: 0 60px;
}
.product{
    text-align: center;
    z-index: 1;
}
.product-image {
    margin: auto;
    position: relative;
    height: 400px;
    width: 80%;
}
.product-image img{
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.product h1{
    font-family: 'Playfair Display', serif;
    color: #0B4737;
    text-transform: capitalize;
    font-size: 25px;
    width: 75%;
    margin-top: 0px;
}
.product-description{
    width: 75%;
    margin:-20px auto 10px auto;
    color: #0B4737;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    line-height: 27px;
}
.product-button{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background-color: transparent;
    z-index: 2;
}
.buy-button{
    display: block;
    margin: 20px auto;
    color: #0B4737;
    border: 2px solid #0B4737;
    padding: 10px 20px;
    width: fit-content;
    text-transform: uppercase;
    font-family: 'Work Sans', sans-serif;
    -webkit-transition: all .25s;
    transition: all .25s;
    text-decoration: none;
    cursor: pointer;
}
.buy-button:hover{
    color: white;
    background-color: #0B4737;
}
#buy-1,#buy-2,#buy-3,#buy-4,#buy-5,#buy-6,#buy-7,#buy-8,#buy-9,#buy-10,#buy-11{
    opacity: 0;
}
#product-1:hover #buy-1{
    opacity: 1;
}
#product-2:hover #buy-2{
    opacity: 1;
}
#product-3:hover #buy-3{
    opacity: 1;
}
#product-4:hover #buy-4{
    opacity: 1;
}
#product-5:hover #buy-5{
    opacity: 1;
}
#product-6:hover #buy-6{
    opacity: 1;
}
#product-7:hover #buy-7{
    opacity: 1;
}
#product-8:hover #buy-8{
    opacity: 1;
}
#product-9:hover #buy-9{
    opacity: 1;
}
#product-10:hover #buy-10{
    opacity: 1;
}
#product-11:hover #buy-11{
    opacity: 1;
}
.faq{
    background-color: #F8F8F7;
    padding: 70px 0;
}
.faq-grid{
    display: flex;
}
.faq-heading{
    margin: 10px auto;
    text-align: center;
    color: #0B4737;
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    width: 50%;
}
.faq-questions{
    width: 50%;
}
.faq-question{
    width: 80%;
    padding: 25px 20px 25px 0;
    border-bottom: 1px solid #0B4737;
    color: #0B4737;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    cursor: pointer;
}
.faq-answer{
    display: none;
    width: inherit;
    padding: 25px 20px 0px 25px;
    font-size: 18px;
    color: #19B38A;
    font-family: 'Open Sans', sans-serif;
}
.faq-plus{
    float: right;
    font-size: 24px;
}
.more-faq{
    color: #19B38A;
    font-weight: bolder;
    font-family: 'Open Sans', sans-serif;
    font-size: 18px;
    margin: 20px 0;
    display: block;
    text-decoration: none;
}
.footer-grid{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-family: 'Playfair Display', serif;
    grid-gap: 30px;
    padding: 70px;
    font-size: 22px;
    line-height: 35px;
    text-align: center;
    margin: 50px 0;
}
.footer-contact{
    margin: auto 0;
    text-align: center;
} 
.footer-contact p {
    margin: auto 0;
}
.footer-logo{
    text-align: center;
    color: #19B38A;
    font-size: 18px;
    font-family: 'Open Sans', sans-serif;
    line-height: 25px;
    margin: 0 auto;
}
.footer-logo img{
    display: block;
    margin: auto;
}
.logo{
    width: 200px;
}
.social-media{
    margin: 50px 0 30px 0;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}
.social-media img{
    width: 30px;
}
.footer-address{
    margin: auto 0;
}
.footer-address p{
    margin: auto 0;
}
.policy-and-terms{
    font-size: 15px;
}
.map{
    display: block;
    height:500px;
    width:100%;
    background:url('../assets/map.png');
    background-position: center;
}

.swiper-container {
    width: 100%;
    height: 100%;
  }

.swiper-slide {
    padding-bottom: 40px;
}
.product-image  .swiper-pagination-bullet {
    opacity: 1;
    background: #02382a59;
  }
 .product-image  .swiper-pagination-bullet-active{
      background: #0B4737;
  }

  @media only screen and (max-width: 1200px) {
    .products-grid{
        grid-gap: 30px 70px;
        padding: 0 30px;
    }
  }
  @media only screen and (max-width: 1000px) {
    .navbar{
        padding: 0 30px;
    }
    .navbar-navs{
        margin: 17px;
        font-size: 15px;
    }
    .navbar .navbar-home{
        font-size: 20px;
    }
    .navbar-logo{
        height: 25px;
    }
    .our-products h1, .product-heading h1{
        font-size: 30px;
    }
    .product-content{
        padding:30px;
        font-size: 16px;
    }
    .products-grid{
        grid-gap: 30px 40px;
        padding: 0 20px;
    }
    .product-image {
        height: 300px;
    }
    .product h1{
        font-size: 22px;
        width: 75%;
    }
    .footer-grid{
        font-size: 20px;
        padding: 40px;
        line-height: 28px;
    }
    .logo{
        width: 180px;
    }
    .social-media{
        margin: 40px 0 25px 0;
    }
    .social-media img{
        width: 28px;
    }
    .policy-and-terms{
        font-size: 14px;
    }
  }
  @media only screen and (max-width: 900px) {
    .navbar{
        padding: 0 20px;
    }
    .navbar-navs{
        margin: 16px;
        font-size: 14px;
    }
    .navbar .navbar-home{
        font-size: 18px;
    }
    .navbar-logo{
        height: 22px;
    }
    .our-products h1, .product-heading h1{
        font-size: 25px;
    }
    .product-content{
        padding:20px;
        font-size: 14px;
    }
    .products-grid{
        grid-gap: 30px 40px;
        padding: 0 20px;
    }
    .product-image {
        height: 300px;
    }
    .product h1{
        font-size: 22px;
        width: 75%;
    }
    .product-description{
        font-size: 16px;
        line-height: 24px;
    }
    .faq-heading{
        font-size: 18px;
        width: 50%;
    }
    .faq-questions{
        width: 50%;
    }
    .faq-question{
        padding: 20px 15px 20px 0;
        font-size: 16px;
    }
    .faq-answer{
        padding: 20px 15px 0px 20px;
        font-size: 16px;
    }
    .more-faq{
        font-size: 16px;
    }
    .footer-grid{
        font-size: 18px;
        padding: 30px;
        line-height: 25px;
    }
    .logo{
        width: 170px;
    }
    .social-media{
        margin: 35px 0 20px 0;
    }
    .social-media img{
        width: 26px;
    }
    .policy-and-terms{
        font-size: 14px;
    }
  }
  @media only screen and (max-width: 800px) {
    .navbar{
        padding: 0 20px;
    }
    .navbar-navs{
        margin: 13px;
        font-size: 12px;
    }
    .navbar .navbar-home{
        font-size: 16px;
    }
    .navbar-logo{
        height: 20px;
    }
    .products-grid{
        grid-gap: 30px 20px;
        padding: 0 0px;
    }
    .product-image {
        height: 250px;
    }
    .product h1{
        font-size: 20px;
        width: 75%;
    }
    .product-description{
        font-size: 16px;
        line-height: 24px;
    }
    .buy-button{
        padding: 10px 15px;
        font-size: 14px;
    }
    .faq-heading{
        font-size: 14px;
        width: 50%;
    }
    .faq-questions{
        width: 50%;
    }
    .faq-question{
        width: 100%;
        padding: 20px 12px 17px 0;
        font-size: 14px;
    }
    .faq-answer{
        padding: 20px 12px 0px 17px;
        font-size: 14px;
    }
    .more-faq{
        font-size: 14px;
    }
    .footer-grid{
        font-size: 16px;
        padding: 20px;
        line-height: 20px;
    }
    .logo{
        width: 165px;
    }
    .social-media{
        margin: 35px 0 20px 0;
    }
    .social-media img{
        width: 25px;
    }
    .policy-and-terms{
        font-size: 12px;
    }
  }
  @media only screen and (max-width: 700px) {
    .navbar{
        padding: 0 10px;
    }
    .navbar-navs{
        margin: 10px;
        font-size: 10px;
    }
    .navbar .navbar-home{
        font-size: 13px;
    }
    .navbar-logo{
        height: 18px;
    }
    .our-products h1, .product-heading h1{
        font-size: 22px;
    }
    .product-content{
        padding:10px;
        font-size: 12px;
    }
    .products-grid{
        grid-gap: 30px 20px;
        padding: 0 0px;
    }
    .product-image {
        height: 220px;
    }
    .product h1{
        font-size: 18px;
        margin: 10px auto;
    }
    .product-description{
        font-size: 16px;
        line-height: 24px;
        margin-top: 10px;
    }
    .buy-button{
        padding: 7px 10px;
        font-size: 12px;
    }
    .faq-heading{
        font-size: 12px;
        width: 35%;
    }
    .faq-questions{
        width: 65%;
    }
    .footer-grid{
        font-size: 14px;
        padding: 20px;
    }
    .logo{
        width: 160px;
    }
    .social-media{
        margin: 35px 0 20px 0;
    }
    .social-media img{
        width: 24px;
    }
    .policy-and-terms{
        font-size: 10px;
    }
  }
  @media only screen and (max-width: 560px) {
    .header-button{
        padding: 12px 22px;
        font-size: 14px;
    }
    .navbar{
        padding: 0 0px;
    }
    .navbar-navs{
        margin: 8px;
        font-size: 9px;
    }
    .navbar .navbar-home{
        font-size: 10px;
    }
    .navbar-logo{
        height: 14px;
    }
    .products-grid{
        grid-gap: 20px 15px;
        padding: 0 0px;
    }
    .product-image {
        height: 250px;
    }
    .product h1{
        font-size: 17px;
        width: 75%;
    }
    .product-description{
        font-size: 15px;
        line-height: 20px;
    }
    .buy-button{
        padding: 7px 5px;
        font-size: 10px;
    }
    .footer-grid{
        font-size: 12px;
        padding: 10px;
    }
  }
  @media only screen and (max-width: 550px) {

    .our-products{
        padding: 10px;
    }
    .our-products h1{
        font-size: 20px;
    }
    .product-heading{
        width: 50%;
        font-size: 10px;
    }
    .product-heading h1{
        margin: auto;
    }
    .product-content{
        padding:10px;
        margin: auto;
        font-size: 12px;
        line-height: 20px;
    }
    
    .mobile-navbar {
      display: flex;
    }
    .navbar{
        display: none;
    }
    .navbar-logo{
        height: 22px;
    }
    .navbar-navs{
        margin: 3px;
    }

    .products-grid{
        margin: 30px auto;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-gap: 20px 0px;
        padding: 0 0px;
    }
    .product h1{
        font-size: 20px;
    }
    .buy-button{
        font-size: 11px;
    }
    .product-description{
        font-size: 12px;
        line-height: 20px;
    }
    #buy-1,#buy-2,#buy-3,#buy-4,#buy-5,#buy-6,#buy-7,#buy-8,#buy-9,#buy-10,#buy-11{
        opacity: 1;
    }
    .faq-heading{
        width: 100vw;
    }
    .faq-questions{
        width: 100vw;
        padding:0 20px;
    }
    .faq-question{
        width: 100%;
    }
    .faq-grid{
       flex-direction: column;
    }
    .footer-grid{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        font-size: 14px;
    }
  }