@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");

:root {
  --primary-color: #90c73f;
  --secondary-color: #eef4ec;
}

/* UTILS */

.plus-minus {
  position: relative;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.plus {
  position: relative;
  width: 10px;
  height: 2px;
  background-color: #000;
  transition: transform 0.3s ease-in-out;
}

.plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 10px;
  background-color: #000;
  top: -4px;
  left: 4px;
  transition: transform 0.3s ease-in-out;
}

.plus-minus.active .plus {
  transform: rotate(180deg);
}

.plus-minus.active .plus::before {
  transform: rotate(90deg);
}

/* .loading-page{
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(230, 227, 227);

  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
  z-index: 100;
  
} */

/* MAIN */

.main {
  /* margin: 250px 0px 95px 0px; */
  margin: -474px 0px 95px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
  z-index: 1;
}

.heading-1,
.heading-2 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  font: normal normal bold 43px/64px Poppins;
}
.heading-1 h1,
.heading-2 h1{
  color: #eef4ec;
}
.heading-1>img {
  height: 53px;
}

.main-description {
  margin-top: 22px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 43px;
}

.main-description>p {
  width: 50%;
  text-align: center;
  font: normal normal normal 14px/24px Poppins;
  color: #eef4ec;
}

.h-banner1 {
  /* position: static; */
  display: flex;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 41px;
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 669px;
  /* opacity: 0.4; */
}

#hero-banner {
  /* background-color: #0a0808;
  background-color: #2c2a2a; */
  box-sizing: border-box;
}

/* SOCIETY */

.society {
  display: flex;
  flex-direction: row;
  /* margin-left: 170px;
  margin-right: 170px; */
  justify-content: space-between;
  margin-bottom: 130px;
  margin-top: 50px;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.society>div {
  width: 31%;
}

.society>div>img {
  width: -moz-available;
}

.commitment {
  background-color: var(--primary-color);
  border-radius: 20px;
}

.commitment>img {
  object-fit: cover;
  width: -webkit-fill-available;
  height: 340px;
}

.society-description-commitment {
  margin: 50px 35px;
}

.society-description-commitment>h1 {
  color: white;
  font-family: Poppins;
  font-weight: bold;
  line-height: 27px;
  font-size: 18px;
  text-align: center;
}

.society-description-commitment>p {
  color: white;
  font-size: 14px;
  line-height: 24px;
  margin-top: 14px;
  text-align: center;
}

.society-description {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.society-description>img {
  width: fit-content;
}

.society-description>h1 {
  text-align: center;
  font-size: 18px;
  line-height: 27px;
  font-weight: bold;
}

.society-description>p {
  text-align: center;
  font-size: 14px;
  line-height: 21px;
  max-width: 300px;
}

.premium {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
  padding-top: 50px;
}

.practice {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 50px;
}

.premium>img,
.practice>img {
  border-radius: 20px;
  height: 243px;
}

/* ABOUT US */

.about-us {
  display: flex;
  flex-direction: row;
  /* margin-left: 170px;
  margin-right: 170px; */
  gap: 15%;
  margin-bottom: 110px;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.about-us-description {
  display: flex;
  flex-direction: column;
}

.about-us-description>h3 {
  text-align: left;
  font: normal normal medium 12px/18px Poppins;
  letter-spacing: 0px;
  color: #cdad39;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.about-us-description>h1 {
  text-align: left;
  font: normal normal bold 30px/46px Poppins;
  letter-spacing: 0px;
  color: #000000;
  text-transform: capitalize;
  opacity: 1;
  margin-bottom: 38px;
}

.about-us-description>p {
  text-align: left;
  font: normal normal normal 14px/24px Poppins;
  margin-bottom: 44px;
}

.about-us-description>a {
  display: flex;
  gap: 10px;
}

.about-us-description>a>p {
  color: var(--primary-color);
  font: normal normal medium 14px/21px Poppins;
}

.about-us-image {
  background-color: #000000;
  width: 150%;
  border-radius: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  /* background-image: url("../res/images/home/about_us.png"); */
  background-image: url("../res/images/home/cab2.jpg");
}

/* NUMBERS */

.numbers {
  /* margin-left: 170px;
  margin-right: 170px; */
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-bottom: 105px;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.numbers>.data {
  background-color: var(--secondary-color);
  border-radius: 15px;
  padding: 32px;
  transition: background-color 0.4s ease;
}

.numbers>.data:hover {
  background-color: #90c73f;
}

.numbers>.data>.data02 {
  font: normal normal bold 32px/48px Poppins;
  text-transform: capitalize;
  color: black;
  transition: color 0.4s ease;
  display: flex;

}

.numbers>.data>.data02>h1 {
  font: normal normal bold 32px/48px Poppins;
  text-transform: capitalize;
  color: black;
  transition: color 0.4s ease;
}

.numbers>.data>h2 {
  font: normal normal bold 14px/21px Poppins;
  margin-top: 1px;
  margin-bottom: 30px;
  color: black;
  transition: color 0.4s ease;
}

.numbers>.data>p {
  font: normal normal normal 14px/21px Poppins;
  color: black;
  transition: color 0.4s ease;
}

.numbers>.data:hover>.data02,
.numbers>.data:hover>.data02>h1,
.numbers>.data:hover>h2,
.numbers>.data:hover>p {
  color: white;
}

/* WHY CHOOSE US */

.why-choose {
  /* margin-left: 170px;
  margin-right: 170px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.why-choose>h2 {
  color: #cdad39;
  font: normal normal medium 12px/18px Poppins;
  margin-bottom: 14px;
}

.why-choose>h1 {
  font: normal normal bold 30px/46px Poppins;
  width: 50%;
  text-align: center;
  margin-bottom: 40px;
}

.why-choose-content {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin-bottom: 66px;
}

.why-choose-content>* {
  flex: 1;
}

.why-choose-image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.cyl1 {
  background-image: url(../res/images/home/why_choose_1.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.cyl2 {
  background-image: url(../res/images/home/why_choose_2.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 20px;
}

.why-choose-description-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-choose-description-wrapper>p {
  font: normal normal normal 14px/24px Poppins;
}

.why-choose-colored-content {
  display: flex;
  flex-direction: row;
  gap: 25px;
}

.why-choose-description {
  border-radius: 15px;
  padding: 25px;
}

.why-choose-description-1 {
  background-color: #5c9546;
}

.why-choose-description-2 {
  background-color: #cdad39;
}

.why-choose-description>h1 {
  font: normal normal bold 14px/21px Poppins;
  color: white;
  text-align: center;
  margin-bottom: 5px;
}

.why-choose-description>p {
  font: normal normal normal 10px/16px Poppins;
  color: white;
  text-align: center;
}

.why-choose-details {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 30px;
  width: 100%;
}

.efficiency {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background-color: #eef4ec;
  border-radius: 20px;
  flex: 1;
}

.efficiency>img {
  height: 32px;
  width: 32px;
  align-self: flex-end;
}

.efficiency-data {
  display: flex;
  flex-direction: column;
}

.efficiency-data>img {
  width: 68px;
  margin-bottom: 14px;
}

.efficiency-data>h1 {
  font: normal normal bold 18px/27px Poppins;
  margin-bottom: 15px;
}

.efficiency-data>p {
  font: normal normal normal 14px/24px Poppins;
}

.counted-description {
  display: flex;
  flex-direction: column;
  gap: 25px;
  flex: 2;
}

.doted-dash {
  border: 1px dashed #707070;
}

.counted-data {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}

.counted-data>h1 {
  border: 1px solid #000000;
  padding: 15px;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  font: normal normal 600 16px/25px Poppins;
  text-align: center;
}

.counted-data-description {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.counted-data-description>h1 {
  font: normal normal 600 14px/21px Poppins;
}

.counted-data-description>p {
  font: normal normal normal 14px/24px Poppins;
}

/* FOOTER */
/* .footer {
  background-color: #f2f7f0;
  padding: 77px 170px;
  display: flex;
  flex-direction: row;
}

.footer > * {
  flex: 1;
}

.footer-address {
  flex: 1.5;
}

.footer-contact {
  flex: 1.2;
}

.footer-address {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.footer-address > img {
  height: 70px;
  width: 92px;
}

.address > h1 {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: 0px;
  color: #000000;
}

.address > p {
  font-size: 12px;
  line-height: 24px;
}

.footer-bottom > p {
  margin-top: 30px;
  font-size: 14px;
  line-height: 34px;
}

.footer-bottom > p > a {
  color: #ff00d8;
}

.footer-links,
.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-links > h1,
.footer-socials > h1 {
  font-size: 15px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0px;
  color: #000000;
}

.footer-links > ul,
.footer-socials > ul {
  display: flex;
  flex-direction: column;
}

.footer-links > ul > li > a > div,
.footer-socials > ul > li > a > div {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}

.footer-links > ul > li > a > div:hover > span,
.footer-socials > ul > li > a > div:hover > span {
  color: var(--primary-color);
}

.footer-links > ul > li > a > div:hover > svg > path,
.footer-socials > ul > li > a > div:hover > svg > path {
  fill: var(--primary-color);
}

.footer-links > ul > li > a > div > span,
.footer-socials > ul > li > a > div > span {
  font-size: 14px;
  line-height: 32px;
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-numbers {
  display: flex;
  flex-direction: column;
}

.contact-numbers > p {
  font-size: 12px;
  line-height: 19px;
}

.numbers-image {
  display: flex;
  flex-direction: row;f
  gap: 15px;
}

.terms-conditions {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.terms {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
}

.terms > a {
  font-size: 14px;
  line-height: 24px;
  font-weight: 600;
}

.rights-reserve {
  font-size: 12px;
  line-height: 24px;
} */

/* FAQ */

.faq {
  padding: 90px 0px 100px 0px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.faq>h2 {
  color: #cdad39;
  font-size: 12px;
  line-height: 18px;
  font-weight: 600;
}

.faq>h1 {
  font-size: 30px;
  line-height: 46px;
  font-weight: bold;
}

.accordian-list {
  margin-top: 21px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordian {
  background-color: #f5f5f5;
  padding: 33px 48px;
  overflow-y: hidden;
  border-radius: 15px;
  transition: background-color 0.4s ease;
  cursor: pointer;
}

.accordian.active {
  background-color: #fff7d8;
}

.accordian.active>.accordian-description {
  max-height: 150px;
  transform: translateY(18px);
}

.accordian-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.accordian-header>h1 {
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
}

.accordian-description {
  font-size: 15px;
  line-height: 22px;
  height: auto;
  max-height: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

/* BE A PART */

.be-a-part {
  background: transparent linear-gradient(180deg, #90c73f 0%, #cdad39 100%) no-repeat padding-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* padding: 94px 200px; */
  height: 404px;
  margin: 0px 0px 80px 0px;
  border-radius: 20px;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;

}

.be-a-part:hover {
  background: transparent linear-gradient(180deg, #cdad39 0%, #90c73f 100%) no-repeat padding-box;
}

.be-a-part>h1 {
  font: normal normal bold 34px/51px Poppins;
  color: white;
  margin-bottom: 18px;
}

.be-a-part>p {
  font: normal normal normal 14px/24px Poppins;
  color: white;
  width: 80%;
  text-align: center;
  margin-bottom: 33px;
}

/* SHADOW */

.premium {
  position: relative;
}

.yellow-shadow {
  height: 300px;
  width: 300px;
  position: absolute;
  background: #fff253 no-repeat padding-box;
  opacity: 0.1;
  filter: blur(50px);
  z-index: -1;
}

.yellow-shadow-premium {
  top: 0;
  right: 50%;
  transform: translateY(-50%);
}

.yellow-shadow-society {
  transform: translateY(100px);
}

.yellow-shadow-main-1 {
  top: 100px;
  left: 170px;
}

.yellow-shadow-main-2 {
  right: 0px;
}

@media (max-width:1165px) {
  .main {

    max-width: 890px;
    min-width: 890px;
    width: 890px;
    margin: -474px 0px 72px 0px;
  }

  .society {

    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .about-us {

    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .numbers {
    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .why-choose {
    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .be-a-part {

    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .faq {

    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }
}

@media (max-width:895px) {
  .main {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
    margin: -656px 0px 72px 0px;
    z-index: 0;
  }
  .h-banner1 {

    height: 905px;
}
  .society {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .about-us {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .numbers {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .why-choose {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .faq {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .be-a-part {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

  .heading-1,
  .heading-2 {

    flex-direction: column;

  }

  .be-a-part>h1 {

    text-align: center;
  }

  .about-us {

    gap: 4%;

  }

  .yellow-shadow {
    height: 300px;
    width: 0px;
    position: absolute;
    background: #fff253 no-repeat padding-box;
    opacity: 0.1;
    filter: blur(50px);
    z-index: -1;
  }
}

@media (max-width:740px) {

  .heading-1,
  .heading-2 {
    text-align: center;
  }

  .main {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
    margin: -748px 0px 52px 0px;
  }

  .society {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
    gap: 30px;
    flex-direction: column;
  }

  .society>div {
    width: 100%;
  }

  .premium {
    gap: 25px;
  }

  .practice {

    gap: 25px;
  }

  .about-us {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
    gap: 2%;
  }

  .numbers {

    flex-direction: column;
    gap: 22px;
    max-width: 540px;
    min-width: 540px;
    width: 540px;
  }

  .why-choose {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
  }

  .why-choose-content {

    flex-direction: column;

  }

  .why-choose-details {

    flex-direction: column;

  }

  .faq {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
  }

  .be-a-part {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
  }

  .be-a-part>h1 {
    text-align: center;
    width: 300px;
  }

  .why-choose>h1 {

    width: 94%;

  }

  .faq>h1 {

    text-align: center;
  }

}

@media (max-width:542px) {
  .h-banner1 {
    height: 855px;
}
  .main {
    max-width: 90%;
    min-width: 90%;
    width: 90%;
    margin: -660px 0px 78px 0px;
  }

  .society {
    max-width: 90%;
    min-width: 90%;
    width: 90%;
    margin-top: 50px;
    margin-bottom: 60px;
  }

  .about-us {

    max-width: 90%;
    min-width: 90%;
    width: 90%;
    margin-bottom: 60px;
  }

  .numbers {

    max-width: 90%;
    min-width: 90%;
    width: 90%;
  }

  .why-choose {
    max-width: 90%;
    min-width: 90%;
    width: 90%;
  }

  .why-choose-content {

    margin-bottom: 25px;
  }

  .faq {

    max-width: 90%;
    min-width: 90%;
    width: 90%;
  }

  .be-a-part {
    max-width: 90%;
    min-width: 90%;
    width: 90%;
    height: 550px;
  }

  .about-us-image {
    background-color: #000000;
    width: 100%;
    border-radius: 20px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../res/images/home/cab2.jpg);
    height: 339px;
    margin-top: 40px;
  }

  .about-us {
    flex-direction: column;

  }

  .cyl3 {
    width: 100%;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
  }

  .cyl3 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .cyl4 {
    width: 100%;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
  }

  .cyl4 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
  }

  .accordian {

    padding: 33px 20px;

  }

  #btn-home-bottom {
    display: block;
  }

  .accordian.active {
    background-color: #fff7d8;
    transition: 0.5s;
  }

  .main-description>p {
    width: 100%;
    width: 290px;
  }

  .counted-data>h1 {
    border: 1px solid #000000;
    padding: 15px;
    width: 38px;
    height: 19px;
    border-radius: 50%;
    font: normal normal 600 16px / 20px Poppins;
    text-align: center;
  }

  .accordian-header>h1 {
    font-size: 15px;
    line-height: 27px;
    font-weight: 600;
    width: 250px;
  }
#web-main{
  display: none;
}


}







@media(min-width:542px) {
  .cyl3 {
    display: none;
  }

  .cyl4 {
    display: none;
  }
  #web-mobile{
    display: none;
  }

}