@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600&display=swap');


* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  transition: 3s;
}

:root {
  --colors-primary: #405E26;
  --colors-primary-tone: #000000;
  --colors-primary-5: #4c702d;
  --colors-primary-10: #598235;
  --colors-primary-20: #71a743;
  --colors-primary-contrast: #ffffff;
  --colors-primary-contrast-10: #e6e6e6;
  --colors-primary-contrast-15: #d9d9d9;
  --colors-primary-contrast-20: #ccc;
  --colors-primary-contrast-50: #808080;

  --colors-secondary: #6E924F;
  --colors-secondary-tone: #000000;
  --colors-secondary-10: #87ad67;
  --colors-secondary-20: #a1bf88;
  --colors-secondary-contrast: #ffffff;
  --colors-secondary-contrast-10: #e6e6e6;
  --colors-secondary-contrast-15: #d9d9d9;
  --colors-secondary-contrast-20: #ccc;

  --colors-tertiary: #ffffff;
  --colors-tertiary-tone: #ffffff;
  --colors-tertiary-tone-25: #bfbfbf;
  --colors-tertiary-5: #f2f2f2;
  --colors-tertiary-10: #e6e6e6;
  --colors-tertiary-15: #d9d9d9;
  --colors-tertiary-20: #ccc;
  --colors-tertiary-30: #b3b3b3;
  --colors-tertiary-40: #999;
  --colors-tertiary-contrast: #000000;
  --colors-tertiary-contrast-10: #1a1a1a;
  --colors-tertiary-contrast-15: #262626;
  --colors-tertiary-contrast-20: #333;
  --colors-tertiary-contrast-80: #ccc;
  --colors-tertiary-contrast-90: #e6e6e6;
  --colors-tertiary-shadow: rgba(0, 0, 0, 0.2);

  --typography-regular-font: "Open Sans", sans-serif;
  --fm-capitalHeight: 0.71;
  --fm-xHeight: 0.54;
  --fm-descender: 0.29;
  --fm-ascender: 1.07;
  --fm-linegap: 0;
  --hero-image-overlay: 0.5;
  --address-line-font-size: 14px;

  --typography-heading-font: "Playfair Display", sans-serif;
  --fm-heading-capitalHeight: 0.71;
  --fm-heading-xHeight: 0.51;
  --fm-heading-descender: 0.25;
  --fm-heading-ascender: 1.16;
  --fm-heading-linegap: 0;

}

body {
  font-family: var(--typography-regular-font);
}

nav {
  background-color: var(--colors-primary);
  height: 70px;
  z-index: 2;
  font-family: var(--typography-regular-font);
}

.logo {
  display: flex;

}

.sidebar {
  height: 100vh;
  font-family: var(--typography-regular-font);
  background-color: var(--colors-primary-5);
  width: 40%;
  position: fixed;
  top: 0;
  right: 0;
  padding: 30px 10px;
  display: flex;
  flex-direction: column;
  transition: .3s ease;
  z-index: 3;
}

.show {
  transform: translate(100%);
}

@media only screen and (max-width: 600px) {
  .sidebar {
    min-width: 100%;
    text-align: center;
  }
}

.nav-items {
  font-size: var(--typography-regular-font);
  display: flex;
  flex-direction: column;
}

.nav-items>a {
  margin-bottom: .7rem;
  text-decoration: none;
  color: var(--colors-primary-contrast);
  font-weight: normal;
}

.nav-lg {
  display: none;
}


.logo-con {
  display: flex;
  flex-grow: 1;
  justify-content: center;
}

@media screen and (min-width: 1000px) {
  .nav-lg {
    display: flex;
    flex-grow: 1;
    width: 50%;
  }

  .toggle {
    display: none;
  }

  .nav-items,
  .nav-items>a {
    margin-left: 2.5rem;
    flex-direction: row;
    justify-content: space-around;
  }


  .logo-con {
    justify-content: space-around;
  }
}

/* index */
.carousel,
.carousel-item>img {
  width: 100%;
  height: 450px;
  object-position: center;
  object-fit: cover;
  filter: blur(50%);
  position: relative;
  background-image: linear-gradients(-180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, var(--hero-image-overlay)));

}

.overlay {
  position: absolute;
  width: 100%;
  height: 450px;
  top: 0;
  left: 0;
  background-color: #000000;
  opacity: .4;
}

@media screen and (max-width: 900px) {

  .carousel,
  .carousel-item>img {
    height: 350px;
  }

  .overlay {
    height: 350px;
  }
}

.caption {
  font-family: var(--typography-heading-font);
  text-align: center;
  z-index: 1;
  color: #ffffff;
  position: absolute;
  width: 80%;
  top: 50%;
  left: 50%;
  text-transform: capitalize;
  transform: translate(-50%, -50%);
  padding: 2.5em 1em;

}

.link-add {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 0.65em 1em;
  border-radius: 1.5em;
  margin: 0 0 0 0.5em;
  text-align: left;
  transition: background-color 200ms ease-out, color 200ms ease-out;
  font-size: 0.9rem;
  cursor: pointer;
}

@media screen and (min-width:900px) {
  .link-add {
    width: 70%;
    margin: 0 auto;
  }
}

.link-add>a {
  display: flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}


.box-card>h2 {
  font-size: 1.4rem;
  font-weight: bold;
  color: #000000;
  margin-top: 30px;
}

.box-card {
  margin-top: 10px;
  text-align: center;
  padding-bottom: 2em;
}

.box-card>img {
  height: 288px;
  width: 288px;
  border-radius: 50%;
  margin: 0 auto;
  transition: opacity 1.5s ease 0s;
  transform: translateZ(0px);
  opacity: 1;
}

.large-para {
  text-align: justify;
  margin-top: 15px;
  font-size: 1rem;
  padding: 20px;
  word-break: break-word;
  color: #000000;
  display: none;
  cursor: pointer;
}

.showlm {
  color: #6E924F;
  cursor: pointer;

}

.border-radius {
  width: 48px;
  height: 48px;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 15px auto;
  border: 2px solid var(--colors-primary-5);
}

.border-radius>i {
  font-size: 1.125em;
  color: var(--colors-primary-5);
}

.contact {
  padding: 20px 40px;
  background-color: #e6e6e6;
}

.con {
  width: 38px;
  height: 38px;
  padding: 0.5rem;
  border-radius: 50%;
  line-height: 1rem;
  background-color: var(--colors-primary-5);
}

.con>i {
  color: var(--colors-primary-contrast);
  font-size: 1.42rem;
}

footer {
  padding: 2rem 4rem;
  background-color: #405e26;
}

/* marchant */
.merchant {
  width: 50%;
  margin: 0 auto;
  height: 100vh;
}

.mer {
  display: flex;
  justify-content: space-between;
}

.mer>h6 {
  font-weight: 500;
}

@media screen and (max-width:900px) {
  .merchant {
    min-width: 80%;
  }

  .mer {
    flex-direction: column;
  }
}

.terms a {
  font-size: 14px;
  padding: 1rem;
  text-decoration: none;
  color: #000000;
}

/* .gray-box {
  font-family: "open sans";
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #e6e6e6;
  font-size: 12.25px;

} */

.line {
  height: 2px;
  width: 90%;
  margin: 1rem auto;
  background-color: #405E26;
}

.gray-box>p {
  font-weight: 500;
  width: 75%;
  word-wrap: break-word;
}

.gray-box>h6 {
  font-weight: 600;
}

/* .gray-line {
  width: 120px;
  background-color: #CCC;
  height: 2px;
  margin: 50px auto;
} */

input:not(type="checkbox"),
textarea {
  width: 100%;
  font-size: 14px;
  margin-top: 16px;
}

input {
  height: 50px;
  padding: 0 14px 0 14px;
  background: #e6e6e6;
  border: 1px solid #cccccc;

}

textarea {
  padding: 14px;
  width: 100%;
  background: #e6e6e6;
  border: 1px solid #cccccc;
}



@media screen and (min-width:900px) {
  .cont-para {
    font-size: 20px;
    width: 90%;
    margin: 0 auto;
  }

  .terms-d {
    width: 80%;
  }

}

.sub-btn>input {
  background-color: #6E924F;
  color: #ffffff;
  border: 2px solid #6E924F;
  font-size: 16px;
  font-weight: 600;
  padding: 0 32px 0 32px;
}

.gmap_canvas iframe {
  width: 100%;
  height: 500px;
}

.label-po {
  position: relative;
}

label {
  position: absolute;
  top: 10px;
  left: 5%;
  transition: 0.3s;
}

.box {
  width: 80%;
  margin: 3rem auto;
  padding: 14px;
  height: 350px;
  border: 2px solid #ccc;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

@media screen and (min-width:900px) {
  /*.box {*/
  /*  width: 80%;*/
  /*}*/
}

.box img,
.pro-img {
  border-radius: 50%;
  height: 140px;
  width: 140px;
}

.social {
  align-self: center;

}

.social i {
  font-size: 20px;
  color: #405e26;
}

@media screen and (min-width: 900px) {
  .about-us {
    width: 80%;
    margin: auto;
  }
}

.fixed-social>span {
  border: 1px solid #fff;
  padding: 6px 15px;
  font-size: 14px;
  border-radius: 999px;
  /* display: none; */
}

@media screen and (max-width: 900px) {
  .fixed-social {
    display: none;
  }
}

.w-e {
  position: fixed;
  bottom: 2%;
  right: 2%;
  font-size: 2rem; 
  font-weight: 500; 
  color: #fff; 
}

@media screen and (min-width: 900px) {
  .w-e {
    display: none;
  }
}

.w-e > p {
  width: 56px; 
    height: 56px; 
    text-align: center;
    position: relative; 
    background-color: #25d366; 
    border-radius: 50%; 
    box-shadow: 0px 3px 5px -1px rgba(0,0,0,0.2), 
    0px 6px 10px 0px rgba(0,0,0,0.14), 
    0px 1px 18px 0px rgba(0,0,0,0.12);
}

.w-e > p > i {
  width: 60%; 
  position: absolute; 
  left: 50%; 
  top: 50%; 
  transform: translate(-50%, -50%);
}

.error {
  font-size: 11px;
  color: red;
}

.card-box {
  font-family: "open sans";
  max-height: 400px;
  padding: 10px 15px;
  margin-bottom: 30px;
  border-left: 5px solid rgb(38, 88, 44);
  transition:  2s;
}

.moreText {
  display: none;
}