@import url("https://fonts.googleapis.com/css2?family=Quicksand:wght@300;400;500;600;700&display=swap");

body {
  margin: 0;
  font-family: "Quicksand", sans-serif;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

:focus-visible {
    outline: 1px solid var(--accent-color);
}

.align-center {
  display: flex;
  align-items: center;
  height: 100vh;
}

.bg-light {
  background: rgb(0 0 0 / 70%) !important;
  position: relative;
  z-index: 1;
}
.slider-heading {
  position: relative;
}
.bg-white {
  background-color: #ffffffd1 !important;
  position: relative;
}

p {
  font-size: 16px;
  font-family: "Montserrat", sans-serif;
  line-height: 1.7;
  color: #0b3642;
}

.scrollbar {
  height: 100vh;
  overflow-y: scroll;
  padding: 100px 0;
  overflow-x: hidden;
}

.force-overflow {
  min-height: 450px;
}

#wrapper {
  text-align: center;
  width: 500px;
  margin: auto;
}

/*
 *  STYLE 3
 */

#style-3::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(255, 255, 255, 0.3);
  background-color: #f5f5f5;
}

#style-3::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

#style-3::-webkit-scrollbar-thumb {
  background-color: #ffffff;
}

main {
  background-image: url(https://cdn.wallpaper.com/main/styles/fp_1540x944/s3/2019/07/trunk-house-1.jpg);
  background-size: cover;
}

header.header {
  position: absolute;
  z-index: 6;
  width: 100%;
  padding: 10px 0;
}

header.header .none {
  opacity: 0;
  z-index: -1;
  transition: all 0.2s ease-in-out;
}

header.header .menu-btn {
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 768px) {
  header.header .menu-btn {
    justify-content: end;
  }
}

header.header .menu-btn .toggle {
  cursor: pointer;
}

header.header .menu-btn .toggle:hover span:before,
header.header .menu-btn .toggle:hover span:after {
  left: 7px;
}

header.header .menu-btn .toggle span {   
    display: block;
    margin: 7px 0;
    position: relative; 
    background: var(--accent-color);  
    box-shadow: 1px 1px 2px 0px #0000004d;
}

header.header .menu-btn p {
  margin: 0;
  color: #fff;
  padding-left: 10px;
}

header.header .logo-header a.navbar-brand {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  float: right;
  padding: 0;
}

header.header .search-btnn {
  display: flex;
  align-items: center;
}

header.header .search-btnn p {
  margin: 0;
  color: #fff;
  padding-right: 10px;
}

header.header .search-btnn i {
  color: #fff;
}

header.header nav.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header.header nav.navbar > div {
  flex-basis: 100%;
}

header.header .active-menu {
  right: calc(100% - 100%) !important;
  left: calc(0% - 0%) !important;
  transition: all 0.4s ease-in-out;
}

header.header .navbar-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: calc(0% - 100%);
  right: 100%;
  transition: all 0.4s ease-in-out;
}

header.header .navbar-menu i.fa.fa-times {
  z-index: 10;
  color: #000;
  font-size: 24px;
  position: absolute;
  right: 50px;
  top: 24px;
  cursor: pointer;
  margin-top: 10px;
}
header.header .navbar-menu .bottom-nav {
  border: 1px solid rgb(0 0 0 / 28%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  z-index: 10;
  color: #000;
  font-size: 16px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  cursor: pointer;
  margin-top: 10px;
}
.privacy-policy {
  text-decoration: underline;
  color: black;
  z-index: 9999;
}



.delete-account-border {
  border-left: black 1px solid;
}
header.header .navbar-menu ul.navbar-nav {
  display: block;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.password-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.password-eye {
  font-size: 25px;
  cursor: pointer;
  padding-left: 5px;
  margin-left: 5px;
}
header.header .navbar-menu ul.navbar-nav li {
  position: relative;
}

header.header .navbar-menu ul.navbar-nav .nav-link {
  font-size: 30px;
  color: #000;
  margin: 6px 0;
  font-weight: 600;
}

header.header .navbar-menu ul.navbar-nav .nav-link:hover:before {
  right: 0;
}

header.header .navbar-menu ul.navbar-nav .nav-link:before {
  content: "";
  position: absolute;
  background-color: #000;
  height: 2px;
  left: 0;
  right: 100%;
  top: 52%;
  transform: translateY(-50%);
  transition: all 0.4s ease-in-out;
}

header.header .navbar-menu {
  opacity: 0.9;
  background-color: #fff;
  animation: OpacityAnim;
}

/* header.header .navbar-menu:after,
header.header .navbar-menu:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 0;
} */

header.header .navbar-menu:before {
  background: linear-gradient(135deg, #007effe6 50%, #ff0202ed 100%);
  animation: OpacityAnim 2s ease-in-out 0s infinite alternate;
}

header.header .navbar-menu:after {
  background: linear-gradient(135deg, #ff0202ed 50%, #007effe6 100%);
  animation: OpacityAnim 2s ease-in-out calc(-1 * (2s)) infinite alternate;
}

@keyframes OpacityAnim {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes spinner {
  to {
    transform: rotate(360deg);
  }
}

.search-btnn {
  position: relative;
}

.search-btnn .search-box {
  position: absolute;
  top: 50%;
  right: 0%;
  transform: translate(0%, -50%);
  height: 40px;
  background: transparent;
  line-height: normal;
  border-radius: 60px;
  display: flex;
  justify-content: flex-end;
}

.search-btnn .search-input {
  background: transparent;
  color: #fff;
  outline: none;
  border: none;
  line-height: 40px;
  width: 0px;
  float: none;
  font-size: 14px;
  transition: 0.7s ease;
}

.search-btnn .search-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: transparent;
  padding: 12px;
  border-radius: 50%;
  float: none;
  transition: 0.4s ease;
}

.search-btnn .search-btn span {
  color: #fff;
}

.search-btnn .search-box:hover > .search-input {
  width: 240px;
  margin: 0px 10px;
  padding: 0 15px;
  background-color: #353535;
}

.search-btnn .search-input:focus {
  width: 240px;
  margin: 0px 10px;
  padding: 0 15px;
  background-color: #353535;
}

header {
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

header.header .logo-header a.navbar-brand {
  transition: all 0.4s ease-in-out;
}

header.sticky .logo-header a.navbar-brand {
  transition: all 0.4s ease-in-out;
}

header.sticky {
  position: fixed;
  font-size: 20px;
  height: auto;
  width: 100%;
  background-color: rgba(17, 17, 17, 0.95);
  -webkit-transition: height 0.3s;
  -moz-transition: height 0.3s;
  transition: height 0.3s;
}

/* @keyframes heartbeat {
    0% {
        transform: scale(0.75);
    }

    20% {
        transform: scale(1);
    }

    40% {
        transform: scale(0.75);
    }

    60% {
        transform: scale(1);
    }

    80% {
        transform: scale(0.75);
    }

    100% {
        transform: scale(0.75);
    }
} */

h5 {
  display: flex;
  align-items: center;
}

h5 .heart {
  animation: heartbeat 2s infinite;
}

h5 {
  text-transform: uppercase;
  font-family: "Work Sans", sans-serif;
  font-size: 40px;
  color: #fff;
  font-weight: 800;
  margin: 0;
}

@media only screen and (max-width: 768px) {
  h5 {
    font-size: 35px;
  }
}

.slider-heading p {
  font: 400 30px/38px Quicksand;
  color: #fff;
  margin: 0;
  position: relative;
}

.slider-heading h1 {
  font: 600 65px/81px Quicksand;
  color: #fff;
  position: relative;
}

.form-input input,
.form-input select {
  width: 100%;
  padding: 10px 0;
  background: transparent;
  font: 500 20px/22px Quicksand;
  letter-spacing: 0.8px;
  color: #ffffff;
  border: none;
  border-bottom: 1px solid rgb(255 255 255 / 20%);
  margin-bottom: 20px;
}

.form-input select {
  color: #757575;
}

.login-form {
  padding: 0 50px;
  width: 100%;
  margin-top: 100px;
}

.login-form p {
    font: 600 24px/30px Quicksand;
    letter-spacing: 0.72px;
    color: var(--accent-color);
}

.login-email {
  display: flex;
  justify-content: end;
}

.login-email a {
    font: 400 24px/30px Quicksand;
    letter-spacing: 0.96px;
    color: var(--accent-color);
    margin-top: 30px;

}

.login-email a img {
  margin-left: 15px;
  width: 35px;
  margin-top: -4px;
}

.register-login p {
    margin-top: 60px;
    font: 400 18px/23px Quicksand;
    letter-spacing: 0.54px;
    color: var(--accent-color);
}

.register-login p a {
    font: 600 18px/23px Quicksand;
    text-decoration: underline;
    color: var(--accent-color);

}

.product-category p {
  font: 500 18px/23px Quicksand;
  letter-spacing: 0.54px;
  color: #ffffff;
}

.product-category ul {
  padding: 0;
  list-style: none;
  width: 100%;
  overflow-y: auto;
  max-height: 70vh;
}

.product-category ul li {
  width: 100%;
  display: inline-block;
  margin-bottom: 15px;
  border-bottom: 1px solid rgb(255 255 255 / 28%);
  padding: 0px 0 15px;
}

.product-category ul li:nth-last-child(1) {
  border: none;
}

.product-category ul li a {
    font: 500 29px/36px Quicksand;
    letter-spacing: 1.16px;
    color: var(--accent-color);
}

.product-category ul li span {
  float: right;
}

.product-category-white p {
  color: #000;
}

.product-category-white ul li {
  border-bottom: 1px solid rgb(0 0 0 / 28%);
}

.product-category-white ul li a {
  font: 800 23px/29px Quicksand;
  letter-spacing: 0.92px;
  color: #000000;
}

.brand-section ul li {
  background: #ffffff;
  border-radius: 0px 43px 43px 0px;
  padding: 10px 0 10px 70px;
  width: 80%;
}

.brand-section ul li img {
  width: 120px;
}

.brand-section p {
  font: 700 18px/23px Quicksand;
  letter-spacing: 0.54px;
  color: #000000;
  padding-left: 70px;
}

.free-standing ul li {
  width: 65%;
  display: block;
}

.free-standing ul li a {
  font: 700 24px/30px Quicksand;
  letter-spacing: 0.96px;
  color: #000000;
}

.free-standing ul li a img {
  width: 25px;
  margin-right: 20px;
}

.product-section {
  background-color: #fff;
  position: relative;
}

.product-section:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 300px;
  left: 0;
  bottom: 0;
  background: transparent
    linear-gradient(180deg, #ffffff00 0%, #ffffff 70%, #ffffff 100%);
  z-index: 1;
}

.product-section:before {
  display: none;
}

.product-section:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 80px;
  left: 0;
  top: 0;
  background: #fff;
  z-index: 1;
}

.back-icon a {
  font: 700 16px/20px Quicksand;
  letter-spacing: 0.48px;
  color: #000000;
  position: absolute;
  top: 35px;
  left: 20px;
  z-index: 9;
}

.product-img {
  width: 80%;
  margin-left: auto;
}

.product-img img {
  width: 100%;
}

.product-detail {
  position: relative;
  margin-bottom: 20px;
}

.product-detail h3 {
  font: 800 22px/28px Quicksand;
  margin-top: 10px;
}

.product-detail p {
  font: 500 16px/28px Quicksand;
  color: #000000;
}

.cros-icon {
  position: absolute;
  right: 20px;
  top: 0;
  width: 20px;
}

.cros-icon img {
  width: 100%;
}

.select-product p {
  font: 600 30px/38px Quicksand;
  color: #000000;
  margin: 0;
}

.select-product h2 {
  font: 700 54px/80px Quicksand;
  color: #000000;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.tab-button button {
    font: 600 17px/21px Quicksand;
    letter-spacing: 0.51px;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 23px;
    padding: 6px 20px;
    background-color: transparent;
    margin-top: 80px;
    margin-right: 10px;
}

.tab-button button.active {
    background-color: var(--accent-color);
    color: #fff;
}

.cat-product {
  margin-bottom: 20px;
}

.brand-img {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    border: 2px solid var(--accent-color);
    margin: auto;
    padding: 20px;
}

.brand-product {
  display: grid;
  margin-bottom: 20px;
}

.brand-img img {
  height: 100%;
}

.brand-product p {
  font: 600 18px/23px Quicksand;
  letter-spacing: 0.54px;
  color: #000000;
  margin: 10px 0;
  text-align: center;
  width: 100%;
}

.product-detail-section {
  margin: 30px 0;
}

.detail-feature {
    border-bottom: 1px solid var(--accent-color);
    padding: 10px 0;
    margin-bottom: 10px;
}

.detail-feature h3 {
  font: 700 22px/28px Quicksand;
  letter-spacing: 0px;
  color: #000000;
}

.feature-section {
  float: left;
  width: 16%;
}

.img-fet {
  width: 70px;
  margin: auto;
}

.img-fet img {
  width: 100%;
}

.feature-section p {
  text-align: center;
  font: 700 16px/20px Quicksand;
  color: #000000;
  margin-top: 10px;
}

.back-icon.z-zero a {
  z-index: 0 !important;
}

@media only screen and (max-width: 1400px) {
  h1 {
    font-size: 45px;
  }
}

@media only screen and (max-width: 1200px) {
  header.header nav.navbar > div {
    flex: 1;
  }

  .search-btnn .search-btn {
    padding: 0;
    font-size: 12px;
    flex: 1;
  }

  .search-btnn .search-box:hover > .search-input {
    width: 150px;
  }
}

@media only screen and (max-width: 992px) {
  .brand-img {
    width: 70px;
    height: 70px;
  }

  .brand-product p {
    font: 600 12px/23px Quicksand;
  }
}

@media only screen and (max-width: 768px) {
  .back-icon a {
    top: 75px;
  }

  .select-product {
    margin-top: 20px;
  }

  header.header .logo-header a.navbar-brand {
    float: left;
  }

  .brand-img {
    width: 100px;
    height: 100px;
  }

  .brand-product p {
    font: 600 18px/23px Quicksand;
  }

  header.header nav.navbar {
    flex-direction: row-reverse;
    padding: 0 !important;
  }

  header.header nav.navbar > div {
    flex: 0 0 50%;
  }

  .search-btnn .search-box {
    display: none;
  }

  h1 {
    font-size: 30px;
  }

  .product-img {
    width: 20%;
    margin: 0;
  }

  .select-product h2 {
    margin: 0;
  }

  .tab-button button {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .product-section:before {
    display: none;
  }

  .scrollbar {
    padding: 100px 0 0;
  }
}

@media only screen and (max-width: 576px) {
.bottom-nav {
  bottom: 60px !important;
  margin-top: 0 !important;
}
}
