* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-primary: rgb(231, 0, 234);
  --color-dark: #111111;
  --color-white: #ffffff;
  --color-yellow: #f2c94c;
  --text-dark: #232533;

  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
}

body {
  font-family: "DM Sans", sans-serif;
}
p {
  margin: 0;
}
a {
  text-decoration: none;
}
ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
button {
  border: none;
}

.py-100 {
  padding: 100px 0;
}
.pt-80 {
  padding-top: 80px;
}
.pt-100 {
  padding-top: 100px;
}
.pb-70 {
  padding-bottom: 70px;
}
.pt-180 {
  padding-top: 180px;
}
.py-50 {
  padding: 50px 0;
}
.mt-40 {
  margin-top: 60px;
}
.mt-60 {
  margin-top: 60px;
}

/* Button */
.btn-common {
  padding: 20px 24px;
  border-radius: 4px;
  font-weight: var(--font-bold);
  font-size: 16px;
  display: inline-block;
  transition: all 0.3s;
}

.primary-btn {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}
.primary-btn:hover {
  background-color: #e7b213;
}
.secondary-btn {
  background-color: var(--color-white);
  color: var(--color-dark);
}
.secondary-btn:hover {
  background-color: #e7b213;
}

/* Navbar */

.main-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}
.affix {
  position: fixed;
  left: 0;
  top: 0;
  background-color: #0d274e;
  width: 100%;
  z-index: 1000;
  transition: 0.3s ease-in;
  -webkit-animation: upsdown 1000ms;
  animation: upsdown 1000ms;
  backdrop-filter: blur(11px);
}
@-webkit-keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}

@keyframes upsdown {
  0% {
    transform: translateY(-100px);
    visibility: hidden;
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
}
.navbar {
  padding: 20px 0;
}
.menu-list ul {
  column-gap: 40px;
}

.navbar-nav {
  column-gap: 40px;
}

.navbar-nav .nav-item .nav-link {
  color: #ffff;
  font-weight: var(--font-medium);
  padding: 20px 0;
}
.header-btns {
  column-gap: 14px;
}
.header-btns .buy-btn {
  background-color: #46d993;
  border: 1px solid var(--color-dark);
  border-radius: 4px;
  padding: 16px 32px;
  color: #ffff;
  font-weight: var(--font-bold);
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler {
  border: none;
}
.navbar-toggler-icon {
  background-image: none;
  color: var(--color-white);
}
.navbar-toggler-icon svg {
  fill: var(--color-white);
}

/* Scroll Btn */
.scroll-to-top-btn {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  width: 50px;
  height: 50px;
  border-radius: 50px;
  position: fixed;
  right: 20px;
  bottom: 40px;
}
.scroll-to-top-btn svg {
  width: 32px;
}

/* Hero */

.demo-hero {
  min-height: 1100px;
  overflow: hidden;
}

.hero-links {
  gap: 20px;
  display: flex;
}
.hero-links a {
  padding: 18px 22px;
  border: 1px solid var(--color-dark);
  color: var(--color-white);
  border-radius: 4px;
  transition: all 0.3s;
}

.hero-links a:nth-child(1) {
  background-color: #27ae60;
}
.hero-links a:hover:nth-child(1) {
  background-color: #03933f;
}
.hero-links a:nth-child(2) {
  background-color: #2d9cdb;
}
.hero-links a:hover:nth-child(2) {
  background-color: #0777b7;
}
.hero-links a:nth-child(3) {
  background-color: #8e27ef;
}
.hero-links a:hover:nth-child(3) {
  background-color: #7929c3;
}
.hero-links a:nth-child(4) {
  background-color: #ef5da8;
}
.hero-links a:hover:nth-child(4) {
  background-color: #ca1372;
}

.hero-img-2 {
  position: absolute;
  left: 0;
  bottom: 0;
}
.home-pages-wrapper-list .h-item {
  width: 100%;
  border: 1px solid #fccbaa;
  background: #fdfbf8;
  border-radius: 8px;
  padding: 26px;
  display: block;
}
.home-pages-wrapper-list .h-item .image-area {
  width: 100%;
  height: 508px;
  margin-bottom: 25px;
}
.home-pages-wrapper-list .h-item .image-area .page-img {
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/home-one-ad.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 0%;
  transition: all 5s ease-in-out;
  box-shadow: 0px 10px 60px 0px rgba(177, 177, 177, 0.25);
}
.home-pages-wrapper-list .h-item .image-area .page-img.page-img-1 {
  background-image: url("/assets/img/home-two-ad.png");
}
.home-pages-wrapper-list .h-item .image-area .page-img.page-img-2 {
  background-image: url("/assets/img/home-three-ad.png");
}
.home-pages-wrapper-list .h-item .page-img {
  position: relative;
}
.home-pages-wrapper-list .h-item .home-demo-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6cd1d;
  color: #1f2023;
  pointer-events: none;
}
.home-pages-wrapper-list .h-item .page-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -2%;
  text-align: center;
  color: #222222;
}
.home-pages-wrapper-list .h-item:hover .image-area .page-img {
  background-position-y: 100%;
}
.regular-update-wrapper {
  padding: 0 135px;
}
.regular-update {
  width: 100%;
  height: 115px;
  border-radius: 12px;
  border: 2px dashed #ed7829;
  background-color: #fff7ec;
}
.regular-update .regular-update-text {
  font-size: 33px;
  font-weight: 700;
  letter-spacing: -1%;
  color: #ed7829;
}
/*browse shop*/
.admin-panel-info {
  background-image: url(./../img/admin-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.container-stretch {
  max-width: 1569px;
  padding: 0 12px;
  margin: auto;
}
.admin-panel-info .s-title-wrap {
  text-align: center;
  margin-bottom: 30px;
}
.s-sub-title {
  font-size: 20px;
  line-height: 30px;
  color: #1d1d1d;
  margin-bottom: 5px;
}
.s-title {
  font-size: 50px;
  line-height: 59px;
  color: #1d1d1d;
}
.admin-panel-info .thumb {
  display: flex;
  justify-content: center;
}
.btn-sg-1 {
  color: white;
  background: linear-gradient(94.04deg, #27ae60 -1.84%, #1c8247 94.43%);
}
.btn {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
  padding: 19px 20px;
  border-radius: 4px;
  transition: 0.25s ease;
}

/* Available Page */
.available-page {
  background-color: #f7f7fd;
}
.coming-soon-btn {
  background-color: #fff5d9;
  padding: 36px 60px;
  border-radius: 8px;
  font-size: 24px;
  font-weight: var(--font-bold);
  border-left: 3px solid #f2c94c;
  border-right: 3px solid #f2c94c;
  margin-top: 45px;
}

.page-card {
  padding: 14px;
  background-color: var(--color-white);
  border-radius: 4px;
  background: #ffffff;
  box-shadow: 0px 14px 108px rgba(84, 82, 106, 0.16);
  text-align: center;
  cursor: pointer;
}
.page-card-img-wrapper {
  position: relative;
  overflow: hidden;
}
.page-card-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(113, 102, 240, 0.5);
  position: absolute;
  display: grid;
  place-items: center;
  top: 0;
  border-radius: 4px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  transform: scale(0.7);
}
.page-card:hover .page-card-overlay {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.page-card-link {
  background-color: var(--color-yellow);
  color: var(--color-dark);
  padding: 16px 24px;
  font-weight: var(--font-medium);
  border-radius: 4px;
  transition: all 0.3s;
}
.page-card-link:hover {
  background-color: #e7b213;
}
.page-card-title a {
  display: inline-block;
  margin-top: 14px;
  font-size: 20px;
  color: var(--color-dark);
  font-weight: var(--font-bold);
  text-transform: capitalize;
}

/* Fetaure Card */
.feature-card-with-img {
  padding: 16px;
  border: 1px solid;
  border-radius: 4px;
  text-align: center;
}
.feature-name {
  font-size: 20px;
  margin-top: 25px;
  color: #2e2e2e;
}
.feature-desc {
  font-size: 16px;
  color: #797979;
  margin-bottom: 15px;
}
.feature-card-with-img .img {
  width: 100%;
  height: 267px;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 4px 69px 0px rgba(0, 0, 0, 0.06);
}
.feature-card-with-img.card-one {
  border-color: #ffccaa;
}
.feature-card-with-img.card-two {
  background-color: #e7f6ee;
  border-color: #27ae60;
}
.feature-card-with-img.card-three {
  background-color: #e8f4fb;
  border-color: #2d9cdb;
}
.feature-card-with-img.card-four {
  background-color: #fffbeb;
  border-color: #ffc403;
}

/* Feature Card Icon */
.feature-card-with-icon {
  margin-bottom: 30px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 32px 15px;
  border: 2px dashed #f699ea;
  border-radius: 4px;
  min-height: 255px;
  background-color: #fef5fe;
}
.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: #ae1c9a;
  display: grid;
  place-items: center;
  margin-bottom: 10px;
  box-shadow: 0px 9px 48px rgb(209 0 241 / 45%);
}
.feature-icon-name {
  font-size: 18px;
  font-weight: var(--font-bold);
}
.feature-icon-desc {
  font-size: 18px;
  color: #797979;
}

/* Pages Slider */
.pages-slider-btns {
  display: flex;
  gap: 20px;
}

.pages-slider-btn {
  border-radius: 4px;
  font-size: 16px;
  padding: 16px 24px;
  font-weight: var(--font-medium);
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
}
.pages-slider-btn.solid {
  background-color: var(--color-yellow);
  color: var(--color-dark);
}
.pages-slider-btn.solid:hover {
  background-color: #e7b213;
}

.pages-slider-btn.outline {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}
.pages-slider-btn.outline:hover {
  background-color: #e7b213;
  border: 1px solid transparent;
  color: var(--color-dark);
}
.pagesSlider .swiper-button-next,
.pagesSlider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: #000;
  color: var(--color-white);
}
.pagesSlider .swiper-button-next::after,
.pagesSlider .swiper-button-prev::after {
  display: none;
}

.demo-pagination.swiper-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet {
  height: 12px;
  width: 20px;
  background-color: var(--color-white);
  opacity: 1;
  border-radius: 20px;
}

.demo-pagination.swiper-pagination.swiper-pagination-bullets
  .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 50px;
  background-color: #ee782a;
  transition: all 0.3s;
}

/* Payment Support */
.payment-support-subtitle {
  font-size: 20px;
  color: #222222;
}

.payment-wrapper {
  padding: 80px 50px;
  border-radius: 4px;
  border: 1px solid #cccccc;
  display: grid;
  grid-template-columns: repeat(4, max-content);
  box-shadow: 0px 15px 50px rgba(0, 0, 0, 0.1);
  place-items: center;
  gap: 45px;
}

/* Interface */
.interface-link {
  font-size: 32px;
  font-weight: var(--font-medium);
  color: #ffffff;
  display: block;
  margin-top: 30px;
  transition: all 0.3s;
}
.interface-link:hover {
  text-decoration: underline;
}

/* Tech Stack */
.badge-pill {
  border-radius: 50px;
  padding: 8px 46px;
  background-color: #e2dfff;
  display: inline-block;
  color: rgba(113, 102, 240, 1);
  font-size: 24px;
  font-weight: 500;
}

.section-title {
  font-size: 60px;
  font-weight: var(--font-bold);
  line-height: 84px;
  color: #0d274e;
}
.section-title-two {
  font-size: 36px;
  line-height: 55px;
}
.single-stack {
  border: 1px solid #c2bcff;
  border-radius: 8px;
  padding: 36px;
  display: grid;
  place-items: center;
  gap: 15px;
  margin-bottom: 30px;
  min-height: 230px;
}

.stack-name {
  font-size: 24px;
  color: var(--color-dark);
}

/* App Cta */
.app-cta-img img {
  position: absolute;
  top: 0;
  bottom: 0;
  transform: translate(-360px, 25px);
}
.app-cta-content {
  padding: 120px 0;
}
.app-cta-content .app-cta-subtitle {
  font-size: 42px;
  font-weight: var(--font-bold);
  color: var(--color-white);
}
.app-cta-content .app-cta-title {
  font-size: 56px;
  font-weight: var(--font-bold);
  color: var(--color-yellow);
}
.app-cta-desc {
  font-size: 18px;
  color: var(--color-white);
  margin-bottom: 40px;
}

/* Website Setup */

.setup-title {
  color: #2e2e2e;
  font-size: 56px;
  font-weight: var(--font-bold);
}

.setup-list li {
  padding: 16px 0;
  border-bottom: 1px solid #f0f0fd;
  font-size: 20px;
}
.setup-list li:last-child {
  border-bottom: none;
}

.setup-btn {
  padding: 20px 40px;
}
.setup-price {
  font-size: 56px;
  font-weight: var(--font-bold);
  color: #ee782a;
  margin-bottom: 20px;
}
.setup-price span {
  font-size: 36px;
  font-weight: normal;
  color: #7e8ba0;
}

/* Support */
.support-content .support-subtitle {
  font-size: 34px;
  font-weight: var(--font-medium);
  color: #ffffff;
}
.support-content .support-title {
  font-size: 70px;
  font-weight: var(--font-bold);
  color: #ffffff;
  margin-bottom: 30px;
}

.social-links-button .social-link {
  padding: 14px 20px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  border-radius: 4px;
  font-weight: var(--font-bold);
  filter: drop-shadow(0px 4px 65px rgba(0, 0, 0, 0.21));
}

.social-links-button .social-link.mail {
  background-color: #ffc154;
  color: #2e2e2e;
  margin-bottom: 20px;
}
.social-links-button .social-link.skype {
  background-color: #02b0ef;
  color: #ffffff;
}

/* FAQ */
.faq-content .faq-title {
  font-size: 46px;
  color: #2e2e2e;
  font-weight: var(--font-bold);
  margin-bottom: 40px;
}

.accordion-item .accordion-header .accordion-button {
  font-size: 20px;
  font-weight: var(--font-bold);
  color: #2e2e2e;
  border-radius: 4px;
  background-color: transparent;
}

/* Footer */
.footer {
  padding: 90px 0 60px 0;
  background-color: #162b49;
}

.footer-bg {
  border-radius: 10px;
}

.footer-title {
  font-size: 46px;
  font-weight: var(--font-bold);
  padding: 40px 0;
}

.footer-btns {
  gap: 20px;
}

.footer-copyright {
  background-color: #162b49;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
}

.footer-copyright p {
  font-size: 16px;
}
.footer-copyright a {
  color: #ffc154;
}

/* // Small devices (landscape phones, 576px and up) */
@media (max-width: 576px) {
  .payment-wrapper {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .section-title {
    font-size: 34px;
    line-height: 1.5;
  }
  .payment-wrapper {
    padding: 20px;
  }
  .payment-btn {
    width: 223.3px;
  }
}

/* // Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .payment-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .payment-section-title {
    font-size: 59px;
  }
}
@media (max-width: 570px) {
  .demo-hero {
    min-height: 816px;
    overflow: hidden;
  }
}
/* // Large devices (desktops, 992px and up) */
@media (max-width: 992px) {
  .main-menu {
    /* background-color: var(--color-primary); */
  }
  .navbar-nav .nav-item .nav-link {
    padding: 10px 0;
  }
}
/* // Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .payment-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* // X-Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-group-img {
    bottom: -55px;
  }
}

/* // XX-Large devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  /* .hero-group-img {
    bottom: -55px;
  } */
  .payment-wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
  .container {
    max-width: 1545px;
  }
}

.marx-auto {
  margin: 0px auto;
}

.comming-soon-img {
  padding-top: 50px;
}
.text-white {
  color: white;
}

.payment-section-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 70px;
  text-align: left;
  color: #0d274e;
  margin-top: 24px;
}

.payment-section-title span {
  color: #405ff2;
}

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

.payment-opt-wrapper {
  margin-top: 65px;
  flex-wrap: wrap;
  gap: 17px;
}

.payment-btn {
  width: 183.3px;
  height: 67.81px;
  border-radius: 3px 0px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eef5ff;
}

.max-w-screen {
  width: 90vw;
}

.w-fit {
  width: fit-content;
}
.max-w-90 {
  max-width: 100%;
}
