/* Fonts */
:root {
  --font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-primary: "Lato", sans-serif;
  --font-secondary: "Poppins", sans-serif;
}

/* Colors */
:root {
  /* --color-default: #000000; */
  --color-default: #fcfcfc;
  --color-primary: #030c1c;
  --color-secondary: #ff0505;
  --bs-border-radius: 0.375rem;
}

/* Smooth scroll behavior */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  color: var(--color-default);
  background: var(--color-default);
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: all .3s;
}

a:hover {
  color: var(--color-secondary);
  text-decoration: none;
}

p {
  color: var(--color-primary);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
  color: var(--color-primary);
  font-weight: 700;

}

.get-btn {
  font-family: var(--font-primary);
  border: 1px solid;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--color-primary);
  /* display: inline-block; */
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.3s;
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgb(255 0 0 / 8%);
  border: 2px solid rgb(255 0 0 / 10%);
}

.get-btn,
.cart-btn:hover {
  background: rgb(255 255 255 / 5%);
  border: 2px solid #ef00001a;
  color: var(--color-secondary);
}

.btn:hover {
  color: var(--color-primary);
  background-color: var(--color-default);
  border: var(--color-secondary);
}

/* add to cart button */
.cart-btn {
  font-family: var(--font-primary);
  border: 1px solid;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--color-primary);
  /* display: inline-block; */
  padding: 10px 20px;
  /* border-radius: 50px; */
  transition: 0.3s;
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgb(255 0 0 / 8%);
  border: 2px solid rgb(255 0 0 / 10%);
}

@media (max-width: 991px) {
  /* .cart-btn .row {
    flex-direction: column;
  } */

  .card-body .col-sm-4,
  .card-body .col-sm-8 {
    width: 50% !important;
  }

  /* .card-body .col-sm-8 {
    margin-top: 6px;
  } */

  .album .py-5 {
    padding-top: 0rem !important;
    padding-bottom: 0rem !important;
  }

}

/* email submit button */
.sub-btn {
  font-family: var(--font-primary);
  border: 1px solid;
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--color-primary);
  /* display: inline-block; */
  padding: 14px 40px;
  /* border-radius: 50px; */
  transition: 0.3s;
  /* color: #fff; */
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgb(255 0 0 / 8%);
  border: 2px solid rgb(255 0 0 / 10%);
}

.sub-btn:hover {
  background: rgb(255 255 255 / 5%);
  border: 2px solid rgb(239 0 0 / 10%);
  color: var(--color-secondary);
}

.search:hover {
  /* background: rgb(255 255 255 / 5%); */
  border: 1px solid rgb(239 0 0 / 10%);
  color: var(--color-secondary);
  background: var(--color-default);
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: var(--font-default);
  /* color: var(--color-default); */
}

img {
  width: 100%;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding-top: 70px;
  overflow: hidden;
  scroll-margin-top: 70px;
  overflow: clip;
  min-height: 30vh;
}

span {
  color: var(--color-secondary);
}

.section-header {
  /* text-align: center; */
  padding: 10px 0px;
  position: relative;
}

.section-header h2 {
  padding-bottom: 12px;
  position: relative;
}

.section-header h2:before {
  content: "";
  height: 3px;
  background: var(--color-secondary);
  position: absolute;
  width: 23%;
  /* top: 3rem; */
  bottom: 0;
  left: 12%;
  /* left: 50%; */
  /* top: 115%; */
  transform: translate(-50%, -50%);
}

.section-header p {
  padding-bottom: 24px;
  /* margin-top: 2rem; */
}

@media (max-width: 991px) {
  section {
    padding-top: 20px;
  }

  .section-header .row {
    flex-direction: column !important;
  }

  .section-header .row .col-sm-6 {
    width: 100% !important;
  }
}

/* form */
.email-form {
  width: 100%;
  height: 100%;
  /* background: #fff; */
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  padding: 40px 30px;
  border-radius: 0 10px 10px 0;
}

.email-form .form-group {
  padding-bottom: 8px;
}

.email-form .error-message br+br {
  margin-top: 25px;
}

.email-form .sent-message {
  display: none;
  /* color: #fff; */
  /* background: #059652; */
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.email-form input,
.email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.email-form input[type=text],
.email-form input[type=email],
.email-form input[type=tel],
.email-form input[type=password],
.email-form textarea {
  padding: 12px 15px;
}

.email-form input[type=text]:focus,
.email-form input[type=email]:focus,
.email-form input[type=tel]:focus,
.email-form input[type=password]:focus,
.email-form textarea:focus {
  border-color: var(--color-primary);
}

.email-form input[type=file] {
  color: var(--color-primary);
}

.email-form textarea {
  padding: 10px 12px;
}

.form-control {
  /* background: transparent; */
}

.form-control::placeholder {
  color: var(--color-primary);
  opacity: .7;
  /* Firefox */
}

/*--------------------------------------------------------------
# Navbar
--------------------------------------------------------------*/
#navs {
  position: relative;
}

nav.navbar.navbar-expand-lg.bg-body-tertiary {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 2px solid black;
}

.logo {
  width: 9%;
}

ul.navbar-nav.me-auto.mb-2.mb-lg-0 {
  margin: auto;
}

li.nav-item {
  padding: 0px 8px;
}

a.nav-link{
  font-weight: 700;
  color: var(--color-primary);
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: var(--color-secondary);
}

a.nav-link:hover {
  color: var(--color-secondary);
  transition: all .5s;
}

button.btn.btn-outline-danger {
  color: var(--color-primary);
  font-weight: 700;
}

.dropdown-item {
  font-weight: 700;
  transition: all .5s;
}

.dropdown-item:hover {
  color: var(--color-secondary);
}

.nav-links {
    display: block;
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    font-size: var(--bs-nav-link-font-size);
    font-weight: var(--bs-nav-link-font-weight);
    color: var(--bs-nav-link-color);
    text-decoration: none;
    background: 0 0;
    border: 0;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.nav-links {
  font-weight: 700;
  color: var(--color-primary);
}


@media (max-width: 991px) {
  .logo {
    width: 12%;
  }

  .navbar-nav .dropdown-menu {
    width: 40%;
  }

}

@media (max-width: 767px) {
  .logo {
    width: 17%;
  }
  
    .navbar-nav .dropdown-menu {
    width: 80%;
  }

}

@media screen and (min-width: 320px) and (max-width: 550px) {
  .logo {
    width: 26%;
  }
}


/*--------------------------------------------------------------
# Section Carousael
--------------------------------------------------------------*/
/* .carousel-item {
  height: 100vh;
} */

.carousel-caption h5 {
  color: var(--color-secondary);
}

.carousel-caption p {
  color: var(--color-default);
}

.carousel-item .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#00000075, #00000075), linear-gradient(#00000075, #00000075);
  pointer-events: none;
  /* so clicks pass through */
}

/*--------------------------------------------------------------
# Section Hero
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 55vh;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

}

.hero .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hero .content .content-heading {
  font-family: var(--font-primary);
  color: var(--color-default);
  font-weight: 700;

}

.hero .content ol li a {
  color: var(--color-default);
}

.hero .content ol li.active {
  color: var(--color-secondary);
}

.hero .content ol li a:hover {
  color: var(--color-secondary);
  transition: all .5s;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--color-default);
}

/*--------------------------------------------------------------
# Section header
--------------------------------------------------------------*/
section .header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
  /* border: 1px solid; */
}



/*--------------------------------------------------------------
# Section Catagory
--------------------------------------------------------------*/
section.catagories {
  min-height: 50vh;
}

.cat-items-wrap {
  /* display: flex;
  flex-wrap: wrap; */
  margin: 0 -5px;
}

.cat-item {
  /* flex: 0 0 20%; */
  padding: 0 5px;
  margin-bottom: 20px;
  text-align: center;
}

.cat-item .cat-item-inner {
  display: flex;
  background: var(--color-secondary);
  border-radius: 15px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  padding: 0px 0px;
  align-items: center;
  justify-content: center;
}

.cat-item .cat-icon {
  display: inline-block;
  padding: 15px;
  color: var(--color-default);
}

.cat-item p {
  color: var(--color-default);
  padding: 10px;
  margin-top: 10px;
  font-weight: 700;
}

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.cat-items-wrap .col-2 {
  width: 20%;
}

@media (max-width: 1200px) {
  .cat-items-wrap .col-2 {
    width: 25%;
  }

}

@media (max-width: 991px) {
  .cat-items-wrap .col-2 {
    width: 33.33%;
  }

}

@media (max-width: 767px) {
  .cat-items-wrap .col-2 {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }

}


/*--------------------------------------------------------------
# Album
--------------------------------------------------------------*/
p.card-text {
  font-weight: 700;
}


/*--------------------------------------------------------------
# Banner
--------------------------------------------------------------*/
section.banner {
    padding-bottom: 30px;
}

.banner-image img {
  border-radius: 25px;
}



/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.site-footer {
  background: #f1f3fc;
  font-size: 14px;
  color: #888;
  padding: 70px 0;
}

.site-footer a {
  color: #777;
  position: relative;
  display: inline-block;
  text-decoration: underline;
}

.site-footer a:hover {
  color: #000;
  text-decoration: none;
}

.site-footer a:hover:before {
  background: #00204a;
}

.site-footer .footer-cta h2,
.site-footer .footer-cta .h2 {
  font-size: 30px;
  color: #00204a;
}

.site-footer .btn:before {
  display: none;
}

.site-footer .widget {
  margin-bottom: 40px;
  display: block;
}

.site-footer .widget h3,
.site-footer .widget .h3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #00204a;
}

.site-footer .widget .links {
  width: 100%;
}

.site-footer .widget .links li {
  margin-bottom: 10px;
}

.site-footer .social li {
  display: inline-block;
}

.site-footer .social li a {
  display: inline-block;
  width: 40px;
  height: 40px;
  position: relative;
  background: #cccccc5c;
  border-radius: 40%;
}

.site-footer .social li a:before {
  display: none;
}

.site-footer .social li a>span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 23px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.site-footer .social li a:hover {
  background: #00204a;
  color: #fff;
}


.social a {
  text-decoration: none;
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  background: #00204a;
  border-radius: 50%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  border: 2px solid transparent;
  position: relative;
  top: 0;
}

.social a span {
  /* font-size: 13px; */
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.social a:hover {
  top: -5px;
  background: transparent;
  border: 2px solid #fff;
}

.social.dark-hover a:hover {
  color: #00204a;
  border: 2px solid #00204a;
}

i.fa-brands.fa-facebook {
  color: #1877F2;
}

i.fa-brands.fa-square-whatsapp {
  color: #25D366;
  font-size: 25px;
}

/* .chatbox {
  position: relative;
}

.chatbox .list-unstyled {
  position: fixed;
  right: 0;
  bottom: 0;
  transform: translate(0%, -50%);
  z-index: 1;
} */

.popover-dark-bold {
  background: #f4f6f8;
  color: var(--color-primary);
  font-weight: 700;
  border: none;
}

.popover-dark-bold .popover-arrow::before {
  border-color: #343a40;
}

.d-inline-block {
  display: inline-block !important;
}

/* span .chatbox {
  top:60% !important;
}

.chatbox .list-unstyled i {
  font-size: 22px;
  color: var(--color-default);
}

.chatbox .list-unstyled a {
    border-radius: 50%;
    background: #25D366;
} */


.chatbox {
  position: fixed;
  bottom: 20px;
  right: 35px;
  z-index: 1000;
}

.chat-btn {
  position:relative;
  background-color: #6bc785;
  color: white;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 24px;
  cursor: pointer;
}

.contact-icons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  position: absolute;
  bottom: 49px;
  right: -24px;

  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease-in-out;
}

i.fa-solid.fa-message {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.contact-icons.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.contact-icons a,
.contact-icons button {
  background-color: #25d366;
  color: white;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.contact-icons .close-btn {
  background-color: #6bc785;
}

a.whatsapp {
  font-size: 33px;
}


/* contact */
.rounded {
  border-radius: 10px !important;
  background: #f4f6f8;
}

.rounded i {
  color: var(--color-secondary);
}

.form-control input {
  /* border: 0px !important; */
}

/* .mt-3 {
    margin-top: 1.5rem !important;
} */

textarea#message {
  /* padding: .375rem .75rem; */
  /* border-radius: var(--bs-border-radius); */
}


/*--------------------------------------------------------------
# Shop
--------------------------------------------------------------*/


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about-content p {
  text-align: justify;
  white-space: pre-line;
  font-weight: 700;
}

@media(max-width:991px) {
  .about .row {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .about .col-lg-6{
    width: 100%;
  }
}