@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&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");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #95a986;
  --seondary-color: #0d0d0d;
  --tertiary-color: #868686;
  --text-color: #ffffff;
  --border-color: #b8b8b8;
  --secondary-text-color: #5e5e5e;
  --simple-bg-color: #f6f6f6;
}

a {
  text-decoration: none;
  display: inline-block;
}

ul {
  list-style-type: none;
}

.container {
  max-width: 1749px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.col-20 {
  width: 20%;
  padding: 0 15px;
}

.col-25 {
  width: 25%;
  padding: 0 15px;
}

.col-33 {
  width: 33.33%;
  padding: 0 15px;
}

.col-50 {
  width: 50%;
  padding: 0 15px;
}

.col-60 {
  width: 58.35%;
  padding: 0 15px;
}

.col-40 {
  width: 41.65%;
  padding: 0 15px;
}

.col-100 {
  width: 100%;
  padding: 0 15px;
}

/* HEADER */

.header-section {
  padding: 15px 0;
  position: absolute;
  top: 0;
  width: 100%;
}

nav,
.navbar-collapsed,
.navbar-collapsed > ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  width: 312px;
}

.nav-logo > a {
  width: 100%;
}

.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nav-links {
  color: var(--text-color);
  padding: 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  position: relative;
}

.nav-links::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 6px;
  background: var(--text-color);
  border-radius: 50%;
  bottom: -80%;
  left: 46%;
  display: none;
}

.nav-links:hover::after {
  display: block;
}

.nav-links-icon {
  color: var(--text-color);
  padding: 0 28px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.shop-now-class {
  color: var(--text-color);
  padding: 0 28px;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
}

.navbar-collapsed > ul > li {
  position: relative;
}

.parent {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--primary-color);
  padding: 10px 20px;
  display: none;
  flex-direction: column;
  min-width: 170px;
  border: 2px solid var(--text-color);
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.parent > .child {
  padding: 8px 0;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

.parent > .child:hover {
  color: var(--seondary-color);
}

.navbar-collapsed > ul > li:hover > .parent {
  display: block;
}

.shop-now-class > img {
  width: 16px;
  margin-bottom: 2px;
}

#mag-glass,
#user-id,
#cart-id {
  color: var(--text-color);
}

#mag-glass {
  margin-right: -28px;
}

#cart-id {
  margin-right: 6px;
}

.cart-span {
  font-weight: 600;
}

.nav-saperator > img {
  height: 28px;
}

.navbar-toggler {
  margin-left: auto;
  color: var(--text-color);
  display: none;
}
.shop-now-class:focus-within .parent,
.shop-now-class:hover .parent {
  display: flex;
}

/* BANNER */

.banner-section {
  background: linear-gradient(rgba(0, 0, 0, 0.3)),
    url(../assets/header_banner.png) no-repeat center/cover;
  height: 100vh;
  padding: 100px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  background-color: var(--text-color);
  border-radius: 20px;
  width: 793px;
  margin: 0 auto -120px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.title-one {
  text-transform: capitalize;
  padding: 66px 40px 0;
  font-family: "Amiri", sans-serif;
  font-size: 68px;
  font-weight: 700;
  text-align: center;
  line-height: 1.05;
}

.card > p {
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  padding: 15px 80px 30px;
  text-align: center;
  color: var(--secondary-text-color);
}

.exp-btn {
  display: flex;
  justify-content: center;
  padding: 0 0 75px;
}

.exp-btn > a {
  font-family: "Poppins", sans-serif;
  font-weight: 500px;
  letter-spacing: 2px;
  font-size: 18px;
  background: var(--primary-color);
  color: var(--secondary-color);
  padding: 18px 34px 18px 28px;
  border-radius: 60px;
  display: flex;
  align-items: center;
}

.exp-btn > a:hover {
  outline: 2px solid var(--primary-color);
  background: var(--text-color);
}

.exp-btn > a > img {
  width: 46px;
  height: auto;
  display: block;
  margin-left: 14px;
}

/* ABOUT SECTION */

.about-section {
  padding: 165px 100px;
}

.container-about-section {
  max-width: 1353px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.para-about-one {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--primary-color);
}

.para-about-two {
  font-family: "Amiri", sans-serif;
  font-size: 45px;
  font-weight: 500;
}

.about-vector-one > img {
  width: 64px;
  margin-bottom: 21px;
  margin-top: -10px;
}

.lorem-about-para {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--secondary-text-color);
  text-transform: capitalize;
  margin-bottom: 14px;
  width: 550px;
}

.about-img-one > img,
.about-img-two > img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container .row,
.container-about-section .row {
  margin-left: -15px;
  margin-right: -15px;
}

.about-img-one > img {
  width: 425px;
  border-bottom-right-radius: 30px;
}

.about-img-two > img {
  width: 303px;
  border-top-right-radius: 30px;
  margin-left: 24px;
}

.about-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-two {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  flex-direction: column;
  padding-top: 151px;
}

.about-why {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--primary-color);
}

.about-offer {
  font-family: "Amiri", sans-serif;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
}

.vector-img-style > img {
  width: 104px;
  margin-bottom: 50px;
}

.about-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

.col-25-img {
  text-align: center;
  margin-bottom: 30px;
}

.col-25-img > img {
  width: 111px;
  display: block;
  margin: 0 auto 32px;
  cursor: pointer;
}

h3 {
  font-family: "Amiri", sans-serif;
  font-size: 20px;
  font-weight: bold;
  text-transform: uppercase;
}

.col-25-img > p {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  text-transform: capitalize;
  color: var(--secondary-text-color);
}

/* OUR MISSION SECTION */

.our-mission-section {
  background: var(--simple-bg-color);
}

.mission-row {
  align-items: center;
  padding: 100px 0;
}

.our-mission-img-one {
  max-width: 641px;
  position: relative;
}

.our-mission-img-one > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-top-right-radius: 30px;
}

.our-mission-img-two {
  max-width: 326px;
  position: absolute;
  bottom: -8%;
  right: -20%;
  border-top: 10px solid var(--simple-bg-color);
  border-left: 10px solid var(--simple-bg-color);
  border-top-left-radius: 35px;
}

.our-mission-img-two > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 35px;
}

h4 {
  font-family: "Amiri", sans-serif;
  font-size: 45px;
  font-weight: 500;
  margin-left: 150px;
}

.om-text {
  font-family: "Poppins", sans-serif;
  margin-top: 30px;
  font-size: 16px;
  color: var(--secondary-text-color);
  margin-left: 150px;
}

.text-content > img {
  margin-left: 150px;
  width: 64px;
}

/* FOOTER */

.footer-section {
  padding: 70px 0;
  display: block;
}
.footer-section,
.footer-row {
  justify-content: space-around;
  align-items: center;
}

.footer-section h5 {
  font-family: "Amiri", sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--seondary-color);
  margin-bottom: 6px;
}

.footer-section .underline-25::after,
.footer-section .underline-20::after {
  content: "";
  display: block;
  width: 56px;
  height: 1.5px;
  background: var(--secondary-text-color);
  margin: 10px 0 18px;
}

.footer-section p,
.footer-section a {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--secondary-text-color);
  line-height: 2;
  text-decoration: none;
}
.footer-section a:hover {
  color: var(--seondary-color);
}
.footer-section .footer-col p + p {
  margin-top: 5px;
}
.footer-first-para {
  font-size: 14px;

}

.footer-section .footer-email {
  margin: 14px 0 10px;
}
.footer-section .footer-email input {
  width: 100%;
  max-width: 340px;
  height: 54px;
  border: 1px solid var(--secondary-text-color);
  border-radius: 60px;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
}

.footer-section .footer-email input::placeholder {
  color: #9aa0a6;
}

.footer-section .footer-email input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(149, 169, 134, 0.18);
}

.footer-section .btn-subscribe {
  display: inline-block;
  padding: 10px 28px;
  border-radius: 60px;
  background: var(--primary-color);
  color: var(--seondary-color);
  text-transform: uppercase;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  width: 184px;
  text-align: center;
  font-size: 18px;
}

.footer-section .btn-subscribe:hover {
  background-color: var(--text-color);
  outline: 2px solid var(--primary-color);
}

.footer-section .col-20:last-child a {
  font-size: 18px;
  color: var(--seondary-color);
  margin-right: 22px;
}
.footer-section .col-20:last-child a:last-child {
  margin-right: 0;
}

.footer-section .col-33 {
  width: 33.33% !important;
}
.footer-section .col-25 {
  width: 25% !important;
}
.footer-section .col-20 {
  width: 20% !important;
}

.footer-bottom {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 1px solid var(--border-color);
  margin-top: 36px;
  padding: 22px 0;
  text-align: center;
}

/* MEDIA QUERIES */

@media screen and (max-width: 1600px) {
  /* ABOUT SECTION */
  /* .about-section,
  .col-50,
  .col-60,
  .col-40 {
    width: 100%;
  }
  .para-about-one,
  .para-about-two,
  .about-vector-one {
    text-align: center;
  }
  .lorem-about-para {
    margin: 0 auto 10px;
    text-align: center;
  }
  .col-50-part-one {
    padding-bottom: 20px;
  }
  .about-img-one > img {
    width: 325px;
  }
  .about-img-two > img {
    width: 203px;
  }
  .col-25-img > img {
    width: 61px;
  }
  h3 {
    font-size: 14px;
  }
  .col-25-img > p {
    font-size: 10px;
  } */

  /* OUR MISSION SECTION */
  /* .col-40,
  .col-60 {
    width: 100%;
  }
  .col-40-img-om {
    display: flex;
    justify-content: center;
  }
  h4 {
    margin-top: 80px;
    text-align: center;
    margin: 80px auto 0;
  }
  .om-text {
    text-align: center;
    width: 700px;
    margin: 0 auto;
  }
  .text-content > img {
    display: none;
  } */
}

@media screen and (max-width: 1400px) {
  /* HEADER */
  .navbar-collapsed {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
  }
  .navbar-toggler {
    display: flex;
    font-size: 1.5rem;
    align-items: center;
  }
  #navbar-toggler:checked ~ .navbar-collapsed {
    display: block;
  }
  .nav-links-icon {
    display: block;
  }
  .navbar-collapsed > ul {
    flex-direction: column;
  }
  .nav-links {
    margin: 5px 0;
  }
  .shop-now-class > img {
    display: none;
  }
  .media-nav-icon {
    display: none;
  }
  .label-div-ul > ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .nav-logo {
    width: 252px;
  }
  .shop-now-class {
    position: relative;
  }
  .shop-now-class > .parent {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    background: var(--primary-color);
    border: 2px solid var(--text-color);
    border-radius: 10px;
    min-width: 170px;
    padding: 10px 20px;
    display: none;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
  }
  .shop-now-class:hover > .parent {
    display: flex;
  }
  .shop-now-class > .child {
    padding: 8px 0;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    cursor: pointer;
  }
  .shop-now-class > .child:hover {
    color: var(--seondary-color);
  }
  .media-nav-icon {
    display: none;
  }
  .nav-links:hover::after {
    display: none;
  }
  .nav-links,
  .shop-now-class {
    padding: 5px 0;
  }

  /* BANNER */
  .card {
    width: 650px;
    border-radius: 18px;
  }
  .title-one {
    font-size: 56px;
    padding: 50px 30px 0;
  }
  .card > p {
    font-size: 14px;
    padding: 15px 50px 30px;
  }

  .exp-btn > a {
    font-size: 16px;
    padding: 16px 28px 16px 24px;
  }
  .exp-btn > a > img {
    width: 38px;
    margin-left: 12px;
  }

  /* ABOUT SECTION */
  /* .about-section .col-50 {
    width: 100%;
  }
  .para-about-one,
  .para-about-two,
  .about-vector-one {
    text-align: center;
  }
  .lorem-about-para {
    margin: 0 auto 10px;
    text-align: center;
  }
  .col-50-part-one {
    padding-bottom: 20px;
  }
  .about-img-one > img {
    width: 325px;
  }
  .about-img-two > img {
    width: 203px;
  }
  .col-25-img > img {
    width: 61px;
  }
  h3 {
    font-size: 14px;
  }
  .col-25-img > p {
    font-size: 10px;
  } */

  /* OUR MISSION SECTION */
  /* .col-50 {
    margin-top: 70px;
  }
  h4 {
    font-size: 35px;
  }
  .om-text {
    font-size: 14px;
  } */
}
@media screen and (max-width: 1200px) {
  /* BANNER */
  .card {
    width: 550px;
    border-radius: 16px;
  }
  .title-one {
    font-size: 48px;
    padding: 45px 25px 0;
  }
  .card > p {
    font-size: 13px;
    padding: 12px 40px 25px;
  }
  .exp-btn > a {
    font-size: 15px;
    padding: 14px 24px 14px 20px;
  }
  .exp-btn > a > img {
    width: 34px;
    margin-left: 10px;
  }
  .about-offer {
    font-size: 35px;
  }
  .col-25 {
    width: 33.33%;
  }
  #fourth-vector-img {
    margin: 0 auto;
  }

  /* FOOTER */
  .footer-first-para {
    margin: 0 auto;
    font-size: 8px;
  }
  .footer-section .row {
    justify-content: center;
    align-items: flex-start;
  }
  .footer-section .col-33,
  .footer-section .col-25,
  .footer-section .col-20 {
    width: 50% !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 26px;
  }
  .footer-section .underline-25::after,
  .footer-section .underline-20::after {
    margin: 10px auto 18px;
  }
  .footer-section .col-33 p + p,
  .footer-section .col-25 p + p,
  .footer-section .col-20 p + p {
    margin-top: 5px;
  }
  .footer-section .footer-email {
    margin: 14px 0 10px;
  }
  .footer-section .footer-email input {
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  .footer-section .btn-subscribe {
    margin: 10px auto 0;
    display: inline-block;
  }
  .footer-section .col-20:last-child a {
    margin-right: 20px;
  }
  .footer-section .col-20:last-child a:last-child {
    margin-right: 0;
  }

  .footer-bottom {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 28px;
    padding: 20px 0;
    text-align: center;
  }
  .footer-bottom p {
    margin: 0;
    padding: 0 12px;
    line-height: 1.8;
  }
}

@media screen and (max-width: 992px) {
  /* BANNER */
  .card {
    width: 480px;
    border-radius: 14px;
  }

  .title-one {
    font-size: 40px;
    padding: 40px 20px 0;
  }

  .card > p {
    font-size: 12px;
    padding: 10px 30px 20px;
  }

  .exp-btn > a {
    font-size: 14px;
    padding: 12px 22px 12px 18px;
  }

  .exp-btn > a > img {
    width: 30px;
    margin-left: 8px;
  }
  .exp-btn {
    padding: 0px 0 55px;
  }

  /* ABOUT SECTION */
  .about-section {
    padding: 140px 120px;
  }
  .lorem-about-para {
    width: 100%;
    max-width: 420px;
    font-size: 12px;
  }
  .about-img-one > img {
    width: 225px;
  }
  .about-img-two > img {
    width: 103px;
  }
  .col-25 {
    width: 50%;
  }

  /* OUR MISSION SECTION */
  .our-mission-img-one {
    max-width: 530px;
  }

  .our-mission-img-two {
    max-width: 250px;
  }
}

@media screen and (max-width: 768px) {
  /* HEADER */
  .nav-logo {
    width: 172px;
  }
  /* BANNER */
  .card {
    width: 380px;
    border-radius: 12px;
  }

  .title-one {
    font-size: 32px;
    padding: 35px 15px 0;
  }

  .card > p {
    font-size: 11px;
    padding: 8px 20px 18px;
  }

  .exp-btn > a {
    font-size: 13px;
    padding: 10px 20px 10px 16px;
  }

  .exp-btn > a > img {
    width: 28px;
    margin-left: 6px;
  }
  .exp-btn {
    padding: 0px 0 45px;
  }
  /* ABOUT SECTION */
  .about-section {
    padding: 140px 120px;
  }
  .lorem-about-para {
    width: 100%;
    max-width: 300px;
    font-size: 10px;
  }
  .about-img-one > img {
    width: 185px;
  }
  .about-img-two > img {
    width: 83px;
  }
  .about-offer {
    font-size: 25px;
  }
  .col-25-img > h3 {
    font-size: 10px;
  }
  .col-25-img > p {
    font-size: 9px;
  }

  /* OUR MISSION SECTION */
  .col-60 {
    width: 100%;
  }

  .our-mission-img-one {
    max-width: 389px;
  }

  .our-mission-img-two {
    max-width: 197px;
    right: -12%;
    bottom: -12%;
  }
  h4 {
    font-size: 25px;
  }
  .om-text {
    font-size: 12px;
    width: 500px;
  }

  /* FOOTER */
  .footer-section .col-33,
  .footer-section .col-25,
  .footer-section .col-20 {
    width: 100% !important;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
  .footer-section .footer-email input {
    max-width: 100%;
  }
  .footer-section .col-33 p + p,
  .footer-section .col-25 p + p,
  .footer-section .col-20 p + p {
    margin-top: 5px;
  }
  .footer-section .col-20:last-child a {
    margin-right: 18px;
  }
  .footer-section .col-20:last-child a:last-child {
    margin-right: 0;
  }
  .footer-bottom {
    margin-top: 24px;
    padding: 18px 0;
  }
  .footer-bottom p {
    padding: 0 16px;
    font-size: 13.5px;
  }
  .footer-first-para{
  font-size: 8px;
}
}

@media screen and (max-width: 576px) {
  /* HEADER */
  nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .nav-logo {
    width: 132px;
    margin: 0 auto;
  }
  .navbar-toggler {
    order: 2;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-left: 0 !important;
    width: 100%;
  }
  .label-div-ul {
    display: block !important;
  }
  .label-div-ul > ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
  }
  .navbar-toggler .fa-bars {
    display: inline-block;
    font-size: 18px;
    line-height: 1;
  }
  .navbar-collapsed {
    order: 3;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    z-index: auto;
    width: 100%;
    margin-top: 6px;
  }
  #navbar-toggler:checked ~ .navbar-collapsed {
    display: block;
  }
  .navbar-collapsed > ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .media-nav-icon {
    display: none;
  }
  .nav-links,
  .nav-links-icon,
  .shop-now-class {
    padding: 6px 10px;
    font-size: 14px;
  }
  /* BANNER */
  .card {
    width: 300px;
    border-radius: 10px;
  }

  .title-one {
    font-size: 26px;
    padding: 30px 10px 0;
  }

  .card > p {
    font-size: 10px;
    padding: 6px 15px 16px;
  }

  .exp-btn > a {
    font-size: 12px;
    padding: 8px 18px 8px 14px;
  }

  .exp-btn > a > img {
    width: 24px;
    margin-left: 5px;
  }
  .exp-btn {
    padding: 0px 0 35px;
  }
  .nav-saperator {
    display: block;
  }
  /* ABOUT SECTION */
  .about-section {
    padding: 140px 60px;
  }
  .lorem-about-para {
    width: 100%;
    max-width: 200px;
    font-size: 8px;
  }
  .about-img-one > img {
    width: 125px;
  }
  .about-img-two > img {
    width: 73px;
    margin: 0 10px;
  }
  .para-about-one {
    font-size: 10px;
  }
  .para-about-two {
    font-size: 20px;
    margin-bottom: -5px;
  }
  .about-vector-one > img {
    width: 44px;
    margin-top: 5px;
  }
  .about-why {
    font-size: 10px;
  }
  .about-offer {
    font-size: 15px;
  }
  .col-25 {
    width: 100%;
  }

  /* OUR MISSION SECTION */
  .our-mission-img-one {
    max-width: 250px;
  }

  .our-mission-img-two {
    max-width: 115px;
    border-top: 5px solid var(--simple-bg-color);
    border-left: 5px solid var(--simple-bg-color);
    right: -10%;
    bottom: -8%;
  }

  .om-text {
    margin-top: 22px;
    font-size: 11px;
    width: 300px;
  }

  /* FOOTER */
  .dash {
    display: none;
  }
  .all-rights {
    display: flex;
    justify-content: center;
    align-items: center;
  }
.footer-first-para{
  font-size: 8px;
}
}
