/* 

Master Stylesheet
----------------------

Template Name : 
Description : 
Author Name : Shaikh Abu Amer
Author URL : 
Version : 1.0


Table of Content
-----------------------

1. Typography 
2. Navigation 
3.
4.
5.
6.


*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");
:root {
  --body-bg: #f6f6f6;
  --main-color: #000;
  --third-color: #d9cbb8;
  --clr-2: #fff6ea;
  --clr-3: #aaaaaa;
  --clr-4: #fffff8;
  --clr-5: #d9cbb8;
  --white: #fff;
  --black: #000;
}

.dark-mode {
  --main-color: #fff6ea;
  --body-bg: rgb(53, 53, 53);
  --clr-2: rgb(33, 33, 37);
  --clr-3: #b9b9b9;
  --clr-5: #867e72;
  --third-color: #6b6b6b;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  line-height: 35px;
  background-color: var(--body-bg);
  color: var(--clr-3);
  margin: 0;
  padding: 0;
  width: 100%;
}

/*-----------------------------------------------Typography-----------------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--main-color);
}

h1 {
  font-size: 85px;
  line-height: 90px;
}

h2 {
  font-size: 45px;
  line-height: 55px;
}

h3 {
  font-size: 40px;
  line-height: 50px;
}

h4 {
  font-size: 25px;
  line-height: 35px;
}

h5 {
  font-size: 20px;
  line-height: 30px;
}

h6 {
  font-size: 14px;
  line-height: 18px;
}

p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: var(--clr-3);
  margin-bottom: 10px;
}
@media screen and (max-width: 575px) {
  p {
    font-size: 16px;
  }
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

a {
  transition: all 0.4s ease;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button:focus,
button:hover {
  outline: none;
}

a:hover,
a:focus,
a:visited {
  outline: none;
}

.btn-custom {
  display: inline-block;
  background-color: var(--main-color);
  color: var(--clr-2);
  font-weight: 500;
  font-size: 20px;
  line-height: 60px;
  height: 60px;
  padding: 0px 30px;
  border-radius: 30px;
  text-transform: capitalize;
  border: none;
  position: relative;
  z-index: 2;
}
.btn-custom:hover {
  color: var(--main-color);
}
.btn-custom:hover::before {
  animation: slideIn 0.4s ease forwards;
}
@media screen and (max-width: 991px) {
  .btn-custom {
    font-size: 15px;
    line-height: 50px;
    height: 50px;
  }
}
.btn-custom::before {
  content: "";
  background-color: var(--third-color);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 27px;
  z-index: -1;
  opacity: 0;
}
@keyframes slideIn {
  from {
    width: 0%;
  }
  to {
    width: 100%;
    opacity: 1;
  }
}

.section-heading {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 991px) {
  .section-heading {
    width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .section-heading {
    width: 100%;
  }
}

.section-heading h2 {
  color: var(--main-color);
  font-weight: 700;
  text-transform: capitalize;
  margin-bottom: 25px;
}

.section-heading p {
  color: var(--clr-3);
}

@media screen and (max-width: 479px) {
  .col-xxs-12 {
    width: 100%;
  }
}

.preloader {
  background-color: var(--white);
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.back__to__top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #d9cbb8;
  border-radius: 10px;
  font-size: 25px;
  color: var(--black);
  text-align: center;
  line-height: 45px;
  box-shadow: 0 0 20px 0 rgba(51, 51, 51, 0.15);
  z-index: 111;
  opacity: 0;
  transition: all 0.5s ease;
  cursor: pointer;
  pointer-events: none;
}
.back__to__top.active {
  opacity: 1;
  pointer-events: unset;
}
@media screen and (max-width: 479px) {
  .back__to__top {
    width: 40px;
    height: 40px;
    line-height: 35px;
  }
}

/*-----------!-------HEADER SECTION STYLE-------!-----------*/
header {
  background-color: var(--clr-2);
  padding: 35px 0 0;
  transition: padding 0.5s ease;
}

.logo {
  user-select: none;
  color: var(--main-color);
  font-size: 35px;
  font-weight: 500;
  line-height: 1.5;
}
.logo:hover {
  color: var(--main-color);
}

.nav-item a {
  font-size: 18px;
  color: var(--clr-3);
  text-transform: capitalize;
  border-bottom: 4px solid transparent;
}
.nav-item a:hover {
  border-color: var(--clr-4);
  color: var(--main-color);
}

.btn-custom {
  font-size: 18px;
}

.navbar-nav {
  gap: 70px;
}

.sticky {
  position: fixed;
  z-index: 111;
  width: 100%;
  top: 0;
  left: 0;
  padding: 15px 0;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.4);
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0%);
  }
}
.light__dark__toggle i {
  font-size: 22px;
  background-color: var(--clr-3);
  color: var(--black);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  line-height: 42px;
  text-align: center;
  padding: 0;
  cursor: pointer;
}

.offcanvas {
  background-color: var(--clr-2);
}

@media screen and (max-width: 1399px) {
  .nav-item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 1199px) {
  .logo {
    font-size: 30px;
  }
}
@media screen and (max-width: 991px) {
  .collapse-btn {
    font-size: 22px;
    line-height: 52px;
    padding: 0 20px;
    border-radius: 12px;
  }
  .collapse-btn::before {
    border-radius: 12px;
  }
  .navbar-nav {
    gap: 0;
    padding-left: 10px;
    align-items: flex-start !important;
  }
}
@media screen and (max-width: 767px) {
  header {
    padding-top: 20px;
  }
}
@media screen and (max-width: 575px) {
  .sticky {
    padding: 10px 0;
  }
}
@media screen and (max-width: 479px) {
  header {
    padding-top: 10px;
  }
  .btn-custom {
    font-size: 16px;
    line-height: 45px;
    height: 45px;
    padding: 0 20px;
  }
  .collapse-btn {
    height: 40px;
    line-height: 43px;
    padding: 0 15px;
    font-size: 20px;
  }
}
/*-----------!-------HERO SECTION STYLE-------!-----------*/
#hero-section {
  background-color: var(--clr-2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#hero-section::before {
  content: "";
  position: absolute;
  width: 50%;
  height: 100%;
  bottom: 0;
  left: 0;
  background-color: var(--clr-2);
  z-index: 1;
}
#hero-section .hero-content {
  padding: 120px 0;
  position: relative;
  z-index: 2;
}
#hero-section .hero-content h1 {
  margin-bottom: 20px;
}
#hero-section .hero-content p {
  margin-bottom: 38px;
}
#hero-section .hero-img img {
  max-width: 100%;
  margin-left: -273px;
  position: relative;
  z-index: -2;
}

@media screen and (max-width: 1399px) {
  #hero-section .hero-content h1 {
    font-size: 80px;
    line-height: 85px;
  }
  #hero-section .hero-img img {
    margin-left: -260px;
  }
}
@media screen and (max-width: 1199px) {
  #hero-section .hero-content {
    padding: 100px 0;
  }
  #hero-section .hero-content h1 {
    font-size: 70px;
    line-height: 80px;
  }
  #hero-section .hero-img img {
    max-width: none;
    width: 540px;
  }
}
@media screen and (max-width: 991px) {
  #hero-section .hero-content {
    padding: 60px 0;
  }
  #hero-section .hero-content h1 {
    font-size: 60px;
    line-height: 75px;
  }
  #hero-section .hero-img img {
    max-width: none;
    width: 480px;
    margin-left: -230px;
  }
}
@media screen and (max-width: 991px) {
  #hero-section .hero-content {
    padding: 40px 0;
  }
  #hero-section .hero-content h1 {
    font-size: 50px;
    line-height: 65px;
    margin-bottom: 10px;
  }
  #hero-section .hero-content p {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 767px) {
  #hero-section::before {
    width: 0%;
  }
  #hero-section .hero-content h1 {
    font-size: 45px;
    line-height: 55px;
  }
  #hero-section .hero-img {
    text-align: center;
  }
  #hero-section .hero-img img {
    max-width: 100%;
    width: 400px;
    margin-left: 0;
  }
}
@media screen and (max-width: 479px) {
  #hero-section .hero-content {
    padding: 25px 0;
  }
  #hero-section .hero-content h1 {
    font-size: 40px;
    line-height: 50px;
  }
}
/*-----------!-------HERO SECTION STYLE-------!-----------*/
#feature-section {
  padding: 120px 0;
  overflow-x: hidden;
}
#feature-section .section-heading {
  margin-bottom: 55px;
}
#feature-section .single-feature {
  margin-bottom: 108px;
}
#feature-section .single-feature-content h3 {
  margin-bottom: 20px;
}
#feature-section .single-feature-content p {
  margin-bottom: 40px;
}
#feature-section .last-feature {
  margin-bottom: 0;
}

@media screen and (max-width: 1399px) {
  #feature-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
  #feature-section .single-feature h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
@media screen and (max-width: 991px) {
  #feature-section {
    padding: 60px 0;
  }
  #feature-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
  #feature-section .single-feature {
    margin-bottom: 70px;
  }
  #feature-section .single-feature h3 {
    font-size: 30px;
    line-height: 40px;
  }
  #feature-section .single-feature p {
    margin-bottom: 25px;
  }
  #feature-section .last-feature {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  #feature-section .single-feature {
    margin-bottom: 60px;
    text-align: center;
  }
  #feature-section .single-feature h3 {
    font-size: 25px;
    line-height: 35px;
  }
  #feature-section .single-feature-img {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 479px) {
  #feature-section .section-heading h2 {
    font-size: 25px;
    line-height: 35px;
  }
  #feature-section .single-feature h3 {
    font-size: 20px;
    line-height: 30px;
  }
}
#item-section {
  padding: 120px 0;
  background-color: var(--clr-2);
  text-align: center;
}
#item-section .section-heading {
  margin-bottom: 80px;
}
#item-section .single-item {
  text-align: left;
}
#item-section .single-item:hover .single-item-img {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.1607843137);
}
#item-section .single-item-img {
  background: #fff;
  border-radius: 20px;
  padding: 40px 10px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
#item-section .single-item-img img {
  display: block;
  margin: 0 auto;
}
#item-section .btn-custom {
  margin-top: 40px;
}
#item-section .btn-custom i {
  color: #00c5ee;
}

@media screen and (max-width: 1399px) {
  #item-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 1199px) {
  #item-section .single-item h4 {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) {
  #item-section {
    padding: 60px 0;
  }
  #item-section .section-heading {
    margin-bottom: 50px;
  }
  #item-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  #item-section .single-item {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 479px) {
  #item-section .section-heading h2 {
    font-size: 25px;
    line-height: 35px;
  }
  #item-section .single-item h4 {
    font-size: 15px;
    line-height: 25px;
  }
  #item-section .single-item-img {
    margin-bottom: 10px;
  }
}
#product-section {
  padding: 120px 0;
}
#product-section .section-heading {
  margin-bottom: 70px;
}
#product-section .single-product {
  margin-bottom: 50px;
  text-align: center;
  transition: all 0.4s ease;
}
#product-section .single-product:hover h4 {
  opacity: 0;
}
#product-section .single-product:hover .single-product-info {
  opacity: 1;
}
#product-section .single-product:hover .single-product-img::after {
  opacity: 1;
}
#product-section .single-product h4 {
  transition: all 0.4s ease;
}
#product-section .single-product-img {
  background-color: var(--clr-2);
  border-radius: 25px;
  margin-bottom: 34px;
  position: relative;
}
#product-section .single-product-img::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 248, 238, 0.0745098039), var(--clr-2));
  border-radius: 25px;
  opacity: 0;
  transition: all 0.4s ease;
}
#product-section .single-product-img img {
  max-width: 100%;
  border-radius: 25px;
}
#product-section .single-product-info {
  position: absolute;
  bottom: 10px;
  left: 40px;
  text-align: left;
  z-index: 1;
  opacity: 0;
  transition: all 0.4s ease;
}
#product-section .single-product-info span {
  display: block;
  font-weight: 700;
  color: var(--main-color);
  font-size: 25px;
}
#product-section .single-product-info .product-price {
  color: var(--clr-3);
}

@media screen and (max-width: 1399px) {
  #product-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 1199px) {
  #product-section .single-product h4 {
    font-size: 20px;
    line-height: 30px;
  }
  #product-section .single-product-info span {
    font-size: 20px;
    line-height: 30px;
  }
}
@media screen and (max-width: 991px) {
  #product-section {
    padding: 60px 0;
  }
  #product-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
  #product-section .single-product-img {
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 767px) {
  #product-section .section-heading {
    margin-bottom: 45px;
  }
  #product-section .single-product {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 479px) {
  #product-section .section-heading h2 {
    font-size: 25px;
    line-height: 35px;
  }
  #product-section .single-product h4 {
    font-size: 15px;
    line-height: 25px;
  }
  #product-section .single-product-info span {
    font-size: 15px;
    line-height: 25px;
  }
}
#newsletter-section .section-heading h2 {
  margin-bottom: 14px;
}
#newsletter-section .section-heading p {
  line-height: 35px;
}
#newsletter-section .section-heading .btn-custom {
  margin-top: 28px;
}
#newsletter-section .newsletter-bg {
  padding: 50px 0;
  border-radius: 35px;
  background-color: var(--clr-2);
}

@media screen and (max-width: 1399px) {
  #newsletter-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
  #newsletter-section .section-heading .btn-custom {
    margin-top: 15px;
  }
}
@media screen and (max-width: 1199px) {
  #newsletter-section .newsletter-bg {
    padding: 35px 0;
  }
}
@media screen and (max-width: 991px) {
  #newsletter-section .section-heading h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 575px) {
  #newsletter-section .section-heading h2 {
    font-size: 25px;
    line-height: 35px;
  }
  #newsletter-section .section-heading p {
    line-height: 30px;
  }
}
#advice-section {
  padding: 120px 0;
  overflow: hidden;
}
#advice-section .advice-img-container {
  position: relative;
}
#advice-section .advice-img-container::before {
  content: "";
  position: absolute;
  top: 120px;
  left: 37px;
  height: 85%;
  width: 75%;
  border: 8px solid #fcefde;
  border-radius: 200px 10px 10px 10px;
}
#advice-section .advice-img-container::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 161px;
  width: 30px;
  height: 85%;
  background: var(--clr-2);
  border-radius: 0 10px 10px 0;
}
#advice-section .advice-img-bg {
  overflow: hidden;
  position: relative;
  width: 70%;
}
#advice-section .advice-img-bg::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--clr-2);
  border-radius: 200px 0px 0px 10px;
}
#advice-section .advice-img-bg img {
  max-width: 100%;
  transform: translateX(260px);
  overflow: hidden;
}
#advice-section .advice-content h2 {
  font-size: 35px;
  line-height: 45px;
  margin-bottom: 15px;
}
#advice-section .advice-content p {
  margin-bottom: 55px;
}

@media screen and (max-width: 1399px) {
  #advice-section .advice-img-container::after {
    right: 134px;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(200px);
  }
}
@media screen and (max-width: 1199px) {
  #advice-section .advice-img-container::after {
    right: 107px;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(150px);
  }
  #advice-section .advice-content p {
    margin-bottom: 35px;
  }
}
@media screen and (max-width: 991px) {
  #advice-section {
    padding: 60px 0;
  }
  #advice-section .advice-img-container::before {
    top: 70px;
    left: 60px;
  }
  #advice-section .advice-img-container::after {
    display: none;
  }
  #advice-section .advice-img-bg {
    margin: 0 auto;
  }
  #advice-section .advice-img-bg::before {
    border-radius: 200px 10px 10px 10px;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(92px);
  }
  #advice-section .advice-content h2 {
    font-size: 35px;
    line-height: 45px;
  }
}
@media screen and (max-width: 767px) {
  #advice-section .advice-img-container {
    margin-bottom: 70px;
  }
  #advice-section .advice-img-container::before {
    width: 100%;
    left: 25px;
    top: 110px;
  }
  #advice-section .advice-img-bg {
    width: 100%;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(85px);
  }
}
@media screen and (max-width: 575px) {
  #advice-section .advice-img-container::before {
    top: 112px;
    left: 10px;
  }
  #advice-section .advice-img-bg::before {
    width: 95%;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(60px);
  }
}
@media screen and (max-width: 479px) {
  #advice-section .advice-img-container {
    margin-bottom: 55px;
  }
  #advice-section .advice-img-container::before {
    top: 92px;
  }
  #advice-section .advice-img-bg img {
    transform: translateX(15px);
    max-width: 90%;
  }
  #advice-section .advice-content h2 {
    font-size: 25px;
    line-height: 35px;
  }
}
footer {
  padding: 120px 0;
  background: var(--clr-2);
}
footer .footer-widget h4 {
  margin-bottom: 15px;
  text-transform: capitalize;
}
footer .footer-widget p {
  color: var(--main-color);
}
footer .footer-widget li {
  margin-bottom: 0px;
}
footer .footer-widget a {
  color: var(--main-color);
}
footer .footer-widget a:hover {
  color: var(--clr-5);
}
footer .footer-widget .socials {
  margin-top: 20px;
}
footer .footer-widget .socials i {
  margin-right: 30px;
}

@media screen and (max-width: 991px) {
  footer {
    padding: 60px 0;
  }
  footer .footer-widget {
    text-align: center;
  }
  footer .footer-widget .socials i {
    margin: 0px 15px;
  }
}
@media screen and (max-width: 479px) {
  footer .footer-widget h4 {
    margin-bottom: 10px;
  }
  footer .footer-widget a {
    font-size: 16px;
  }
  footer .row > * {
    margin-top: 25px;
  }
}/*# sourceMappingURL=style.css.map */