@import url("https://fonts.googleapis.com/css2?family=Audiowide&display=swap");
:root {
  --white: #fff;
  --black: #000;
  --theme-orange: #f25926;
  --theme-color: #00008b;
}
html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  position: relative;
  background: #fff;
  overflow-x: hidden;
  height: 100%;
  font-family: "Poppins", sans-serif;
}

@media (min-width: 1700px) {
  .container {
    max-width: 1400px;
  }
}

section {
  position: relative;
  padding: 6rem 0;
}

p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.8;
  color: #828288;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "Poppins", sans-serif;
}

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

.img-auto {
  display: block;
  max-width: 100%;
  margin: 0 auto;
}

a,
button {
  text-decoration: none !important;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

a:hover,
button:hover {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

figure {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
/* Begin: Header CSS */

header .top-nav {
  background: var(--white);
  padding: 1rem 0;
}
header.sticky .top-nav {
  display: none;
}
header .top-nav p {
  font-size: 0.875rem;

  font-weight: 400;
  color: var(--black);
  margin: 0;
}
header .top-nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
}
header .top-nav ul li a {
  color: var(--black);
  font-size: 1.125rem;
  transition: 0.5s ease-in-out;
  position: relative;
}
header .top-nav ul li a .badge {
  background: var(--black);
  color: var(--white);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 200;
  font-style: normal;
  padding: 0;
  min-width: 20px;
  min-height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -8px;
  left: 10px;
}
.logo {
  position: absolute;
  top: -62px;
  left: -20%;
  background: var(--black);
  width: 40%;
  padding: 1rem 10% 1rem 0;
  display: flex;
  justify-content: flex-end;
}
header.sticky .logo {
  height: 80px;
  top: 0;
  padding: 0.3rem 10% 0.3rem 0;
}
header.sticky .logo img {
  width: 100px;
  height: auto;
}
.logo:after {
  content: "";
  width: 65px;
  height: 100%;
  background: #000;
  position: absolute;
  top: 0;
  right: -31px;
  transform: skew(-25deg, 0deg);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: ease all 0.5s;
  z-index: 1000;
}
header .navbar {
  padding: 0;
  width: 100%;
}
header.sticky {
  background: rgb(0 0 0 / 0.9);
}
header.sticky .navbar-brand img {
  width: 150px;
}
header .navbar .navbar-nav {
  padding: 1.5rem 0;
  gap: 1rem 2rem;
}
.navbar-nav .nav-item .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding: 0.1rem 0.75rem;
  text-transform: uppercase;
}
.navbar-nav .nav-item.active .nav-link,
.navbar-nav .nav-item .nav-link:hover {
  background-color: var(--theme-color);
}

/* END: Header */

.main-slider {
  position: relative;
}
.main-slider h2 {
  font-family: "Audiowide", cursive;
  font-size: 6rem;
  font-weight: normal;
  line-height: 1;
  color: var(--white);
}
.main-slider h3 {
  font-size: 1.875rem;
  color: var(--white);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
}
.main-slider p {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.8;
  width: 90%;
}
.themeBtn {
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 500;
  background-color: var(--theme-color);
  border: 1px solid var(--theme-color);
  padding: 0.75em 2em;
  min-width: 150px;
  margin: 0.5rem 0;
  display: inline-block;
}
.themeBtn:hover {
  color: var(--white);
  background-color: var(--theme-orange);
}
.carousel-caption {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: center;
}
.secHeading {
  font-size: 3.125rem;
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  font-family: "Audiowide", cursive;
  position: relative;
  text-transform: uppercase;
}

/* Search Box */
.searchBox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1111;
  height: 100%;
  width: 100%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: rgb(0 0 0 / 50%);
}
.searchBox .form-group {
  width: 100%;
  max-width: 50%;
  margin: 0 auto;
  display: flex;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.searchBox input {
  min-height: 60px;
  width: 100%;
  border: none;
  padding: 1rem;
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.searchBox button {
  background: #fff;
  color: #000;
  width: 60px;
  min-height: 60px;
  border: none;
}
.searchBox .searchClose {
  position: absolute;
  display: block;
  right: 2rem;
  top: 2rem;
  color: #fff;
  font-size: 2.15rem;
  cursor: pointer;
}

/* Feature section Start */
.feature-sec {
  padding: 5rem 0 7rem;
}

.feature-img img {
  position: relative;
  border-radius: 100%;
  transition: ease all 0.5s;
}
.feature-img:hover img {
  transform: rotate(360deg) scale(1.1);
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.feature-img p {
  font-size: 1.375rem;
  font-weight: 500;
  text-align: center;
  color: #333333;
  margin: 1rem 0 0;
}
.feature-img:hover p {
  color: var(--theme-color);
}
/* Feature section End */

/* Collection section Start */
.collections-sec {
  padding: 3rem 0 10rem;
}
.collectionThumb {
  position: relative;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
  transition: ease all 0.5s;
}
.collectionThumb:hover {
  transform: rotate(3deg);
}
.collectionThumb:hover img {
  box-shadow: 0 0 20px rgb(0 0 0 / 20%);
}
.collectionThumb a {
  font-size: 1.25rem;
  color: #000;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.collectionThumb p {
  font-size: 1.25rem;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.561);
  text-transform: uppercase;
  line-height: 1;
}
/* Collection section End */

.fitnessSec {
  background: url(../images/bgImage.jpg) center/cover no-repeat;
  position: relative;
  padding: 8rem 0;
}
.fitnessSec .secHeading {
  font-size: 5rem;
}
.fitnessSec h3 {
  font-size: 2.5rem;
  color: #797979;
  font-weight: 300;
  margin-bottom: 1.5rem;
}
.fitnessSec p {
  margin-bottom: 2rem;
  font-size: 1.125rem;
  color: #555555;
  width: 70%;
  line-height: 1.667;
}
.girls {
  position: absolute;
  bottom: 10rem;
  right: 65px;
  height: 100%;
}
.productSec .themeBtn,
.fitnessSec .themeBtn {
  background-color: var(--theme-orange);
  border-color: var(--theme-orange);
}
.productSec .themeBtn:hover,
.fitnessSec .themeBtn:hover {
  background-color: var(--theme-color);
}

/* Products Features */
.proThumb :is(.sale, .sold) {
  position: absolute;
  top: 15px;
  left: 30px;
  width: 65px;
  height: 65px;
  background: var(--theme-orange);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  text-transform: uppercase;
}
.sold {
  background: #8dc63f !important;
  text-align: center;
  padding: 4px 0px 0px 0px;
}
.proThumb {
  position: relative;
  margin-bottom: 1.5rem;
  transition: ease all 0.5s;
  border-bottom: 1px solid rgb(225, 225, 225);
}
.proThumb:hover,
.proThumb:focus {
  transform: rotate(3deg);
}
.proThumb .content h3 {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--black);
  text-transform: uppercase;
  margin: 0.75rem 0 0.25rem;
}
.proThumb .content h4 {
  font-size: 1.125rem;
  color: #0c0c0c;
  font-weight: 400;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.proThumb .content h4 del {
  color: #7e7a7a;
  font-weight: 400;
  margin-right: 1rem;
}
.proThumb .content h4 a {
  margin-left: auto;
  width: 50px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ccc;
  color: #000;
}
.proThumb .content h4 a:hover {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.foloow-sec {
  background-color: #f4f4f4;
  padding: 5rem 0;
}
.follow-img img {
  padding: 0px 15px;
}
.follow-slider .slick-arrow.slick-prev {
  background: url(../images/prev-arrow.png) center/60px no-repeat;
  left: -5rem;
}
.follow-slider .slick-arrow.slick-next {
  background: url(../images/next-arrow.png) center/60px no-repeat;
  right: -5rem;
}
.follow-slider .slick-arrow {
  font-size: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  top: 50%;
  transform: translateY(-50%);
}
.follow-slider .slick-arrow:before {
  content: none;
}

/* Begin: footer */
.news-letter {
  background: var(--theme-orange);
  padding: 4rem 0;
}
.news-letter h2 {
  font-size: 2.125rem;
  color: var(--white);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
}
.news-letter form {
  position: relative;
  display: flex;
  height: 80px;
  border: 2px solid var(--white);
  background: transparent;
}
.news-letter form .form-control {
  height: 100%;
  border-radius: 0;
  color: var(--white);
  font-size: 1.125rem;
  font-weight: 400;
  background-color: transparent;
  border: 0;
}
.news-letter form .form-control::placeholder {
  color: var(--white);
}
.news-letter form .themeBtn {
  color: #fff;
  height: 100%;
  margin: 0;
  background-color: var(--theme-color);
}
.news-letter form .themeBtn:hover {
  background: #000;
}
footer {
  background-color: #0c0c0c;
  padding-top: 6rem;
}
footer h4 {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  color: #fff;
}
.links a {
  font-size: 1rem;
  font-weight: 400;
  color: #a3a3a3;
  line-height: 3;
  transition: 0.5s;
  text-transform: uppercase;
}
.links a:hover {
  color: white;
}
.social-icon {
  display: flex;
  flex-direction: column;
  gap: 1rem 0;
}
.social-icon a {
  font-size: 1rem;
  font-weight: 400;
  color: #a3a3a3;
}
.social-icon i {
  margin-right: 10px;
}
.copy-right {
  background-color: #000;
  padding: 2rem 0;
  margin-top: 4rem;
}
.copy-right p {
  font-size: 1rem;
  color: #fff;
  margin: 0;
}
/* END: footer */

/* aboutPage */
.aboutPage {
  background-color: #f6f6f6;
  padding-top: 10rem;
}
.aboutPagep p {
  font-size: 1.0625rem;
  color: #555555;
  line-height: 1.824;
  text-align: justify;
}
.aboutPage .storyContent {
  margin-bottom: 2rem;
}
.litlImg p {
  margin-top: 4rem;
  font-size: 31px !important;
  color: #1d2833;
  font-style: italic;
  width: 84%;
  font-weight: 600;
  line-height: 40px !important;
}
.mt-6 {
  margin-top: 3.75rem;
}
a.AbtText {
  display: inline-block;
  color: #f25a29;
  font-size: 31px;
  font-style: italic;
  font-weight: 600;
  border-bottom: 1px solid #f25a29;
}

.collectInner {
  padding: 8rem 0 6rem;
}

/* Begin: Contact Us CSS*/
.contactSec {
  background: #f6f6f6;
  padding: 9rem 0 6rem;
}
.contactSec h2 {
  margin-bottom: 4rem;
}
.contactSec .form-control {
  height: 60px;
  border-width: 2px;
  border-color: rgb(225, 225, 225);
  border-style: solid;
  border-radius: 5px;
  background-color: rgb(255, 255, 255);
  margin-bottom: 2rem;
}
.contactSec label {
  font-weight: 600;
  font-size: 15px;
  color: #242424;
}
.contactSec textarea.form-control {
  height: 140px;
}
.formStyle {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 2rem;
}
.addressbox {
  margin: 4rem 0 0;
  display: flex;
  align-items: center;
  gap: 0 1rem;
}
.addressbox span {
  display: block;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.addressbox a,
.addressbox address {
  color: #000000;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  font-size: 2rem;
}
.contactSec .themeBtn {
  background-color: var(--theme-orange);
}
.contactSec .themeBtn:hover {
  background-color: var(--theme-color);
}
.mapside iframe {
  filter: grayscale(1);
}
/* END: Contact Us CSS*/

/* sideList */
.sideList ul li a {
  background-color: var(--white);
  display: inline-block;
  padding: 1.5em;
  font-size: 1.125rem;
  color: var(--black);
  text-transform: uppercase;
  line-height: 1;
  border: 1px solid #ebebeb;
  width: 100%;
}
.sideList ul li a.active,
.sideList ul li a:hover {
  background-color: var(--black);
  color: var(--white);
}

.shopInner .proThumb :is(.sale, .sold) {
  height: 3.125rem;
  width: 3.125rem;
  font-size: 12px;
  left: 0.5rem;
  top: 0.5rem;
}
