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

/* HTML RESET */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  font-family: Poppins;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  width: 100%;
  overflow-x: hidden;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  text-decoration: none;
  color: black;
}

/* VARIABLES */

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

/* UTILS */

.primary-button {
  padding: 15px 40px;
  color: white;
  border-radius: 100px;
  border: 1px solid #90c73f;
  width: fit-content;
  font: normal normal medium 14px/21px Poppins;
  height: fit-content;
  background-color: var(--primary-color);
  transition: 0.4s;
}

.primary-button:hover {
  color: #90c73f;
  background-color: white;
  border: 1px solid #90c73f;
  cursor: pointer;

}

.secondary-button {
  padding: 15px 40px;
  color: var(--primary-color);
  border-radius: 100px;
  border: 2px solid var(--primary-color);
  width: fit-content;
  font: normal normal medium 14px/21px "Poppins";
  height: fit-content;
  transition: 0.4s;
}

.secondary-button:hover {
  color: white;
  border: 2px solid #90c73f;
  cursor: pointer;
  background-color: #90c73f;
}

/* HEADER */

header {

  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 168px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  transition: top 0.2s ease-in-out;
  width: 100%;
  text-align: center;
  z-index: 1;

}

.nav-up {
  top: -150px;
}

.nav-down2 {

  -webkit-transition: all ease-out .5s;
  -moz-transition: all ease-out .5s;
  -o-transition: all ease-out .5s;
  transition: all ease-out .5s;
}



.header {
  /* margin: 73px 170px 0px 170px; */
  margin: 0px;
  margin-top: 73px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  /* position: absolute; */
  width: calc(100% - 340px);
  top: 0;
  max-width: 1162px;
  min-width: 1162px;
  width: 1162px;
}

.nav-up {
  top: -173px;
}

.nav-items {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.nav-items>.selected>a {
  color: var(--primary-color);
}
.nav-items>li>a{
  color: #000000;
  transition: 0.4s;
}
.nav-items>li>a:hover {
  color: var(--primary-color);
}

.active2 {
  background: linear-gradient(90deg, #9FAB8E 0%, #5A7E26 100%);
  background: #FFFFFF;
  height: 115px;
  transition: 0.5s;
  z-index: 2;
}

.active2 .header {
  /* margin: 0px 170px 0px 170px; */
  margin-top: 0px;
  transition: 0.5s;
}

.tag {
  opacity: 0;
  transform: translate(0, 10vh);
  transition: all 1s;
}

.tag.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.all-outer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
 
}

#menu {
  /* position: fixed; */
  position: relative;
  /* right: 2rem;
  top: 2rem; */
  width: 30px;
  height: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: .5s;
  z-index: 10;
}

.menu-line1 {
  width: 100%;
  height: 2px;
  background: #90C73F;
  transition: .6s;
}

.menu-line2 {
  width: 80%;
  height: 2px;
  margin-top: .7rem;
  background: #90C73F;
  transition: .6s;
}

.rotate {
  transform: rotateZ(180deg)
}

.rotate1 {
  background: #90C73F;
  transform: rotateZ(45deg);
}

.rotate2 {
  background: #90C73F;
  width: 100%;
  transform: translate(0, -0.8rem) rotateZ(-45deg);
}

.nav-page1 {
  position: fixed;
  top: 0;
  left: 0;
  background: whitesmoke;
  width: 60%;
  height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #212121;
  transform: translate(0, -100%);
  transition: .5s;
}

.nav-page1 span {
  padding: 1rem;
}

.nav-page2 {
  position: fixed;
  top: 0;
  left: 60%;
  background: whitesmoke;
  width: 40%;
  height: 70vh;
  transition: .8s;
  transform: translate(0, -100%);
}

.transform {
  transform: translate(0, 0);
}

/* footer */
/* FOOTER */
.ft-outer {
  background-color: #f2f7f0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;


}

.footer {

  /* padding: 77px 0px; */

  padding-top: 77px;
  display: flex;
  flex-direction: row;
  min-width: 1162px;
  max-width: 1162px;
  width: 1162px;
}

.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-address>p {
  width: 1162px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 77px;
}

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

.footer-bottom {
  width: 1162px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding-bottom: 77px;
}

.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;
  gap: 15px;

}

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

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

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

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

@media (max-width:1165px) {
  .header {
    max-width: 890px;
    min-width: 890px;
    width: 890px;
  }

  .footer {

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

  .footer-bottom {
    width: 890px;

  }

  .terms-conditions {
    margin-right: 0px;
  }


}

@media (max-width:895px) {
  .header {
    max-width: 740px;
    min-width: 740px;
    width: 740px;
  }

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

  .footer-bottom {
    width: 740px;

  }

  .address>p {

    margin-right: 67px;
  }

  .secondary-button {
    padding: 15px 26px;

  }

}

@media (max-width:740px) {
  .nav-items {
    display: none;
  }

  .secondary-button {
    display: none;
  }

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

  .footer {
    max-width: 540px;
    min-width: 540px;
    width: 540px;
    flex-direction: column;
    gap: 50px;
  }

  .footer-bottom {
    width: 540px;
  }
}

@media (max-width:543px) {
  .header {
    max-width: 90%;
    min-width: 90%;
    width: 90%;

  }

  .footer {
    max-width: 90%;
    min-width: 90%;
    width: 90%;
  }

  .footer-bottom {

    max-width: 90%;
    min-width: 90%;
    width: 90%;
    flex-direction: column;
    align-items: flex-start;
  }

  .terms {

    justify-content: flex-start;
  }

  .header img {
    width: 92px;
    height: 70px;
  }

  .active2 {
    background: linear-gradient(90deg, #9FAB8E 0%, #5A7E26 100%);
    background: #FFFFFF;
    height: 94px;
    transition: 0.5s;
  }

  .heading-1,
  .heading-2 {

    font: normal normal bold 35px / 60px Poppins;
  }

}

@media (min-width:740px) {
  .mob-menu {
    display: none;
  }
}