/*
Theme Name: Ministore
Theme URI: 
Author: 
Author URI: 
Description: Ministore is specially designed product packaged for Ministore by Moksha.
Version: 
*/

/*--------------------------------------------------------------
This is main CSS file that contains custom style rules used in this template
--------------------------------------------------------------*/

/*------------------------------------*\
    Table of contents
\*------------------------------------*/

/*------------------------------------------------

CSS STRUCTURE:

    
/*--------------------------------------------------------------
/** 1. VARIABLES
--------------------------------------------------------------*/
:root {
  --accent-color: #717171;
  --white-color: #fff;
  --black-color: #000;
  --gray-color: #f3f3f3;
  --gray-color-300: #d8d8d8;
  --gray-color-500: #aeaeae;
  --gray-color-800: #3a3a3a;
  --light-gray-color: #d7dddf;
  --primary-color: #72aec8;
  --bs-primary-rgb: 114, 174, 200;
  --light-color: #f8f9fa;
  --dark-color: #212529;
  --light-blue-color: #edf1f3;
  --navbar-color-color: #131814;
  --swiper-theme-color: #4a4a4a;
  --swiper-pagination-color: #4a4a4a;
  --dark-blue: rgb(25 79 144/1);
  --dark-green: rgb(55 63 65 /1);
}

/* on mobile devices below 600px
 */
@media screen and (max-width: 600px) {
  :root {
    --header-height: 100px;
    --header-height-min: 80px;
  }
}
@font-face {
  font-family: montserrat;
  src: url("font/Montserrat-VariableFont_wght.ttf");
}
@font-face {
  font-family: gilmer;
  src: url("font/Gilmer-Regular.woff");
}
@font-face {
  font-family: gilmer-light;
  src: url("font/gilmer-light.otf");
}
@font-face {
  font-family: gilmer-bold;
  src: url("font/gilmer-bold.otf");
}

/* Fonts */
:root {
  --body-font: "Lato", sans-serif;
  --heading-font: "Jost", sans-serif;
  --main-font: "montserrat";
  --para-font: "gilmer";
  --para-main: "gilmer-bold";
  --para-light: "gilmer-light";
}

/*----------------------------------------------*/
/* 1 GENERAL TYPOGRAPHY */
/*----------------------------------------------*/

/* 1.1 General Styles
/*----------------------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  overflow-x: hidden;
}
body {
  font-family: var(--body-font);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0;
  overflow-x: hidden;
}
p {
  font-size: 1.2em;
  color: var(--gray-color-500);
}
ul.inner-list li {
  font-size: 1.2em;
}
a {
  color: var(--dark-color);
  text-decoration: none;
  transition: 0.3s color ease-out;
}
a.light {
  color: var(--light-color);
}
a:hover {
  text-decoration: none;
  color: var(--primary-color);
}
h2 {
  font-family: var(--main-font);
}

/*------------ Background Color -----------*/
.bg-gray {
  background: var(--gray-color);
}
.bg-dark {
  background: var(--dark-color);
}
.bg-light {
  background: var(--light-color);
}
.bg-light-blue {
  background: var(--light-blue-color);
}

/* - Section Padding
--------------------------------------------------------------*/
.padding-xsmall {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
.padding-small {
  padding-top: 2em;
  padding-bottom: 2em;
}
.padding-medium {
  padding-top: 4em;
  padding-bottom: 4em;
}
.padding-large {
  padding-top: 7em;
  padding-bottom: 7em;
}
.padding-xlarge {
  padding-top: 9.5em;
  padding-bottom: 9.5em;
}

/* no padding */
.no-padding-top {
  padding-top: 0 !important;
}
.no-padding-right {
  padding-right: 0 !important;
}
.no-padding-bottom {
  padding-bottom: 0 !important;
}
.no-padding-left {
  padding-left: 0 !important;
}
.no-padding-tb {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.no-padding-lr {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.no-gutter {
  padding: 0 !important;
}

/* no padding and margin */
.no-padding {
  padding: 0 !important;
}
.no-margin {
  margin: 0 !important;
}

/* - Section margin
--------------------------------------------------------------*/
.margin-small {
  margin-top: 3em;
  margin-bottom: 3em;
}
.margin-medium {
  margin-top: 5em;
  margin-bottom: 5em;
}
.margin-large {
  margin-top: 7em;
  margin-bottom: 7em;
}
.margin-xlarge {
  margin-top: 9em;
  margin-bottom: 9em;
}

@media only screen and (max-width: 768px) {
  .margin-small,
  .margin-medium,
  .margin-large {
    margin-top: 1em;
    margin-bottom: 1em;
  }
}

/* - Section Title
--------------------------------------------------------------*/
h3.card-title,
h3.cart-title {
  font-size: 1.5em;
}

/* - Section width
--------------------------------------------------------------*/
.u-full-width {
  width: 100%;
  border: none;
}

/*--------------------------------------------------------------
/** 2.10 Buttons
--------------------------------------------------------------*/
/* - Button Sizes
------------------------------------------------------------- */
.btn.btn-small {
  padding: 0.8em 1.8em;
  font-size: 0.65em;
}
.btn.btn-medium {
  padding: 0.8em 2.8em;
  font-size: 1.1em;
  letter-spacing: 2px;
}
.btn.btn-large {
  padding: 2.4em 5.1em;
  font-size: 1.8em;
}

/* - Button Shapes
------------------------------------------------------------- */
.btn.btn-rounded,
.btn.btn-rounded::after {
  border-radius: 6px;
}
.btn.btn-pill,
.btn.btn-pill::after {
  border-radius: 2em;
}
/* button outline */
.btn.btn-outline-dark,
.btn.btn-outline-light,
.btn.btn-outline-accent {
  background: transparent;
  text-shadow: none;
  box-shadow: none;
}
.btn.btn-outline-dark:hover::after,
.btn.btn-outline-light:hover::after {
  background-color: transparent;
}
.btn.btn-outline-dark {
  border-color: rgba(0, 0, 0, 1);
  color: var(--dark-color);
}
.btn.btn-outline-dark:hover {
  background: var(--dark-color);
  color: var(--light-color);
}
.btn.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--light-color);
}
.btn.btn-outline-light:hover {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--primary-color);
}
.btn.btn-outline-accent {
  background: transparent;
  border-color: var(--accent-color);
  color: var(--dark-color);
}
.btn.btn-outline-accent:hover {
  border-color: var(--dark-color);
  color: var(--dark-color) !important;
}
.btn.btn-full {
  display: block;
  margin: 0.85em 0;
  width: 100%;
  letter-spacing: 0.12em;
}

/* no border radius */
.btn-rounded-none,
.btn-rounded-none::after {
  border-radius: 0;
}

/* - Buttons Color Scheme
------------------------------------------------------------- */
.btn.btn-normal {
  text-decoration: underline;
  border: none;
}
.btn.btn-normal:hover {
  text-decoration: none;
}
.btn.btn-accent {
  color: var(--light-color);
  background-color: var(--accent-color);
  border: none;
}
.btn.btn-accent:hover {
  color: var(--light-color) !important;
  background-color: var(--primary-color);
}
.btn.btn-black {
  background-color: var(--dark-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-black:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-light {
  background-color: var(--light-color);
  color: var(--dark-color);
  border: none;
}
.btn.btn-light:hover {
  background-color: var(--primary-color);
  color: var(--light-color);
}
.btn.btn-primary {
  background: var(--primary-color);
  color: var(--light-color);
  border: none;
}
.btn.btn-primary:hover {
  background-color: var(--dark-color);
  color: var(--light-color);
}

/* - Buttons Aligns
------------------------------------------------------------- */
.btn-left {
  text-align: left;
  display: block;
}
.btn-center {
  text-align: center;
  display: block;
}
.btn-right {
  text-align: right;
  display: block;
}

/*----------------------------------------------*/
/* 2 SITE STRUCTURE */
/*----------------------------------------------*/

/* - Search Bar
------------------------------------------------------------- */
.search-box {
  background: var(--gray-color);
  position: relative;
}
.close-button {
  position: absolute;
  top: 20px;
  right: 120px;
  cursor: pointer;
  z-index: 9;
}
.search-box input.search-input {
  font-size: 1.3em;
  width: 70%;
  height: 30px;
  padding: 25px;
  border-radius: 80px;
  border-color: rgb(0 0 0 / 25%);
  background: transparent;
}
.search-box svg {
  width: 22px;
  height: 22px;
  color: var(--primary-color);
}
.search-box svg.search {
  margin-left: -50px;
}

/** Search Form
--------------------------------------------------------------*/
.search-form input[type="search"].search-field {
  border: none;
  background: #f1f1f1;
  width: 100%;
  border-radius: 50px;
  padding: 10px 40px;
}
.search-form input[type="search"].search-field::focus {
  border-color: #af9aaa;
}
.search-form button {
  position: absolute;
  top: 6px;
  right: 9px;
  background: transparent;
  border: none;
}

/** Search Popup
--------------------------------------------------------------*/
.search-popup {
  background-color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  -webkit-transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
  -moz-transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
  transition:
    opacity 0.3s 0s,
    visibility 0s 0.3s;
}
.search-popup.is-visible {
  opacity: 1;
  visibility: visible;
  cursor: -webkit-image-set(
      url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23FFF' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E")
        1x,
      url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E")
        2x
    ),
    pointer;
  cursor: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%23000' d='M20 1l-1-1-9 9-9-9-1 1 9 9-9 9 1 1 9-9 9 9 1-1-9-9'/%3E%3C/svg%3E"),
    pointer;
  -webkit-transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
  -moz-transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
  transition:
    opacity 0.3s 0s,
    visibility 0s 0s;
}
.search-popup-container {
  background-color: transparent;
  position: relative;
  top: 50%;
  margin: 0 auto;
  padding: 0;
  width: 90%;
  max-width: 800px;
  text-align: center;
  box-shadow: none;
  cursor: default;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.is-visible .search-popup-container {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.search-popup-form {
  position: relative;
  margin: 0 0 3em 0;
}
.search-popup-form .form-control {
  padding: 0 0 0.375em 0;
  font-size: 2em;
}
.search-popup-form #search-popup-submit {
  display: none;
}
.search-popup .search-popup-close {
  display: block;
  position: absolute;
  top: 2em;
  right: 2em;
  margin: -0.5em;
  padding: 0.5em;
  line-height: 0;
}
.search-popup .search-popup-close:hover {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search-popup .search-popup-close i {
  display: block;
  position: relative;
  width: 1em;
  height: 1em;
  fill: rgba(0, 0, 0, 0.5);
}
.search-popup .search-popup-close:hover i {
  fill: rgba(0, 0, 0, 1);
}
.search-popup .cat-list-title {
  margin-top: 40px;
  margin-bottom: 10px;
  font-size: 0.6em;
  font-weight: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.search-popup .cat-list {
  margin: 0;
  list-style-type: none;
}
.search-popup .cat-list-item {
  display: inline-block;
  margin-bottom: 0;
  letter-spacing: 0.015em;
  font-size: 2em;
}
.search-popup .cat-list-item a {
  position: relative;
}
.search-popup .cat-list-item a::after {
  background: none repeat scroll 0 0 #fff;
  content: "";
  height: 1px;
  border-bottom: 1px solid #ff9697;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 100%;
  width: 100%;
  -webkit-transition:
    height 0.3s,
    opacity 0.3s,
    -webkit-transform 0.3s;
  transition:
    height 0.3s,
    opacity 0.3s,
    transform 0.3s;
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}
.search-popup .cat-list-item a:hover::after {
  height: 1px;
  opacity: 1;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}
.search-popup .cat-list-item::after {
  content: "/";
  padding: 0 5px;
  line-height: 1;
  color: rgba(0, 0, 0, 0.5);
  vertical-align: text-top;
}
.search-popup .cat-list-item:last-child::after {
  display: none;
}

@media only screen and (max-width: 991px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.425em;
  }
}
@media only screen and (max-width: 767px) {
  .search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}
@media only screen and (max-width: 575px) {
  .search-popup .cat-list-item,
  .search-popup-form .form-control {
    font-size: 1.125em;
  }
  .search-popup .search-popup-close {
    top: 1em;
    right: 1em;
  }
}

.search-popup input[type="search"] {
  font-size: 24px;
  height: 60px;
  padding: 26px;
}
.search-popup .search-form button {
  top: 12px;
  right: 15px;
}
.search-popup .search-form button svg {
  height: 28px;
  width: 28px;
}

/* 1. Header
/*----------------------------------------------*/
.text-nautical-blue {
  --tw-text-opacity: 1;
  color: rgb(25 79 144 / var(--tw-text-opacity));
}

.site-header {
  position: relative;
  width: 100%;
  z-index: 10;
  transition: background 0.3s ease-out;
}
.navbar-toggler svg.navbar-icon {
  width: 50px;
  height: 50px;
}
.navbar-nav .nav-item a.nav-link {
  --tw-text-opacity: 1;
  color: rgb(25 79 144 / var(--tw-text-opacity));
  font-size: 16px;
  position: relative;
  text-decoration: none;
  padding-bottom: 4px;
}

.navbar-nav .nav-item a.nav-link::after {
  content: "";
  visibility: hidden;
}

.navbar-nav .nav-item .nav-link:focus {
  outline: none;
  box-shadow: none;
}

@media (min-width: 992px) {
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
}

.dropdown:hover .dropdown-menu {
  display: block;
  margin-top: 0;
}

.dropdown-menu {
  top: 120%;
  margin-top: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  border: 1px solid #3b82f680;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  min-width: 20rem;
}

.dropdown-menu[data-bs-popper] {
  top: 120%;
  margin-top: 0.125rem;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  border: 1px solid #3b82f680;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.dropdown-menu h6 {
  border-bottom: 1px solid;
  color: rgb(25 79 144 / 1);
  padding-bottom: 10px;
}

.dropdown-item {
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: rgb(25 79 144 / 1);
  text-transform: capitalize;
}

.dropdown-item:focus,
.dropdown-item:hover {
  color: rgb(25 79 144 / 1);
  background-color: transparent;
}

.dropdown-item h6 {
  border-bottom: none !important;
  font-weight: bold !important;
  padding-bottom: 0;
}

.dropdown-item p {
  font-size: 14px;
  color: #000 !important;
  text-transform: capitalize;
}

.underline-text {
  display: inline-block;
  position: relative;
  text-wrap: wrap;
}

.underline-text::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--dark-blue);
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}

.underline-footer {
  display: inline-block;
  position: relative;
}

.underline-footer::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #ffff;
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}

.dropdown-item:hover .underline-text::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link:hover .underline-text::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.sfooter-link:hover .underline-footer::after{
  transform: scaleX(1);
  transform-origin: bottom left;
}


.sfooter-link{
  text-wrap: nowrap;
}
.navbar-nav .dropdown-menu {
  position: relative;
}

.underline-text2 {
  display: inline-block;
  position: relative;
  text-wrap: nowrap;
}

.underline-text2::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: #000;
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}

.dropdown-item:hover .underline-text2::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.nav-link:hover .underline-text2::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media screen and (max-width: 768px) {
  .dropdown-menu[data-bs-popper] {
    width: 100% !important;
  }
}

.nav-story {
  font-weight: bold;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 18px;
  border-bottom: 1px solid #3b82f699;
}

/* .dropdown-menu {
  right: 0;
  left: auto;
} */

.body-cart {
  font-family: "gilmer";
  font-size: 16px;
  line-height: 24px;
  color: #000;
  text-transform: none;
}

.link1 {
  font-family: gilmer;
  font-weight: 700;
  text-decoration-line: underline;
  color: var(--dark-blue);
  text-transform: capitalize;
}

.link1:hover {
  font-family: gilmer;
  font-weight: 700;
  text-decoration-line: underline;
  color: var(--dark-blue);
  text-transform: capitalize;
  opacity: 0.8;
}

.fa-bars {
  font-size: 35px;
  color: var(--dark-blue);
}

.f-login {
  border-right: 1px solid #3b82f680;
}

.md-navbar {
  display: none;
}

.accordion-body {
  padding: 0;
}

.accordion-button {
  color: var(--dark-blue);
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-size: 30px;
  text-align: left;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition:
    color 0.15s ease-in-out,
    background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out,
    border-radius 0.15s ease;
  border-bottom: 1px solid #000;
  background-color: transparent;
  font-family: "montserrat";
}

.accordion-button:not(.collapsed) {
  color: var(--dark-blue);
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  font-size: 30px;
  text-align: left;
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid #000;
  background-color: transparent;
  font-family: "montserrat";
}

.accordion-button:not(.collapsed)::after {
  background-image: none;
  transform: none;
}

.accordion-button::after {
  display: none;
}

.accordion-body {
  background-color: transparent;
}

.accordion-button:focus {
  box-shadow: none;
  outline: none;
}

@media screen and (max-width: 768px) {
  .lg-navbar {
    display: none;
  }

  .dropdown-menu {
    min-width: fit-content;
  }

  .md-navbar {
    display: block !important;
  }
  .navbar-brand {
    margin-right: 0px;
    top:0px;
    padding-right: 10px;
  }
  .f-login {
    border-right: none !important;
  }
  .img-login,
  .img-cart {
    width: 40px;
  }

  .cart {
    padding-left: 0px !important;
  }
}
/*------------ Offcanvas -------------- */
#header-nav .navbar-toggler:focus {
  box-shadow: none;
}
#header-nav .offcanvas.show {
  z-index: 9999;
  background-color: var(--white-color);
}
#header-nav .offcanvas-end {
  width: 500px;
}
.offcanvas.show .nav-item a.nav-link {
  font-size: 2em;
}
.offcanvas.show .offcanvas-body .navbar-nav {
  align-items: unset !important;
  padding-left: 20px;
}

/* .offcanvas-end{
  top:16%;
}

.offcanvas-backdrop{
  top:16%;
} */

/*------------ Top User Icons -----------*/
.site-header .user-items svg {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

@media only screen and (max-width: 991px) {
  #navbar .user-items {
    display: none;
  }
}

/* 2. Billboard
/*----------------------------------------------*/
/*------------Swiper Arrow -----------*/
#billboard .swiper-arrow {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}
.swiper-icon.swiper-arrow svg {
  fill: var(--light-gray-color);
}
.swiper-icon.swiper-arrow:hover svg,
.swiper-icon.swiper-arrow:focus svg {
  fill: var(--primary-color);
}
#billboard .swiper-arrow.swiper-arrow-prev {
  left: 0;
}
#billboard .swiper-arrow.swiper-arrow-next {
  right: 0;
}

@media only screen and (max-width: 767px) {
  #billboard .banner-content {
    margin-top: 210px;
  }
  #billboard .image-holder {
    margin-top: -390px;
    opacity: 0.3;
  }
  #billboard .swiper-arrow {
    top: 400px;
  }
}

/* 3. Icon Box - Company Services
/*----------------------------------------------*/
.icon-box .icon-box-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  #company-services .icon-box {
    flex-wrap: wrap;
  }
}

/* 4. Product
/*----------------------------------------------*/
.product-store .product-card .cart-concern {
  bottom: 75px;
  width: 100%;
  display: flex;
  justify-content: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: all 0.3s ease-out;
  opacity: 0;
}
.product-store .product-card:hover .cart-concern {
  bottom: 90px;
  opacity: 1;
}
.product-card .cart-concern svg {
  width: 16px;
  height: 16px;
  fill: var(--light-color);
  margin-left: 9px;
}
.product-card .card-detail span {
  font-size: 1.5em;
}

@media only screen and (max-width: 575px) {
  .product-store .product-card .card-detail {
    padding: 10px;
  }
}

/*------------Swiper Pagination -----------*/
.product-store .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 35px;
}
.swiper-pagination span.swiper-pagination-bullet {
  width: 15px;
  height: 15px;
}

/* 5. Testimonial
/*----------------------------------------------*/
.review-item blockquote {
  font-size: 2.5em;
  font-weight: 300;
  line-height: 1.2;
}
.rating svg.star {
  width: 16px;
  height: 16px;
  fill: var(--primary-color);
}
#testimonials .swiper-arrow svg {
  width: 45px;
  height: 45px;
  fill: var(--light-gray-color);
}
.review-content .swiper-arrow {
  top: 0;
  bottom: 0;
  z-index: 2;
}
.review-content .swiper-arrow.swiper-arrow-next {
  right: 0;
}
.review-content .quotation svg.quote {
  color: var(--light-blue-color);
}

@media only screen and (max-width: 767px) {
  #testimonials blockquote {
    font-size: 2em;
  }
  .review-content .swiper-arrow {
    bottom: -420px;
  }
}

/* 6. Subscribe
/*----------------------------------------------*/
.subscribe-content p {
  color: var(--gray-color-500);
}

@media only screen and (max-width: 1199px) {
  .subscription-form input.form-control,
  .subscription-form button {
    width: 100%;
    margin-bottom: 10px;
  }
}

/* 7. Instagram
/*----------------------------------------------*/
#instagram figure.instagram-item {
  width: 20%;
}
figure.instagram-item img.insta-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.instagram-item .icon-overlay {
  top: 30px;
  left: 0;
  width: 100%;
  height: auto;
  color: var(--light-color);
  opacity: 0;
  transition: 0.9s ease-out;
}
.instagram-item:hover .icon-overlay {
  top: 0;
  opacity: 1;
}
.instagram-item .icon-overlay svg.instagram {
  height: 50px;
}

@media only screen and (max-width: 767px) {
  #instagram figure.instagram-item {
    width: 30%;
  }
}

@media only screen and (max-width: 501px) {
  #instagram figure.instagram-item {
    width: 100%;
  }
}

/* 8. Footer
/*----------------------------------------------*/
/*------------ Social Icon -----------*/
#footer {
  background-image: url("asset/footer-background.jpg");
  background-size: cover;
  background-position: center;
  width: 100%;
  padding-top: 5%;
  font-family: gilmer;
  font-size: 14px;
  line-height: 24px;
  /* font-weight: 400; */
}

#footer a {
  color: var(--dark-blue) !important;
  font-weight: bold;
}

#footer .menu-item:hover .underline-text::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.social-links svg {
  width: 20px;
  height: 20px;
  color: var(--light-gray-color);
}
.social-links svg:hover {
  color: var(--primary-color);
}
.social-links li {
  padding-right: 30px;
}

#footer-bottom {
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 12px;
  text-wrap: nowrap;
  background-color: rgb(25 79 144);
  color: #ffff;
  font-family: "gilmer-bold";
  /* font-weight: bold; */
}

#footer-bottom a {
  font-size: 12px;
  text-wrap: nowrap;
  color: #ffff;
  font-family: "gilmer-bold";
  font-weight: bold;
}

/* 9. About Us Page
/*----------------------------------------------*/
/*------------ Video Icon -----------*/
.video-item a {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.video-item svg.video-player {
  width: 80px;
  height: 80px;
  padding: 19px;
  border-radius: 50%;
}

/* - Shop Page
--------------------------------------------------------------*/
/* ----------- Search Bar -----------*/
.shopify-grid select#input-sort {
  font-size: 1.2em;
  color: var(--dark-grey-color);
  border: none;
  padding: 0;
  text-align: center;
}

/* ----------- SideBar -----------*/
.sidebar input.search-field {
  width: 290px;
  height: 50px;
  box-shadow: 5px 5px 15px 5px #eee;
  border: 1px solid #eee;
  padding-left: 20px;
  outline-offset: 0;
}
.sidebar .search-icon {
  padding: 14px;
}
.sidebar svg.search {
  width: 20px;
  height: 20px;
}
.sidebar h5.widget-title {
  font-size: 1.4em;
  margin-bottom: 15px;
}
.sidebar .sidebar-list li {
  font-size: 1.2em;
}
.sidebar .sidebar-list li a {
  color: var(--dark-30);
}
.sidebar .sidebar-list li a:hover {
  color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  .widget-search-bar form {
    flex-wrap: wrap;
  }
}

/* ----------- Pagination -----------*/
.paging-navigation .pagination .page-numbers {
  font-size: 1.4em;
  color: var(--gray-color-500);
}
.paging-navigation .pagination .page-numbers:hover {
  color: var(--primary-color);
}
.paging-navigation .pagination svg {
  width: 35px;
}

/* 10. Single Product Page
/*----------------------------------------------*/
/*------------ Product Info -----------*/
.product-info .rating svg.star-fill {
  fill: var(--dark-color);
}
.product-info .select-list li.select-item {
  font-size: 1.2em;
}
.product-quantity .input-group {
  width: 140px;
  gap: 2px;
}
.product-quantity #quantity {
  height: auto;
  width: 20px;
  border: none;
  margin: 0;
  padding: 0;
}
.product-quantity #quantity,
.product-quantity .btn-number {
  width: 40px;
  height: 40px;
  text-align: center;
  background: #ffffff;
  border: 1px solid #e2e2e2;
  border-radius: 6px;
  color: #222;
  padding: 0;
}
.single-product .cart-wrap h4.item-title {
  font-size: 1.5em;
}
.single-product .product-quantity .stock-number {
  font-size: 1.2em;
}
.meta-product h4.item-title {
  font-size: 1.2em;
}

/*------------ Product Info Tabs -----------*/
.product-info-tabs .tabs-listing button {
  font-size: 2em;
  color: var(--dark-color);
}
.product-info-tabs .nav-tabs .nav-link {
  border: none;
}
.product-info-tabs .nav-tabs .nav-item.show .nav-link,
.product-info-tabs .nav-tabs .nav-link.active {
  color: var(--primary-color);
}

@media only screen and (max-width: 991px) {
  .product-info-tabs .tabs-listing button {
    font-size: 1.2em;
    padding-right: 20px !important;
  }
}

/* 10. Cart Page
-----------------------------------------------------*/
.shopify-cart .card-price .money {
  font-size: 1.5em;
}
.shopify-cart .total-price .money {
  font-size: 2.9em;
}
.total-price .cart-totals {
  font-size: 1.5em;
}
.shopify-cart .table th {
  width: 30%;
}

/* 11. Checkout Page
--------------------------------------------------------------*/
.list-group-item span {
  font-size: 1.2em;
}

/* 12. Blog Page
--------------------------------------------------------------*/
/*------------ Sidebar -----------*/
.sidebar-post-item h4.card-title {
  font-size: 1.2em;
}

/* 13. Sibgle Post Page
--------------------------------------------------------------*/
#single-post-navigation .post-navigation span.page-nav-title {
  font-size: 1.5em;
}
.post-navigation svg {
  width: 30px;
  height: 45px;
}
.post-navigation:hover svg,
.post-navigation:focus svg {
  fill: var(--primary-color);
}

/* 14. Home Page
--------------------------------------------------------------*/
.banner-div h2 {
  font-family: var(--main-font);
  color: #194f90;
  font-size: 42px;
  font-weight: 300;
  line-height: 54px;
}
.banner-div p {
  font-family: var(--main-font);
  color: #000;
  font-weight: normal;
}

.banner-btn {
  background-color: rgb(25 79 144) !important;
  padding-left: 25%;
  padding-right: 25%;
  border-radius: 20px;
  text-align: center;
  vertical-align: center;
}

.banner-btn:hover {
  background-color: #0e3058 !important;
}

.owl-carousel {
  position: relative;
}

.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px; /* spacing from edges */
  box-sizing: border-box;
  z-index: 1000;
}

.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: #ffffff82 !important; /* White circle */
  border: none;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease;
}

.owl-nav i {
  color: var(--dark-blue);
  font-size: 150%;
}

.owl-nav button.owl-prev:hover i,
.owl-nav button.owl-next:hover i {
  color: var(--dark-blue);
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  transform: scale(1.05);
}

.owl-dots {
  position: absolute;
  bottom: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex !important;
}

.owl-dot span {
  width: 10px;
  height: 10px;
  background: white;
  display: block;
  margin: 5px;
  border-radius: 50%;
  opacity: 0.5;
}

.owl-dot.active span {
  opacity: 1;
  background: #333;
}

.owl-carousel .item {
  height: 85vh;
  /* or fixed height like 500px */
  position: relative;
  overflow: hidden;
}

.owl-carousel .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* ensures the image covers the container */
  display: block;
}

.heading-3 {
  font-family: var(--main-font) !important;
  color: var(--dark-blue) !important;
  font-weight: 300 !important;
  text-wrap: balance !important;
  font-size: 32px !important;
  line-height: 40px !important;
}

.para {
  font-family: var(--para-font);
  /* font-weight: bold; */
  font-size: 16px;
  line-height: 24px;
  color: var(--dark-green);
}

.para-main {
  font-family: var(--para-main);
  font-size: 20px;
  font-weight: bolder;
  line-height: 26px;
  color: var(--dark-blue);
  margin-top: 15px;
  margin-bottom: 15px;
}

.prd-btn {
  background-color: rgb(25 79 144) !important;
  padding-left: 5%;
  padding-right: 5%;
  border-radius: 20px;
  text-align: center;
  vertical-align: center;
}

.prd-btn:hover {
  background-color: #0e3058 !important;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.play-btn:hover {
  opacity: 0.8;
  transform: translate(-50%, -50%) scale(1.1);
}

.modal-header {
  border: none;
}

.modal-content {
  background-color: transparent;
  border: none;
}

.modal.fade .modal-backdrop {
  background-color: transparent !important;
}

.modal-body {
  background-color: transparent;
  padding: 0;
}

#billboard-md{
  display: none;
}

.modal-close {
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 16 16'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center / 1em auto no-repeat;
  color: white; /* not strictly needed, but just in case */
  filter: none;
  opacity: 1;
}

.fade {
  transition: opacity .15s linear;
  background-color: #000;
  opacity: 1;
}

.vid-yt{
  max-width:900px;
  max-height: 523px;
  width:800px;
  height: 465px;
}

@media screen and (max-width:500px){
  #billboard-md{
    display: block !important;
  }
  #billboard{
    display: none !important;
  }
  .text-sm-center{
    text-align:center;
  }
  .owl-nav {
    display:none;
  }

  .footer-logo{
    display: none;
  }

  .vid-yt{
    width:100%;
    height:auto;
  }
}

/* 15. Template Page
--------------------------------------------------------------*/
.breadcrumb-item.active {
  color: #000;
}

.heading-2 {
  font-family: var(--main-font);
  color: var(--dark-blue);
  font-weight: 300;
  text-wrap: balance;
  font-size: 38px;
  line-height: 46px;
}

.custom-card {
  border-radius: 1rem;
  padding: 2rem 3rem;
  border-color: rgb(236 245 250);
  background-color: rgb(236 245 250);
}

.custom-card h3 {
  font-family: var(--para-font);
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
}

.subtitle-1 {
  font-family: var(--para-main);
  line-height: 26px;
  text-wrap: balance;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 15px;
}

.small-print {
  font-family: var(--para-font);
  font-size: 9px;
  line-height: 13px;
  font-weight: 400;
  color: #000;
}

.clickable {
  position: absolute;
  width: 11px;
  height: 11px;
  background-color: rgb(150 47 121);
  border-radius: 9999px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.clickable:hover {
  transform: scale(1.5);
}

.clickable::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background-color: white;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.2s ease-in-out;
}

.clickable:hover::after {
  width: 5px;
  height: 5px;
}

@media screen and (max-width: 768px) {
  #benefit img {
    width: 50% !important;
  }
}

#use ul li::marker {
  color: #5eb3e4;
}

.para-tmp {
  font-family: var(--para-font);
  /* font-weight: bold; */
  color: var(--dark-green);
  font-size: 13px !important;
  line-height: 19px !important;
}

/* 16. Phototherapy page
--------------------------------------------------------------*/

#how, #founder{
  background-color:rgb(236 245 250);
  padding-top:10%;
  padding-bottom:10%;
}

#phototherapy{
  padding-top:10%;
  padding-bottom:10%;
}