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

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
}
:root {
  --font-color: #000000;
  --secondary-font-color: #9f9f9f;
  --hdr-banner-bg: #fbebb5;
  --new-arrival-bg: #fff9e5;
  --footer-border: #d9d9d9;
  --table-sec-bg: #faf4f4;
  --btn-shadow: #0000001a;
}
ul {
  list-style-type: none;
}

a {
  text-decoration: none;
  display: inline-block;
}
.container {
  max-width: 1270px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.col100 {
  width: 100%;
  padding: 0 15px;
}
.col66 {
  width: 66%;
  padding: 0 15px;
}
.col60 {
  width: 60%;
  padding: 0 15px;
}
.col40 {
  width: 40%;
  padding: 0 15px;
}
.col50 {
  width: 50%;
  padding: 0 15px;
}
.col33 {
  width: 33%;
  padding: 0 15px;
}
.col25 {
  width: 25%;
  padding: 0 15px;
}
.col16 {
  width: 16%;
  padding: 0 15px;
}
.title1 {
  font-size: 64px;
  font-weight: 500;
  color: var(--font-color);
}
.title2 {
  font-size: 36px;
  font-weight: 500;
  color: var(--font-color);
}
.title3 {
  font-size: 48px;
  font-weight: bold;
  color: var(--font-color);
}
.title3 > span {
  font-size: 24px;
  font-weight: 500;
}
.title4 {
  font-size: 60px;
  font-weight: bold;
  color: var(--font-color);
}
.btn {
  padding: 17px 74px;
}
.primary-btn {
  background-color: transparent;
  color: var(--font-color);
  border: 1px solid var(--font-color);
  padding: 12px 30px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.3s linear, border-color 0.3s linear;
  z-index: 1;
}

.primary-btn::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: -100%;
  top: 0;
  background-color: var(--font-color);
  transition: all 0.3s linear;
  z-index: -1;
}

.primary-btn:hover::after {
  left: 0;
}

.primary-btn:hover {
  color: #fff;
  border: 1px solid #fff;
}

.secondary-btn {
  padding-inline: 82px;
  border-radius: 50px;
  background-color: var(--table-sec-bg);
  box-shadow: 0px 20px 20px 0px var(--btn-shadow);
  color: var(--font-color);
  margin-top: 18px;
}
/* Header Section */

.hdr-sec {
  padding: 20px 0;
  position: absolute;
  top: 0;
  width: 100%;
}

nav,
.nav-collapsed > ul,
.nav-icons > ul {
  display: flex;
  align-items: center;
}
.nav-toggler {
  display: none;
}
.nav-logo > a {
  width: 200px;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nav-collapsed {
  margin: 0 auto;
}
.nav-links {
  font-weight: 500;
  color: var(--font-color);
  margin-right: 75px;
  position: relative;
}
.active::after {
  opacity: 1 !important;
}
.nav-links::after {
  content: "";
  height: 6px;
  width: 6px;
  opacity: 0;
  border-radius: 50%;
  background: var(--font-color);
  position: absolute;
  top: 100%;
  transition: all 0.4s linear;
  left: 50%;
}
.nav-links:hover::after {
  opacity: 1;
}
.nav-contact {
  margin-right: 0;
}

.nav-icons button {
  background: none;
  border: none;
  cursor: pointer;
}
.icon-link {
  width: 24px;
  margin-right: 45px;
}
.icon-link > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Banner Section */

.banner-sec {
  padding: 100px 0 50px;
  /* min-height: 100vh; */
  background-color: var(--hdr-banner-bg);
  display: flex;
  align-items: center;
}
.banner-row {
  align-items: center;
}
.banner-cntn {
  max-width: 440px;
}
.banner-cntn > a {
  font-size: 24px;
  font-weight: 500;
  color: var(--font-color);
  margin-top: 35px;
  position: relative;
}
.underline::after {
  content: "";
  width: 121px;
  height: 3px;
  display: none;
  background-color: var(--font-color);
  position: absolute;
  top: 140%;
}
.underline:hover::after {
  display: block;
}
.banner-img {
  max-width: 600px;
}
.banner-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Table Section */

.tbl-sec {
  padding: 30px 0;
  background-color: var(--table-sec-bg);
}

.table1 {
  max-width: 605px;
  position: relative;
}
.table1 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.table-cntn {
  position: absolute;
  top: 383px;
  left: 105px;
}
.table-cntn > a {
  margin-top: 23px;
  font-size: 24px;
  font-weight: 500;
  color: var(--font-color);
}
.table-cntn > a:hover {
  text-decoration: underline;
  text-underline-offset: 13px;
}
.table2 {
  max-width: 605px;
  position: relative;
}
.table2 > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Top Picks Section */
.top-section {
  padding: 30px 0;
}
.pick-row {
  align-items: center;
}
.top-header {
  text-align: center;
}
.top-header > p {
  color: var(--secondary-font-color);
  font-weight: 500;
}
.pick-card {
  max-width: 287px;
  margin: 0 auto;
}
.pick-img {
  max-width: 287px;
  height: 287px;
}
.pick-img > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.pick-card > p {
  margin-top: 14px;
  max-width: 212px;
  color: var(--font-color);
}
.pick-card > p > span {
  font-size: 24px;
  font-weight: 500;
}
.top-btm {
  margin-top: 69px;
  text-align: center;
}
.top-btm > a {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color);
}
.top-btm > a:hover {
  text-decoration: underline;
  text-underline-offset: 19px;
}
/* New Arrival Section */

.new-arrival-sec {
  padding: 30px 0;
  background-color: var(--new-arrival-bg);
}
.new-arrival-row {
  align-items: center;
}
.new-arrival-img {
  max-width: 800px;
}
.new-arrival-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.new-arrival-cntn > .title3 {
  margin-bottom: 33px;
}
.new-arrival-cntn {
  max-width: 331px;
  margin: 0 auto;
  text-align: center;
}
/* Blog Section */

.blog-sec {
  padding: 30px 0;
}

.blog-hdr {
  text-align: center;
  margin-bottom: 65px;
}
.blog-hdr > p {
  color: var(--secondary-font-color);
}
.blog-card {
  text-align: center;
  margin-bottom: 20px;
}
.blog-img {
  max-width: 393px;
  margin: 0 auto;
}
.blog-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.blog-card > p {
  font-size: 20px;
  color: var(--font-color);
  margin-block: 33px 10px;
}
.blog-card > a {
  font-size: 24px;
  font-weight: 500;
  color: var(--font-color);
}
.blog-card > a:hover {
  text-decoration: underline;
  text-underline-offset: 10px;
}
.blog-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.blog-icon > p {
  font-weight: 300;
}
.left-icon {
  margin-right: 10px;
}
.right-icon {
  margin-inline: 19px 10px;
}
.blog-btm {
  text-align: center;
  margin-top: 75px;
}
.blog-btm > a {
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color);
}
.blog-btm > a:hover {
  text-decoration: underline;
  text-underline-offset: 19px;
}

/* Insta Section */

.insta-sec {
  padding: 124px 0;
  background: url(../assets/Insta-sec-bg.png) no-repeat center/cover;
}
.insta-cntn {
  text-align: center;
}
.insta-cntn > p {
  font-size: 20px;
  color: var(--font-color);
}
/* Footer Section */

.ftr-sec {
  padding: 40px 0;
}
.ftr-top {
  padding: 50px 0;
  border-bottom: 1px solid var(--footer-border);
}
.ftr-row {
  align-items: center;
}
.ftr-left {
  max-width: 445px;
}
.ftr-left > p {
  color: var(--secondary-font-color);
}
.ftr-list-hdr {
  color: var(--secondary-font-color);
  margin-bottom: 55px;
}
.ftr-links {
  color: var(--font-color);
  margin-bottom: 46px;
  font-weight: 500;
}
.ftr-list1 {
  max-width: 68px;
  margin: 0 auto;
}
.ftr-list2 {
  max-width: 250px;
}
.ftr-input {
  max-width: 290px;
}
#email-input {
  font-family: "Poppins", sans-serif;
  padding-right: 27px;
  font-size: 14px;
  color: var(--secondary-font-color);
  text-transform: capitalize;
  border: none;
  border-bottom: 1px solid var(--font-color);
}
.ftr-btn {
  font-family: "Poppins", sans-serif;
  margin-left: 11px;
  font-size: 14px;
  font-weight: 500;
  color: var(--font-color);
  background: none;
  border: none;
  border-bottom: 1px solid var(--font-color);
}
.ftr-btm {
  padding: 35px 0;
}
.ftr-btm > a {
  color: var(--font-color);
}
@media screen and (max-width: 1200px) {
  /* Table Section */
  .table-cntn {
    position: absolute;
    top: 358px;
    left: 75px;
  }
  .table-cntn > a {
    margin-top: 20px;
  }
}

@media screen and (max-width: 992px) {
  .col50 {
    width: 100%;
  }
  /* Header Section*/

  .nav-toggler {
    display: block;
    margin-left: auto;
    font-size: 1.5rem;
  }
  .nav-collapsed {
    display: none;
  }
  .nav-icons {
    margin-left: auto;
  }
  /* Banner Section */
  .banner-sec {
    padding: 90px 0 0px;
  }
  .banner-cntn {
    max-width: 100%;
  }
  /* Table Section */
}
@media screen and (max-width: 768px) {
  .col66,
  .col33 {
    width: 100%;
  }
  .col25,
  .ftr-col33,
  .col16 {
    width: 50%;
  }
  .title2 {
    font-size: 20px;
  }
  /* Table Section */
  .table-cntn {
    position: absolute;
    top: 358px;
    left: 75px;
  }
  .table-cntn > a {
    margin-top: 12px;
    font-size: 14px;
  }
  /* Top Picks */
  .top-header > p {
    color: var(--secondary-font-color);
    font-weight: 500;
  }
  /* Footer Section */
  .ftr-list-hdr {
    margin-bottom: 30px;
  }
  .ftr-links {
    margin-bottom: 20px;
    font-weight: 500;
  }
}
@media screen and (max-width: 576px) {
  .col25,
  .ftr-col33,
  .col16 {
    width: 100%;
  }
  .title1 {
    font-size: 38px;
  }
  .title2 {
    font-size: 18px;
  }
  .title4 {
    font-size: 40px;
  }
  /* Header Section */
  nav {
    flex-direction: column;
    justify-content: center;
  }
  .nav-toggler {
    margin-left: 0;
  }
  .nav-icons {
    margin-left: 0;
  }
  .nav-icons ul li:last-child .icon-link {
    margin-right: 0 !important;
  }
  .icon-link {
    width: 24px;
    margin-right: 26px;
  }
  /* Banner Section */
  .banner-sec {
    padding-top: 200px;
  }
  .banner-cntn > a {
    font-size: 18px;

    margin-top: 6px;
  }

  /* Table Section */
  .table-cntn {
    top: 228px;
    left: 43px;
  }
  .table-cntn > a {
    font-size: 12px;
  }
  /* Top Section */
  .pick-card > p {
    margin-top: 0;
    font-size: 12px;
    max-width: 212px;
  }
  .pick-card > p > span {
    font-size: 18px;
  }
  /* Footer section */

  .ftr-list1,
  .ftr-left {
    margin: 0 auto 30px;
    text-align: center;
  }
  .ftr-list2 {
    margin: 0 auto 20px;
    text-align: center;
  }
  #email-input {
    padding-right: 0px;
    font-size: 12px;
  }
  .ftr-input {
    margin: 0 auto;
    text-align: center;
  }
}
