@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  text-transform: capitalize;
}

html {
  overflow-x: hidden;
}

:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --green: #7AC943;
  --grey:#333333: ;
}

.bars {
  position: absolute;
  right: 30px;
  font-size: 50px;
  color: #000;
  display: none;
  cursor: pointer;
}

.xmark {
  display: none;
  font-size: 40px;
  color: #ffffff;
  position: absolute;
  cursor: pointer;
  z-index: 2000;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 20px 80px;
  background-color: #fff;
  position: sticky;
  top: 0;
  align-items: center;
}
nav .list ul {
  display: flex;
  gap: 20px;
  list-style-type: none;
}
nav .list ul li a {
  font-family: var(--nav-font);
  text-decoration: none;
  color: var(--grey);
}

@media (max-width: 802px) {
  .bars {
    display: block;
  }
  .xmark {
    left: 60%;
    display: block;
  }
  .list {
    display: none;
  }
  .list ul {
    background-color: var(--green);
    flex-direction: column;
    position: absolute;
    left: 0;
    top: 0;
    height: 100vh;
    justify-content: center;
    align-items: center;
    width: 70%;
    line-height: 3;
  }
  .list ul li a {
    color: #fff !important;
    padding: 10px 25px;
    border-radius: 10px;
    border: 1px solid white;
  }
}
@media (max-width: 434px) {
  nav .logo img {
    margin-left: -60px;
  }
}
main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-family: var(--heading-font);
  font-size: 25px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7)), url(img/hero.png);
  height: 90vh;
  background-position: center;
  background-size: cover;
}

@media (max-width: 1024px) {
  main {
    font-size: 20px;
    height: 80vh;
    padding: 0 20px;
    text-align: center;
  }
  main h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  main {
    font-size: 18px;
    height: 70vh;
  }
  main h1 {
    font-size: 28px;
  }
}
@media (max-width: 480px) {
  main {
    font-size: 16px;
    height: 60vh;
  }
  main h1 {
    font-size: 22px;
  }
}
.buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 30px 20px;
  background-color: var(--green);
}
.buy .left-buy p {
  font-size: 18px;
  font-family: var(--default-font);
  color: #fff;
}

.btn button {
  padding: 10px 20px;
  background-color: transparent;
  border: 1px solid #fff;
  color: #fff;
  transition: 0.5s ease-in-out;
  border-radius: 5px;
}
.btn button:hover {
  background-color: #fff;
  color: var(--green);
}

@media (max-width: 1024px) {
  .buy {
    gap: 20px;
    padding: 25px 15px;
  }
  .buy .left-buy p {
    font-size: 16px;
    text-align: center;
  }
  .buy .right-buy button {
    padding: 12px 18px;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .buy {
    flex-direction: column;
    text-align: center;
  }
  .buy .left-buy p {
    font-size: 15px;
  }
  .buy .right-buy button {
    margin-top: 10px;
    width: 100%;
    max-width: 250px;
  }
}
@media (max-width: 480px) {
  .buy .left-buy p {
    font-size: 14px;
  }
  .buy .right-buy button {
    padding: 10px 15px;
    font-size: 14px;
  }
}
.slide {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 50px 30px;
}
.slide .sli {
  width: 270px;
}
.slide .sli img {
  margin-bottom: 15px;
  width: 270px;
}
.slide .sli h4 {
  margin-bottom: 15px;
  font-size: 16px;
  font-family: var(--default-font);
  font-weight: 500;
  color: var(--grey);
}
.slide .sli p {
  font-family: var(--default-font);
  line-height: 1.5;
  color: var(--grey);
  margin-bottom: 15px;
}
.slide .sli a {
  color: var(--grey);
  text-decoration: none;
  transition: 0.5s ease-in-out;
  font-family: var(--default-font);
}
.slide .sli a:hover {
  color: var(--green);
}

.about {
  background-color: #333333;
  display: flex;
  color: #d3d3d3;
  justify-content: center;
  gap: 20px;
  align-items: center;
  padding: 70px 120px;
}
.about .left-abt {
  padding: 0px 70px;
}
.about .left-abt h1 {
  font-size: 25px;
  font-family: var(--heading-font);
}
.about .left-abt p {
  margin: 20px 0px;
  font-size: 14px;
  font-family: var(--default-font);
}
.about .left-abt .icon {
  display: flex;
  justify-content: space-between;
}
.about .left-abt .icon .i {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}
.about .left-abt .icon .i .ri {
  line-height: 1.5;
}
.about .left-abt .icon .i .ri h5 {
  font-family: var(--nav-font);
  font-size: 14px;
}
.about .left-abt .icon .i .le i {
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(155, 155, 155, 0.368627451);
}
.about .right-abt img {
  width: 400px;
}
.about .right-abt h1 {
  font-family: var(--heading-font);
  font-size: 23px;
  margin-top: 20px;
  font-weight: 600;
}
.about .right-abt p {
  font-family: var(--default-font);
  margin-bottom: 20px;
}

/* 📱 Responsive About Section */
@media (max-width: 1200px) {
  .about {
    padding: 60px 60px;
    gap: 30px;
  }
  .about .left-abt {
    padding: 0px 40px;
  }
  .about .right-abt img {
    width: 350px;
  }
}
@media (max-width: 992px) {
  .about {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }
  .about .left-abt {
    padding: 0;
  }
  .about .left-abt h1 {
    font-size: 22px;
  }
  .about .left-abt p {
    font-size: 13px;
  }
  .about .left-abt .icon {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  .about .left-abt .icon .i {
    justify-content: center;
  }
  .about .right-abt img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
  }
  .about .right-abt h1 {
    font-size: 21px;
  }
  .about .right-abt p {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .about {
    padding: 40px 20px;
  }
  .about .left-abt h1 {
    font-size: 20px;
  }
  .about .left-abt p {
    font-size: 12px;
  }
  .about .left-abt .icon {
    flex-direction: column;
    align-items: center;
  }
  .about .left-abt .icon .i {
    width: 100%;
    justify-content: flex-start;
  }
  .about .right-abt h1 {
    font-size: 19px;
  }
}
@media (max-width: 480px) {
  .about {
    padding: 60px 15px;
  }
  .about .left-abt h1,
  .about .right-abt h1 {
    font-size: 18px;
  }
  .about .left-abt p,
  .about .right-abt p {
    font-size: 12px;
  }
  .about .left-abt .icon .i {
    gap: 10px;
    margin-bottom: 20px;
  }
  .about .left-abt .icon .i .le i {
    padding: 15px;
  }
  .about .right-abt img {
    width: 100%;
    max-width: 320px;
  }
}
.quotes {
  background-image: linear-gradient(rgba(0, 0, 0, 0.8)), url(img/hero.png);
  height: 40vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-size: cover;
}
.quotes h3 {
  font-size: 20px;
  font-family: var(--default-font);
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--green);
}
.quotes h4 {
  font-family: var(--heading-font);
  color: #fff;
  margin-bottom: 15px;
  font-weight: 300;
}
.quotes p {
  color: #fff;
  margin-bottom: 15px;
  text-align: center;
  padding: 0px 50px;
  font-family: var(--default-font);
}

.contact {
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f8f9fa;
  padding: 40px 20px;
}
.contact h1 {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 30px;
  font-family: var(--nav-font);
}
.contact form {
  background: #fff;
  padding: 40px 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px;
}
.contact form h1 {
  text-align: center;
  font-family: var(--heading-font);
  font-size: 28px;
  margin-bottom: 30px;
  color: var(--green);
}
.contact form .input {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.contact form .input p {
  margin-bottom: 8px;
  font-size: 14px;
  font-family: var(--nav-font);
  font-weight: 500;
  color: #333;
  text-transform: capitalize;
}
.contact form .input input,
.contact form .input textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  font-family: var(--default-font);
  outline: none;
  transition: 0.3s ease;
}
.contact form .input input:focus,
.contact form .input textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 5px rgba(0, 128, 0, 0.3);
}
.contact form .input textarea {
  resize: none;
  height: 120px;
}
.contact form .btn {
  text-align: center;
}
.contact form .btn button {
  padding: 14px 30px;
  border: none;
  background-color: var(--green);
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  font-family: var(--nav-font);
  cursor: pointer;
  transition: 0.3s ease;
}
.contact form .btn button:hover {
  background-color: var(--green);
}

/* 📱 Responsive */
@media (max-width: 768px) {
  .contact {
    padding: 30px 15px;
  }
  .contact form {
    padding: 30px 20px;
  }
  .contact form h1 {
    font-size: 22px;
  }
  .contact form .input p {
    font-size: 13px;
  }
  .contact form input,
  .contact form textarea {
    font-size: 13px;
    padding: 10px 12px;
  }
  .contact form .btn button {
    font-size: 14px;
    padding: 12px 25px;
  }
}
@media (max-width: 680px) {
  .contact {
    padding: 10px 30px;
  }
  .contact form {
    padding: 25px 15px;
  }
  .contact form h1 {
    font-size: 20px;
  }
  .contact form .btn button {
    width: 100%;
  }
}
.footer {
  background: #222;
  color: #d3d3d3;
  padding: 50px 20px;
}
.footer .footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}
.footer .footer-box {
  flex: 1 1 250px;
  min-width: 220px;
}
.footer .footer-box h3 {
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-family: var(--heading-font);
}
.footer .footer-box hr {
  width: 40px;
  border: 2px solid var(--green);
  margin-bottom: 15px;
}
.footer .footer-box p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 10px;
  font-family: var(--default-font);
}
.footer .footer-box .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer .footer-box .tags span {
  font-family: var(--nav-font);
  background: #333;
  padding: 6px 12px;
  border-radius: 5px;
  font-size: 13px;
  cursor: pointer;
  transition: 0.3s;
}
.footer .footer-box .tags span:hover {
  background: var(--green);
  color: #fff;
}
.footer .footer-box .flickr {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.footer .footer-box .flickr img {
  width: 100%;
  border-radius: 5px;
  display: block;
}

/* Responsive */
@media (max-width: 992px) {
  .footer .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer .footer-box h3, .footer .footer-box p {
    text-align: center;
  }
  .footer .footer-box .tags {
    justify-content: center;
  }
  .footer .footer-box .flickr {
    justify-content: center;
  }
}
.mf {
  background-color: #ffffff;
  padding: 20px 10px;
  text-align: center;
}
.mf p {
  font-family: var(--nav-font);
  color: #000;
}/*# sourceMappingURL=style.css.map */