@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap");

:root {
  --primary-color: #000000;
  --secondary-color: #141414;
  --theme-color: #F3FF11;
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  transition: 0.3s all;
  background-color: #000000;
  font-family: 'montserrat', cursive;
}

.fa-check {
  color: var(--theme-color);
  margin-right: 10px;
}

.secPadding {
  padding: 40px 15px 40px 15px;
}

.midSec {
  padding: 50px 15px;
}

h1 {
  font-weight: 300;
  color: #fff;
}

p {
  font-weight: 200;
  /* color: #A6A6A6;
  color: #fff; */
}

.paraGrey {
  color: #A6A6A6;
  /* color: #fff; */
}

.paraWhite {
  /* color: #A6A6A6; */
  color: #fff;
}

.secHeading {
  font-size: 54px;
}

.secHeadingTwo {
  font-size: 48px;
}

.contentHeading {
  font-size: 22px;
}


header {
  font-family: 'montserrat', cursive;
  text-align: center;
  font-size: 25px;
}

#info {
  font-size: 18px;
  color: #555;
  text-align: center;
  margin-bottom: 25px;
}

a {
  /* color: #074E8C; */
  text-decoration: none;
}

#wrapper {
  text-align: center;
  width: 500px;
  margin: auto;
}

.subtitleCount {
  width: 35px;
  height: 35px;
  padding: 5px 5px;
  margin-bottom: 30px;
  text-align: center;
  border-radius: 50px;
  color: var(--theme-color);
  border: 1px solid #F3FF11;
  background-color: #36380485;
}

.subtitle {
  position: relative;
  display: inline-block;
  color: var(--theme-color);
  background-color: #36380485;
  border: 1px solid #F3FF11;
  border-radius: 50px;
  padding: 8px 25px;
  overflow: hidden;
  text-decoration: none;
}

.themeBtn2 {
  position: relative;
  justify-content: center;
  display: inline-block;
  color: #ffffff;
  background-color: var(--secondary-color);
  border: 1px solid #313131;
  border-radius: 50px;
  padding: 8px 30px 8px 40px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
  text-decoration: none;
}

.themeBtn2 .glow-dot {
  position: absolute;
  top: 13px;
  left: 16px;
  width: 12px;
  height: 12px;
  background-color: yellow;
  border-radius: 50%;
  box-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 15px yellow, 0 0 20px yellow;
  animation: glow-animation 1.5s infinite alternate;
}

@keyframes glow-animation {
  0% {
    box-shadow: 0 0 5px yellow, 0 0 10px yellow, 0 0 15px yellow, 0 0 20px yellow;
  }

  100% {
    box-shadow: 0 0 20px yellow, 0 0 30px yellow, 0 0 40px yellow, 0 0 50px yellow;
  }
}

.dot {
  font-size: 5px;
}

.themeBtn {
  position: relative;
  display: inline-block;
  color: var(--primary-color);
  background-color: var(--theme-color);
  border: 1px solid #F3FF11;
  border-radius: 50px;
  padding: 8px 25px;
  overflow: hidden;
  z-index: 1;
  transition: color 0.4s ease-in-out, background-color 0.4s ease-in-out;
  text-decoration: none;
}

.themeBtn::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  background: linear-gradient(45deg, #F3FF11, #ffffff, #F3FF11, #ffffff);
  background-size: 300% 300%;
  border-radius: 50px;
  z-index: -1;
  animation: borderAnim 5s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.themeBtn:hover::before {
  opacity: 1;
}

.themeBtn:hover {
  color: #000;
  background-color: #fff;
}

@keyframes borderAnim {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@media only screen and (max-width: 991px) {
  .secHeading {
    font-size: 48px;
  }

  .secHeadingTwo {
    font-size: 42px;
  }

  .secPadding {
    padding: 30px 15px 30px 15px;
  }
}

@media only screen and (max-width: 600px) {
  .secHeading {
    font-size: 36px;
  }

  .secHeadingTwo {
    font-size: 30px;
  }

  .secPadding {
    padding: 30px 15px 30px 15px;
  }

  .midSec {
    padding: 15px 15px;
  }
}



/* Header Starts Here */

.navbar {
  z-index: 9;
  margin-bottom: -82px;
}

.nav-link {
  position: relative;
  font-weight: 200;
  color: #fff;
  text-decoration: none;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-color: var(--theme-color);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: var(--theme-color) !important;
}

.navbar-toggler {
  background-color: var(--theme-color);
  /* padding: 15px !important; */
}

/* Header Ends Here */


/* Footer Starts Here */

footer {
  padding: 30px 15px;
}

.midFooter {
  padding: 100px 15px;
}

.socialIcons i {
  color: #fff;
  border: 1px solid #313131;
  border-radius: 50px;
  padding: 10px;
  transition: 0.4s;
}

.socialIcons i:hover {
  background-color: var(--theme-color);
  border: 1px solid #F3FF11;
  color: var(--primary-color);
}

@media only screen and (max-width: 991px) {}

@media only screen and (max-width: 600px) {
  .midFooter {
    padding: 50px 15px;
  }

  .copyright {
    text-align: center;
    margin-bottom: 1rem;
  }

  .socialIcons {
    text-align: center;
  }
}


/* Footer Ends Here */



/* Hero Banner Starts Here */

.heroSec {
  background-image: url(../images/heroBg.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
}

.heroSecPadding {
  padding: 250px 15px 150px 15px;
}

/* Hero Banner Ends Here */


/* About Sec Stats Here */

.aboutBoxImage {
  width: 100%;
  /* height: 355px;
  object-fit: cover; */
  border-radius: 30px;
}

.abouBox2 {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  background-color: #141414;
  padding: 99px 15px;
}

.founder {
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder p {
  font-weight: 600;
  margin: 0px 10px;
}

/* About Sec Ends Here */


/* Work Sec Starts Here */

.workCol {
  /* margin: 10px; */
  padding: 20px;
  min-height: 190px;
  border-radius: 30px;
  background-color: #141414;
}



@media only screen and (max-width: 1199px) {
  .workCol {
    min-height: 260px;
  }
}

@media only screen and (max-width: 767px) {
  .workCol {
    min-height: 190px;
  }
}

/* @media only screen and (max-width: 600px) {
  .workCol {
    min-height: 190px;
  }
} */

/* Work Sec Ends Here */


/* Case Sec Starts Here */

.caseCol {
  margin: 14px 5px;
  display: flex;
  align-items: end;
  min-height: 415px;
  padding: 20px 30px;
  border-radius: 30px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

.caseBg1 {
  background-image: url(../images/amazonStore1.png);
}

.caseBg2 {
  background-image: url(../images/amazonStore2.png);
}

.caseBg3 {
  background-image: url(../images/amazonStore3.png);
}

.caseBg4 {
  background-image: url(../images/amazonStore4.png);
}

.caseBg5 {
  background-image: url(../images/amazonStore5.png);
}

.caseBg6 {
  background-image: url(../images/amazonStore6.png);
}


@media only screen and (max-width: 1199px) {
  .caseCol {
    min-height: 285px;
    padding: 15px 15px;
  }


}

@media only screen and (max-width: 991px) {
  .caseCol {
    min-height: 300px;
  }

  .caseCol .contentHeading {
    font-size: 22px;
  }
}

@media only screen and (max-width: 767px) {
  .caseCol {
    min-height: 415px;
  }

  .caseCol .contentHeading {
    font-size: 22px;
  }
}

@media only screen and (max-width: 600px) {
  .caseCol {
    min-height: 355px;
  }

  .caseCol .contentHeading {
    font-size: 22px;
  }
}

/* Case Sec Ends Here */



/* Lets Amazon Sec Starts Here */

.home-demo .item {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  background: #141414;
  border: 1px solid #313131;
}

.home-demo h2 {
  color: #FFF;
  /* padding: 5rem 0; */
  font-weight: 300;
  text-align: center;
}

.owl-nav,
.owl-dots {
  display: none;
}

/* Lets Amazon Sec Ends Here */


/* Pricing Sec Starts Here */

.pkgCard {
  padding: 25px;
  border-radius: 20px;
  background: #141414;
  border: 1px solid #313131;
}

.pkgCard .perMonth {
  font-size: 22px;
}

.pkgCard ul {
  list-style-type: none;
  padding-left: 0px;
}

.pkgCard ul li {
  margin-bottom: 14px;
}

/* Pricing Sec Ends Here */



/* FAQS Sec Starts Here */

.accordion-item {
  border: 0px;
  border-radius: 15px;
  background-color: transparent;
}

.accordion-button {
  color: #fff;
  background-color: #141414;
  margin-bottom: 10px;
  border-radius: 15px;
  padding: 25px 20px;
}

.accordion-header {
  border-radius: 15px;
}

.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #141414;
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.accordion-body {
  color: #fff;
}

/* FAQS Sec Ends Here */



/* Testimonials Sec Starts Here */

.testimonialCardContainer {
  height: 650px;
  overflow-x: hidden;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* Internet Explorer 10+ */
  /* z-index: 0; */
}

.testimonialOverlayContainer {
  background: linear-gradient(to bottom, transparent, black);
  height: 300px;
  margin-top: -280px;
  position: relative;
  z-index: 9;
}

.testiCard {
  background-color: #141414;
  padding: 25px;
  border-radius: 20px;
}

.userdetails {
  display: flex;
  /* justify-content: center; */
  align-items: center;
}

.clientImg {
  width: 40px;
  border-radius: 50px;
}

/* Testimonials Sec Ends Here */