* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  /* color: var(--grey); */
}

@font-face {
  font-family: king-lionel-personal-use;
  src: url(../../font/king-lionel-personal-use.ttf);
}

body,
html {
  scroll-behavior: smooth;
}

:root {
  --barlow: "Barlow", sans-serif;
  --playfair: "Playfair Display", serif;
  --king: king-lionel-personal-use;
  --grey: #2d2e33;
  --lt-grey: #a4a4a4;
  --white: #fff;
}

.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.container {
  width: 100%;
  margin: 0px auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.img-fluid {
  width: 100%;
}

a {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}

h2 {
  font-family: var(--king);
  font-size: 111px;
  color: var(--grey);
  font-weight: 400;
}

.d-flex {
  display: flex;
}

.justify-space-btwn {
  justify-content: space-between;
}

.align-item-center {
  align-items: center;
}

/* header start ********************************************************* */

header {
  padding: 70px 0px;
  position: absolute;
  z-index: 5;
}
.header-container {
  align-items: center;
}

.nav > li {
  display: inline-block;
  padding-right: 30px;
}

.nav > li > a {
  text-decoration: none;
  text-transform: capitalize;
  font-family: var(--barlow);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  position: relative;
}
.nav > li > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 3px;
  width: 0%;
  left: 0;
  bottom: -9px;
  background-color: var(--white);
  transition: all 300ms ease-in-out;
}

.nav > li > a:hover::after {
  width: 100%;
}

/* ripple effect******************************************* */

.contact > .ripple {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-right: 20px;
}

.contact > .ripple > span:nth-child(1) {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--white);
}

.contact > .ripple > span:nth-child(2) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--white);
  position: absolute;
  transform: scale(1);
  animation: ripple 1000ms linear infinite;
}

.contact > .ripple > span:nth-child(3) {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid var(--white);
  position: absolute;
  animation: ripple 1000ms linear infinite;
  animation-delay: 500ms;
}

@keyframes ripple {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(3);
    opacity: 0;
  }
}

/* ripple effect end ******************************************* */

.header-container .contact > a {
  text-decoration: none;
  text-transform: capitalize;
  font-family: var(--barlow);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  align-items: center;
}

/* mobile menu ***************************************************** */

.mobile-menu > i {
  color: var(--white);
  font-size: 21px;
}

/* mobile menu end ******************************** */

.banner > .ripple {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 45;
  bottom: 167px;
}

.banner > .ripple > a {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 3px solid var(--grey);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 55;
}

.banner > .ripple > a::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 16px;
  width: 2px;
  background-color: var(--grey);
  left: 50%;
  transform: translateX(-50%);
  bottom: -16px;
}

.banner > .ripple > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  height: 4px;
  width: 4px;
  border: 3px solid var(--grey);
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
}

.banner > .ripple > span:nth-child(2) {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--lt-grey);
  position: absolute;
  transform: scale(1);
  animation: ripple1 3000ms linear infinite;
}

.banner > .ripple > span:nth-child(3) {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--lt-grey);
  position: absolute;
  animation: ripple1 3000ms linear infinite;
  animation-delay: 1000ms;
}

.banner > .ripple > span:nth-child(4) {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid var(--lt-grey);
  position: absolute;
  animation: ripple1 3000ms linear infinite;
  animation-delay: 2000ms;
}

@keyframes ripple1 {
  from {
    transform: scale(1);
    opacity: 1;
  }

  to {
    transform: scale(7);
    opacity: 0;
  }
}

/* banner start here ************************************************** */

.banner {
  position: relative;
  height: 115vh;
  background-image: url(../../image/banner-bg.png);
  background-position: center;
  background-size: cover;
  z-index: 4;
}
.bnr {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bnr-txt-area {
  width: 50%;
  text-align: center;
}

.bnr-txt-area > img {
  margin-bottom: 25px;
}

.bnr-txt-area > p {
  font-family: var(--playfair);
  font-size: 21px;
  line-height: 33px;
  font-weight: 500;
  font-style: italic;
  color: var(--lt-grey);
}

/* section 2 start *********************************************** */

.section-2 {
  padding-top: 90px;
  padding-bottom: 90px;
  background-image: url(../../image/welcome-bg.png);
  position: relative;
  top: -156px;
  z-index: 1;
}

/* welcome **************************************************** */

.welcome-left {
  flex-basis: 30%;
}

.welcome-left > img {
  filter: drop-shadow(-111px 17px 45px rgba(20, 20, 20, 0.35));
  z-index: 50;
}

.welcome-right {
  flex-basis: 70%;
  padding-top: 50px;
}

.welcome-right > P:nth-child(1) {
  font-family: var(--king);
  font-size: 91px;
  line-height: 66px;
  color: var(--grey);
}

.welcome-right > P:nth-child(2) {
  margin-left: 53px;
  font-family: var(--playfair);
  font-size: 33.34px;
  font-style: italic;
  color: var(--grey);
  margin-bottom: 30px;
}

.welcome-right > P:nth-child(3) {
  margin-left: 53px;
  font-family: var(--barlow);
  font-size: 19px;
  font-weight: 400;
  color: var(--grey);
  line-height: 29.2px;
  margin-bottom: 54px;
}

.btn {
  padding: 10px 30px;
  margin-left: 53px;
  color: var(--white);
  border-radius: 0px 32.5px 32.5px 32.5px;
  background: linear-gradient(
    -127deg,
    rgba(80, 106, 57, 1) 0%,
    rgba(34, 51, 21, 1) 100%
  );
  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 19px;
  -webkit-box-shadow: 0px 57px 125px 0px rgba(20, 20, 20, 0.45);
  -moz-box-shadow: 0px 57px 125px 0px rgba(20, 20, 20, 0.45);
  box-shadow: 0px 57px 125px 0px rgba(20, 20, 20, 0.45);
}

.btn:hover {
  -webkit-box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
}

/* facilities start ****************************************** */

.facilities {
  text-align: center;
  margin-top: 130px;
}

.facilities > p:nth-child(1) {
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 20px;
  color: var(--lt-grey);
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
}

.facilities > h2:nth-child(2)::before {
  content: url(../../image/heading-style-left.png);
  display: inline-block;
  position: relative;

  left: -20px;
}

.facilities > h2:nth-child(2)::after {
  content: url(../../image/heading-style-right.png);
  display: inline-block;
  position: relative;
  right: -20px;
}

.facilities > p:nth-child(3) {
  font-family: var(--barlow);
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
  color: var(--lt-grey);
  margin-top: 30px;
  margin-bottom: 100px;
}

.facility-card {
  flex-basis: 24%;
  color: rgba(255, 255, 255, 0.1);
  padding: 45px 25px;
  text-align: center;
  border-radius: 0px 50px 0px 50px;
  -webkit-box-shadow: 0px 37px 101px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 37px 101px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 37px 101px 0px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}

.facility-card > p:nth-child(2) {
  color: var(--lt-grey);
  margin-top: 20px;
  margin-bottom: 20px;
  text-transform: capitalize;
  font-family: var(--playfair);
  font-weight: 600;
  font-size: 22px;
}

.facility-card > p:nth-child(3) {
  color: var(--lt-grey);
  font-family: var(--barlow);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.facility-card:hover {
  background-color: var(--white);
  -webkit-box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
  -moz-box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
  box-shadow: 0px 100px 111px 0px rgba(0, 0, 0, 0.18);
}

/* section 3 start ********************************** */

.section-3 {
  background-image: url(../../image/custom-bg.png);
  background-position: center;
  background-size: cover;
  position: relative;
  padding-top: 150px;
  padding-bottom: 150px;
}
.section-3 > img {
  position: absolute;
  left: 0;
  bottom: -128px;
  width: 20%;
  z-index: 4;
}

.section-3-container {
  text-align: center;
}

.section-3-container > p {
  font-family: var(--barlow);
  font-weight: 400;
  font-size: 24.59px;
  line-height: 33.2px;
  margin-top: 30px;
  color: var(--lt-grey);
}

/* plants start ****************************************************** */

.plant-container {
  text-align: center;
  margin-top: 130px;
  margin-bottom: 130px;
}

.plant-container > p:nth-child(1) {
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 20px;
  color: var(--lt-grey);
  text-transform: uppercase;
  letter-spacing: 10px;
  margin-bottom: 20px;
}

.plant-container > h2:nth-child(2)::before {
  content: url(../../image/heading-style-left.png);
  display: inline-block;
  position: relative;
  left: -20px;
}

.plant-container > h2:nth-child(2)::after {
  content: url(../../image/heading-style-right.png);
  display: inline-block;
  position: relative;
  right: -20px;
}

.plant-container > p:nth-child(3) {
  font-family: var(--barlow);
  font-weight: 300;
  font-size: 22px;
  line-height: 33px;
  color: var(--lt-grey);
  margin-top: 30px;
  margin-bottom: 100px;
}

.plant-card-area {
  margin-bottom: 100px;
}

.plant-card {
  text-align: center;
  overflow: hidden;

  position: relative;
  border-radius: 0px 0px 50px 0px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: linear-gradient(
    0deg,
    rgba(202, 202, 202, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}

.plant-card > div:nth-child(1) > img {
  width: 100%;
}

.plant-card-txt {
  text-align: left;
  padding-left: 37px;
}

/* .plant-card-txt > i {
  margin-bottom: 7px;
} */
.plant-card-txt > input {
  display: none;
}
.plant-card-txt > label > i {
  color: #2d2e33;
}
.plant-card-txt > label {
  position: relative;
  cursor: pointer;
}
.plant-card-txt > label > i:nth-child(2) {
  position: absolute;
  z-index: 50;
  left: 0px;
  opacity: 0;
}
.plant-card-txt > input:checked + label > i:nth-child(2) {
  opacity: 1;
}
.plant-card-txt > p:nth-child(2) {
  font-family: var(--barlow);
  font-weight: 500;
  font-size: 15.9px;
  color: var(--grey);
  margin-bottom: 7px;
}
.plant-card-txt > p:nth-child(3) {
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 20px;
  color: var(--grey);
  margin-bottom: 7px;
}

.plant-card-txt > p:nth-child(4) {
  font-family: var(--barlow);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 7px;
  color: var(--grey);
}

.plant-card-txt > p:nth-child(5) {
  font-family: var(--barlow);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 7px;
  color: var(--grey);
}

.plant-card-txt > p:nth-child(5) > i {
  margin-right: 4px;
}

.plant-card > a > i {
  display: inline-block;
  padding: 20px;
  background-color: var(--lt-grey);
  color: var(--grey);
  border-radius: 15px 0px 0px 0px;
  font-size: 30px;
  position: absolute;
  right: -1px;
  bottom: -1px;
}
.plant-container .btn {
  margin-left: 0px;
}

/* footer start ********************************************* */

footer {
  background-image: url(../../image/footer-bg.png);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 260px;
  padding-bottom: 150px;
}
.col {
  flex-basis: 20%;
}
.col-1 > img {
  width: 120px;
}

.col-1 > p {
  font-family: var(--barlow);
  font-size: 17px;
  line-height: 29.1px;
  color: var(--lt-grey);
  margin: 30px 0px;
}

.col-1 > a {
  padding: 10px 30px;
  border: 2px solid var(--white);
  color: var(--white);
  border-radius: 0px 32.5px 32.5px 32.5px;

  text-transform: uppercase;
  letter-spacing: 5px;
  font-family: var(--barlow);
  font-weight: 700;
  font-size: 13.13px;
}

.col-2 {
  padding-left: 30px;
}

.col-2 > ul > li {
  list-style: none;
}

.col-2 > ul > li:nth-child(1) {
  font-family: var(--playfair);
  font-size: 24.13px;
  font-weight: 700;
  line-height: 37px;
  color: var(--white);
  text-transform: capitalize;
  margin-top: 86px;
}

.col-2 > ul > li > a {
  font-family: var(--barlow);
  font-size: 16.83px;
  line-height: 25.87px;
  color: var(--lt-grey);
  text-transform: capitalize;
  margin-top: 20px;
}

.col-2 > ul > li > a:hover {
  color: var(--white);
}

.social > p {
  font-family: var(--playfair);
  font-size: 24.13px;
  font-weight: 700;
  line-height: 37px;
  color: var(--white);
  text-transform: capitalize;
  margin-top: 86px;
  margin-bottom: 20px;
}

.social > ul > li {
  display: inline-block;
}

.social > ul > li > a {
  color: var(--white);
  font-size: 20px;
  margin-right: 20px;
}

.social > ul > li:last-child > a {
  margin-right: 0px;
}

/* scroll to top  **************************************/

#scrl-top {
  display: inline-block;
  background-color: #506a39;
  width: 50px;
  height: 50px;
  text-align: center;
  border-radius: 50%;
  position: fixed;
  bottom: 30px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
}
#scrl-top::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 2em;
  line-height: 50px;
  color: #fff;
}
#scrl-top:hover {
  cursor: pointer;
  background-color: #333;
}
#scrl-top:active {
  background-color: #555;
}
#scrl-top.show {
  opacity: 1;
  visibility: visible;
}
