@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");
@import url("https://fonts.googleapis.com/css2?family=Gothic+A1&display=swap");
body {
  font-family: "Poppins", sans-serif;
}
:root {
  --text-white: #fff;
  --text-blur-grey: #5e5e5e;
  --primary-color: #95a986;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul,
h1,
h2,
h3,
p {
  list-style-type: none;
  margin-bottom: 0;
  padding: 0;
}

a {
  display: inline-block;
  text-decoration: none;
}

.container {
  max-width: 1484px !important;
}

.section-padding {
  padding: 100px 0;
}
.title1 {
  font-family: "Amiri", serif;
  font-size: 68px;
  font-weight: 700;
  text-transform: capitalize;
}
.title2 {
  font-family: "Amiri", serif;
  text-transform: uppercase;
  font-size: 45px;
}
.title2-sub {
  font-weight: 500;
  color: var(--primary-color);
  letter-spacing: 3px;
}
.title3 {
  text-transform: uppercase;
  font-weight: 700;
  font-size: 24px;
  font-family: "Amiri", serif;
}
.desc {
  color: var(--text-blur-grey);
}
.primary-btn {
  font-size: 18px;
  padding: 29px 39px;
  color: black;
  background-color: var(--primary-color);
  border-radius: 60px;
}

.primary-btn:hover {
  transform: scale(1.1);
  background-color: var(--text-white);
  outline: 1px solid black;
  transition: 2s ease-out;
}
.primary-btn:hover > svg {
  transition: 2s ease-out;
  transform: translatex(15px);
}
.product-img:hover {
  transition: 0.4s linear;
  transform: translateY(-10px);
}
/* navbar code */
header {
  position: absolute;
  left: 0;
  right: 0;
}
.header-top {
  background-color: black;
  color: var(--text-white);
  text-align: center;
  font-size: 14px;
  padding: 4.5px 0;
}

.wave-text span {
  display: inline-block;
  text-shadow: 2px 2px 4px rgb(255, 0, 0);
  animation: wave 2s ease-in-out infinite;
}

.wave-text span:nth-child(1) {
  animation-delay: 0s;
}
.wave-text span:nth-child(2) {
  animation-delay: 0.2s;
}
.wave-text span:nth-child(3) {
  animation-delay: 0.4s;
}
.wave-text span:nth-child(4) {
  animation-delay: 0.6s;
}

@keyframes wave {
  0%,
  100% {
    transform: translateY(2px);
  }
  50% {
    transform: translateY(-5px);
  }
}

.header-bottom {
  padding: 15px 0;
}
.nav-logo {
  max-width: 312px;
}
.nav-logo > a > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.navbar-container {
  max-width: 1744px;
}
/* .nav-collapse {
  flex-direction: row;
} */
.nav-collapse .navbar,
.nav-collapse ul li > a {
  padding: 0 !important;
}

.nav-item {
  margin-left: 56px;
}
.nav-link {
  letter-spacing: 2px;
  color: var(--text-white) !important;
  position: relative;
}
.nav-collapse ul li:first-child {
  margin: 0;
}
.nav-icons {
  padding: 10px 22px 10px 0;
}
.nav-icons .search-icon {
  margin: 0 22px;
  /* margin-right: 22px; */
}
.nav-icons .search-icon:hover svg path {
  fill: black;
}
.nav-icons .user-profile:hover svg path {
  stroke: black;
  fill: var(--text-white);
}
.cart-section svg:hover path {
  fill: black;
}
.navbar-toggler {
  border-color: var(--text-white);
}
.nav-collapse .cart-section {
  padding: 10px 0 10px 22px;
}
.nav-collapse .cart-section a {
  letter-spacing: 2px;
}
.nav-collapse .cart-section span {
  margin-right: 6px;
}

.nav-collapse ul li:nth-child(2) a span {
  margin-left: 6px;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  border-radius: 100px;
  width: 0;
  height: 0;
  background: var(--text-white);
  transition: 0.4s ease-in;
}
.nav-item > a:hover::after,
.nav-item > a.active::after {
  height: 6px;
  width: 6px;
}
.cart-section > .modal-btn {
  cursor: pointer;
}
.cart-modal {
  top: 70.8px;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 !important;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(20px);
}
.modal-content {
  background: transparent;
  color: var(--text-white);
}
.modal-dialog {
  max-width: 100%;
}
.nav-collapse .dropdown-menu {
  padding: 10px;
  outline: 1px solid var(--text-white);
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(40px);
  text-align: center;
}
.dropdown-menu li a {
  color: var(--text-white) !important;
  letter-spacing: 2px;
  margin-bottom: 10px;
}
.dropdown-menu .dropdown-item:hover {
  background-color: transparent;
}
.nav-collapse .nav-item:nth-child(2):hover .dropdown-menu {
  display: block;
}
.navbar-toggler,
.menu {
  display: none;
}
/* footer section code */
.footer-top {
  padding-bottom: 58px;
}
.footer-sec .desc {
  text-transform: capitalize;
  margin-bottom: 10px;
}
.footer-sec form > input[type="email"] {
  font-size: 16px;
  border-radius: 60px;
  border: 1px solid rgba(134, 134, 134, 0.5);
  padding: 15px 23px;
  margin: 20px 0 13px;
}
.footer-sec form > input[type="email"]:focus {
  outline: 0;
}
.footer-sec input::placeholder {
  font-weight: 300;
}
.footer-sec form input[type="submit"] {
  padding: 21px 45px;
  font-size: 18px;
}
.footer-hdr {
  margin-bottom: 40px;
  position: relative;
}
.footer-hdr::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 60px;
  background-color: #0d0d0d;
  left: 0;
  bottom: -19px;
}
.footer-sec .row > div:first-child .desc {
  max-width: 373px;
}
.footer-sec .social-links {
  margin-right: 36px;
  position: relative;
}
.social-links::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 100px;
  left: -15px;
  bottom: -35px;
}
.social-links:first-child::after {
  background-color: #1877f2;
}
.social-links:nth-child(2)::after {
  background-color: #004182;
  left: -12px;
}
.social-links:last-child::after {
  background: linear-gradient(
    45deg,
    #f09433 0%,
    #e6683c 25%,
    #dc2743 50%,
    #cc2366 75%,
    #bc1888 100%
  );
  left: -12px;
}
.social-links:hover::after {
  width: 40px;
  height: 40px;
  transform: translatey(-24px);
  transition: 0.2s linear;
}
.social-links:hover svg path {
  fill: var(--text-white);
  transition: 0.1s linear;
}
.footer-links > a {
  position: relative;
}
.footer-links > a::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--text-blur-grey);
  width: 0%;
  left: 0;
  bottom: 0;
  transition: 0.5s linear;
}
.footer-links > a:hover::after {
  width: 100%;
}
.footer-bottom {
  font-size: 18px;
  padding-top: 21px;
  color: #5e5e5e;
}
.footer-bottom a {
  color: #5e5e5e;
}
.footer-bottom a:hover {
  color: black;
  text-shadow: 1px 1px 1px rgb(51, 49, 49);
}

/* ------------------------
      media query section 
 ------------------------------*/

@media screen and (max-width: 1400px) {
  /* navbar code */
  .menu {
    margin-left: auto;
    display: flex;
    align-items: center;
    padding: 5px 15px;
    position: relative;
    z-index: 99;
  }
  .menu span {
    height: 2px;
    background-color: white;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.5s linear;
  }
  .menu::after,
  .menu::before {
    content: "";
    height: 2px;
    background-color: white;
    display: inline-block;
    position: absolute;
    left: 0;
    right: 0;
    transition: 0.5s linear;
  }
  .menu::before {
    top: -5px;
  }
  .menu::after {
    bottom: -5px;
  }
  .menu.show span {
    transform: translateX(-30px);
    opacity: 0;
  }
  .menu.show::after {
    transform: rotate(45deg) translateX(-12px);
  }
  .menu.show::before {
    transform: rotate(-45deg) translateX(-13px);
  }
  .nav-collapse {
    flex-direction: column;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    width: 60%;
    right: -100%;
    background-color: rgba(0, 0, 0, 0.5);
    text-align: center;
    padding-top: 70px;
    transition: 0.5s linear;
    backdrop-filter: blur(20px);
  }
  .nav-item {
    margin: 0 0 20px !important;
  }
  .close-btn {
    position: absolute;
    right: 30px;
    top: 80px;
    border: none;
    background: none;
    padding: 0 15px;
  }
  .close-btn > span {
    display: inline-block;
    height: 2px;
    width: 100%;
    position: absolute;
    background: white;
    left: 0;
    top: 4px;
    right: 0;
    transform: rotate(45deg) translate(-5px);
  }
  .close-btn::after {
    content: "";
    height: 2px;
    background: white;
    position: absolute;
    left: 0;
    right: 0;
    top: -4px;
    transform: rotate(-45deg) translate(-5px);
  }
  .nav-icons {
    padding: 0;
    margin: 0 auto 20px;
    border: 0 !important;
  }
  .cart-section {
    padding: 0 !important;
  }

  /* footer-section code */
  .footer-top .row > div:first-child .desc {
    margin: 0 auto;
  }
  .footer-top .row > div:last-child ul {
    justify-content: center;
  }
  .footer-top .row > div:last-child ul .social-links {
    margin-right: 15px;
  }
  .footer-hdr {
    display: inline-block;
  }
}
@media screen and (max-width: 1200px) {
  /* footer-section code */
  .footer-top .row > div:first-child .desc {
    margin: 0 auto;
  }
  .footer-top .row > div:last-child ul {
    justify-content: center;
  }
  .footer-top .row > div:last-child ul .social-links {
    margin-right: 15px;
  }
  .footer-hdr {
    display: inline-block;
  }
}
@media screen and (max-width: 576px) {
  .title1 {
    font-size: 25px;
  }
  .desc {
    font-size: 13px;
  }
  .title2 {
    font-size: 24px;
  }
  .title2-sub {
    font-size: 12px;
  }
  .title3 {
    font-size: 20px;
  }
  .primary-btn {
    font-size: 13px;
    padding: 10px !important;
  }
  .section-padding {
    padding: 50px 0;
  }
  /* navbar code */
  .nav-logo > a {
    width: 190px;
  }
  .nav-collapse {
    font-size: 13px;
    width: 90% !important;
  }
  /* footer section code */
  .footer-sec form input[type="email"] {
    padding: 5px;
  }
  .footer-sec form input[type="submit"] {
    font-size: 13px;
    padding: 10px 40px !important;
  }
  .ftr-btm-cntn {
    font-size: 13px;
  }
}
@media screen and (max-width: 320px) {
  .primary-btn {
    font-size: 10px;
  }
  /* navbar code */
  .nav-logo > a {
    width: 140px;
  }
}
