@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

p {
  margin: 0;
}

body {
  color: #fff;
  font-family: "Titillium Web", sans-serif;
}

img {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.section {
  padding: 80px 0 80px 0;
}
@media (max-width: 767px) {
  .section {
    padding: 40px 0 40px 0;
  }
}

main {
  color: white;
}

.navbar {
  position: fixed;
  width: 100%;
  z-index: 999;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1);
  background: rgba(0, 82, 150, 0.8);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  top: 0;
}
@media(max-width:1800px){
    #footer-map{
        height: 300px;
        width: 450px;
    }
    .bg-img{
        width: 100%;
    }
}
@media (max-width: 991px) {
  .navbar .collapse {
    width: 100%;
  }
  #footer-map{
    width: 150px;
    height: 140;
  }
}
@media (max-width: 767px) {
#footer-map{
    width: 100px;
    height: 100px;
    }
  .navbar .collapse,.bg-img {
    width: 100%;
  }
  .store-filter{
    display: none;
  }
}
.navbar-logo {
  padding: 26px 20px;
}
.navbar .navbar-nav .nav-link {
  font-size: 18px;
  color: #fff;
  transition: all 0.3 ease;
  font-weight: 400;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-link {
    padding-inline: 15px;
    padding-inline: 10px;
    border-bottom: 1px solid #d9d9d9;
    padding-block: 13px;
  }
}
@media (max-width: 991px) {
  .navbar .navbar-nav {
    padding-top: 20px;
  }
}
.navbar .navbar-nav .nav-item:last-child .navbar-nav .nav-link {
  border: none;
}
.navbar .navbar-nav .nav-link.active:hover,
.navbar .navbar-nav .nav-link.active.clicked {
  transition: all 0.3s ease-in;
  border-bottom: 1px solid #d9d9d9;
}
@media (max-width: 767px) {
  .navbar .navbar-nav .nav-link.active:hover,
  .navbar .navbar-nav .nav-link.active.clicked {
    color: #fff;
    background: #d71212;
  }
}
.navbar-line {
  width: 1px;
  height: 60px;
  display: flex;
  background-color: #9d9d9d;
}
@media (max-width: 991px) {
  .navbar-line {
    display: none;
  }
}
.navbar-icons {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 10px;
  padding-right: 61px;
}
@media (max-width: 991px) {
  .navbar-icons {
    flex-direction: column;
    padding-right: 0;
  }
}
.navbar-icons img {
  height: 40px;
  max-width: 40px;
  width: 100%;
}
.navbar-brand {
  max-width: 121px;
}
.navbar-brand img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.navigation {
  padding: 18px 0 18px 20px;
}
@media (max-width: 991px) {
  .navigation {
    padding: 18px 20px 18px 20px;
  }
}

.search-section {
  position: absolute;
  top: 80px;
  right: 220px;
  display: none;
  animation: slideDown 0.2s ease-in-out forwards;
  opacity: 0;
}
@media (max-width: 991px) {
  .search-section {
    position: relative;
    display: block;
    top: 0;
    right: 0;
    animation: slideDown 0s ease-in-out forwards;
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.search-section input {
  border: 2px solid #a6a6a6;
}
.search-section .form-input {
  width: 287px;
  height: 40px;
  outline: none;
}
.search-section #search::-moz-placeholder {
  font-size: 18px;
  padding-left: 10px;
}
.search-section #search::placeholder {
  font-size: 18px;
  padding-left: 10px;
}
.search-section .form-submit {
  background: #d71212;
  color: #fff;
  height: 40px;
  padding: 0 10px;
  border: 0;
}
.search-section .form-submit:hover {
  opacity: 0.8;
}

.search {
  cursor: pointer;
}

.search-section.active {
  position: absolute;
  top: 80px;
  right: 175px;
  display: block;
}

a {
  text-decoration: none;
}

i {
  font-size: 25px;
  color: #fff;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .search i {
    display: none;
  }
  #search-btn{
    display: none;
  }
}

#search-open form {
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-user {
  position: relative;
}
.nav-user-login {
  position: absolute;
  transition: ease-in-out 0.3s;
  bottom: -80px;
  right: 0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  z-index: 99;
  background-color: #fff;
  /* width: 210px; */
  opacity: 0;
  visibility: hidden;
}
.nav-user-login ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  margin: 0;
}
.nav-user-login ul li {
  list-style: none;
}
.nav-user-login ul li .sign-in-link {
  text-decoration: none;
  color: #fff;
}
.nav-user-login ul li .sign-up-link {
  text-decoration: none;
  color: #fff;
}
.mobile-only{
    display: none;;
}
.desktop-only{
    display: block;
}

@media (min-width: 992px) {
  .nav-user:hover .nav-user-login {
    opacity: 1;
    visibility: visible;
  }
}
.nav-user-txt {
  font-size: 18px;
  line-height: 22px;
  flex-shrink: 0;
  padding: 10px;
  border: 1px solid #d5d5d5;
  color: #fff;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  background-color: #fff;
}
.nav-user-txt.active {
  color: #fff;
  background-color: #d71212;
  border: none;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.custom-toggler.navbar-toggler[aria-expanded=true] .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 0, 0, 1)' stroke-width='3' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.page-title {
  padding-bottom: 40px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 500;
  text-align: center;
  line-height: 52px;
  text-transform: uppercase;
  color: #ffff00;
}
@media (max-width: 1199px) {
  .page-title {
    font-size: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .page-title {
    font-size: 35px;
    padding-bottom: 20px;
  }
  .mobile-only{
    display: block;;
}
.desktop-only{
    display: none;
}
}
@media (max-width: 767px) {
  .page-title {
    font-size: 25px;
    padding-bottom: 20px;
  }
    .mobile-only{
        display: block;;
    }
    .desktop-only{
        display: none;
    }
}

.about-msg {
  max-width: 600px;
  margin: auto;
  width: 100%;
}
.about-msg .description {
  font-size: 22px;
  line-height: 26px;
  font-weight: 300;
  text-align: center;
}
@media (max-width: 991px) {
  .about-msg .description {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .about-msg .description {
    font-size: 16px;
  }
}

.choose-containers {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  /* width: 100%; */
  gap: 50px;
  /* height: 100%; */
  padding: 20px 10px !important;
}
@media (max-width: 767px) {
  .choose-containers {
    gap: 25px;
  }
}
.choose-containers .swiper-slide {
  transition: all 200ms linear;
}

.choose-container {
  /* width: 100%; */
  margin: auto;
  padding: 30px;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border: 0;
  border-radius: 25px;
  background: rgba(0, 82, 150, 0.8);
}
@media (max-width: 767px) {
  .choose-container {
    padding: 25px;
  }
}
.choose-container .choose-title {
  font-size: 36px;
  line-height: 43px;
  color: #d71212;
}
@media (max-width: 1199px) {
  .choose-container .choose-title {
    font-size: 32px;
    line-height: 30px;
    font-weight: 600;
  }
}
@media (max-width: 991px) {
  .choose-container .choose-title {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
  }
}
@media (max-width: 767px) {
  .choose-container .choose-title {
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
  }
}
.choose-container p {
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 991px) {
  .choose-container p {
    font-size: 18px;
  }
}
@media (max-width: 767px) {
  .choose-container p {
    font-size: 16px;
  }
}
.choose-container img {
  max-width: 75px;
  max-height: 50px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1199px) {
  .choose-container img {
    max-width: 55px;
    width: 100%;
    max-height: 55px;
  }
}
@media (max-width: 991px) {
  .choose-container img {
    max-width: 45px;
    width: 100%;
    max-height: 45px;
  }
}
@media (max-width: 767px) {
  .choose-container img {
    max-width: 35px;
    width: 100%;
    max-height: 35px;
  }
}

.choose-btn-container {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.choose-container:hover img {
  transform: scale(1.1);
}

.choose {
  padding-bottom: 83px;
  background: rgba(2, 17, 35, 0.5);
}

.choose-main-container {
  position: relative;
}

.test {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin: auto;
  z-index: 99;
}

.choose-btn-container img {
  width: 30px;
  height: 30px;
}

.about {
  background: rgba(2, 17, 35, 0.5);
}

.carousel-section {
  position: relative;
  background: #005296;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 110px;
  padding-bottom: 60px;
}

.carousel-section img {
  max-width: 100%;
  max-height: 100vh;
  -o-object-fit: contain;
     object-fit: contain;
}

.hero-slide {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.hero-slide.hero-slide-active {
  opacity: 1;
}

.carousel-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 82, 150, 0.8);
  opacity: 15%;
  z-index: 10;
}

.carousel-display {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  color: #fff;
  background: #005296;
  z-index: 99;
  bottom: 0;
  /* width: 100%; */
  padding: 15px;
  font-size: 24px;
  font-weight: 400;
}
.carousel-display img {
  width: 26px;
  height: 26px;
}
@media (max-width: 767px) {
  .carousel-display {
    font-size: 18px;
  }
  .carousel-display img {
    width: 22px;
    height: 22px;
  }
}

.autoplay-progress {
  position: absolute;
  right: 56px;
  bottom: 66px;
  z-index: 10;
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #fff;
  font-size: 24px;
}
@media (max-width: 767px) {
  .autoplay-progress {
    display: none;
  }
}

.autoplay-progress svg {
  /* --progress: 0; */
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: #fff;
  fill: none;
  stroke-dashoffset: calc(125.6px * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
}

.carousel-section .swiper .swiper-pagination {
  position: absolute;
  bottom: 0;
  z-index: 100;
}
@media (max-width: 767px) {
  .carousel-section .swiper .swiper-pagination {
    display: none;
  }
}

.swiper .swiper-pagination-bullet {
  background-color: transparent;
  border-radius: 50%;
  /* border: 2px solid #d71212; */
  width: 12px;
  height: 12px;
}

.swiper .swiper-pagination-bullet-active {
  background-color: white;
}

.banner {
  background: rgba(2, 17, 35, 0.5);
}
.banner-img {
  height: 385px;
  max-width: 400px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .banner-img {
    display: none;
  }
}
.banner-img img {
  transition: all 0.3s ease-in-out;
}
.banner-deal {
  background: #d71212;
  color: #fff;
  text-decoration: none;
  transform: skew(-20deg);
  max-width: 169px;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
}
@media (max-width: 1199px) {
  .banner-deal {
    max-width: 200px;
    height: 30px;
  }
}
@media (max-width: 991px) {
  .banner-deal {
    max-width: 180px;
    height: 30px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .banner-deal {
    max-width: 120px;
    height: 30px;
    margin: auto;
  }
}
.banner-deal p {
  transform: skew(20deg);
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .banner-deal p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .banner-deal p {
    font-size: 14px;
  }
}
.banner-deal p:hover {
  transform: skew(20deg) scale(1.1);
}
.banner-container {
  max-width: 1025px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 50px 0;
}
.banner-container:hover .banner-img img {
  transform: scale(1.1);
}
.banner-content {
  max-width: 585px;
  width: 100%;
}
.banner-heading {
  font-size: 72px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Bebas Neue", sans-serif;
  line-height: 86px;
  margin-top: 20px;
}
@media (max-width: 1199px) {
  .banner-heading {
    font-size: 65px;
    line-height: 76px;
  }
}
@media (max-width: 991px) {
  .banner-heading {
    font-size: 50px;
    line-height: 66px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .banner-heading {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }
}
.banner-desc p {
  font-size: 18px;
  color: #fff;
}
@media (max-width: 1199px) {
  .banner-desc p {
    font-size: 18px;
    line-height: 20px;
  }
}
@media (max-width: 991px) {
  .banner-desc p {
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    max-width: 300px;
    margin: auto;
  }
}
@media (max-width: 767px) {
  .banner-desc p {
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    max-width: 300px;
    margin: auto;
  }
}
.banner-btn {
  background: #d9d9d9;
  color: #313131;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 180px;
  gap: 10px;
  padding: 12px 27px;
  border: 0;
  border-radius: 5px;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .banner-btn {
    padding: 5px 5px;
    margin: 20px auto 0 auto;
    max-width: 150px;
  }
}
@media (max-width: 767px) {
  .banner-btn {
    padding: 5px 5px;
    margin: 20px auto 0 auto;
    max-width: 100px;
  }
}
.banner-btn a {
  text-decoration: none;
  color: #313131;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 991px) {
  .banner-btn a {
    font-size: 14px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  .banner-btn a {
    font-size: 12px;
    line-height: 20px;
  }
}
.banner-btn img {
  max-width: 20px;
  width: 100%;
  height: 20px;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .banner-btn img {
    max-width: 15px;
    width: 100%;
    height: 15px;
  }
}
.banner-btn:hover {
  opacity: 0.8;
}
.banner-btn:hover img {
  transform: scale(1.1);
}
.banner-btn:hover a {
  transform: scale(1.1);
}

.brand-main-container {
  background: rgba(2, 17, 35, 0.5);
}

.brand-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  margin: auto;
  /* padding: 20px !important; */
}
@media (max-width: 767px) {
  .brand-content {
    gap: 10px 30px;
  }
}
.brand-content img {
  max-width: 125px;
  width: 100%;
  height: 125px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 767px) {
  .brand-content img {
    max-width: 100px;
    width: 100%;
  }
}
.brand-content img:hover {
  transform: scale(1.2);
}
.brand-content .swiper-wrapper {
  transition-timing-function: linear;
}

.page-title-second {
  font-family: "Bebas Neue", sans-serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 52px;
  text-transform: uppercase;
  color: #d71212;
}
@media (max-width: 1199px) {
  .page-title-second {
    font-size: 40px;
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .page-title-second {
    font-size: 35px;
    padding-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .page-title-second {
    font-size: 25px;
    padding-bottom: 20px;
  }
}

.view-more {
  font-size: 18px;
  color: #fff;
  background: #d71212;
  padding: 10px;
  text-transform: uppercase;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
}

@media (max-width: 1199px) {
  .view-more {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .view-more {
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .view-more {
    font-size: 12px;
    line-height: 20px;
    margin-bottom: 30px;
  }
}
.view-more:hover {
  transform: scale(1.1);
}

.categories {
  background: rgba(2, 17, 35, 0.5);
}
.categories-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.categories-listing {
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 40px; */
  width: 100%;
  margin: auto;
}
@media (max-width: 1199px) {
  .categories-listing {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .categories-listing {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .categories-listing {
    flex-wrap: wrap;
  }
}

.category img {
  box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border: 0;
  border-radius: 200px;
  max-width: 161px;
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
.recent-product-listings img{
    box-shadow: rgba(0, 0, 0, 0.24) 0 3px 8px;
  border: 0;
  border-radius: 25px;
  max-width: 161px;
  width: 100%;
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .category img {
    max-width: 180px;
    width: 100%;
    height: 180px;
  }
}
@media (max-width: 767px) {
  .category img {
    max-width: 120px;
    width: 100%;
    height: 120px;
  }
}
.category-title {
  text-align: center;
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 36px;
  margin-top: 10px;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .category-title {
    font-size: 18px;
    line-height: 20px;
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .category-title {
    font-size: 16px;
    line-height: 20px;
    margin-top: 10px;
  }
}

.category:hover img {
  transform: scale(1.1);
}

.recent-products {
  background: rgba(2, 17, 35, 0.5);
}

.recent-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}

.recent-product-listings {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 46px;
}
@media (max-width: 1199px) {
  .recent-product-listings {
    flex-wrap: wrap;
  }
}
@media (max-width: 991px) {
  .recent-product-listings {
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .recent-product-listings {
    flex-wrap: wrap;
  }
}

.item img {
  max-width: 330px;
  width: 100%;
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 991px) {
  .item img {
    max-width: 200px;
    width: 100%;
    height: 200px;
  }
}
@media (max-width: 767px) {
  .item img {
    max-width: 130px;
    width: 100%;
    height: 130px;
  }
}
.item-title {
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}
.item img,.store-grid-product-img-container img,.store-list-product-container img{
    background-color: white;
    border-radius: 20px;
    margin: 10px;
}
.prod-item-title {
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
    text-overflow: ellipsis;
    display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -2%;
  }
@media (max-width: 1199px) {
  .item-title {
    font-size: 22px;
    line-height: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 991px) {
  .item-title {
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .item-title {
    font-size: 18px;
    line-height: 20px;
    padding-bottom: 30px;
  }
  .email{
    overflow-wrap: break-word;
    display: none;
  }
}
.item a {
  color: #d71212;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
}

.item:hover img {
  transform: scale(1.1);
}

.footer {
  background: rgba(0, 82, 150, 0.8);
}
.footer-logo {
  max-width: 170px;
}
.footer-msg p {
  color: #fff;
  max-width: 318px;
  width: 100%;
  padding-top: 15px;
}
.footer-socials-icons {
  padding: 15px 0;
}
.footer-socials-icons img {
  max-width: 30px;
  width: 100%;
  height: auto;
}
.footer-title p {
  font-size: 20px;
  color: #d71212;
  text-transform: uppercase;
  font-weight: 700;
}
.footer-elements {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.footer-items-second a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  padding-top: 15px;
}
@media (max-width: 1199px) {
  .footer-items-second a {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .footer-items-second a {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer-items-second a {
    font-size: 14px;
  }
}
.footer-items-second-second {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.footer-contact-info {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 15px;
  padding-top: 15px;
}
.footer-contact-info p {
  color: #fff;
  font-size: 18px;
}
@media (max-width: 1199px) {
  .footer-contact-info p {
    font-size: 18px;
  }
}
@media (max-width: 991px) {
  .footer-contact-info p {
    font-size: 16px;
  }
}
@media (max-width: 767px) {
  .footer-contact-info p {
    font-size: 14px;
  }
}
.footer-contact-info img {
  max-width: 20px;
  width: 100%;
  height: auto;
}
.footer-copyright p {
  color: #fff;
  text-align: center;
  padding: 14px 0;
}

.footer-content {
  display: flex;
  justify-content: center;
  /* align-items: center;
  gap: 50px; */
  padding: 60px 0 60px 0;
}
@media (max-width: 767px) {
  .footer-content {
    align-items: start;
    gap: 45px 0;
  }
}

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  background-position: center;
  /* background-image: url(../../assets/images/bgfour.png); */
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1; /* Ensure the background stays behind other content */
}

.bg-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 50%;
}

.store-breadcrumb .breadcrumb {
  color: #fff;
}
.breadcrumb-item.active,.breadcrumb-item.active::before{
    color: #ffff00;
}
.store-breadcrumb .breadcrumb-item a {
  color: #fff;
  text-decoration: none;
}
.store-grid-product-img-container {
  margin: 0 auto;
  max-width: 249px;
}
.store-list-product-img-container {
  max-width: 250px;
  flex: 1;
  width: 100%;
}
.store-wrapper {
  padding: 130px 0;
}
@media (max-width: 767px) {
  .store-wrapper {
    padding: 120px 0;
  }
}
.store-filter {
  border-radius: 15px;
  border: 1px solid #d9d9d9;
  background: rgba(0, 82, 150, 0.2);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  padding: 30px;
}
.store-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.store-filter-ttl {
  color: #fff;
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  line-height: 33.6px;
  letter-spacing: -0.56px;
}
.store-filter-reset {
  color: #d71212;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  letter-spacing: -0.32px;
  text-decoration-line: underline;
  cursor: pointer;
}
.store-filter-section {
  margin-top: 25px;
}
.store-filter-head-txt {
  color: #fff;
  background: linear-gradient(90deg, rgba(32, 67, 108, 0.92) 0%, #082241 100%);
  font-family: "Titillium Web";
  font-size: 18px;
  font-style: bold;
  font-weight: 400;
  line-height: 16.8px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d9d9d9;
}
.store-filter-list {
  margin-top: 10px;
  max-height: 18em;
  color: #fff;
}
.store-filter-input {
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
  /* 120% */
  letter-spacing: 0.36px;
  gap: 10px;
}
.store-filter-more {
  color: #d71212;
  font-size: 16px;
  font-weight: 300;
  line-height: 19.2px;
  margin-top: 10px;
}
.store-filter-range {
  margin-top: 10px;
}
.store-filter-range .irs--round .irs-handle {
  background-color: #fff;
  border-color: #d71212;
}
.store-filter-range .irs--round .irs-bar {
  background-color: #d71212;
}
.store-filter-range .irs--round .irs-from,
.store-filter-range .irs--round .irs-to {
  background-color: #d71212;
}
.store-filter-range .irs--round .irs-from::before,
.store-filter-range .irs--round .irs-to::before {
  border-top-color: #d71212;
}
.store-filter-range .irs--round .irs-single {
  background-color: #d71212;
}
.store-filter-range .irs--round .irs-single:before {
  border-top-color: #d71212;
}
.store-list-product-content {
  display: flex;
  justify-content: start;
  align-items: flex-start;
  padding: 30px 20px;
  gap: 20px;
  color:#fff;
}
@media (max-width: 767px) {
  .store-list-product-content {
    padding: 25px 10px;
  }
}
.store-list-product-content img {
  max-width: 249px;
  width: 100%;
  height: 152px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (min-width: 768px) {
  .store-list-product-content .product-title {
    font-size: 18px;
    line-height: 33.6px;
  }
}
.store-grid-product-content div img {
  position: relative;
  max-width: 249px;
  width: 90%;
  height: 200px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  /* padding: 20px 13px 0 13px; */
}
.store-list-product-container {
  position: relative;
  border: 1px solid #d9d9d9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 200px;
  margin-bottom: 20px;
  background-color: rgba(0, 82, 150, 0.8);
}
@media (max-width: 767px) {
  .store-list-product-container {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .store-list-product-container {
    width: 100%;
  }
}
.store-list-product-container:last-child {
  margin-bottom: 0;
}
.store-grid-product-container {
  position: relative;
  border: 1px solid #d9d9d9;
  box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.25);
  width: calc(33.3333333333% - 14px);
  background-color: rgba(0, 82, 150, 0.8);
  overflow: hidden;
}
@media (max-width: 767px) {
  .store-grid-product-container {
    width: 100%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .store-grid-product-container {
    width: calc(50% - 10.5px);
  }
}
@media (min-width: 1200px) {
  .store-grid-product-container {
    width: calc(25% - 15.75px);
  }
}
.store-grid-cart img {
  opacity: 0;
  position: absolute;
  top: 10px;
  right: 15px;
  width: 30px;
  height: 30px;
  z-index: 99;
  border: 1px solid #d71212;
  padding: 3px;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.store-grid-product-container:hover .store-grid-cart img {
  opacity: 1;
  transform: scale(1.2);
}
.store-list-cart img {
  opacity: 0;
  position: absolute;
  top: 10px;
  left: 15px;
  width: 30px;
  height: 30px;
  z-index: 99;
  border: 1px solid #d71212;
  padding: 3px;
  border-radius: 2px;
  transition: all 0.2s ease-in-out;
}
.store-list-product-container:hover .store-list-cart img {
  opacity: 1;
  transform: scale(1.2);
}
.store-grid-product-info {
  margin: 25px auto;
  text-align: center;
}
.store-grid-product-info a {
  text-decoration: none;
  color: #d71212;
  font-size: 16px;
  line-height: 19px;
  margin-top: 9px;
  display: block;
}
@media (max-width: 991px) {
  .store-grid-product-info a {
    font-size: 14px;
    line-height: 18px;
  }
}
.store-list-product-info {
  max-width: 100%;
  flex: 1;
}
.store-list-product-info a {
  text-decoration: none;
  color: #d71212;
  font-size: 16px;
  line-height: 19px;
  margin-top: 9px;
  display: block;
}
@media (max-width: 991px) {
  .store-list-product-info a {
    font-size: 14px;
    line-height: 18px;
  }
}
.store-row {
  padding: 0 15px;
}
.store-row.row > * {
  padding-right: 0 !important;
}
.store-grid-product-row {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 50px 21px;
  max-width: 1100px;
}
@media (max-width: 1199px) {
  .store-grid-product-row {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .store-grid-product-row {
    gap: 20px;
  }
}
.store-list-product-row {
  max-width: 867px;
  margin: 0 auto;
}
.store-view {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.store-sort {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.store-sort select {
  border: 1px solid #ccc;
  padding: 5px 10px;
}
.store-view-sort {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
@media (max-width: 767px) {
  .store-view-sort {
    margin-bottom: 20px;
  }
}
@media (max-width: 991px) {
  .store-view-sort {
    justify-content: center;
    padding-top: 40px;
  }
}
.grid-list img {
  width: 30px;
  height: 30px;
}
.store-line {
  width: 1px;
  height: 27px;
  display: flex;
  background-color: #9d9d9d;
}
.store-view-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}
.store-sort-title {
  font-size: 16px;
  line-height: 26px;
  font-weight: 600;
}
.store-pagination {
  padding-top: 94px;
}
.store-pagination img {
  width: 20px;
  height: 20px;
}

.product-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 25.2px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 991px) {
  .product-title {
    font-size: 18px;
    line-height: 22px;
  }
}
.product-brand-name {
  font-size: 18px;
  font-weight: 400;
  line-height: 21.6px;
}
@media (max-width: 991px) {
  .product-brand-name {
    font-size: 14px;
    line-height: 20px;
  }
}
.product-price {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  line-height: 21.6px;
}
@media (max-width: 991px) {
  .product-price {
    font-size: 16px;
    line-height: 20px;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
@media (max-width: 991px) {
  .pagination {
    gap: 10px;
  }
}
.pagination .page-item a {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  line-height: 21px;
  font-weight: 400;
  border: none;
}
@media (max-width: 991px) {
  .pagination .page-item a {
    font-size: 16px;
    line-height: 22px;
  }
}
.pagination .page-prev {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-prev img {
  padding-bottom: 4px;
}
.pagination .page-next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-next img {
  padding-bottom: 4px;
}
.pagination .number a {
  background-color: #d9d9d9;
}

.store-grid-product-img-container img {
  transition: all 0.2s ease-in-out;
}

.store-grid-product-container:hover img {
  transform: scale(1.1);
}

.store-list-product-img-container img {
  transition: all 0.2s ease-in-out;
}
.store-list-product-container:hover img {
  transform: scale(1.1);
}

.grid-list {
  cursor: pointer;
}
.grid-list .grid--list-active {
  display: none;
}
.grid-list.active .grid--list-active {
  display: block;
}
.grid-list.active .grid--list-norm {
  display: none;
}

.container-store {
  max-width: 1340px;
  width: 100%;
  margin: auto;
  background-color: rgba(0, 82, 150, 0.2);
}

.product-swiper {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.bottom-img img {
  border: 1px solid #082241;
}

.product-swiper {
  background-size: cover;
  background-position: center;
}

.mySwiper2 {
  height: 80%;
  width: 100%;
}

.mySwiper {
  height: 20%;
  box-sizing: border-box;
  padding: 10px 0;
}

.mySwiper .product-swiper {
  width: 25%;
  height: 100%;
  opacity: 0.4;
}

.mySwiper .swiper-slide-thumb-active {
  opacity: 1;
}

.product-swiper img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.product-details-body {
  background: #eff0f5;
}
.product-details-page {
  display: flex;
  justify-content: start;
  align-items: start;
  gap: 90px;
  background-color: rgba(0, 82, 150, 0.2);
  padding: 50px;
}
@media (max-width: 991px) {
  .product-details-page {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .product-details-page {
    flex-direction: column;
  }
}
.product-details-image-section {
  max-width: 500px;
  width: 100%;
  height: 400px;
}
.product-details-title {
  display: -webkit-box;
  /* -webkit-line-clamp: 2; */
  -webkit-box-orient: vertical;
  /* overflow: hidden; */
  font-size: 40px;
  font-weight: 600;
  line-height: 55px;
  letter-spacing: -2%;
  color:#fff;
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .product-details-title {
    font-size: 30px;
  }
}
.product-details-price {
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -2%;
  color:#ffff00;
}
.product-details-addToCart-btn {
  padding: 10px 15px 10px 15px;
  background: #A92208;
  color: #fff;
  border: 0;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.2s ease;
}
.product-details-addToCart-btn:hover {
  background-color: rgba(8, 34, 65, 0.9);
}
.product-details-description {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}
.product-details-related-product {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 50px 21px;
}
@media (max-width: 1199px) {
  .product-details-related-product {
    padding: 0 15px;
  }
}
@media (max-width: 767px) {
  .product-details-related-product {
    gap: 20px;
  }
}
.product-details-colors-section ul {
  display: flex;
  gap: 20px;
}
.product-details-colors-section ul li {
  list-style: none;
  cursor: pointer;
}
.product-details-colors-section ul .color-first {
  width: 20px;
  height: 20px;
  background-color: red;
  outline: 1px solid #bebebe;
  outline-offset: 3px;
  border-radius: 2px;
}
.product-details-colors-section ul .color-first.active {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-colors-section ul .color-first:hover {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-colors-section ul .color-second {
  width: 20px;
  height: 20px;
  background-color: green;
  outline: 1px solid #bebebe;
  outline-offset: 3px;
  border-radius: 2px;
}
.product-details-colors-section ul .color-second.active {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-colors-section ul .color-second:hover {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-colors-section ul .color-third {
  width: 20px;
  height: 20px;
  background-color: blue;
  outline: 1px solid #bebebe;
  outline-offset: 3px;
  border-radius: 2px;
}
.product-details-colors-section ul .color-third.active {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-colors-section ul .color-third:hover {
  transform: scale(1.1);
  outline: 1px solid #fff;
}
.product-details-size-section ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
@media (max-width: 767px) {
  .product-details-size-section ul {
    gap: 10px;
  }
}
.product-details-size-section ul .size-btn {
  /* width: 40px;
  height: 30px; */
  border: 1px solid #fff;
  text-align: center;
  font-size: 14px;
  line-height: 30px;
  cursor: pointer;
  margin-right: 10px;
  border-radius: 5px;
}
.product-details-size-section ul .size-btn.active {
  transform: scale(1.1);
  border: 2px solid #fff;
}
.product-details-size-section ul .size-btn:hover {
  transform: scale(1.1);
  border: 2px solid #fff;
}

.margins {
  margin-top: 20px;
}

.product-details-quantity {
  display: flex;
  align-items: center;
}

.product-details-quantity input[type=button] {
  width: 30px;
  height: 30px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
  font-size: 16px;
}

.product-details-quantity input[type=number] {
  width: 50px;
  height: 30px;
  text-align: center;
  border: 1px solid #ccc;
  border-radius: 15px;
  margin: 0 10px;
  font-size: 16px;
}

.product-details-quantity input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
}

.product-details-quantity input[type=button]:hover {
  background-color: #f0f0f0;
}

.product-details-quantity input[type=button]:active {
  background-color: #e0e0e0;
}

.product-details-quantity input[type=button]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.related-view-more {
  text-align: center;
  margin-top: 30px;
}
.related-view-more a {
  text-decoration: none;
  color: #fff;
  background: #082241;
  padding: 8px 12px 8px 12px;
}
.related-view-more a:hover {
  background-color: rgba(8, 34, 65, 0.9);
}

.related-products {
  max-width: 1240px;
  width: 100%;
  margin: auto;
}

.product-breadcrumb {
  margin-top: 50px;
}
@media (max-width: 767px) {
  .product-breadcrumb {
    margin-top: 70px;
  }
}

.cart-page {
  margin-top: 80px;
  padding-inline: 15px;
}
.cart-ttl {
  font-size: 32px;
  line-height: 38.4px;
  font-weight: 700;
  padding-bottom: 20px;
  border-bottom: 1px solid #dfdfdf;
}
@media (max-width: 767px) {
  .cart-ttl {
    font-size: 22px;
    line-height: 22.4px;
  }
}
.cart-table-th {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .cart-table-th {
    display: none;
  }
}
.cart-table-td {
  font-weight: 700;
  color: #999999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 30px 0;
}
@media (max-width: 767px) {
  .cart-table-td {
    padding: 10px 0;
  }
}
.cart-table-td.first {
  max-width: 500px;
  justify-content: flex-start;
}
@media (min-width: 576px) {
  .cart-table-td.first {
    max-width: 375px;
  }
}
@media (min-width: 768px) {
  .cart-table-td.first {
    max-width: 500px;
  }
}
@media (max-width: 767px) {
  .cart-table-td.first {
    flex-basis: 100%;
  }
}
.cart-table-td.second {
  max-width: 200px;
}
@media (max-width: 767px) {
  .cart-table-td.second {
    max-width: 160px;
  }
}
.cart-table-td.third {
  max-width: 200px;
}
@media (max-width: 767px) {
  .cart-table-td.third {
    max-width: 75px;
  }
}
.cart-table-td.fourth {
  max-width: 200px;
}
@media (max-width: 767px) {
  .cart-table-td.fourth {
    display: none;
  }
}
.cart-table-td.fifth {
  max-width: 150px;
}
@media (max-width: 767px) {
  .cart-table-td.fifth {
    max-width: 50px;
  }
}
@media (max-width: 767px) {
  .cart-table-td-txt {
    font-size: 13px;
    line-height: 21px;
  }
}
.cart-table-tr {
  display: flex;
  align-items: center;
  color: #222;
  justify-content: center;
}
@media (max-width: 767px) {
  .cart-table-tr {
    flex-wrap: wrap;
  }
}
.cart-table-tr:not(:last-of-type) {
  border-bottom: 1px solid #d9d9d9;
}
.cart-table-tr .cart-table-td-txt {
  color: #222;
}
.cart-table-product {
  display: flex;
  align-items: center;
  gap: 25px;
}
.cart-table-product-img {
  max-width: 100px;
}
.cart-table-product-img img {
  -o-object-fit: contain;
     object-fit: contain;
  width: 100%;
  height: 100px;
}
@media (max-width: 768px) {
  .cart-table-product-img img {
    height: 50px;
  }
}
.cart-table-product-content {
  max-width: calc(100% - 100px);
  width: 100%;
}
.cart-table-product-ttl {
  color: #222;
  font-weight: 700;
  font-size: 22px;
  line-height: 26.4px;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 767px) {
  .cart-table-product-ttl {
    font-size: 17px;
    line-height: 21.4px;
  }
}
.cart-table-product-desc {
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: #676767;
}
@media (max-width: 767px) {
  .cart-table-product-desc {
    font-size: 13px;
  }
}
.cart-table-product-remove {
  cursor: pointer;
}
.cart-table-product-remove img {
  width: 30px;
}
@media (max-width: 767px) {
  .cart-table-product-remove img {
    width: 20px;
  }
}
.cart-continue {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  text-decoration: none;
  color: #222;
  cursor: pointer;
  margin-top: 20px;
}
.cart-continue img {
  width: 25px;
}
.cart-checkout {
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: start;
}
@media (max-width: 768px) {
  .cart-checkout {
    align-items: center;
  }
}
.cart-checkout-title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 700;
  background: #222;
  padding: 10px 10px;
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 70px;
  width: 100%;
}
.cart-checkout-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cart-checkout-btn button {
  width: 100%;
  background-color: #ea3434;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid #ea3434;
  font-weight: 700;
  transition: all 0.2s ease;
  height: 40px;
  padding: 0 50px;
  font-size: 16px;
}
@media (min-width: 768px) {
  .cart-checkout-btn button {
    line-height: 24px;
    font-size: 20px;
  }
}
.cart-checkout-btn button:hover {
  background-color: #fff;
  color: #ea3434;
}
.cart-checkout-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 767px) {
  .cart-checkout-detail {
    justify-content: center;
    align-items: center;
  }
}
.cart-checkout-detail-ttl {
  font-weight: 700;
  font-size: 16px;
  line-height: 16.4px;
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.cart-checkout-detail-ttl span {
  font-weight: 600;
  color: #999999;
}
@media (min-width: 768px) {
  .cart-checkout-detail-ttl {
    font-size: 16px;
    line-height: 26.4px;
  }
}

.page-logo-section {
  max-width: 121px;
}
.page-logo-section img {
  width: 100%;
  height: auto;
}

.page-heading-section p {
  font-size: 30px;
  font-weight: 700;
  line-height: 44px;
  color: #082241;
}
.signup-page {
    margin-top: 10rem;
  }
.signup-form {
  max-width: 400px;
  width: 100%;
  margin: auto;
}
.signup-form label {
  display: block;
  text-align: center;
  font-weight: 600;
}
.signup-form input::-moz-placeholder {
  text-align: center;
  color: #bebebe;
}
.signup-form input::placeholder {
  text-align: center;
  color: #bebebe;
}
.signup-form span {
  color: red;
  font-size: 20px;
}
.signup-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.page-btn-section {
  display: flex;
  justify-content: center;
  align-items: center;
}
.page-btn-section button {
  color: #fff;
  background: #082241;
  padding: 10px 25px 10px 25px;
  border: 0;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.page-btn-section img {
  width: 15px;
}

.login-btn-section {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -2%;
  color: #000;
}
.login-btn-section a {
  color: #082241;
}

.page-margin {
  margin-top: 130px;
}

.about-us-content p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -2%;
  /* color: #3e3e3e; */
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .about-us-content p {
    font-size: 16px;
  }
}

.faq-content p {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -2%;
  color: #ff0000;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .faq-content p {
    font-size: 16px;
  }
}
.faq span {
  color: #fff;
}

.accordion-header button {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -2%;
  line-height: 24px;
}

.contact-map iframe {
  width: 100%;
  height: 500px;
}

.contact-btn button {
  background: #082241;
  color: #fff;
  transition: all 0.4s ease;
}
.contact-btn button:hover {
  background: #fff;
  color: #082241;
  border: 1px solid #082241;
}/*# sourceMappingURL=app.css.map */
.iconClass{
    position: relative;
  }
  .iconClass span{
    position: absolute;
    top: -8px;
    right: -12px;
    display: block;
  }
