@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/GillSans Condensed.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 300;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Light.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 300;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Light Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 500;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Medium.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 500;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Medium Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Bold.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/GillSans Condensed Bold.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 700;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Bold Italic.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: normal;
  font-weight: 900;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Heavy.woff") format("woff");
}
@font-face {
  font-family: "Gill Sans";
  font-style: italic;
  font-weight: 900;
  src: local("Gill Sans"), url("styleComponents/Gill Sans/Gill Sans Heavy Italic.woff") format("woff");
}
html {
  font-size: 62.4%;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Gill Sans";
}

body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: #777;
  background-color: #fff;
  -webkit-font-smoothing: none;
  -webkit-font-smoothing: subpixel-antialiased;
  box-sizing: border-box;
}

#scroll-up {
  position: absolute;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #e01e49;
  border-radius: 50%;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  display: none;
}

#scroll-up:hover {
  background-color: white;
}

#loading {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20000;
  width: 100vw;
  height: 100vh;
  background-color: white;
  display: grid;
  place-items: center;
}
#loading div {
  width: 150px;
  position: relative;
}
#loading img {
  width: 100%;
}
#loading div::before {
  content: "";
  width: 50px;
  height: 50px;
  bottom: -35px;
  left: 0;
  background: url("../images/loading/wheel.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}
#loading div::after {
  content: "";
  width: 50px;
  height: 50px;
  bottom: -35px;
  right: 10px;
  background: url("../images/loading/wheel.svg") center center no-repeat;
  background-size: contain;
  position: absolute;
  z-index: 10;
  animation: spin 1s linear infinite;
}

footer {
  background: #1e1e1e;
  position: relative;
}
footer img {
  width: 10rem;
}
footer .legal h3 {
  font-weight: bold;
  font-size: 20px;
}
footer p {
  font-size: 2rem;
  color: rgb(177, 177, 177);
  padding: 0 6px;
  margin: 0 0 8px 0;
}
footer p a {
  color: rgb(177, 177, 177);
}
footer p a:hover {
  color: #E01E49;
}
footer #copyright {
  position: absolute;
  right: 4rem;
  bottom: 2rem;
  font-size: 1.4rem;
}
footer #copyright a {
  text-decoration: none;
  color: white;
}
footer .social-media i {
  font-size: 2.4rem;
  color: rgb(177, 177, 177);
}

a {
  text-decoration: none !important;
  padding: 0;
  margin: 0;
}

/* =====================
Header starts
===================== */
nav {
  display: flex;
  height: 100px;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 50px 0 100px;
  position: fixed;
  top: 0;
  left: 0;
  flex-wrap: wrap;
  z-index: 10000;
  background: transparent;
}

nav .logo-header {
  color: #fff;
  /* font-size: 35px; */
  /* font-weight: 600; */
  height: 120px;
  /* padding-bottom: 15px; */
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}

nav ul li {
  padding: 0 5px;
  position: relative;
}

nav ul li a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

nav ul li:hover a {
  color: rgb(224, 30, 73);
}

nav.sticky ul li a {
  color: black;
}

nav ul li.active a {
  color: rgb(224, 30, 73);
}

nav ul .active {
  position: relative;
}

nav ul .active::after {
  position: absolute;
  width: 100%;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
}

nav ul li::after {
  content: "";
  position: absolute;
  width: 0;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
  transition: 0.5s;
}

nav ul li:hover::after {
  width: 100%;
}

nav .menu-btn i {
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: none;
}

input[type=checkbox] {
  display: none;
}

@media (max-width: 1000px) {
  nav {
    padding: 0 40px 0 50px;
  }
  nav ul li a {
    font-size: 11px;
    padding: 5px 5px;
  }
  nav .logo-header {
    height: 67px;
  }
}
@media (max-width: 920px) {
  .drop-down ul {
    left: 50% !important;
    transform: translateX(-50%);
  }
  .drop-down i {
    display: block !important;
  }
  nav {
    height: 80px;
  }
  nav.sticky ul li a {
    color: white;
  }
  nav .menu-btn i {
    display: block;
    padding-bottom: 5px;
  }
  nav {
    background-color: transparent;
  }
  nav .logo-header {
    padding-bottom: 5px;
    height: 90px;
  }
  nav.sticky .menu-btn i {
    color: black;
  }
  #click:checked ~ .menu-btn i:before {
    content: "\f00d";
  }
  nav ul {
    position: fixed;
    padding-top: 15rem;
    z-index: -1;
    top: 0px;
    left: -100%;
    background: #111;
    height: 100vh;
    width: 100%;
    text-align: center;
    display: block;
    transition: all 0.3s ease;
  }
  #click:checked ~ ul {
    left: 0;
  }
  nav ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 15px 0;
  }
  nav ul li a {
    width: 100%;
    display: block;
    font-size: 15px;
    transition: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }
  #click:checked ~ ul li a {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0px;
  }
  nav ul li a.active,
  nav ul li a:hover {
    background: none;
    color: #e01e49;
  }
}
.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: -1;
  width: 100%;
  padding: 0 30px;
  color: #1b1b1b;
}

.content div {
  font-size: 40px;
  font-weight: 700;
}

@media only screen and (max-width: 1100px) and (min-width: 1001px) {
  nav ul li a {
    font-size: 12px;
    padding: 5px 2px;
  }
  nav .logo-header {
    height: 90px;
  }
}
@media only screen and (max-width: 1201px) and (min-width: 1101px) {
  nav ul li a {
    font-size: 13px;
    padding: 5px 3px;
  }
  nav .logo-header {
    height: 100px;
  }
}
@media only screen and (max-width: 1530px) and (min-width: 1202px) {
  nav ul li a {
    font-size: 14px;
    padding: 5px 5px;
  }
  nav .logo-header {
    height: 110px;
  }
}
.drop-down i {
  display: none;
  color: #c8c8c8;
}

.drop-down ul {
  width: 260px;
  height: -moz-fit-content;
  height: fit-content;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(29, 29, 29, 0.9411764706);
  padding: 0;
  z-index: 4;
  border-bottom: 4px solid #E01E49;
}

.drop-down.active::after {
  display: none;
}

.drop-down li:hover::after {
  width: 0;
}

.drop-down ul li {
  padding: 10px 0px;
  float: none;
  cursor: pointer;
}

.drop-down ul a {
  line-height: 120%;
  padding: 10px 15px;
  color: rgb(208, 208, 208) !important;
}

.drop-down ul li:hover a {
  color: #E01E49;
}

.drop-down ul li:hover {
  background-color: #3d3d3d;
}

.drop-down:hover > ul {
  display: block;
}

/* ===========================
Header ends
=========================== */
@media (max-width: 1300px) {
  html {
    font-size: 55%;
  }
  .event-about h2 {
    font-size: 4rem !important;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 62.5%;
  }
  .about-container,
  .activity-container,
  .gallery-container,
  .homies-container {
    min-height: 1160px !important;
  }
  .about-container .about,
  .about-container .about-background,
  .about-container .concept,
  .about-container .stats-background,
  .about-container .stats,
  .about-container .partners,
  .about-container .homies,
  .activity-container .about,
  .activity-container .about-background,
  .activity-container .concept,
  .activity-container .stats-background,
  .activity-container .stats,
  .activity-container .partners,
  .activity-container .homies,
  .gallery-container .about,
  .gallery-container .about-background,
  .gallery-container .concept,
  .gallery-container .stats-background,
  .gallery-container .stats,
  .gallery-container .partners,
  .gallery-container .homies,
  .homies-container .about,
  .homies-container .about-background,
  .homies-container .concept,
  .homies-container .stats-background,
  .homies-container .stats,
  .homies-container .partners,
  .homies-container .homies {
    height: 580px !important;
  }
  .contact {
    height: 580px !important;
  }
  .event-hero-text h1 {
    font-size: 40rem !important;
  }
  .aboutus-hero {
    padding: 13rem 8rem !important;
  }
  .aboutus-hero img {
    width: 57rem !important;
    top: 6rem !important;
    z-index: -1;
  }
  .c-wrapper {
    transform: translate(15rem) !important;
  }
  .questions h1, .questions h2, .questions h3 {
    font-size: 10rem !important;
  }
  .questions h4 {
    font-size: 6rem !important;
    line-height: 8.7rem !important;
  }
  .questions h1 {
    line-height: 0.5rem !important;
  }
  .questions h2 {
    line-height: 11.7rem !important;
  }
  .questions h3 {
    line-height: 0.6rem !important;
  }
}
@media (max-width: 992px) {
  .cloud-gallery {
    grid-template-rows: repeat(8, 25rem) !important;
    grid-gap: 2rem !important;
  }
  .gallery-element {
    height: 15rem !important;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 55%;
  }
  .cloud-gallery {
    grid-template-rows: repeat(8, 20rem) !important;
    grid-gap: 1.5rem !important;
  }
  .gallery .gallery-element {
    width: calc(33.3333% + 79px) !important;
  }
  .about-container {
    min-height: 1540px !important;
  }
  .about-container .about,
  .about-container .about-background {
    height: 580px !important;
  }
  .about-container .concept {
    height: 380px !important;
  }
  .homies-container {
    min-height: 1640px !important;
  }
  .homies-container .partners,
  .homies-container .homies {
    height: 580px !important;
  }
  .activity-container {
    min-height: 1000px !important;
  }
  .activity-container .stats-background,
  .activity-container .stats {
    height: 500px !important;
  }
  .gallery-container {
    min-height: 1600px !important;
  }
  .gallery-container .joindxb,
  .gallery-container .testimonial,
  .gallery-container .gallery,
  .gallery-container .quote {
    height: 400px !important;
  }
  .gallery-container .joindxb h1 {
    font-size: 2.5rem !important;
  }
  .contact {
    background-color: #82ece8 !important;
    height: 480px !important;
  }
  .contact p {
    font-size: 1.6rem !important;
    color: rgb(224, 30, 73);
  }
  .contact h1 {
    font-size: 2.4rem !important;
    color: black;
  }
  .contact a {
    font-size: 3.5rem !important;
    color: white !important;
  }
  .video-container {
    height: 0 !important;
    padding-top: 75% !important;
  }
  iframe {
    width: 150% !important;
    height: 120% !important;
  }
  .event-hero-text h1 {
    font-size: 25rem !important;
  }
  .event-hero-background {
    width: 179% !important;
  }
  .h-100 {
    height: 60vh !important;
  }
  .event-background-3 {
    height: 400px !important;
  }
}
@media (max-width: 592px) {
  .cloud-gallery {
    padding: 0rem 1.5rem 4rem 1.5rem !important;
  }
  .gallery .gallery-element {
    width: 98% !important;
    height: 35rem !important;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 40%;
  }
  .video-container {
    padding-top: 100% !important;
  }
  iframe {
    width: 178% !important;
    height: 150% !important;
  }
  .homies {
    height: 470px !important;
  }
  .about-container p {
    font-size: 2.3rem !important;
    letter-spacing: 0.05em !important;
  }
}
* {
  margin-right: 0 !important;
}

body {
  overflow-y: scroll !important;
  overflow-x: hidden !important;
}

#hamburger {
  color: black !important;
}

#scroll-up {
  position: fixed !important;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: #e01e49;
  border-radius: 50%;
  bottom: 50px;
  right: 20px;
  z-index: 100;
  cursor: pointer;
  display: none;
}

#scroll-up:hover {
  background-color: white;
}

body::-webkit-scrollbar {
  width: 5px;
}

body::-webkit-scrollbar-track {
  padding: 100px !important;
  width: 5px;
  background-color: #ececec;
}

body::-webkit-scrollbar-thumb {
  width: 5px;
  background: rgb(132, 132, 132);
  border-radius: 10px;
}

#shop a {
  color: rgb(224, 30, 73);
}

#shop::after {
  position: absolute;
  width: 100%;
  height: 20px;
  background: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1662314207/Rolldxb.images/dash_tbizbp.png") center center no-repeat;
  background-size: contain;
  left: 0;
  bottom: -15px;
  transform: rotate(-5deg);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Gill Sans";
}

h1 {
  font-size: 50px;
  line-height: 64px;
  color: #222;
}

h2 {
  font-size: 46px;
  line-height: 54px;
  color: #000;
  font-weight: 700;
}

h4 {
  font-size: 20px;
  color: #000;
}

h6 {
  font-weight: 700;
  font-size: 12px;
}

p {
  font-size: 16px;
  color: #000;
  margin: 15px 0 20px 0;
}

.section-p1 {
  padding: 40px 80px;
}

.section-m1 {
  margin: 40px 0;
}

button.normal {
  font-size: 14px;
  font-weight: 600;
  padding: 15px 30px;
  color: #000;
  background-color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  outline: none;
  transition: 0.2s;
}

button.transparent {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 20px;
  color: #fff;
  background-color: transparent;
  cursor: pointer;
  border: 1px solid #fff;
  outline: none;
  transition: 0.2s;
}

body {
  width: 100%;
  background-color: #fff;
  background-repeat: no-repeat;
  position: relative;
}

/* bubble animation starts */
.bubble ul li {
  position: absolute;
  width: 20px;
  height: 20px;
  list-style: none;
  opacity: 0;
  background: radial-gradient(#E01F4A, transparent, transparent);
  /* box-shadow: 0px 0px 133px 87px rgba(31, 189, 224, 0.264); */
  bottom: 0;
  left: 10vw;
  animation: animate 30s linear infinite;
  z-index: -600;
}

.bubble ul li:nth-child(2) {
  left: 13vw;
  animation-delay: 2s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(3) {
  left: 22vw;
  animation-delay: 4s;
}

.bubble ul li:nth-child(4) {
  left: 46vw;
  animation-delay: 6s;
}

.bubble ul li:nth-child(5) {
  left: 58vw;
  animation-delay: 33s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(6) {
  left: 72vw;
  animation-delay: 8s;
}

.bubble ul li:nth-child(7) {
  left: 36vw;
  animation-delay: 9s;
}

.bubble ul li:nth-child(8) {
  left: 26vw;
  animation-delay: 12s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(9) {
  left: 49vw;
  animation-delay: 35s;
}

.bubble ul li:nth-child(10) {
  left: 54vw;
  animation-delay: 9s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(11) {
  left: 86vw;
  animation-delay: 12s;
}

.bubble ul li:nth-child(12) {
  left: 22vw;
  animation-delay: 16s;
}

.bubble ul li:nth-child(13) {
  left: 43vw;
  animation-delay: 18s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(14) {
  left: 76vw;
  animation-delay: 13s;
}

.bubble ul li:nth-child(15) {
  left: 43vw;
  animation-delay: 25s;
}

.bubble ul li:nth-child(16) {
  left: 32vw;
  animation-delay: 32s;
}

.bubble ul li:nth-child(17) {
  left: 54vw;
  animation-delay: 3s;
  background: radial-gradient(#41117D, transparent, transparent);
}

.bubble ul li:nth-child(18) {
  left: 67vw;
  animation-delay: 26s;
}

@keyframes animate {
  0% {
    transform: scale(0);
    opacity: 1;
    bottom: 0;
  }
  100% {
    transform: scale(8);
    opacity: 0.5;
    bottom: 600vh;
  }
}
/* bubble ends */
/* hero section starts */
#hero {
  height: 90vh;
  width: 100%;
  background-image: url("https://res.cloudinary.com/dbgjdb68e/image/upload/v1668602202/Website%20images/Untitled_design_88_voojiv.png");
  background-size: cover;
  background-position: top 25% right 0;
  padding: 0 80Px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

#hero h4 {
  padding-bottom: 15px;
}

#hero h1 {
  color: #000;
}

#hero button {
  background: #E01F4A;
  color: #fff;
  border: 0;
  padding: 14px 80px 14px 65px;
  background-repeat: no-repeat;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
}

.paymentimg {
  background-color: white;
  width: 90px;
  height: 50px;
}

#feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

#feature .fe-box {
  width: 180px;
  text-align: center;
  padding: 25px 15px;
  box-shadow: 20px 20px 34px rgba(0, 0, 0, 0.03);
  border: 1px solid #cce7d0;
  border-radius: 4px;
  margin: 15px 0;
}

#feature .fe-box:hover {
  box-shadow: 10px 10px 54px rgba(70, 62, 221, 0.1);
}

#feature .fe-box img {
  width: 100%;
  margin-bottom: 10px;
}

#feature .fe-box h6 {
  display: inline-block;
  padding: 9px 8px 6px 8px;
  line-height: 1;
  border-radius: 4px;
  color: #088178;
  background-color: #fddde4;
}

#feature .fe-box:nth-child(2) h6 {
  background-color: #ebe9bc;
}

#feature .fe-box:nth-child(3) h6 {
  background-color: #bcc2eb;
}

#feature .fe-box:nth-child(4) h6 {
  background-color: #ebbceb;
}

#feature .fe-box:nth-child(5) h6 {
  background-color: #ebcebc;
}

#feature .fe-box:nth-child(6) h6 {
  background-color: #ebbcbc;
}

/* featured Products section starts */
#product1 {
  text-align: center;
}

#product1 .pro {
  width: 23%;
  position: relative;
  min-width: 250px;
  padding: 10px;
  /* border: 1px solid #cce7d0; */
  border-radius: 25px;
  cursor: pointer;
  margin: 15px 0;
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 38px 0 rgba(31, 38, 135, 0.48);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

#product1 .pro:hover {
  box-shadow: 20px 20px 30px rgba(0, 0, 0, 0.06);
}

#product1 .pro img {
  width: 100%;
  border-radius: 20px;
}

#product1 .pro .des {
  text-align: start;
  padding: 10px 0;
}

#product1 .pro .des span {
  color: #D40039;
  font-size: 12px;
  font-weight: 800;
  background: white;
  padding: 3px 5px 3px 5px;
  border-radius: 10px;
}

#product1 .pro .des h5 {
  padding: 7px;
  color: #000;
  font-size: 15px;
  font-weight: 600;
}

#product1 .pro .des i {
  font-size: 12px;
  color: rgb(243, 181, 25);
}

#product1 .pro .des h4 {
  padding-top: 7px;
  font-size: 15px;
  font-weight: 700;
  color: #088178;
}

#product1 .pro .cart {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 10px;
}

#product1 .pro .cart:hover {
  color: #D40039;
}

#product1 .pro .wishlist-icon {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50px;
  background-color: #e8f6ea;
  color: #088178;
  border: 1px solid #cce7d0;
  position: absolute;
  bottom: 20px;
  right: 70px;
}

#product1 .pro .wishlist-icon:hover {
  color: #D40039;
}

#product1 .pro-container {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  flex-wrap: wrap;
}

#banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-image: url("../temp-img/repairbanner.jpg");
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

#banner h4 {
  color: #000;
  font-size: 16px;
}

#banner h2 {
  color: #000;
  font-size: 30px;
  padding: 10px 0;
}

#banner span {
  color: rgb(242, 38, 38);
}

#banner button:hover {
  background: #088178;
  color: #fff;
}

#sm-banner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

#sm-banner .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("../temp-img/smbanner.jpg");
  min-width: 48%;
  height: 50vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 30px;
}

#sm-banner .banner-box2 {
  background-image: url("../temp-img/smbanner2.jpg");
}

#sm-banner h4 {
  color: white;
  font-size: 20px;
  font-weight: 300;
}

#sm-banner h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
}

#sm-banner span {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  padding-bottom: 15px;
}

#sm-banner .banner-box:hover button {
  background-color: #E01F4A;
  border: 1px solid #E01F4A;
}

#banner3 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 80px;
}

#banner3 .banner-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  background-image: url("../temp-img/3banner1.jpg");
  min-width: 30%;
  height: 30vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px;
  margin-bottom: 20px;
}

#banner3 .banner-2 {
  background-image: url("../temp-img/3banner2.jpg");
}

#banner3 .banner-3 {
  background-image: url("../temp-img/3banner3.jpg");
}

#banner3 h2 {
  color: #fff;
  font-weight: 900;
  font-size: 22px;
}

#banner3 h3 {
  color: #ec544e;
  font-weight: 800;
  font-size: 15px;
}

#newsletter {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  /* background-image: url("newsletter.jpg"); */
  background-repeat: no-repeat;
  background-position: 20% 30%;
  background-color: rgba(210, 41, 69, 0.186);
}

#newsletter h4 {
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}

#newsletter p {
  font-size: 15px;
  font-weight: 600;
  color: rgb(199, 186, 186);
}

#newsletter p span {
  color: rgb(245, 7, 79);
}

#newsletter input {
  height: 5.6rem;
  padding: 0 1.25rem;
  font-size: 14px;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 4px;
  outline: none;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

#newsletter button {
  background-color: red;
  color: white;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

#newsletter .form {
  display: flex;
  width: 40%;
}

/* media query starts */
@media (max-width: 799px) {
  .section-p1 {
    padding: 40px 40px;
  }
  #hero {
    height: 70vh;
    padding: 0 80Px;
    background-position: top 30% right 30%;
  }
  #hero button {
    padding: 14px 40px 14px 40px;
  }
  .paymentimg {
    background-color: white;
    width: 80px;
    height: 40px;
  }
  #feature {
    justify-content: center;
  }
  #feature .fe-box {
    margin: 15px 15px;
  }
  #product1 .pro-container {
    justify-content: center;
  }
  #product1 .pro {
    margin: 15px;
  }
  #banner {
    height: 20vh;
  }
  #sm-banner .banner-box {
    min-width: 100%;
    height: 30vh;
  }
  #sm-banner .banner-box2 {
    margin-top: 20px;
  }
  #banner3 {
    padding: 0 40px;
  }
  #banner3 .banner-box {
    min-width: 28%;
  }
  #newsletter .form {
    width: 70%;
  }
}
@media (max-width: 477px) {
  .section-p1 {
    padding: 20px;
  }
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 30px;
    line-height: 0.8;
  }
  #hero {
    padding: 0 20Px;
    background-position: 50%;
    padding-top: 80px;
  }
  #hero button {
    padding: 14px 40px 14px 40px;
  }
  .paymentimg {
    background-color: white;
    width: 70px;
    height: 40px;
  }
  #feature {
    justify-content: space-between;
  }
  #feature .fe-box {
    width: 155px;
    margin: 0 0 15px 0;
  }
  #product1 .pro {
    width: 100%;
  }
  #banner {
    height: 40vh;
  }
  #sm-banner .banner-box {
    height: 40vh;
  }
  #sm-banner .banner-box2 {
    margin-top: 20px;
  }
  #banner3 {
    padding: 0 20px;
  }
  #banner3 .banner-box {
    width: 100%;
  }
  #newsletter .form {
    width: 100%;
  }
  #newsletter {
    padding: 40px 20px;
  }
  footer .copyright {
    text-align: start;
  }
}
@media (min-width: 800px) and (max-width: 1160px) {
  #hero {
    height: 75vh;
    padding: 0 80Px;
    background-position: top 30% right 30%;
  }
  #feature {
    justify-content: center;
  }
  #feature .fe-box {
    width: 250px;
    margin: 15px 15px;
  }
  #product1 .pro-container {
    justify-content: center;
  }
  #product1 .pro {
    margin: 15px;
  }
}
@media (max-width: 477px) {
  /* bubble animation starts */
  .bubble ul li {
    position: absolute;
    width: 20px;
    height: 20px;
    list-style: none;
    opacity: 0;
    background: radial-gradient(#E01F4A, transparent, transparent);
    bottom: 0;
    left: 10vw;
    animation: animate 50s linear infinite;
    z-index: -600;
  }
  .bubble ul li:nth-child(2) {
    left: 36vw;
    animation-delay: 2s;
  }
  .bubble ul li:nth-child(3) {
    left: 22vw;
    animation-delay: 4s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(4) {
    left: 58vw;
    animation-delay: 6s;
  }
  .bubble ul li:nth-child(5) {
    left: 76vw;
    animation-delay: 4s;
  }
  .bubble ul li:nth-child(6) {
    left: 40vw;
    animation-delay: 8s;
  }
  .bubble ul li:nth-child(7) {
    left: 36vw;
    animation-delay: 9s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(8) {
    left: 26vw;
    animation-delay: 12s;
  }
  .bubble ul li:nth-child(9) {
    left: 49vw;
    animation-delay: 15s;
  }
  .bubble ul li:nth-child(10) {
    left: 24vw;
    animation-delay: 12s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(11) {
    left: 66vw;
    animation-delay: 13s;
  }
  .bubble ul li:nth-child(12) {
    left: 43vw;
    animation-delay: 18s;
  }
  .bubble ul li:nth-child(13) {
    left: 33vw;
    animation-delay: 43s;
  }
  .bubble ul li:nth-child(14) {
    left: 12vw;
    animation-delay: 25s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(15) {
    left: 42vw;
    animation-delay: 38s;
  }
  .bubble ul li:nth-child(16) {
    left: 19vw;
    animation-delay: 30s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(17) {
    left: 54vw;
    animation-delay: 33s;
  }
  .bubble ul li:nth-child(18) {
    left: 33vw;
    animation-delay: 49s;
  }
  @keyframes animate {
    0% {
      transform: scale(0);
      opacity: 1;
      bottom: 0;
    }
    100% {
      transform: scale(8);
      opacity: 0.5;
      bottom: 1600vh;
    }
  }
}
/* media query ends */
/**************
Single product page css starts
*****************/
#prodetails .singleproimg {
  width: 40%;
  padding-right: 50px;
}

.img-gallery {
  display: flex;
  justify-content: space-between;
}

.small-img-col {
  flex-basis: 24%;
  cursor: pointer;
}

#prodetails {
  display: flex;
  margin-top: 88px;
}

#prodetails .single-pro-details {
  width: 50%;
  padding-top: 30px;
}

#prodetails .single-pro-details h4 {
  padding: 10px 0 15px 0;
  color: #000;
}

.proheading-details {
  padding: 40px 0 0 0;
}

#prodetails .single-pro-details h2 {
  font-size: 26px;
  color: #000;
}

#prodetails .single-pro-details select {
  display: block;
  padding: 5px 10px;
  margin-bottom: 10px;
}

#prodetails .single-pro-details input {
  width: 50px;
  height: 47px;
  padding-left: 10px;
  font-size: 16px;
  margin-right: 10px;
}

#prodetails .single-pro-details input:focus {
  outline: none;
}

#prodetails .single-pro-details button {
  background-color: #E01F4A;
  color: #fff;
}

/*hover*/
#prodetails .single-pro-details button:hover {
  background-color: #41127D;
}

#prodetails .single-pro-details span {
  line-height: 38px;
}

#prodetails .single-pro-details li {
  line-height: 30px;
  color: #000;
}

#addtocart {
  padding-top: 15px;
}

:root {
  --primary: #2175f5;
}

.shoe {
  opacity: 0;
}

.shoe.show {
  opacity: 1;
}

.color-container {
  padding: 10px 0;
}

.colorsizetitle {
  color: #000;
}

.probreadcrum {
  color: #000;
}

.colors {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.color {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  margin: 0 10px;
  border: 5px solid;
  cursor: pointer;
  transition: 0.5s;
}

.color[color=blue] {
  background-color: #2175f5;
  border-color: #2175f5;
}

.color[color=red] {
  background-color: #f84848;
  border-color: #f84848;
}

.color[color=green] {
  background-color: #29b864;
  border-color: #29b864;
}

.color[color=orange] {
  background-color: #ff5521;
  border-color: #ff5521;
}

.color[color=black] {
  background-color: #444;
  border-color: #444;
}

.color.active {
  border-color: #fff;
  box-shadow: 0 0 10px 0.5px rgba(0, 0, 0, 0.2);
  transform: scale(1.1);
}

.size-container {
  padding: 10px 0;
  margin-bottom: 10px;
}

.sizes {
  padding: 8px 0;
  display: flex;
  align-items: center;
}

.size {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  background-color: #eee;
  margin: 0 10px;
  text-align: center;
  line-height: 40px;
  font-size: 1.1rem;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
}

.size.active {
  background-color: var(--primary);
  color: #fff;
  transition: 0.5s;
}

/* single product media query */
@media (max-width: 477px) {
  #prodetails {
    display: flex;
    flex-direction: column;
  }
  #prodetails .singleproimg {
    width: 100%;
    margin-right: 0px;
  }
  #prodetails .single-pro-details {
    width: 100%;
  }
  #prodetails .single-pro-details select {
    display: block;
    margin-top: 10px;
    padding-bottom: 19px;
    border: 1px solid grey;
  }
  #addtocart {
    padding-top: 15px;
  }
  #prodetails .single-pro-details input {
    width: 65px;
    height: 38px;
    border: 1px solid grey;
  }
  /* bubble animation starts */
  .bubble ul li {
    position: absolute;
    width: 20px;
    height: 20px;
    list-style: none;
    opacity: 0;
    background: radial-gradient(#E01F4A, transparent, transparent);
    bottom: 0;
    left: 10vw;
    animation: animate 50s linear infinite;
    z-index: -600;
  }
  .bubble ul li:nth-child(2) {
    left: 36vw;
    animation-delay: 2s;
  }
  .bubble ul li:nth-child(3) {
    left: 22vw;
    animation-delay: 4s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(4) {
    left: 58vw;
    animation-delay: 6s;
  }
  .bubble ul li:nth-child(5) {
    left: 76vw;
    animation-delay: 4s;
  }
  .bubble ul li:nth-child(6) {
    left: 40vw;
    animation-delay: 8s;
  }
  .bubble ul li:nth-child(7) {
    left: 36vw;
    animation-delay: 9s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(8) {
    left: 26vw;
    animation-delay: 12s;
  }
  .bubble ul li:nth-child(9) {
    left: 49vw;
    animation-delay: 15s;
  }
  .bubble ul li:nth-child(10) {
    left: 24vw;
    animation-delay: 12s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(11) {
    left: 66vw;
    animation-delay: 12s;
  }
  .bubble ul li:nth-child(12) {
    left: 43vw;
    animation-delay: 18s;
  }
  .bubble ul li:nth-child(13) {
    left: 33vw;
    animation-delay: 43s;
  }
  .bubble ul li:nth-child(14) {
    left: 12vw;
    animation-delay: 25s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(15) {
    left: 42vw;
    animation-delay: 38s;
  }
  .bubble ul li:nth-child(16) {
    left: 19vw;
    animation-delay: 30s;
    background: radial-gradient(#41117D, transparent, transparent);
  }
  .bubble ul li:nth-child(17) {
    left: 54vw;
    animation-delay: 33s;
  }
  .bubble ul li:nth-child(18) {
    left: 33vw;
    animation-delay: 54s;
  }
  @keyframes animate {
    0% {
      transform: scale(0);
      opacity: 1;
      bottom: 0;
    }
    100% {
      transform: scale(8);
      opacity: 0.5;
      bottom: 1600vh;
    }
  }
}
/**************
Single product page css ends
*****************/
/**************
Cart starts
**************/
/* cart page starts */
#cart {
  overflow-x: auto;
}

#cart table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  white-space: nowrap;
}

#cart table img {
  width: 70px;
  height: 70px;
}

#cart table td:nth-child(1) {
  width: 100px;
  text-align: center;
}

#cart table td:nth-child(2) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(3) {
  width: 250px;
  text-align: center;
}

#cart table td:nth-child(4),
#cart table td:nth-child(5),
#cart table td:nth-child(6) {
  width: 150px;
  text-align: center;
}

#cart table td:nth-child(5) input {
  width: 70px;
  padding: 10px 5px 10px 15px;
}

#cart table thead {
  border: 1px solid #e2e9e1;
  border-left: none;
  border-right: none;
}

#cart table thead td {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
  padding: 18px 0;
}

#cart table tbody tr td {
  padding-top: 15px;
}

#cart table tbody td {
  font-size: 13px;
}

#cart-bill {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#coupon {
  width: 50%;
  margin-bottom: 30px;
}

#coupon h3,
#subtotal h3 {
  padding-bottom: 15px;
}

#coupon input {
  padding: 10px 20px;
  outline: none;
  width: 60%;
  margin-right: 10px;
  border: 1px solid #e2e9e1;
}

#coupon button,
#subtotal button {
  background-color: #E01F4A;
  color: white;
  padding: 12px 20px;
}

#subtotal {
  width: 50%;
  margin-bottom: 30px;
  border: 1px solid #e2e9e1;
  padding: 30px;
}

#subtotal table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 20px;
}

#subtotal table td {
  width: 50%;
  border: 1px solid #e2e9e1;
  padding: 10px;
  font-size: 13px;
}

/* cart page media query */
@media (max-width: 477px) {
  #cart-bill {
    flex-direction: column;
  }
  #coupon {
    width: 100%;
  }
  #subtotal {
    width: 100%;
    padding: 20px;
  }
  #cart table td:nth-child(5) input {
    width: 65px;
    padding: 3px 5px 3px 5px;
    margin: 5px 0px 0px 0px;
  }
}
/* cart page media query ends */
/* cart page ends */
/*************
Cart ends
**************/
.go-to-cart {
  position: fixed;
  top: 25%;
  right: 0;
  transform: rotate(-90deg);
}
.go-to-cart button {
  padding: 1rem 2rem;
  border: none;
  background: #412F84;
  color: white;
  font-weight: 600;
  letter-spacing: -0.02em;
  transition: 0.5s;
  border-radius: 5px;
}
.go-to-cart button:hover {
  background: #fed841;
  color: #000000;
}/*# sourceMappingURL=shop.css.map */