@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Great+Vibes&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kalam:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;200;300;400;500;600;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

html, body {
  font-family: 'Roboto', sans-serif;
  color: #282828;
}

p{
  text-align: justify;
}

/*main{*/
/*    max-width:1380px;*/
/*}*/

.loader {
  width: 100%;
  height: 100%;
  position: fixed;
  background: #fcf8bb;
  left: 0;
  top: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.loader img {
  width: 150px;
}

header {
  width: 100%;
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
  opacity: 1;
}

header .container {
  width: 88%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .container .logo {
  width: 140px;
  height: 80px;
  display: block;
  padding-top: 15px;
}

header .container .logo img {
  width: 100%;
}

header .container nav {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 900px) {
  header .container nav {
    display: none;
  }
}

header .container nav ul {
  margin: 0;
  padding: 0;
}

header .container nav ul li {
  list-style: none;
  display: inline-block;
  font-weight: 400;
  padding: 8px 15px;
  font-size: 13px;
}

header .container nav ul li a {
  text-decoration: none;
  color: black;
  text-transform: uppercase;
}

header .container nav ul li .active {
  position: relative;
  font-weight: bolder;
}

header .container nav ul li .active::after {
  width: 5px;
  height: 5px;
  content: '';
  position: absolute;
  background: black;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  bottom: -6px;
  border-radius: 100px;
}

#hero {
  width: 100%;
  height: 100vh;
  background: white;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
}

.hero-image {
  width: 500px;
  position: absolute;
  right: 60px;
  top: 270px;
}

@media (max-width: 1300px) {
  .hero-image {
    display: none;
  }
}

.hero-image img {
  width: 100%;
}

.canvas {
  width: 400px;
  height: 700px;
  background: #ffea36;
  background: -webkit-gradient(linear, left top, left bottom, from(#ffea36), to(rgba(0, 212, 255, 0)));
  background: linear-gradient(180deg, #ffea36 0%, rgba(0, 212, 255, 0) 100%);
  position: absolute;
  top: 0;
  overflow: hidden;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
  margin-top: -30px;
}

@media (max-width: 768px) {
  .canvas {
    top: 80px;
  }
}

.canvas .content {
  opacity: 0;
  width: 800px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 5;
  padding: 0px 80px;
  padding-top: 85px;
}

@media (max-width: 1100px) {
  .canvas .content {
    padding-top: 240px;
  }
}

@media (max-width: 768px) {
  .canvas .content {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

@media (max-width: 425px) {
  .canvas .content {
    padding-left: 25px;
    padding-top: 220px;
  }
}

.canvas .content h3 {
  font-size: 3rem;
  line-height:1.5;
  font-weight: 500;
}

@media (max-width: 1100px) {
  .canvas .content h3 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .canvas .content h3 {
    font-size: 3rem;
    line-height: 45px;
    font-weight: 600;
  }
}

@media (max-width: 450px) {
  .canvas .content h3 {
    font-size: 2.5rem;
    line-height: 50px;
    font-weight: 600;
  }
}

@media (max-width: 350px) {
  .canvas .content h3 {
    font-size: 2rem;
    line-height: 50px;
    font-weight: 600;
  }
}

.canvas .content h3 span {
  display: block;
}

.canvas .content h3 .label {
  font-size: 18px;
  display: block;
  margin-top: 30px;
  line-height: 20px;
  font-weight: 400;
}

.canvas .content h3 button {
  outline: none;
  border: none;
  font-size: 13px;
  /*padding: 10px 15px;*/
  font-weight: 500;
  border-radius: 15px;
  background: none;
  border: 2px solid black;
}

@media (max-width: 768px) {
  .canvas .content h3 button {
    padding: 9px 11px;
  }
}

@media (max-width: 480px) {
  .canvas .content h3 button {
      margin-top:40px;
  }
}

.canvas .content h3 button:hover {
  cursor: pointer;
  background: white;
}

.canvas .content p {
  margin-top: 30px;
  line-height: 28px;
  font-weight: 400;
  font-size: 15px;
  color: #424242;
}

@media (max-width: 1100px) {
  .canvas .content p {
    display: none;
  }
}

.canvas .cover {
  width: 100%;
  position: absolute;
  left: 0;
  height: 100%;
  bottom: 0;
  display: none;
}

@media (max-width: 768px) {
  .canvas .cover {
    display: block;
  }
}

.canvas #full-pine {
  width: 100%;
  position: absolute;
  z-index: 10;
}

.canvas #pine-leaf {
  position: absolute;
  opacity: 0;
  visibility: 'hidden';
  width: 100%;
  z-index: 9;
}

.canvas #no-leaf {
  position: absolute;
  visibility: 'hidden';
  opacity: 0;
  width: 100%;
  z-index: 8;
}

.canvas .seprate {
  width: 100%;
  background: red;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  top: 19px;
  left: 16px;
  opacity: 0;
}

.canvas .seprate img {
  width: 100%;
  position: absolute;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.container {
  width: 1120px;
  margin: 0 auto;
}

#about {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  overflow: hidden;
  background: #ffeed7;
}

@media (max-width: 1100px) {
  #about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}

#about .about-img {
  width: 500px;
  height: 98.5%;
  overflow: hidden;
  margin-top: 10px;
  position: relative;
  background: none;
}

@media (max-width: 1100px) {
  #about .about-img {
    width: 100%;
    height: auto;
    margin-top: 0px;
    background: #ffea36;
    background: -webkit-gradient(linear, left top, left bottom, from(#ffea36), to(rgba(0, 212, 255, 0)));
    background: linear-gradient(180deg, #ffea36 0%, rgba(0, 212, 255, 0) 100%);
  }
}

#about .about-img .pine-holder {
  width: 100%;
  height: 98%;
  overflow: hidden;
}

#about .about-img .pine-apple {
  width: 100%;
  height: 98.5%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 1100px) {
  #about .about-img .pine-apple {
    height: auto;
  }
}

#about .about-img .glass {
  position: absolute;
  top: 0;
  width: 68%;
  top: 51%;
  left: 17%;
  -webkit-transform: scale(2);
          transform: scale(2);
  opacity: 0;
  overflow: hidden;
}

#about .about-img .glass img {
  width: 100%;
}

#about .about-img .glass-active {
  -webkit-animation: glassrot 0.5s forwards ease-in-out;
          animation: glassrot 0.5s forwards ease-in-out;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@-webkit-keyframes glassrot {
  0% {
    -webkit-transform: scale(2.5) rotate(120deg);
            transform: scale(2.5) rotate(120deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes glassrot {
  0% {
    -webkit-transform: scale(2.5) rotate(120deg);
            transform: scale(2.5) rotate(120deg);
    opacity: 0;
  }
  100% {
    -webkit-transform: scale(1) rotate(0deg);
            transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

#about .about-content {
  padding: 20px 60px;
  width: calc(100% - 500px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (max-width: 1100px) {
  #about .about-content {
    width: 100%;
    padding-bottom: 60px;
    height: auto;
  }
}

@media (max-width: 768px) {
  #about .about-content {
    padding: 20px 20px;
    margin-top: -90px;
    padding-bottom: 60px;
  }
}

#about h1 {
  font-size: 2.5rem;
  font-weight: 500;
}

#about p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
  color: #797979;
}

#about ul {
  margin: 0;
  padding: 0;
  margin-top: 30px;
}

#about ul li {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 13px 0px;
  font-size: 15px;
}
#about ul li .icon {
    width : 15px;
    height : 15px;
}
#about ul li .content {
  font-weight: 600;
  margin-left: 20px;
}

#about a {
  text-decoration: none;
  font-weight: bolder;
  color: black;
  text-decoration: underline;
  margin-top: 20px;
}

#products {
  width: 100%;
  padding: 60px 80px;
  background: #f5f5f533;
}

@media (max-width: 1100px) {
  #products {
    padding: 30px 20px;
  }
}

#products h1 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
}

#products .item {
  padding: 10px;
}

#products .item .pro-holder {
  display: block;
  text-decoration: none;
  color: black;
}

#products .item .pro-holder .thumbnail {
  overflow: hidden;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  overflow: hidden;
  background: #eee;
}

#products .item .pro-holder .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#products .item .contents {
  padding: 20px 0px;
  background: white;
  padding: 20px 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

#products .item .contents h2 {
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 600;
  margin-bottom: 30px;
  display: block;
}

#products .item .contents p {
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 10px;
  opacity: 0.9;
  height:40px;
  overflow:hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}

#products .item .contents .p-view-btn {
  text-decoration: none;
  font-weight: bolder;
  color: black;
  font-size: 13px;
  opacity: 0.5;
  text-decoration: underline;
}

#hygeine {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #359445;
  overflow: hidden;
}

@media (max-width: 1100px) {
  #hygeine {
    height: auto;
    padding: 0px;
  }
}

@media (max-width: 768px) {
  #hygeine {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#hygeine .hygeine-holder {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 50%;
  padding: 0px 80px;
  overflow: hidden;
}

@media (max-width: 1100px) {
  #hygeine .hygeine-holder {
    height: auto;
    padding: 30px;
    width: 100%;
  }
}

#hygeine .hygeine-holder h1 {
  font-weight: 500;
  font-size: 4rem;
}

@media (max-width: 768px) {
  #hygeine .hygeine-holder h1 {
    font-size: 3rem;
    margin-top: 0px;
  }
}

#hygeine .hygeine-holder h1 span {
  color: #1bbe1b;
}

#hygeine .hygeine-holder p {
  font-size: 1rem;
  line-height: 30px;
}

#hygeine .hygeine-image {
  width: 50%;
  overflow: hidden;
  background: white;
}

@media (max-width: 1100px) {
  #hygeine .hygeine-image {
    width: calc(100% - 500px);
  }
}

@media (max-width: 850px) {
  #hygeine .hygeine-image {
    width: 600px;
  }
}

@media (max-width: 768px) {
  #hygeine .hygeine-image {
    width: 100%;
  }
}

#hygeine .hygeine-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#contact {
  width: 100%;
  display: flex;
  padding: 60px 80px;
  background: linear-gradient(45deg, #359445, transparent),
              linear-gradient(135deg, #359445, #f0e68c),
              linear-gradient(-45deg, #f0e68c, #359445);
  background-blend-mode: overlay;
  background-size: 100%;
}


@media (max-width: 900px) {
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  #contact {
      padding-bottom:50px;
  }
}

#contact .contact-section {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 900px) {
  #contact .contact-section {
    width: 100%;
    margin-top: 30px;
  }
}

#contact .contact-section .head h1 {
  font-weight: 400;
  font-size: 2.6rem;
}

@media (max-width: 900px) {
  #contact .contact-section .head h1 {
    margin-bottom: 10px;
  }
}

#contact .contact-section .head p {
  font-size: 13px;
}

#contact .contact-section .options {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 30px;
}

#contact .contact-section .options .sep {
  width: 50%;
}

#contact .contact-section .options .sep h4 {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 15px;
}

#contact .contact-section .options .sep p {
      font-size: 13px;
    margin-bottom: 15px;
    font-weight: 500;
    opacity: 0.8;
    line-height: 15px;
    /*font-weight: 600;*/
}

#contact .contact-section .options .sep p a {
  text-decoration: none;
  color: #282828;
}

#contact .contact-section .options .sep ul {
  margin: 0;
  padding: 0;
}

#contact .contact-section .options .sep ul li {
  display: inline-block;
}

#contact .contact-section .options .sep ul li a {
  text-decoration: none;
  margin-right: 10px;
  font-size: 14px;
  opacity: 0.8;
  color: black;
}

#contact .contact-section .options .sep ul li a:hover {
  font-weight: bold;
}

#contact .contact-feild {
  width: 50%;
  padding: 0px 30px;
  overflow: hidden;
}

@media (max-width: 900px) {
  #contact .contact-feild {
    width: 100%;
    padding: 0px;
  }
}

#contact .contact-feild .split-holder {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 30px;
}

#contact .contact-feild .split-holder label {
  font-size: 13px;
  display: block;
  margin-bottom: 10px;
}

#contact .contact-feild .split-holder .holder {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media(max-width:480px){
    #contact .contact-feild .split-holder .holder{
        width:46%;
    }
}

#contact .contact-feild .split-holder .holder input {
  height: 30px;
  border: none;
  outline: none;
  border-bottom: 2px solid #282828;
  background: none;
}

#contact .contact-feild .split-holder textarea {
  width: 100%;
  height: 80px;
  border: none;
  outline: none;
  border-bottom: 2px solid #282828;
  background: none;
}

#contact .contact-feild button {
  border: none;
  outline: none;
  border: 2px solid black;
  background: none;
  color: black;
  padding: 10px 20px;
  font-weight: 500;
  margin-top: 30px;
  cursor: pointer;
  border-radius: 20px;
  font-size: 14px;
}

#contact .contact-feild button:hover {
  background: white;
}

#product-inner {
  width: 100%;
  height: 100vh;
}

@media (max-width: 1000px) {
  #product-inner {
    height: auto;
  }
}

#product-inner .product-wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}

@media (max-width: 1000px) {
  #product-inner .product-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#product-inner .product-wrapper .product-image {
  width: 50%;
  height: 100%;
  background: none;
}

@media (max-width: 1000px) {
  #product-inner .product-wrapper .product-image {
    width: 100%;
  }
}

#product-inner .product-wrapper .product-image .main-image {
  width: 100%;
  height: 100vh;
  padding: 60px;
}
/*@media(max-width : 1000px) {*/
/*    #product-inner .product-wrapper .product-image .main-image {*/
/*        height : auto;*/
/*    }*/
/*}*/

#product-inner .product-wrapper .product-image .main-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#product-inner .product-wrapper .product-content {
  height: 100%;
  width: 50%;
  padding: 80px 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background : #ddffdb;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
          overflow:hidden;
}
#product-inner .product-wrapper .product-content a {
    text-decoration: none;
    padding: 10px 20px;
    background: black;
    width: 162px;
    color: white;
    text-align: center;
    font-size: 13px;
    border-radius: 5px;
    margin-top: 30px;
    transition : 0.3s;
}
#product-inner .product-wrapper .product-content a:hover {
    background : #2b2b2b;
    transition : 0.3s;
}
@media (max-width: 1000px) {
  #product-inner .product-wrapper .product-content {
    width: 100%;
    padding: 80px 30px;
  }
}

#product-inner .product-wrapper .product-content h1 {
  margin: 0px;
  font-weight: 500;
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: -0.3px;
}

#product-inner .product-wrapper .product-content p {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 20px;
  opacity: 0.8;
}

#product-inner .product-wrapper .product-content ul {
  margin: 0;
  padding: 0;
  margin-top: 2 0px;
  margin-top: 30px;
}

#product-inner .product-wrapper .product-content ul li {
  list-style: none;
  margin-bottom: 20px;
  font-weight: 600;
  font-size: 16px;
}

#product-inner .product-wrapper .product-content ul li span {
  color: #1ca31c;
}

#product-inner .product-wrapper .product-content button {
  padding: 8px 10px;
  width: 150px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid black;
  margin-top: 20px;
  cursor: pointer;
  background: none;
}

#product-inner .product-wrapper .product-content button:hover {
  background: yellow;
  border: 1px solid yellow;
}

#product-page {
  width: 100%;
  margin-top: 100px;
}

#product-page .center-txt {
  font-size: 3rem;
  text-align: center;
  display: block;
  margin-bottom: 50px;
}

@media (max-width: 820px) {
  #product-page .center-txt {
    font-size: 1.8rem;
  }
}

#product-page .product-card {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 820px) {
  #product-page .product-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#product-page .product-card .image {
  width: 50%;
}

@media (max-width: 820px) {
  #product-page .product-card .image {
    width: 100%;
  }
}

#product-page .product-card .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#product-page .product-card .pro-content {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0px 100px;
  background: #f5fff6;
}

@media (max-width: 820px) {
  #product-page .product-card .pro-content {
    width: 100%;
    padding: 60px 30px;
  }
}

#product-page .product-card .pro-content h1 {
  font-weight: 500;
  font-size: 40px;
  line-height:1.5;
  margin-bottom:20px;
}
@media(max-width:480px){
    #product-page .product-card .pro-content h1{
        font-size:22px;
    }
}

#product-page .product-card .pro-content p {
  line-height: 1.7;
  font-size: 16px;
  font-weight: 400;
  opacity: 0.7;
}

#product-page .product-card .pro-content a {
  width: 140px;
  margin-top: 30px;
  border: none;
  display : block;
  text-decoration : none;
  background: none;
  text-align: left;
  font-weight: 500;
  cursor: pointer;
  font-size: 14px;
  color : #363636;
  font-weight: bolder;
}

#product-page .product-card .pro-content button:hover {
  font-weight: bold;
}

@media (max-width: 820px) {
  #product-page .product-card .flip {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

#about-page {
  width: 100%;
  padding: 80px 80px;
  /* background: #d0ffd0; */
  overflow: hidden;
}

@media (max-width: 768px) {
  #about-page {
    padding: 80px 30px;
  }
}

#about-page .about-content {
  width: 100%;
  line-height: 50px;
}

@media (max-width: 900px) {
  #about-page .about-content {
    width: 100%;
  }
}

#about-page .about-content h4 {
  margin: 0;
  font-weight: 400;
}

#about-page .about-content h1 {
  font-weight: 500;
  margin: 0;
}
@media(max-width : 768px) {
    #about-page .about-content h1 {
        font-size: 1.5rem;
        line-height: 40px;

    }
}

#how-different {
  padding: 80px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: yellow;
  margin-top: -5px;
}

@media (max-width: 1000px) {
  #how-different {
    padding: 80px 20px;
  }
}

@media (max-width: 768px) {
  #how-different {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#how-different .title {
  width: 500px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1000px) {
  #how-different .title {
    width: 300px;
  }
}

@media (max-width: 768px) {
  #how-different .title {
    width: 100%;
  }
}

#how-different .title h1 {
  font-size: 4rem;
  font-weight: 600;
  line-height: 80px;
  margin: 0px;
  color: #2b2b2b;
}

@media (max-width: 768px) {
  #how-different .title h1 {
    font-size: 3rem;
    line-height: 60px;
  }
}

#how-different .title div {
  height: 100px;
  width: 2px;
  background: #535353;
  margin-top: 30px;
}

@media (max-width: 768px) {
  #how-different .title div {
    margin-left: 20px;
    margin-bottom: 30px;
  }
}

#how-different .content {
  overflow: hidden;
  width: calc(100% - 500px);
  padding: 0px 20px;
}

@media (max-width: 1000px) {
  #how-different .content {
    width: calc(100% - 300px);
  }
}

@media (max-width: 768px) {
  #how-different .content {
    width: 100%;
  }
}

#how-different .content ul {
  margin: 0;
  padding: 0;
}

#how-different .content ul li {
  list-style: none;
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 20px;
  line-height: 36px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#how-different .content ul li span {
  margin-right: 20px;
}

#details {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}

#details .details-img {
  width: 100%;
  overflow: hidden;
}

#details .details-img img {
  width: 100%;
}

#details .details-content {
  width: 500px;
}

#points {
  width: 100%;
  padding: 80px 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow :hidden;
}

@media (max-width: 768px) {
  #points {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 80px 30px;
  }
}

#points .title {
  width: 600px;
  padding: 10px 0px;
  padding-right: 80px;
  opacity: 0.9;
}

@media (max-width: 768px) {
  #points .title {
    width: 100%;
    padding-right: 0px;
  }
}

#points .title h3 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  #points .title h3 {
    font-size: 1.8rem;
  }
}

#points .contents {
  width: calc(100% - 600px);
  padding: 0px 40px;
}

@media (max-width: 768px) {
  #points .contents {
    width: 100%;
    padding: 0px;
  }
}

#points .contents ul {
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  #points .contents ul {
    margin-top: 20px;
  }
}

#points .contents video{
    width : 100%;
    height : 100%;
    object-fit : cover;
}

#contact-banner {
  width: 100%;
  height: 60vh;
  background: #dde8ee;
  position: relative;
  padding: 0px 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 1090px) {
  #contact-banner {
    padding: 0px 30px;
  }
}

@media (max-width: 768px) {
  #contact-banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
    padding: 100px 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#contact-banner .c-banner-text {
  width: 500px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 1080px) {
  #contact-banner .c-banner-text {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-left: 60px;
  }
}

@media (max-width: 768px) {
  #contact-banner .c-banner-text {
    padding-left: 0px;
    text-align: center;
  }
}

@media (max-width: 508px) {
  #contact-banner .c-banner-text {
    width: 100%;
  }
}

#contact-banner .c-banner-text .txt {
  width: 100%;
}

#contact-banner .c-banner-text .txt p {
  font-size: 13px;
  margin-bottom: 10px;
}

#contact-banner .c-banner-text .txt h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 500;
  line-height:1.5;
}

@media (max-width: 1180px) {
  #contact-banner .c-banner-text .txt h1 {
    font-size: 2.5rem;
  }
}
@media (max-width: 375px) {
  #contact-banner .c-banner-text .txt h1 {
    font-size: 2rem;
  }
}
#contact-banner .contact-form {
  width: 380px;
  background: white;
  top: 100px;
  right: 250px;
  border-radius: 15px;
  padding: 30px;
  margin-top: 80px;
  height: 500px;
  -webkit-box-shadow: 0px 0px 10px #3636361a;
          box-shadow: 0px 0px 10px #3636361a;
}

@media (max-width: 1090px) {
  #contact-banner .contact-form {
    padding: 30px 30px;
  }
}

@media (max-width: 508px) {
  #contact-banner .contact-form {
    width: 100%;
  }
}

#contact-banner .contact-form h3 {
  font-weight: 500;
  font-size: 18px;
}

#contact-banner .contact-form .form-feild {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 30px;
}

#contact-banner .contact-form .form-feild label {
  font-size: 12px;
  margin-bottom: 10px;
  font-weight: bold;
  opacity: 0.5;
}

#contact-banner .contact-form .form-feild input {
  border: none;
  height: 35px;
  outline: none;
  font-weight: bold;
  border-bottom: 1px solid black;
}

#contact-banner .contact-form .form-feild textarea {
  width: 100%;
  height: 50px;
  border: none;
  border-bottom: 1px solid black;
  outline: none;
  resize:none;
}

#contact-banner .contact-form button {
  margin-top: 30px;
  background: #ffb92e;
  outline: none;
  border: none;
  font-size: 14px;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  outline:none;
  font-weight: 500;
  width:120px;
}

#contact-address {
  width: 100%;
  height: 40vh;
  padding: 0px 180px;
}

@media (max-width: 1090px) {
  #contact-address {
    padding: 0px 30px;
    padding-left: 60px;
  }
}

@media (max-width: 508px) {
  #contact-address {
    padding: 0px 30px;
  }
}

#contact-address .address-holder {
  width: 300px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 768px) {
  #contact-address .address-holder {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-left: 40px;
  }
}

@media (max-width: 508px) {
  #contact-address .address-holder {
    padding: 0px;
  }
}

#contact-address .address-holder p {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#contact-address .address-holder p a {
  text-decoration: none;
  color: #282828;
}

#contact-address .address-holder p i {
  color: #fc9d0f;
}

#contact-address .address-holder p span:nth-child(1) {
  margin-right: 20px;
}





.sidemenu {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  z-index: 110;
  background: white;
  left : -100%;
}

.sidemenu .sidemenuHead {
  width: 100%;
  float: left;
  height: 180px;
  background: #ffff3d;
  padding: 0px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0 0 40px rgba(180, 179, 179, 0.774);
          box-shadow: 0 0 40px rgba(180, 179, 179, 0.774);
}

.sidemenu .sidemenuHead .sidemenuLogo {
  height: 60px;
  float: left;
}

.sidemenu .sidemenuHead .sidemenuLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidemenu .sidemenuHead .sidemenuClose {
  float: right;
  height: 25px;
  width: 25px;
  position: absolute;
  top: 20px;
  right: 20px;
  border-radius: 50px;
  background: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: flex;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.sidemenu .sidemenuHead .sidemenuClose img {
  width: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}

.sidemenu .sidemenuBody {
  width: 100%;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
}

.sidemenu .sidemenuBody ul {
  margin-top: 20px;
}

.sidemenu .sidemenuBody ul li {
  list-style: none;
}

.sidemenu .sidemenuBody ul li a {
  text-decoration: none;
  float: left;
  padding: 15px 20px;
  margin-top: 15px;
  font-size: 18px;
  font-weight: 400;
  width: 100%;
  color: black;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 5px;
}

.sidemenu .sidemenuBody ul li a i {
  color: #b8b7b7;
  font-size: 14px;
}

.sidemenu .sidemenuBody ul li .sidemenuLinkActive {
  color: #00001b;
  font-weight: 500;
  background: #f5fdfd;
}





header .navbar {
  float: right;
  height: 60px;
  display: none;
}

@media (max-width: 900px) {
  header .navbar {
    display: block;
    padding-right: 15px;
    position: relative;
  }
}

header .navbar .navBarBox {
  width: 35px;
  height: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: rgb(238 238 238);
  border-radius: 50px;
  pad: 10px;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  top: 50%;
}

header .navbar .navBarBox span {
  width: 60%;
  height: 2px;
  border-radius: 5px;
  display: block;
  float: left;
  margin-top: 3px;
  background: black;
}

header .navbar .navBarBox span:nth-child(1) {
  margin-top: 0;
}




footer {
  width: 100%;
  padding: 50px 80px 30px 80px;
  background: #ffea36;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  footer {
    padding: 50px 20px 30px 20px;
  }
}

footer .footermain {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer .footermain .footerLogo {
  width: 150px;
}

@media (max-width: 480px) {
  footer .footermain .footerLogo {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

footer .footermain .footerLogo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 480px) {
  footer .footermain .footerLogo img {
    width: 50%;
  }
}

footer .footermain .footerSocial {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (max-width: 480px) {
  footer .footermain .footerSocial {
    width: 100%;
    margin-top: 30px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

footer .footermain .footerSocial p {
  font-size: 16px;
  font-weight: 500;
  color: black;
}

footer .footermain .footerSocial .footerSocialIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

footer .footermain .footerSocial .footerSocialIcon a {
  text-decoration: none;
  margin-left: 30px;
  color: black;
}

footer .footermain .footerSocial .footerSocialIcon a:nth-child(1) {
  margin-left: 0;
}

footer .footerStip {
  width: 100%;
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .footerStip p {
  font-size: 12px;
  color: #919090;
  margin-bottom: 0;
  text-align: center;
}

footer .footerStip p i {
  margin: 0px 5px;
  color: red;
  -webkit-animation: bounce 0.5s;
  animation: bounce 0.5s;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

@-webkit-keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

@keyframes bounce {
  from {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

footer .footerStip p a {
  text-decoration: none;
  font-size: 12px;
  color: black;
  letter-spacing: 1px;
}

@media (max-width: 480px) {
  footer .footerStip p a {
    width: 100%;
    margin-top: 10px;
    float: left;
    text-align: center;
  }
}

/*# sourceMappingURL=main.css.map */


.health-benefits {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(135deg, #56ab2f, #a8e063);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.health-benefits li {
  padding: 20px;
  font-size: 18px;
  color: white;
  position: relative;
  border-bottom: 2px solid white; /* White line divider */
}

.health-benefits li:last-child {
  border-bottom: none; /* No border for the last item */
}

.health-benefits li:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: inherit;
  z-index: -1;
  transform-origin: right bottom;
  transform: scaleX(0);
  transition: transform 0.5s ease;
}

.health-benefits li:hover:before {
  transform: scaleX(1);
}

/* Animation */
@keyframes fadeSlide {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.health-benefits li {
  animation: fadeSlide 0.5s ease forwards;
}

/* Stagger the animation */
.health-benefits li:nth-child(1) { animation-delay: 0.1s; }
.health-benefits li:nth-child(2) { animation-delay: 0.2s; }
.health-benefits li:nth-child(3) { animation-delay: 0.3s; }
.health-benefits li:nth-child(4) { animation-delay: 0.4s; }
.health-benefits li:nth-child(5) { animation-delay: 0.5s; }

.client-section {
  text-align: center; /* Center the heading text */
  padding: 20px;
  background-color: #f8f8f8;
}

.client-section h2 {
  margin-bottom: 20px; /* Add some space below the heading */
  font-family: 'Roboto', sans-serif;
  color: #333;
}

.client-logos {
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.client-logos img {
  max-width: 100px; /* Or any size you prefer */
  max-height: 100px; /* Or any size you prefer */
  object-fit: contain;
}
.usage-section {
  padding: 20px;
  font-family: 'Roboto', sans-serif;
  color: #333;
  text-align: center;
}

.usage-section h2 {
  margin-bottom: 20px;
}

.usage-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.usage-list li {
  background-color: #fff;
  border: 1px solid #ddd;
  margin-bottom: 10px;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.usage-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.gallery-section {
  padding: 20px;
  background-color: #f8f8f8;
  text-align: center;
}

.gallery-section h2 {
  margin-bottom: 20px;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.gallery img {
  flex: 1 0 30%; /* This will create a 3-image grid */
  max-width: 25%; 
  margin: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05); /* Scales the image on hover */
}

body
{
  /*background-color:#f2f2f2;*/
  font-family: 'RobotoDraft', 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
}

*
{
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

h5
{
  margin:0px;
  font-size:1.4em;
  font-weight:700;
}

p
{
  font-size:16px;
}

.center
{
  height:60vh;
  width:100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* End Non-Essential  */

.property-card
{
  height:18em;
  width:14em;
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
  -webkit-box-orient:vertical;
  -webkit-box-direction:normal;
  -ms-flex-direction:column;
  flex-direction:column;
  position:relative;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  border-radius:16px;
  overflow:hidden;
  -webkit-box-shadow:  15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
  box-shadow:  15px 15px 27px #e1e1e3, -15px -15px 27px #ffffff;
}
/* ^-- The margin bottom is necessary for the drop shadow otherwise it gets clipped in certain cases. */

/* Top Half of card, image. */

.property-image1
{
  height:6em;
  width:14em;
  padding:1em 2em;
  position:Absolute;
  top:0px;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-image:url('https://media.istockphoto.com/id/1130588880/vector/black-phone-icon-on-white-background-vector-illustration.jpg?s=612x612&w=0&k=20&c=DHVs1gkVRUhXwD9NjDn4uBXb8jt8gCRFagjkJSimmSg=');

   background-position: center;  /* This will center the background image */
    background-size: contain;
    background-repeat: no-repeat;
}

.property-image2 {
  height:6em;
  width:14em;
  padding:1em 2em;
  position:Absolute;
  top:0px;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-image:url('https://media.istockphoto.com/id/1266085233/vector/white-envelope-icon-isolated-with-long-shadow-email-message-letter-symbol-red-circle-button.jpg?s=612x612&w=0&k=20&c=RKY4PTTATCrbvKAnk2dGHDV_nNxySxJxYwFR5dSplnw=');


    background-size: contain;
    background-repeat: no-repeat;

    /* For centering the content inside the element */
    display: flex;
    justify-content: center;
 background-position: center;  /* This will center the background image */
    background-size: contain;
    background-repeat: no-repeat;
}


.property-image3
{
  height:6em;
  width:14em;
  padding:1em 2em;
  position:Absolute;
  top:0px;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-image:url('https://media.istockphoto.com/id/1017015696/vector/speech-bubbles-icon-vector-flat-design-illustration-isolated-on-white.jpg?s=612x612&w=0&k=20&c=zTYPtOigVyJofUAA8fJau5hqgHAG7M6QDmMoSv1bww4=');


    background-size: contain;
    background-repeat: no-repeat;

    /* For centering the content inside the element */
    display: flex;
    justify-content: center;
 background-position: center;  /* This will center the background image */
    background-size: contain;
    background-repeat: no-repeat;
}

.property-image4
{
  height:6em;
  width:14em;
  padding:1em 2em;
  position:Absolute;
  top:0px;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  background-image:url('../../../Pineco/assets/images/products/alarm-clock.jpg');

   background-position: center;  /* This will center the background image */
    background-size: contain;
    background-repeat: no-repeat;
}

/* Bottom Card Section */

.property-description
{
  /*background-color: #FAFAFC;*/
  height:12em;
  width:14em;
  position:absolute;
  bottom:0em;
  -webkit-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  -o-transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 0.5em 1em;
  text-align:center;
}



/* Property Cards Hover States */

/*.property-card:hover .property-description*/
/*{*/
/*  height:0em;*/
/*  padding:0px 1em;*/
/*}*/
/*.property-card:hover .property-image1*/
/*{*/
/*  height:18em;*/
/*}*/

/*.property-card:hover .property-image2*/
/*{*/
/*  height:18em;*/
/*}*/
/*.property-card:hover .property-image3*/
/*{*/
/*  height:18em;*/
/*}*/
/*.property-card:hover .property-social-icons*/
/*{*/
/*  background-color:white;*/
/*}*/

/*.property-card:hover .property-social-icons:hover*/
/*{*/
/*  background-color:blue;*/
/*  cursor:pointer;*/
/*}*/


/* Optional

.property-image-title
{
text-align:center;
position:Relative;
top:30%;
opacity:0;
transition:all 0.4s cubic-bezier(0.645, 0.045, 0.355, 1) 0.2s;
color:black;
font-size:1.2em;
}

.property-card:hover .property-image-title
{
opacity:1;
}

*/

/* Card Container Styling */
.card-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap; /* This ensures the cards remain side by side */
}

/* Card Styling */
.card {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    background-color: #ffffff;
    transition: box-shadow 0.3s ease;
    flex: 1;           /* This allows cards to shrink and grow as necessary */
     /* Add some space between cards 

    /* Centering the content */
    display: flex;
    align-items: center; 
    justify-content: center;
}

.card:hover {
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

/* Ensure the first and last cards do not have margin on the edges */
.card:first-child {
    margin-left: 0;
}

.card:last-child {
    margin-right: 0;
}

/* Icon Styling */
.fas {
    font-size: 24px;  /* Increase or adjust this value for desired icon size */
    margin-right: 10px; /* Add some space between the icon and text */
}


