body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif !important;
  box-sizing: border-box;
  overflow-x: hidden;
  margin: 0;
  padding: 0;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

ul {
  padding-left: 0rem !important;
}

:root {
  --main-color--: #00001a;
  --yellow-color--: #ffc553;
  --white-color--: #fff;
}

.fade-in {
  opacity: 0;
  transform: translateY(-50px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  will-change: opacity, transform;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0px);
}

.fade-in-left {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1s ease 0.5s, transform 1s ease 0.5s;
  will-change: opacity, transform;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateY(0px);
}

/* navbar */
.navbar {
  opacity: 0;
  transform: translateY(-100px);
  transition: opacity 1s ease, transform 1s ease;
}
.navbar.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 992px) {
  .navbar-toggler {
    order: 2;
    position: absolute;
    right: 10px;
    top: 10px;
  }
  .navbar-brand.d-block.d-lg-none {
    order: 1;
    position: absolute;
    right: 60px;
    top: 10px;
  }
  .collapse.navbar-collapse {
    margin-top: 0px;
  }
  .d-flex.align-items-center {
    margin-left: 0px;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: .3rem!important;
    padding-left: .5rem!important;
  }
}
.dropdown-menu {
  column-count: 3;
  column-gap: 2rem;
  line-height: 30px;
  display: none;
}
.nav-item.dropdown:hover .dropdown-menu {
  display: block;
}
.nav-item .nav-link,
.nav-item .nav-link:focus {
  color: var(--white-color--);
}
.navbar {
  background-color: var(--main-color--);
}
.nav-link.active {
  /* border-bottom: 1px solid var(--yellow-color--); */
  color: var(--yellow-color--) !important;
}
.nav-link:hover:not(.active) {
  color: var(--yellow-color--);
}
.left-nav .nav-link,
.navbar-brand {
  color: var(--white-color--) !important;
}
.navbar .nav-link:hover:not(.left-nav .nav-link) {
  color: var(--yellow-color--);
}
.navbar .logo1 img {
  width: 150px;
  height: 45px;
  margin-right: -15px;
  margin-top: -10px;
  object-fit: contain;
}
.navbar .logo img {
  width: 150px;
  height: 45px;
  margin-left: 45px;
  margin-top: -5px;
  margin-bottom: -5px;
}
.login {
  border: solid var(--white-color--) 1px;
  border-radius: 10px;
}
.login:hover {
  background-color: var(--yellow-color--);
  color: var(--main-color--) !important;
}
.nav-link .bag-icon {
  width: 30px;
  height: 30px;
  filter: invert(100%);
}
.nav-link .cart-count {
  position: absolute;
  top: 55%;
  right: 50%;
  transform: translate(50%, -50%);
  color: white;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-link {
  position: relative;
  display: flex;
  align-items: center;
}
.menu .dropdown-item {
  text-align: center;
}
.menu .dropdown-item:hover {
  background-color: var(--yellow-color--);
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.338);
}
.navbar .navbar-toggler {
  color: var(--white-color--) !important;
  border-color: var(--white-color--) !important;
  border: solid 2px;
  font-size: 25px;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}
.navbar .navbar-toggler[aria-expanded="true"] {
  border: none;
}

/* #################################################################### */
/* bag-icon */
.shopping-cart {
  position: fixed;
  bottom: 30px;
  left: 40px;
  width: 65px;
  height: 65px;
  background-color: var(--yellow-color--);
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  transition: 0.2s;
}
.shopping-cart img {
  width: 70%;
  height: 70%;
}
.cart-count {
  position: absolute;
  color: var(--main-color--);
  border-radius: 50%;
  font-size: 19px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shopping-cart:hover{
  transform: scale(1.1);
}
.offcanvas-start{
  width: 350px!important;
}
.btn-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.cart-icon-container {
  position: absolute;
  top: 3rem;
  right: 2rem;
}
.cart-icon-container .imag {
  width: 1.75rem;
  position: absolute;
  right: -10px;
  top: 0;
}
.cart-icon-container p {
  margin-right: 1.5rem;
  font-weight: bold;
}
.shop-btn{
  background: var(--yellow-color--)!important;
  transition: 0.3s!important;
}
.shop-btn:hover{
  transform: scale(1.05);
}
.shop-btn:focus,.btn-close:focus{
  box-shadow: none!important;
}
@media (max-width: 767px) {
  .offcanvas-start {
    width: 300px!important;
  }
}

/* #################################################################### */
/* Scroll Up */
.up {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: var(--yellow-color--);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transform: scale(0);
  transition: 0.3s ease;
  cursor: pointer;
  z-index: 9999;
}
.up img {
  width: 30px;
  height: auto;
}
.up:hover {
  bottom: 35px;
  transform: scale(1.1);
}
.up.show {
  transform: scale(1);
}
@media (max-width: 768px) {
  .up {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}
@media (max-width: 480px) {
  .up {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
}

/* ########################################################################## */
/* carousel */
.carousel-item img {
  object-fit: cover;
  height: calc(100vh - 57.33px);
  filter: brightness(0.6);
}
.carousel .btn{
  background-color: var(--yellow-color--);
  transition: 0.3s;
}
.carousel .btn:hover,.carousel .btn:focus{
  background-color: var(--yellow-color--);
  transform: scale(1.05);
  box-shadow: none;
}
@media (max-width: 767px) {
  .carousel-caption {
    font-size: 1rem;
  }
}
.carousel-item {
  position: relative;
  padding-bottom: 30px;
}
.custom-caption {
  position: absolute;
  top: 40px;
  left: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
  border-radius: 5px;
}
.custom-caption h1,
.custom-caption p {
  margin: 0;
}
@media (max-width: 768px) {
  .custom-caption {
    padding: 5px;
  }
  .custom-caption h1 {
    font-size: 1.5rem;
  }
  .custom-caption p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .custom-caption {
    padding: 5px;
  }
  .custom-caption h1 {
    font-size: 1.2rem;
  }
  .custom-caption p {
    font-size: 0.9rem;
  }
}

/* ########################################################################## */
/* tape */
.tape {
  display: flex;
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}
.tape span {
  padding: 10px 20px;
  font-size: 1.2rem;
  font-weight: bold;
  white-space: nowrap;
  color: var(--white-color--);
  background-color: var(--main-color--);
}
.tape span {
  animation: scroll-Right 10s linear infinite;
}
@keyframes scroll-Right {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}

/* ########################################################################## */
/* cards */
.card.hidden {
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}
.card.visible {
  opacity: 1;
  transform: translateY(0);
}
.product-section {
  padding: 20px 0 50px;
  background: none!important;
}
.section-title {
  padding-top: 35px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  color: var(--main-color--);
}
.grid {
  padding: 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  justify-content: center;
}
@media (max-width: 950px) {
  .grid {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    justify-content: center;
  }
  .card-footer .description {
    font-size: 13px!important;
  }
  .card-footer .price {
    font-size: 8px!important;
  }
}
@media (max-width: 600px){
  .grid {
    padding: 0.5rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
    justify-content: center;
  }
  .card-footer .description {
    font-size: 12px!important;
  }
  .card-footer .price {
    font-size: 7px!important;
  }
}
.card {
  position: relative;
  overflow-y: hidden;
  min-height: 300px;
  transition: transform 0.3s ease;
  border: none!important;
}
.card h5 {
  margin: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white-color--);
}
.card a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.sale {
  position: absolute;
  right: 0px;
  background-color: red;
  color: var(--white-color--);
  padding: 5px;
  border-radius: 5px 0 5px 5px;
  font-weight: bold;
  z-index: 100000;
}
.card-front{
  position: relative;
  width: 100%;
  max-width: 300px;
  margin: auto;
}
.card-front-wrap {
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  object-fit: cover;
}
.card-footer {
  margin-top: auto;
  color: var(--white-color--);
  background: none!important;
  border: none!important;
}
.card-footer p {
  margin-bottom: 2px;
  margin-top: 1px;
  color: var(--main-color--);
}
.card-footer i {
  margin-right: 10px;
}
.card-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: opacity 0.5s linear;
  opacity: 1;
  cursor: pointer;
}
.moving-border {
  display: none;
}
.card-footer .description {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}
.card-footer .price {
  font-size: 14px;
  text-align: center;
}
/* ################################# */
.btn-custom {
  background-color: var(--yellow-color--) !important;
  padding: 15px !important;
  width: 110px;
  border-radius: 20px;
  transition: all 0.3s ease-in-out !important;
}
.btn-custom:hover {
  transform: scale(1.05);
}
/* ################################# */

/* ########################################################################## */
/* Slider */
.testimonials-section {
  padding: 15px 0px 90px;
  background: #faf4f5;
}
.testimonials-section .slider-wrapper {
  overflow: hidden;
  text-align: center;
}
.testimonials-section .section-title {
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 2rem;
  font-weight: bold;
  color: #333;
}
.testimonials-section .testimonial {
  user-select: none;
  padding: 15px !important;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.testimonials-section .testimonial .user-image {
  width: 250px;
  height: 300px;
  margin-bottom: 25px;
  object-fit: cover;
  position: relative;
  transition: all 0.3s ease;
}
.testimonials-section .testimonial .user-image:hover {
  transform: scale(1.03);
}
.testimonials-section .testimonial .name {
  margin-bottom: 15px;
  font-size: 1.12rem;
  font-weight: bold;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.testimonials-section .testimonial .feedback {
  line-height: 20px;
  font-style: italic;
  color: #555;
  margin-bottom: 25px;
}
.testimonials-section .testimonial:hover {
  transform: translateY(-10px);
  opacity: 1.2;
}
.testimonials-section .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  opacity: 1;
  background: var(--yellow-color--);
}
.testimonials-section .swiper-slide-button {
  color: var(--yellow-color--);
  transition: 0.2s ease;
}
.testimonials-section .swiper-slide-button:hover {
  color: var(--main-color--);
}
.testimonials-section ul {
  padding-left: 0rem !important;
}
.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease;
}
.swiper-slide {
  transition: transform 0.3s ease;
  transform-origin: center;
}
.swiper-slide-active {
  transform: scale(1.2) !important;
  z-index: 1;
}
.swiper-slide-next,
.swiper-slide-prev {
  transform: scale(0.95);
  z-index: 0;
}
@media (max-width: 450px) {
  .testimonials-section .testimonial .user-image {
    width: 180px;
    height: 180px;
    height: auto;
    padding: 10px;
    box-shadow:0 0 0 0 ;
  }
  .testimonials-section .testimonial .name {
    font-size: 1rem;
  }
  .testimonials-section .testimonial .feedback {
    line-height: 15px;
    font-size: .8rem;
  }
}
.testimonials-section .swiper-pagination{
  margin-top: 30px;
  position: relative;
}


/* ########################################################################## */
/* gallery */
.gallery-section {
  padding: 40px;
  background-color: #ffc65319;
}
.gallery-section .gallery-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
}

.gallery-section .gallery-item {
  overflow: hidden;
}

.gallery-section .gallery-item .gallery-image {
  width: 90%;
  height: 90%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s ease;
}

.gallery-section .gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-section .gallery-item.one {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-section .gallery-item.two {
  grid-column: span 2;
  grid-row: span 3;
}

.gallery-section .gallery-item.three {
  grid-column: span 2;
  grid-row: span 4;
}

.gallery-section .gallery-item.four {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-section .gallery-item.five {
  grid-column: span 3;
  grid-row: span 2;
}

.gallery-section .gallery-item.six {
  grid-column: span 2;
  grid-row: span 2;
}

/* ########################################################################## */
/* footer */
.container {
  max-width: 100%;
  margin: auto;
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul {
  list-style: none;
  padding: 0;
}
.footer {
  background-color: var(--main-color--);
  padding: 70px 0 20px;
}
.footer-col {
  flex: 1;
  padding: 0 15px;
  margin-bottom: 30px;
}
.footer-col h4 {
  font-size: 18px;
  color: var(--white-color--);
  text-transform: capitalize;
  margin-bottom: 15px;
  font-weight: 500;
  position: relative;
}
.footer-col ul li:not(:last-child) {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 16px;
  text-transform: capitalize;
  color: #bbbbbb;
  text-decoration: none;
  font-weight: 300;
  display: block;
  transition: all 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--white-color--);
  padding-left: 8px;
}
.footer-col .social-links a {
  display: inline-block;
  height: 40px;
  width: 40px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0 10px 10px 0;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  color: var(--white-color--);
  transition: all 0.2s ease;
}
.footer-col .social-links a:hover {
  color: #24262b;
  background-color: var(--white-color--);
}
@media (max-width: 1024px) {
  .footer-col {
    flex: 0 0 48%;
  }
}
@media (max-width: 767px) {
  .footer-col {
    flex: 0 0 48%;
  }
  .footer-col .social-links a {
    height: 25px;
    width: 25px;
    line-height: 25px;
  }
  .last-btn{
    background-color: rgba(255, 255, 255, 0.2)!important;
    color: var(--white-color--)!important;
    width: 200px!important;
  }
}
@media (max-width: 480px) {
  .row .footer-col{
    width: 50%;
  }  
}
.last-btn{
  background-color: rgba(255, 255, 255, 0.2)!important;
  color: var(--white-color--)!important;
  width: 150px!important;
}
.last-btn:hover{
  background-color: var(--white-color--)!important;
  color: var(--main-color--)!important;
}




/* @media (max-width: 900px) {
  .gallery-section .gallery-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-section .gallery-item.one {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-section .gallery-item.two {
    grid-column: span 1; 
    grid-row: span 2;
  }

  .gallery-section .gallery-item.three {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.four {
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-section .gallery-item.five {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.six {
    grid-column: span 1;
    grid-row: span 1;
  }
} */

/* @media (max-width: 600px) {
  .gallery-section .gallery-list {
    grid-template-columns: 1fr;
  }

  .gallery-section .gallery-item.one {
    grid-column: span 1;
    grid-row: span 2;
  }

  .gallery-section .gallery-item.two {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.three {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.four {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.five {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-section .gallery-item.six {
    grid-column: span 1;
    grid-row: span 1;
  }
} */


/* ########################################################################## */
/* Subscribe */
/* .Subscribe {
  background-color: var(--yellow-color--);
}
.Subscribe .row input {
  border: none;
  border-bottom: 1px solid var(--white-color--);
}
.Subscribe .row {
  text-align: center;
}
.Subscribe .row .btn:hover {
  background-color: var(--white-color--);
  color: var(--main-color--);
}
.Subscribe .row input:focus {
  outline: none;
}
.Subscribe ::placeholder {
  color: var(--white-color--);
}
.Subscribe .row button {
  background-color: var(--main-color--);
  color: var(--yellow-color--);
}
.Subscribe form input:not([type="submit"]):focus::placeholder {
  opacity: 0;
  transition: 0.3s;
}

@media (max-width: 767px) {
  .Subscribe .row .btn {
    width: 100%;
  }
  .Subscribe .row input {
    width: 100%;
  }
  .Subscribe .row .col-md-4,
  .Subscribe .row .col-md-8 {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .Subscribe .row .btn {
    width: auto;
  }
} */