@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");
@import url("https://fonts.googleapis.com/css2?family=Amiri:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary-color: #ffffff;
  --heading-color: #000;
  --banner-color: #00000033;
  --tertiary-color: #95a986;
  --secondary-color: #f6f6f6;
  --icon-border: #95a98633;
  --secondary-font-color: #5e5e5e;
  --tertiary-font-color: #707070;
  --input-border: #868686;
  --footer-border: #0000001a;
}
body {
  font-family: "Poppins", sans-serif;
}
body,
html {
  overflow-x: hidden;
}
h1,
h2,
h3 {
  font-family: "Amiri", serif;
}
a {
  display: inline-block;
  text-decoration: none;
}
figure {
  margin-bottom: 0 !important;
}
.container {
  max-width: 1460px !important;
}
.col33 {
  width: 33.33%;
  padding: 0 15px;
}
.col22 {
  width: 22.22%;
  padding: 0 15px;
}
.cursor {
  mix-blend-mode: difference;
  height: 18px;
  width: 18px;
  cursor: none;
  border-radius: 50%;
  background: #fff;
  filter: blur(2px);
  transform: rotate(325deg);
  position: fixed;
  z-index: 999;
}
.btn {
  padding: 29px 38px;
  border-radius: 60px;
}
.primary-btn {
  background-color: var(--tertiary-color);
  color: var(--heading-color);
  font-size: 18px;
  letter-spacing: 4.31px;
}
.primary-btn:hover {
  outline: 2px solid var(--tertiary-color);
  color: var(--tertiary-color);
}
.title1 {
  font-size: 68px;
  line-height: 89px;
  font-weight: bold;
  text-transform: capitalize;
}
.title2 {
  text-transform: uppercase;
  font-size: 45px;
  line-height: 60px;
  font-weight: 400;
  color: var(--heading-color);
}
.title2 > span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  letter-spacing: 3.2px;
  font-size: 16px;
  color: var(--tertiary-color);
}
.title3 {
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
/* Navbar */
.hdr-sec {
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
}
.nav-container {
  max-width: 1720px !important;
}
.navbar-brand {
  width: 312px;
}
.navbar-collapse a {
  color: var(--primary-color);
}
.navbar-brand > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offcanvas {
  flex-direction: row;
}
.nav-item {
  margin-right: 56px;
}
.nav-link {
  padding: 0 !important;
  letter-spacing: 1.28px;
  color: var(--primary-color);
  position: relative;
}
.nav-link::after {
  content: "";
  width: 6px;
  height: 6px;
  display: none;
  border-radius: 50%;
  background-color: var(--primary-color);
  position: absolute;
  top: 130%;
  right: 50%;
}
.active {
  color: var(--secondary-color) !important;
}
.active::after {
  display: block;
}
.nav-link:hover::after {
  display: block;
}
.dropdown-toggle::after {
  border: none !important;
}
.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color) !important;
}
.navbar-nav > .nav-item:last-child {
  margin-right: 78px;
}
.dropdown-toggle::after {
  display: none;
}
.nav-icons,
.icons-part,
.cart-part {
  display: flex;
  align-items: center;
}
.icons-part {
  border-right: 1px solid var(--primary-color);
  /* padding: 13px 0 13px 22px; */
}
.search-icon > button {
  width: 16px;
  background: none;
  border: none;
}
.search-icon > button > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.user-icon > a {
  width: 24px;
  margin: 0 22px;
}
.user-icon > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-part {
  display: flex;
  align-items: center;
}
.bag-icon > button {
  width: 19px;
  margin-inline: 22px 6px;
  background: none;
  border: none;
}
.bag-icon > button > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.cart-part > p {
  color: var(--primary-color);
  display: flex;
  align-items: center;
  margin-bottom: 0 !important;
}
.cart-part > p > span {
  font-weight: bold;
  margin-right: 5px;
}
/* Banner Section */
.banner-sec {
  padding: 289px 0 213px;
  /* height: 100vh; */
  display: flex;
  background: var(--banner-color) url(../Assets/Header-banner-bg.png) no-repeat
    center/cover;
  background-blend-mode: multiply;
  align-items: center;
  background-attachment: fixed;
}
.banner-card {
  max-width: 793px;
  background-color: var(--primary-color);
  border-radius: 20px;
  padding: 45px 60px 75px 60px;
  margin: 0 auto;
}
.banner-card > .banner-cntn > p {
  color: var(--secondary-font-color);
  line-height: 25px;
  margin-block: 0 30px !important;
}
.banner-btn {
  text-align: center;
}
.banner-btn > a > img {
  width: 46px;
  margin-left: 16px;
}
/* About Section */
.about-sec {
  padding: 111px 0;
}
.about-row {
  align-items: center;
}

.about-rectangle {
  width: 65px;
  margin-bottom: 21px;
}
.about-rectangle > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.about-cntn > p {
  line-height: 25px;
  text-transform: capitalize;
  color: var(--secondary-font-color);
  margin-bottom: 0 !important;
}
.about-cntn > .mdl-p {
  margin-block: 14px;
}
.about-img {
  max-width: 752px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.about-img1 {
  max-width: 425px;
  margin-right: 24px;
}
.about-img1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-img2 {
  max-width: 303px;
}
.about-img2 > img {
  width: 100%;
  height: 100%;
  border-top-right-radius: 30px;
  object-fit: cover;
}
/* Adv Section */
.adv-sec {
  padding: 40px 0 133px 0;
}
.adv-header > .title2 {
  text-align: center;
}
.adv-rectangle {
  width: 105px;
  margin: 0 auto;
}
.adv-rectangle > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.features-sec {
  align-items: center;
}
.feature {
  text-align: center;
  margin-top: 52px;
}

.icon-bg {
  width: 111px;
  height: 111px;
  border-radius: 50%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--tertiary-color);
  transition: all 0.3s linear;
  cursor: pointer;
  outline: 12px solid var(--icon-border);
}
.icon-bg:hover {
  transform: translateY(-5px) scale(1.05);
}
.icon-title {
  margin-top: 30px;
}
.icon1 {
  max-width: 41.35px;
}
.icon1 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon2 {
  max-width: 50px;
}
.icon2 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon3 {
  max-width: 43.71px;
}
.icon3 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.icon4 {
  max-width: 50.59px;
}
.icon4 > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.feature > p {
  color: var(--tertiary-font-color);
  text-transform: capitalize;
}
/* Mission Section */
.mission-sec {
  padding: 100px 0;
  background-color: var(--secondary-color);
}
.mission-row {
  align-items: center;
}
.mission-img {
  max-width: 641px;
  position: relative;
}
.mission-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission-subimg {
  max-width: 326px;
  position: absolute;
  right: -97px;
  bottom: -56.34px;
  background-color: var(--primary-color);
  padding: 8px 0 0 7px;
  border-radius: 35px;
}
.mission-subimg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mission-cntn > p {
  text-transform: capitalize;
  line-height: 25px;
  color: var(--secondary-font-color);
}
.mission-line1 {
  margin-block: 25px 30px;
}
/* Footer Section */
.ftr-sec {
  padding-block: 64px 77px;
  border-bottom: 1px solid var(--footer-border);
}
.ftr-hdr {
  font-family: "Amiri", serif;
  font-size: 24px;
  font-weight: bold;
  text-transform: uppercase;
}
.ftr-left {
  max-width: 439px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.underline {
  position: relative;
}
.underline::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: var(--heading-color);
}
.ftr-left > p {
  max-width: 373px;
  text-transform: capitalize;
  margin: 21px 0;
  color: var(--secondary-font-color);
}
#getemail {
  padding: 15px 23px;
  width: 100%;
  outline: 1px solid var(--input-border);
  border: none;
  border-radius: 60px;
}
.ftr-button {
  margin-top: 13px;
}
.ftr-btn {
  padding: 21px 45px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ftr-list1 > ul,
.ftr-list2 > ul {
  margin-top: 19px;
}
.ftr-list1 {
  max-width: 152px;
  margin: 0 auto;
}
.ftr-list2 {
  max-width: 181px;
  /* margin: 0 auto; */
}
.footer-link {
  color: var(--secondary-font-color);
  line-height: 40px;
  transition: all 0.2s linear;
}
.footer-link:hover {
  color: var(--tertiary-color);
  transform: translateY(-2px);
}
.ftr-right {
  max-width: 168px;
  margin: 0 auto;
}

.scl-logo {
  display: flex;
  margin-top: 25px;
}
.scl-link > img:hover {
  transform: scale(1.1) translateY(-3px);
}
.fb-logo {
  width: 9.62px;
}
.fb-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.lin-logo {
  width: 17.5px;
  margin: 0 36px;
}
.lin-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.insta-logo {
  width: 18px;
}
.insta-logo > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ftr-btm {
  margin-top: 58px;
  padding-top: 21px;
  border-top: 1px solid var(--footer-border);
  text-align: center;
}
.ftr-btm > a {
  font-size: 18px;
  color: var(--secondary-font-color);
}
.ftr-btm > a:hover {
  color: var(--tertiary-color);
}
@media screen and (max-width: 1400px) {
  /* Header-section */
  .offcanvas {
    flex-direction: column;
  }
  .navbar-nav {
    margin: 0 auto !important;
  }
  .nav-collapsed-toggler > ul > li {
    margin: 10px 0;
  }
  .nav-item {
    margin-right: 0;
    margin-bottom: 30px;
  }

  .nav-link:hover::after,
  .active::after {
    display: none;
  }
  .nav-icons {
    width: 127px;
    margin: 0 auto;
  }

  .nav-icons {
    flex-direction: column;
    align-items: start;
  }

  .icons-part {
    border: none;
  }
  .bag-icon > button {
    margin: 0 10px 8px 0;
  }
  .search-icon > button {
    margin-bottom: 20px;
  }
  .user-icon > a {
    margin: 0 0px 20px 20px;
  }

  /* Mission Section */

  .mission-img {
    margin-top: 40px;
    max-width: 555px;
  }
  .mission-subimg {
    max-width: 250px;
    right: -32px;
  }
}
@media screen and (max-width: 1200px) {
  .title3 {
    font-size: 18px;
  }
  /* About Section */
  .about-rectangle {
    width: 65px;
    margin-bottom: 15px;
  }
  .about-cntn > p {
    font-size: 14px;
  }
  .about-sec {
    padding: 85px 0;
  }
  /* Adv Section */
  .icon-bg {
    width: 80px;
    height: 80px;
  }
  .feature > p {
    font-size: 14px;
  }
  /* Mission Section */
  .mission-sec {
    padding: 70px 0;
  }
  .mission-cntn > p {
    font-size: 14px;
  }
  .mission-line1 {
    margin-block: 14px;
  }
  .mission-img {
    margin-top: 0px;
    max-width: 490px;
  }
  .mission-subimg {
    max-width: 215px;
    right: -32px;
  }
}

@media screen and (max-width: 992px) {
  .col33,
  .col22 {
    width: 50%;
  }
  .title1 {
    font-size: 55px;
    line-height: 60px;
  }
  .title2 {
    font-size: 35px;
    line-height: 45px;
  }
  .btn {
    padding: 18px 21px;
    border-radius: 34px;
  }
  .primary-btn {
    font-size: 14px;
    letter-spacing: 3.4px;
  }
  /* Header Section */
  .cart-part > p {
    font-size: 14px;
  }
  /* Banner Section */

  .banner-card {
    padding: 30px;
  }
  .banner-card > p {
    font-size: 14px;
    line-height: 20px;
    margin-block: 20px;
  }
  /* About Section */
  .about-row {
    flex-direction: column-reverse;
  }

  .about-cntn > .mdl-p {
    margin-block: 12px;
  }
  .about-img {
    margin-bottom: 20px;
  }
  /* Mission Section */
  .mission-img {
    max-width: 500px;
    margin: 0 auto;
  }
  .mission-subimg {
    max-width: 234px;
    right: -65px;
    bottom: -34.34px;
  }
  .mission-cntn {
    margin-top: 40px;
  }
  .mission-cntn > p {
    font-size: 14px;
  }
  .mission-line1 {
    margin-block: 0px 12px;
  }
  /* Footer Section */
  .ftr-left,
  .ftr-list1,
  .ftr-list2,
  .ftr-right {
    width: 100%;
  }

  .ftr-list2,
  .ftr-right {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  /* Header Section */

  .fa-bars {
    margin-left: 20px;
  }

  /* Banner Section */
  .banner-btn > a > img {
    width: 35px;
    margin-left: 7px;
  }
  /* Mission Section */
  .mission-img {
    max-width: 310px;
  }
  .mission-subimg {
    max-width: 120px;
    right: -8px;
    border-radius: 15px;
  }
}
@media screen and (max-width: 576px) {
  .col33,
  .col22 {
    width: 100%;
  }
  .title1 {
    line-height: 45px;
    font-size: 40px;
  }
  .title2 {
    font-size: 26px;
    line-height: 35px;
  }

  /* Header Section */

  .nav-logo > a {
    width: 215px;
  }
  .nav-logo > a > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .navbar-toggler-icon {
    width: 1em;
    height: 1em;
  }
  .cart-part > p {
    font-size: 13px;
  }

  /* Banner Section */
  .banner-sec {
    min-height: 100vh;
    padding: 140px 0 120px;
  }
  .banner-card {
    padding: 20px;
  }
  .banner-card > .banner-cntn > p {
    line-height: 20px;
    font-size: 12px;
    margin-block: 10px 20px;
  }
  /* About Section */
  .about-sec {
    padding: 50px 0 30px;
  }
  .about-cntn > p {
    font-size: 12px;
    line-height: 19px;
  }
  .about-rectangle {
    margin-bottom: 10px;
  }
  .about-img {
    margin-bottom: 10px;
  }

  /* Adv Section */
  .adv-sec {
    padding: 26px 0 56px;
  }

  .feature {
    margin-top: 30px;
  }
  .icon-title {
    margin-top: 20px;
  }
  .feature > p {
    font-size: 12px;
  }
  /* Mission Section */
  .mission-sec {
    padding: 40px 0;
  }
  .mission-subimg {
    max-width: 141px;
    right: -8px;
    border-radius: 15px;
  }
  .mission-cntn > p {
    font-size: 12px;
    line-height: 21px;
  }
  /* Footer Section */
  .ftr-hdr {
    font-size: 18px;
  }
  .ftr-left > .underline::after {
    left: 60px;
  }
  .ftr-left > p {
    font-size: 14px;
    margin: 20px auto;
  }
  .footer-link {
    font-size: 14px;
    line-height: 30px;
  }
  .ftr-list1 {
    margin-top: 30px;
  }
  .ftr-list2 {
    margin: 30px auto 0;
  }
  .ftr-list1 > ul,
  .ftr-list2 > ul {
    margin-top: 10px;
  }
  .ftr-list1 > .underline::after,
  .ftr-list2 > .underline::after,
  .ftr-right > .underline::after {
    left: 55px;
  }
  .ftr-btm > a {
    font-size: 14px;
  }
  .scl-logo {
    max-width: 120px;
    margin: 20px auto;
  }
}
