:root {
  --bg-color: #151515;
  --theme-color: #000;
  --main-color: #0047FF;
}

.custom-title {
    letter-spacing: 1px;
}

.custom-swal-popup {
    border-radius: 20px !important;
    padding: 20px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    background-color: #ffffff;
}

.custom-close-btn {
    background-color: #f5f5f5;
    border-radius: 50%;
    color: #ff0000;
    font-size: 18px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.custom-close-btn:hover {
    background-color: #ff0000;
    color: #fff;
}

.custom-confirm-btn {
    background-color: #0047ff !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.custom-confirm-btn:hover {
    background-color: #3369ff !important;
}

.custom-cancel-btn {
    background-color: #ff4c4c !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.custom-cancel-btn:hover {
    background-color: #ff7373 !important;
}

.custom-error-popup {
    border-radius: 16px !important;
    padding: 20px !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
    background-color: #ffecec;
    border: 1px solid #ff4d4f;
}

.custom-error-confirm-btn {
    background-color: #ff4d4f !important;
    color: #fff !important;
    border-radius: 12px !important;
    padding: 10px 20px !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.custom-error-confirm-btn:hover {
    background-color: #e04040 !important;
}

/*.alert {*/
/*  position: fixed;*/
/*  top: 10px;*/
/*  left: 50%;*/
/*  transform: translateX(-50%);*/
/*  padding: 10px;*/
/*  margin: 0 auto;*/
/*  border-radius: 50px;*/
/*  z-index: 9999999999;*/
/*  text-align: center;*/
/*  opacity: 0;*/
/*  visibility: hidden;*/
/*  transition: opacity 0.5s ease, visibility 0.5s ease;*/
/*  max-width: 400px;*/
/*  width: 100%;*/
/*  box-sizing: border-box;*/
/*  height: auto;*/
/*  font-size: 16px;*/
/*}*/

/*@media (max-width: 768px) {*/
/*  .alert {*/
/*    max-width: 90%;*/
/*    font-size: 14px;*/
/*  }*/
/*}*/

/*.alert-success {*/
/*  background-color: #d4edda;*/
/*  color: #155724;*/
/*}*/

/*.alert-danger {*/
/*  background-color: #f8d7da;*/
/*  color: #721c24;*/
/*}*/

/*.alert-show {*/
/*  opacity: 1;*/
/*  visibility: visible;*/
/*}*/

/*.alert-hide {*/
/*  animation: fadeAlert 3s forwards;*/
/*}*/

/*@keyframes fadeAlert {*/
/*  0% {*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*  }*/
/*  10%, 90% {*/
/*    opacity: 1;*/
/*    transform: translateY(0);*/
/*  }*/
/*  100% {*/
/*    opacity: 0;*/
/*    transform: translateY(-10px);*/
/*  }*/
/*}*/

/* --------------- Menu --------------- */
.navbar {
  position: absolute;
  left: 0;
  top: 30px;
  padding: 0;
  margin: 0;
  width: 100%;
  background: transparent;
  z-index: 9999999;
}

.navbar.nav-scroll {
  padding: 0;
  position: fixed;
  top: -80px;
  padding: 15px 0;
  -webkit-transition: -webkit-transform .8s;
  transition: -webkit-transform .8s;
  -o-transition: transform .8s;
  transition: transform .8s;
  transition: transform .8s, -webkit-transform .8s;
  -webkit-transform: translateY(80px);
  -ms-transform: translateY(80px);
  transform: translateY(80px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

/* .navbar .logo {
  padding: 7px 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
} */

.navbar .navbar-nav {
  padding: 2px 5px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 30px;
  margin-left: 15px;
}

.navbar .navbar-nav .nav-link {
  padding: 5px 20px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}

.navbar .navbar-nav .nav-link.active {
  background: rgba(255, 255, 255, 0.1);
}

.navbar .topnav .butn {
  padding: 7px 20px;
  background: #fff;
  color: #1d1d1d;
  margin-right: 15px;
}

/* Dropdown font color and background customization */
.navbar-nav .dropdown-menu {
  background-color: #000000af;
  backdrop-filter: blur(10px);
  /* Make the dropdown background transparent */
  border: 1px solid rgba(255, 255, 255, 0.3);
  /* Remove any borders */
  /* border-radius: 30px; */
  margin-top: 5px;
  /* Adjust the space between the nav and dropdown */
}

.navbar-nav .dropdown-menu .dropdown-item {
  color: white;
  /* Set the font color to white */
}

/* Change the font color on hover */
.navbar-nav .dropdown-menu .dropdown-item:hover {
  background-color: rgba(255, 255, 255, 0.2);
  /* Add a slight hover effect */
  color: white;
  /* Keep the text white on hover */
}

/* To ensure proper visibility of the dropdown text */
.navbar-nav .dropdown-toggle {
  color: white;
  /* Ensure dropdown toggle text is also white */
}

/* --------------- header --------------- */
.header-ds {
  /* background-image: url(../imgs/header-bg.png); */
  background-size: cover;
  background-position: bottom;
  /* background-color: #fff; */
  background-color: #000;
}

/* .header-ds .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 80px 80px 80px 80px;
  min-height: 800px;
} */

.header-ds .container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 130px;
  padding-right: 80px;
  padding-bottom: 30px;
  padding-left: 80px;
}


.header-ds .caption h1 {
  font-size: 96px;
  line-height: 96px;
  font-weight: 600;
}

.header-ds .caption h1 span {
  /* background: linear-gradient(90deg, #0047ff 0%, rgba(39, 185, 255, 1) 100%); */
  background: linear-gradient(90deg, rgba(127, 108, 255, 1) 0%, rgba(39, 185, 255, 1) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  color: transparent;
  /* animation: gradientMove 5s ease infinite; */
}

.header-ds .social-icon a {
  width: 48px;
  height: 48px;
  line-height: 48px;
  text-align: center;
  color: #151515;
  border: 1px solid #fff;
  background: #fff;
  border-radius: 50%;
  font-size: 16px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
  margin-right: 15px;
}

.header-ds .social-icon a:hover {
  color: #fff;
  background: transparent;
}

.header-ds .numb {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.header-ds .numb>div {
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
}

.header-ds .numb h2 {
  font-size: 76px;
  line-height: 96px;
  font-weight: 400;
  margin-bottom: 10px;
}

.header-ds .numb span {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/*css grid */
/*Custom Font*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300);

.grid {
  position: absolute;
  top: 0px;
  left: auto;
  right: 20%;
  /*Width = (225 + 20 + 20) * 4 = 1060*/
  width: 540px;
  /*3D Transform*/
  transform: rotateX(50deg) rotateZ(30deg);
  /*Preserve 3D style for children*/
  transform-style: preserve-3d;
}

.grid li {
  transition: 0.2s ease;
  height: 400px;
  width: 225px;
  float: left;
  margin: 20px;
  list-style-type: none;
  /*Hide the lighting gradient from the front face*/
  background-size: 0, cover;
  /*Preserve 3D style for children(pseudo elements)*/
  transform-style: preserve-3d;
}

.grid li:hover {
  transform: translate3d(-10px, -10px, 0);
}

/*Left and Bottom Sides*/
.grid li:before,
.grid li:after {
  content: '';
  position: absolute;
  /*100% height and width*/
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: inherit;
  background-size: cover;
}

/*Left Side*/
.grid li:before {
  transform-origin: left center;
  transform: rotateY(90deg);
  /*Reducing the width of the left side for a flat feel*/
  width: 1px;
}

/*Bottom Side*/
.grid li:after {
  transform-origin: bottom center;
  transform: rotateX(90deg);
  /*Reducing the height*/
  height: 1px;
  top: auto;
  bottom: 0;
  /*Background fix - start the background from the bottom*/
  background-position: bottom center;
}

/*Shadow time - sadly all pseudo elements are used so we will have to add an HTML element in each LI*/
.s {
  position: absolute;
  /*30px smaller from each side*/
  top: 30px;
  left: 30px;
  right: 30px;
  bottom: 30px;
  background: rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 30px 30px rgba(0, 0, 0, 0.5);
  /*Pushing down the shadow to give an elevated feel*/
  transform: translateZ(-10px);
}

/*We will add a light gradient to the sides to give some lighting effect*/
.one {
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("http://thecodeplayer.com/uploads/media/m1.png");
}

.two {
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("http://thecodeplayer.com/uploads/media/m2.png");
}

.three {
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("http://thecodeplayer.com/uploads/media/m3.png");
}

.four {
  background:
    linear-gradient(45deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)),
    url("http://thecodeplayer.com/uploads/media/m4.png");
}


/* --------------- Services --------------- */
.services-ds .item {
  padding: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.services-ds .item:last-of-type {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.services-ds .item .title h2 {
  font-size: 80px;
  line-height: 80px;
  letter-spacing: -4px;
}

.services-ds .item .icon {
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  margin-left: 150px;
}

.services-ds .item .icon img {
  width: 30px;
}

.services-ds .item .title {
  position: relative;
  margin-bottom: -70px;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.services-ds .item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.services-ds .item:hover .title {
  margin-bottom: 0;
  color: var(--main-color);
}

/* --------------- Works --------------- */

/* style work kedua */

.works-ds {
  background-image: url(../imgs/about-bg.png);
  overflow: hidden;
}

.work-card .card-item {
  margin-bottom: 30px;
}

.work-card .card-item .img {
  position: relative;
  height: 650px;
  border-radius: 15px;
  overflow: hidden;
}

.work-card .card-item .img:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: -webkit-gradient(linear, left top, left bottom, from(var(--theme-color)), to(transparent));
  background-image: -webkit-linear-gradient(top, var(--theme-color), transparent);
  background-image: -o-linear-gradient(top, var(--theme-color), transparent);
  background-image: linear-gradient(to bottom, var(--theme-color), transparent);
  opacity: .6;
}

.work-card .card-item .img .tags {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
}

.work-card .card-item .img .tags a {
  font-size: 12px;
  line-height: 1;
  padding: 7px 12px;
  margin-right: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
}

.work-card .card-item h5 {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 80px;
  font-family: "Six Caps", sans-serif;
  line-height: 1;
  letter-spacing: normal;
  z-index: 3;
}

.work-card .card-item h5.bottom {
  top: auto;
  bottom: 30px;
}

.work-card .card-item h5.left {
  text-align: left;
  padding-left: 30px;
}

.work-card .card-item h5.right {
  text-align: right;
  padding-right: 30px;
}

.work-card .card-item h6 {
  position: absolute;
  top: calc(45% + 50px);
  /* Menempatkan h6 di bawah h5, sesuaikan angka untuk jarak */
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
  font-family: "Six Caps", sans-serif;
  line-height: 1;
  letter-spacing: normal;
  z-index: 3;
  transform: none;
  /* Hapus efek translateY */
}

.work-card .card-item h6 a {
  display: inline-block;
  /* Agar a tidak mengambil lebar penuh */
  max-width: 80%;
  /* Membatasi lebar maksimal a */
  margin: 0 auto;
  /* Agar elemen a terpusat */
  text-align: center;
  /* Memastikan teks di dalam a tetap terpusat */
  padding: 30px 100px;
  /* Menambahkan sedikit padding agar teks lebih rapi */
}

/* Media Query untuk Responsif di layar ponsel */
@media (max-width: 768px) {

  .work-card .card-item .img {
    height: 500px;
  }

  .work-card .card-item h5 {
    font-size: 40px;
  }

  .work-card .card-item h6 {
    font-size: 16px;
    /* Sesuaikan ukuran font untuk layar kecil */
    top: calc(45% + 30px);
    /* Sesuaikan posisi vertikal */
  }

  .work-card .card-item h6 a {
    padding: 20px 50px;
    /* Sesuaikan padding untuk layar kecil */
    max-width: 90%;
    /* Mengubah lebar maksimal a */
  }
}

.portfolio-description {
  padding-right: 20px;
  /* text-align: justify; */
}

.portfolio-graph {
  text-align: center;
}

.portfolio-graph img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

/* --------------- Works --------------- */
/* .works-ds {
  background-image: url(../imgs/about-bg.png);
  overflow: hidden;
}

.works-ds .work-box {
  -webkit-clip-path: inset(-100vw -100vw -100vw 0);
  clip-path: inset(-100vw -100vw -100vw 0);
}

.works-ds .swiper-container {
  overflow: visible;
}

.works-ds .swiper-slide {
  width: 75%;
}

.works-ds .sec-head .butn.butn-bord {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.works-ds .sec-head .butn.butn-bord:hover {
  background: var(--main-color);
  color: #fff;
}

.works-ds .item:hover .cont h4 {
  color: var(--main-color);
}

.works-ds .item .img {
  border-radius: 15px;
  overflow: hidden;
}

.works-ds .item .cont {
  margin-top: 40px;
}

.works-ds .item .cont span {
  font-size: 14px;
}

.works-ds .swiper-wrapper {
  padding-bottom: 60px;
}

.works-ds .swiper-pagination {
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  width: auto;
  padding: 2px 25px 4px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 30px;
}

.works-ds .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--main-color);
} */

/* --------------- Clients --------------- */

.brand-ds .item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.brand-ds .item:after {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  pointer-events: none;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.brand-ds .item .text-center {
  width: 100%;
}

.brand-ds .item .img {
  width: 300px;
  margin: auto;
  opacity: .25;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.brand-ds .item p {
  margin-top: 30px;
}

.brand-ds .item:nth-of-type(3) .img,
.brand-ds .item:nth-of-type(4) .img {
  width: 300px;
}

.brand-ds .item:hover {
  z-index: 4;
}

.brand-ds .item:hover:after {
  border-color: var(--main-color);
}

.brand-ds .item:hover .img {
  opacity: 1;
}

.clients-ds .item {
  /*position: relative;*/
  /*border: 1px solid rgba(255, 255, 255, 0.1);*/
  border-radius: 100px;
  height: 100%;
  padding: 50px 30px;
}

.clients-ds .item .text-center {
  width: 100%;
}

.clients-ds .item .img {
  /* max-width: 100px; */
  width: 100px;
  margin: auto;
  height: auto;
}

.clients-ds .item p {
  margin-top: 30px;
}

.subs-count {
  margin-top: 10px;
  /* Jarak antara ikon dan teks */
  font-size: 14px;
  /* Ukuran font untuk jumlah followers/subscribers */
  color: #555;
  /* Warna teks */
  text-align: center;
}


/* --------------- Testimonials --------------- */
.testimonials-mp {
  position: relative;
  overflow: hidden !important;
}

.testimonials-mp .brush {
  position: absolute;
  bottom: 10%;
  left: 0;
  width: 100%;
}

.testimonials-mp .sec-head .gl-rate {
  margin: 40px auto 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 60px;
  padding: 10px 20px;
}

.testimonials-mp .sec-head .gl-rate .icon {
  width: 35px;
}

.testimonials-mp .sec-head .gl-rate .cont {
  padding-left: 30px;
  text-align: left;
}

.testimonials-mp .sec-head .gl-rate .cont h6 {
  line-height: 1;
  font-weight: 600;
  font-size: 18px;
}

.testimonials-mp .sec-head .gl-rate .cont .stars {
  font-size: 13px;
  color: #EF2B10;
  margin-left: 10px;
}

.testimonials-mp .sec-head .gl-rate .cont p {
  font-size: 12px;
  margin-top: 2px;
}

.testimonials-mp .testim-swiper {
  position: relative;
  overflow: visible;
  padding: 150px 0 250px;
  /* background-image: url(../imgs/testim/global.png); */
  background-size: 60%;
  background-position: center center;
  background-repeat: no-repeat;
}

.testimonials-mp .swiper-slide {
  margin-right: -50px;
  width: 400px;
  height: auto;
}

.testimonials-mp .item {
  padding: 40px;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  position: relative;
  max-width: 500px;
  margin: auto;
}

.testimonials-mp .item .info p {
  font-size: 14px;
}

.testimonials-mp .item .info span {
  font-size: 16px;
}

.testimonials-mp .item .info .img-author {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
}

.testimonials-mp .item:hover {
  z-index: 5;
}

.testimonials-mp .swiper h6 {
  font-size: 15px;
  text-align: justify;
  text-justify: inter-word;
  letter-spacing: -0.2px;
  word-spacing: -1px;
  hyphens: auto;
  line-height: 1.3;
}

.testimonials-mp .gray {
  background: #EEEEEE;
  color: #000;
  -webkit-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  transform: rotate(-7deg);
}

.testimonials-mp .colorful {
  background: var(--main-color);
  -webkit-transform: rotate(2deg) translateY(80px);
  -ms-transform: rotate(2deg) translateY(80px);
  transform: rotate(2deg) translateY(80px);
  z-index: 3;
}

.testimonials-mp .darklen {
  background: #151515;
  color: #fff;
  -webkit-transform: rotate(2deg) translateY(-50px);
  -ms-transform: rotate(2deg) translateY(-50px);
  transform: rotate(2deg) translateY(-50px);
}

.testimonials-mp .darklen p {
  color: #d1d1d1;
}

.testimonials-mp .lighten {
  background: #fff;
  color: #000;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-transform: rotate(-7deg);
  -ms-transform: rotate(-7deg);
  transform: rotate(-7deg);
  z-index: 3;
}

.testimonials-mp .lighten p {
  color: #252121;
}

/* --------------- Pricing --------------- */
.pricing-ds .bg-gray {
  background: rgba(255, 255, 255, 0.1);
}

.pricing-ds .pricing-tabsHead .price-radios {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 7px;
  border-radius: 50px;
}

.pricing-ds .pricing-tabsHead .price-radios .form-check {
  margin: 0;
  padding: 0;
}

.pricing-ds .pricing-tabsHead .price-radios .form-check .form-check-label {
  background-color: transparent;
  font-size: 14px;
  border-radius: 30px;
  padding: 10px 15px;
  text-transform: capitalize;
  cursor: pointer;
}

.pricing-ds .pricing-tabsHead .price-radios .form-check .form-check-label small {
  color: #000;
  background: #fff;
  padding: 1px 5px;
  font-size: 10px;
}

.pricing-ds .pricing-tabsHead .price-radios .form-check .form-check-input {
  display: none;
}

.pricing-ds .pricing-tabsHead .price-radios .form-check .form-check-input:checked~.form-check-label {
  background-color: var(--main-color);
}

.pricing-ds .content {
  min-width: 600px;
  margin-top: 50px;
}

.pricing-ds .content .price-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}

.pricing-ds .content .price-head .price-headTitle {
  width: 34%;
}

.pricing-ds .content .price-head .price-headItem {
  position: relative;
  /* width: 22%; */
  width: 31%;
  /* Menyesuaikan lebar dua kolom */
  text-align: center;
  padding: 30px 0;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}

.pricing-ds .content .price-head .price-headItem .label {
  position: absolute;
  top: -60px;
  right: -15px;
  z-index: 5;
  width: 160px;
}

.pricing-ds .content .price-head .price-headItem h6 {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.pricing-ds .content .price-head .price-headItem h2 {
  font-size: 30px;
  letter-spacing: normal;
  margin-bottom: 15px;
}

.pricing-ds .content .price-head .price-headItem h2 span {
  font-size: 18px;
  color: #999;
  font-weight: 400;
}

.pricing-ds .content .price-head .price-headItem p {
  font-size: 13px;
  color: #bbb;
  line-height: 1.5;
}

.pricing-ds .content .price-body .price-bodyItems {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-ds .content .price-body .price-bodyItems:last-of-type {
  border: 0;
}

.pricing-ds .content .price-body .price-bodyItems .price-bodyTitle {
  width: 34%;
  padding: 15px 0;
  font-size: 14px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.pricing-ds .content .price-body .price-bodyItems .price-bodyTitle i {
  font-size: 11px;
  color: #999;
  margin: 0 3px;
}

.pricing-ds .content .price-body .price-bodyItems .price-item {
  /* width: 22%; */
  width: 31%;
  /* Menyesuaikan lebar dua kolom */
  padding: 15px 0;
  text-align: center;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  min-height: -webkit-max-content;
  min-height: -moz-max-content;
  min-height: max-content;
}

.pricing-ds .content .price-body .price-bodyItems .price-item i {
  color: #fff;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  border-radius: 50%;
  font-size: 13px;
}

/* Gaya untuk fa-check tetap hijau */
.pricing-ds .content .price-body .price-bodyItems .price-item i.fa-check {
  background: #2AA20C;
  /* Hijau */
}

/* Gaya untuk fa-times menjadi merah */
.pricing-ds .content .price-body .price-bodyItems .price-item i.bg-red {
  background: #FF0000;
  /* Merah */
}


.pricing-ds .content .price-body .price-bodyItems .price-item span {
  font-size: 14px;
}

.pricing-ds .content .price-foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pricing-ds .content .price-foot .price-footTitle {
  width: 34%;
}

.pricing-ds .content .price-foot .price-foot-item {
  /* width: 22%; */
  width: 31%;
  /* Menyesuaikan lebar dua kolom */
  text-align: center;
  padding: 30px 0 50px;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.pricing-ds .monthly_price {
  display: none;
}

.pricing-ds .botm {
  font-size: 14px;
  text-align: center;
}

.pricing-ds .botm a {
  color: var(--main-color);
  text-decoration: underline;
  margin-left: 15px;
}

/* --------------- FAQS --------------- */
.faqs-ds.section-padding.pt-0 {
  padding-top: 30px !important;
}
.faqs-ds .accordion-item {
  background: var(--bg-color);
  border-radius: 10px;
  border: 0;
  margin-bottom: 5px;
}

.faqs-ds .accordion-item.active {
  background: var(--main-color);
}

.faqs-ds .accordion-item .accordion-header {
  background: transparent;
}

.faqs-ds .accordion-item .accordion-header button {
  background: transparent;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  padding: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.faqs-ds .accordion-item .accordion-header button:after {
  background-image: url(../imgs/pricing/plus-solid.svg);
  -webkit-filter: invert(1);
  filter: invert(1);
}

.faqs-ds .accordion-item .accordion-header button:not(.collapsed):after {
  background-image: url(../imgs/pricing/minus-solid.svg);
}

.faqs-ds .accordion-item .accordion-body {
  padding: 0;
  padding: 0px 100px 30px 30px;
}

.faqs-ds .accordion-item .accordion-body p {
  font-size: 14px;
  color: #bbb;
}

/* --------------- FAQS --------------- */

/* --------------- Marq --------------- */

.marq-mp-section {
  padding-top: 100px;
  /* Beri jarak dengan konten berikutnya */
}

.marq-mp .main-marq {
  width: 100%;
  overflow: hidden;
  padding: 50px 0 25px 0;
}

.marq-mp .color-bg {
  background: var(--main-color);
  -webkit-transform: rotate(2deg);
  -ms-transform: rotate(2deg);
  transform: rotate(2deg);
  position: relative;
  z-index: 4;
}

.marq-mp .gray-bg {
  background: var(--bg-color);
  -webkit-transform: rotate(-4deg);
  -ms-transform: rotate(-4deg);
  transform: rotate(-4deg);
  margin-top: -30px;
}

.marq-mp .item {
  padding: 0 60px !important;
  position: relative;
}

.marq-mp .item:after {
  content: '';
  width: 12px;
  height: 12px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.marq-mp .item h5 {
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

/* ------------ Marq ------------- */

.team-ds .item {
  text-align: center;
  margin-bottom: 60px;
}

.team-ds .item:hover .img {
  border-color: var(--main-color);
}

.team-ds .item:hover .cont h6 {
  color: var(--main-color);
}

.team-ds .item .img,
.team-ds .item .numb {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--bg-color);
  margin: auto;
}

.team-ds .item .img img,
.team-ds .item .numb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
}

.team-ds .item .img {
  border: 2px solid transparent;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.team-ds .item .numb {
  line-height: 220px;
}

.team-ds .item .numb h3 {
  line-height: 220px;
}

.team-ds .item .cont {
  margin-top: 15px;
}

.team-ds .item .cont h6 {
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.team-ds .item .cont span {
  color: #bbb;
  font-size: 14px;
  margin-top: 5px;
}

.team-ds .item .cont span a {
  color: var(--main-color);
  text-decoration: underline;
}

/* --------------- Calendar ------------*/

.calendar-wrapper {
  width: 100%;
  height: 500px;
  border: 2px solid #4CAF50;
  border-radius: 20px;
  background: linear-gradient(to bottom, #1b1b1b, #2e2e2e);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  padding: 15px;
  color: #f5f5f5;
}

/* --------------- Blogs --------------- */
.blog-ds {
  background: var(--bg-color);
}

.blog-ds .item .info {
  font-size: 14px;
}

.blog-ds .item .info .date {
  color: #808080;
}

.blog-ds .item .info .dash {
  color: #808080;
  margin: 0 15px;
}

.blog-ds .item .img {
  position: relative;
  height: 300px;
}

.blog-ds .item .img>img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center center;
  object-position: center center;
}

.blog-ds .item .img .icon {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  line-height: 55px;
  text-align: center;
  background: var(--main-color);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all .4s;
  -o-transition: all .4s;
  transition: all .4s;
}

.blog-ds .item .img .icon img {
  width: 22px;
}

.blog-ds .item:hover .img .icon {
  opacity: 1;
  visibility: visible;
}

/* --------------- footer --------------- */
.footer-ds {
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-ds h2 {
  font-size: 25px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  letter-spacing: 1px;
}

.footer-ds p{
  font-size: 9px;
  color: #ffffff;
  text-align: center;
}

.footer-ds .subscribe .form-group {
  margin: 60px 0 15px;
  position: relative;
}

.footer-ds .subscribe .form-group label {
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-ds .subscribe .form-group input {
  padding: 20px 50px 20px 20px;
  background: var(--bg-color);
  border: 0;
  border-radius: 5px;
  width: 100%;
  color: #fff;
}

.footer-ds .subscribe .form-group button {
  background: transparent;
  border: 0;
  position: absolute;
  bottom: 20px;
  right: 15px;
  width: 25px;
}

.footer-ds .subscribe span {
  color: #808080;
  font-size: 13px;
}

.footer-ds .subscribe span a {
  color: #fff;
  text-decoration: underline;
}

.footer-ds .contact-info .item h6 {
  margin-bottom: 15px;
}

.footer-ds .contact-info .item p {
  font-size: 14px;
  margin-top: 5px;
}

.footer-ds .sub-footer .copy .logo {
  width: 100px;
}

.footer-ds .sub-footer .copy p {
  font-size: 14px;
}

.footer-ds .sub-footer .copy p a {
  color: #fff;
}

.footer-ds .sub-footer .links {
  width: 100%;
}

.footer-ds .sub-footer .links a {
  font-size: 14px;
}

.footer-ds .sub-footer .links .active {
  color: #fff;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 24px;
  font-weight: 400;
  color: #fff;
  background-color: var(--theme-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0;
}

h1 {
  font-size: 64px;
  line-height: 64px;
  letter-spacing: -3px;
}

h2 {
  font-size: 48px;
  line-height: 60px;
  letter-spacing: -3px;
}

h3 {
  font-size: 40px;
  line-height: 52px;
  letter-spacing: -2px;
}

h4 {
  font-size: 36px;
  line-height: 48px;
  letter-spacing: -2px;
}

h5 {
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
}

h6 {
  font-size: 24px;
  line-height: 32px;
}

.sub-head {
  font-size: 20px;
  line-height: 28px;
}

p {
  color: #bbb;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

.sec-head h2 {
  font-size: 65px;
  line-height: 65px;
}

.sec-head h2 span {
  color: var(--main-color);
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
}

.loader-wrap svg {
  fill: #1d1d1d;
}

.butn.butn-bord {
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.butn.butn-bord:hover {
  background: var(--main-color);
  color: #fff;
}

.butn.butn-bg {
  background: var(--main-color);
  border: 1px solid transparent;
  color: #fff;
}

.butn.butn-bg:hover {
  background: transparent;
  border-color: var(--main-color);
  color: inherit;
}

.icon.invert img {
  -webkit-filter: invert(1);
  filter: invert(1);
}

.butn .icon {
  width: 18px;
}

.butn:hover .icon.invert img {
  -webkit-filter: invert(0);
  filter: invert(0);
}

.box-light {
  background-color: #fff;
  color: #000;
}

.box-dark .box {
  background: var(--bg-color);
  border-radius: 15px;
  padding: 100px 80px;
  position: relative;
}

.box-dark .box .layers {
  position: absolute;
  top: 5px;
  left: 30px;
  right: 30px;
  bottom: -10px;
  background: var(--bg-color);
  border-radius: 15px;
  opacity: .7;
  z-index: -1;
}

.box-dark .box .layers:after {
  content: '';
  position: absolute;
  top: 5px;
  left: 20px;
  right: 20px;
  bottom: -10px;
  background: var(--bg-color);
  border-radius: 15px;
  opacity: .7;
  z-index: -1;
}


/* ====================== [ Css Payment ] ========================== */
/* General Styles */
.container-payment {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  padding: 20px;
  box-sizing: border-box;
}

.container-payment .row-payment {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}

.container-payment .well {
  width: 100%;
  max-width: 600px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
  background-color: #fff;
  margin: 10px auto;
  box-sizing: border-box;
}

.container-payment h1 {
  text-align: center;
  margin-bottom: 20px;
}

.container-payment h4 {
  font-size: 25;
}

.container-payment table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
  table-layout: fixed;
}

.container-payment table th,
.container-payment table td {
  text-align: center;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ddd;
  word-wrap: break-word;
}

.container-payment .btn-block {
  display: block;
  width: 100%;
  margin-top: 20px;
}

.container-payment .btn-lg {
  font-size: 18px;
  padding: 15px;
}

.container-payment .btn-warning,
.container-payment .btn-success {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
}

.container-payment .glyphicon-chevron-right {
  margin-left: 10px;
}

/* Responsiveness */
@media (max-width: 768px) {
  .container-payment {
    padding: 15px;
  }
  .container-payment h4 {
    font-size: 16px;
    white-space: nowrap;
  }

  .container-payment .well {
    padding: 15px;
    max-width: 90%;
  }

  .container-payment table {
    width: 100%;
    margin-top: 20px;
  }

  .container-payment table th,
  .container-payment table td {
    font-size: 14px;
    padding: 8px;
  }

  .container-payment .btn-lg {
    font-size: 16px;
    padding: 12px;
  }
}

@media (max-width: 480px) {
  .container-payment {
    padding: 10px;
  }

  .container-payment .well {
    padding: 10px;
    max-width: 95%;
  }

  .container-payment table th,
  .container-payment table td {
    font-size: 12px;
    padding: 6px;
  }

  .container-payment .btn-lg {
    font-size: 14px;
    padding: 10px;
  }
}


/* .payment-form {
  background: #ffffff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  text-align: center;
  margin-top: 30px;
}


.payment-title {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #2c3e50;
  text-transform: uppercase;
  letter-spacing: 1px;
}


.payment-label {
  font-size: 16px;
  font-weight: 500;
  color: #34495e;
  margin-bottom: 5px;
}

.payment-label .required {
  color: #e74c3c;
  font-size: 14px;
  margin-left: 3px; 
}


.payment-input {
  font-size: 14px;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f9f9f9;
  color: #2c3e50;
  transition: border 0.2s ease;
}

.payment-input:focus {
  border-color: #007bff;
  outline: none;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}

.payment-button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 14px;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.payment-button:hover {
  background: #0056b3;
}

@media (max-width: 767px) {
  .payment-form {
      padding: 20px;
      border-radius: 8px;
  }

  .payment-title {
      font-size: 20px;
      margin-bottom: 15px;
  }

  .payment-label {
      font-size: 14px;
  }

  .payment-label .required {
    font-size: 12px;
  }

  .payment-input {
      font-size: 13px;
      padding: 10px;
  }

  .payment-button {
      font-size: 14px;
  }
} */

.payment-form{
  background: #f8f8f8;
  max-width: 500px;
  margin: 80px auto;
  height: auto;
  padding: 35px;
  padding-top: 70px;
  margin-top: 150px;
  border-radius: 5px;
  position: relative;
}

.payment-form h2{
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 40px;
  color: #0d3c61;
}

.payment-form .form .label{
  display: block;
  color: #555555;
  margin-bottom: 6px;
}

.payment-form .input{
  padding: 13px 0px 10px 43px;
  width: 100%;
  text-align: start;
  border: 2px solid #dddddd;
  border-radius: 5px;
  letter-spacing: 1px;
  word-spacing: 3px;
  outline: none;
  font-size: 16px;
  color: #555555;
}

.payment-form .card-grp{
  display: flex;
  justify-content: space-between;
}

.payment-form .card-item{
  width: 48%;
}

.payment-form .space{
  margin-bottom: 20px;
}

.payment-form .icon-relative{
  position: relative;
}

.payment-form .icon-relative .fas,
.payment-form .icon-relative .fab,
.payment-form .icon-relative .far{
  position: absolute;
  bottom: 12px;
  left: 15px;
  font-size: 20px;
  color: #555555;
}

.payment-form .btn-payment{
  margin-top: 40px;
  background: #2196F3;
  padding: 12px;
  text-align: center;
  color: #f8f8f8;
  border-radius: 5px;
  cursor: pointer;
}


.payment-form .payment-logo{
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 100px;
  background: #f8f8f8;
  border-radius: 50%;
  box-shadow: 0 0 5px rgba(0,0,0,0.2);
  text-align: center;
  align-content: center;
  line-height: 85px;
}

.payment-form .payment-logo img {
  width: 90%;
  height: auto;
}

/* .payment-form .payment-logo:before{
  content: "";
  position: absolute;
  top: 5px;
  left: 5px;
  width: 90px;
  height: 90px;
  background: #2196F3;
  border-radius: 50%;
}

.payment-form .payment-logo p{
  position: relative;
  color: #f8f8f8;
  font-family: 'Baloo Bhaijaan', cursive;
  font-size: 58px;
} */


@media screen and (max-width: 480px){
    
  .payment-form{
      max-width: calc(100% - 20px);
      margin: 150px 10px 50px;
  }
  
  .payment-form .input {
      font-size: 12px;
  }
    
  .payment-form .card-grp{
    flex-direction: column;
  }
  .payment-form .card-item{
    width: 100%;
    margin-bottom: 20px;
  }
  .payment-form .btn-payment{
    margin-top: 20px;
  }
}

/* receipt */

.payment-receipt {
  margin: 20px;
}

.payment-receipt .fixed{
  position: fixed;
}

.payment-receipt .bottom-0{
  bottom: 0px;
}

.payment-receipt .left-0{
  left: 0px;
}

.payment-receipt .table{
  display: table;
}

.payment-receipt .h-12{
  height: 3rem;
}

.payment-receipt .w-1\/2{
  width: 50%;
}

.payment-receipt .w-full{
  width: 100%;
}

.payment-receipt .border-collapse{
  border-collapse: collapse;
}

.payment-receipt .border-spacing-0{
  --tw-border-spacing-x: 0px;
  --tw-border-spacing-y: 0px;
  border-spacing: var(--tw-border-spacing-x) var(--tw-border-spacing-y);
}

.payment-receipt .whitespace-nowrap{
  white-space: nowrap;
}

.payment-receipt .border-b{
  border-bottom-width: 1px;
}

.payment-receipt .border-b-2{
  border-bottom-width: 2px;
}

.payment-receipt .border-r{
  border-right-width: 1px;
}

.payment-receipt .border-main{
  border-color: #5c6ac4;
}

.payment-receipt .bg-main{
  background-color: #5c6ac4;
}

.payment-receipt .bg-slate-100{
  background-color: #000;
}

.payment-receipt .p-3{
  padding: 0.75rem;
}

.payment-receipt .px-14{
  padding-left: 3.5rem;
  padding-right: 3.5rem;
}

.payment-receipt .px-2{
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.payment-receipt .py-10{
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.payment-receipt .py-3{
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.payment-receipt .py-4-pay{
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.payment-receipt .py-6{
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.payment-receipt .pb-3{
  padding-bottom: 0.75rem;
}

.payment-receipt .pl-2{
  padding-left: 0.5rem;
}

.payment-receipt .pl-3{
  padding-left: 0.75rem;
}

.payment-receipt .pl-4{
  padding-left: 1rem;
}

.payment-receipt .pr-3{
  padding-right: 0.75rem;
}

.payment-receipt .pr-4{
  padding-right: 1rem;
}

.payment-receipt .text-center{
  text-align: center;
}

.payment-receipt .text-right{
  text-align: right;
}

.payment-receipt .align-top{
  vertical-align: top;
}

.payment-receipt .text-sm{
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.payment-receipt .text-xs{
  font-size: 0.75rem;
  line-height: 1rem;
}

.payment-receipt .font-bold{
  font-weight: 700;
}

.payment-receipt .italic{
  font-style: italic;
}

.payment-receipt .text-main{
  color: #5c6ac4;
}

.payment-receipt .text-neutral-600{
  color: #525252;
}

.payment-receipt .text-neutral-700{
  color: #404040;
}

.payment-receipt .text-slate-300{
  color: #cbd5e1;
}

.payment-receipt .text-slate-400{
  color: #fff;
}

.payment-receipt .text-white{
  color: #fff;
}

.payment-receipt p {
  color: #fff;
}

/*Modal payment */
.modal-payment {
  display: none;
  position: fixed;
  z-index: 99999999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(0, 0, 0, 0.4);
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.modal-payment .modal-body {
  padding: 0rem;
}

.modal-payment .modal-content {
  position: relative;
  max-width: 850px;
  width: 100%;
  background: #fff;
  padding: 40px 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  perspective: 2700px;
  margin: auto;
  margin-top: 50px;
}

.modal-payment .modal-body iframe {
  width: 100%;
  height: 400px;
}

@media (max-width: 768px) {
  .modal-payment .modal-content {
    max-width: 100%;
    padding: 20px 15px;
    margin-top: 30px;
  }
}

@media (max-width: 480px) {
  .modal-payment .modal-content {
    max-width: 100%;
    padding: 15px 10px;
    margin-top: 20px;
  }

  .modal-payment .modal-body iframe {
    height: 500px;
  }
}


/* ====================== [ Start Responsive ] ====================== */
@media screen and (max-width: 992px) {
  .header-ds .caption {
    text-align: center;
  }

  .header-ds .text {
    text-align: center;
  }

  .header-ds .text p {
    width: 80%;
    margin: auto;
  }

  .services-ds .item .title h2 {
    font-size: 80px;
    line-height: 1.2;
  }

  .pricing-ds .sec-head .d-flex {
    display: block !important;
  }

  .pricing-ds .sec-head .d-flex .ml-auto {
    margin-top: 30px;
  }

  .pricing-ds .content .price-foot .price-foot-item .butn span:first-of-type {
    display: block !important;
    width: 100% !important;
  }

  .testimonials-mp .swiper-slide {
    width: 500px;
  }
}

@media screen and (max-width: 768px) {

  .header-ds .container {
    padding-right: 20px;
    padding-left: 20px;
  }
    
  .sec-head {
    display: block !important;
  }

  .sec-head h2 {
    font-size: 40px;
    line-height: 1.2;
  }

  .sec-head .butn {
    margin-top: 15px;
  }

  .header-ds .caption h1,
  .header-ds .numb h2 {
    font-size: 60px;
    line-height: 1.2;
  }

  .header-ds .numb {
    display: block !important;
    margin-top: 20px;
  }

  .header-ds .numb>div {
    display: block;
    width: 100%;
  }

  .header-ds .numb .ml-auto {
    margin: 30px 0 0 0 !important;
  }

  .header-ds .numb span br {
    display: none;
  }

  .intro-ds .comit .item {
    text-align: center;
    margin-bottom: 10px;
  }

  .intro-ds .comit .text-right {
    text-align: center !important;
  }

  .intro-ds .container .box {
    padding: 60px 15px;
  }

    .portfolio-description {
      padding-right: 0px;
    }

  .brand-ds .item:after {
    left: 0;
    right: 0;
  }

  .brand-ds .item {
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
    width: 90%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
  }

  .brand-ds .item:after {
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
  }

  .brand-ds .item .img {
    width: 80%;
    max-width: 200px;
    margin: 0 auto;
    opacity: 0.25;
  }

  .brand-ds .item p {
    margin-top: 10px;
    text-align: center;
    font-size: 14px;
  }

  .clients-ds {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .clients-ds .item {
    position: relative;
    /*border: 1px solid rgba(255, 255, 255, 0.1);*/
    /*border-radius: 50%;*/
    height: 80px;
    width: 80px;
    padding: 10px;
    margin: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }

  .clients-ds .item .img {
    width: 50px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
  }

  .clients-ds .item p {
    margin-top: 5px;
    font-size: 12px;
    text-align: center;
  }

  .subs-count {
    font-size: 7px;
    text-align: center;
  }

  .clients-ds .col-6 {
    flex: auto;
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  .works-ds .item .cont h4 {
    font-size: 28px;
    line-height: 1.2;
    letter-spacing: normal;
  }

  .services-ds .item {
    display: block !important;
  }

  .services-ds .item .title {
    margin-bottom: 0;
  }

  .services-ds .item .title h2 {
    font-size: 45px;
    margin-bottom: 10px;
  }

  .services-ds .item .icon {
    margin-left: 15px;
  }

  .box-dark .box {
    padding: 100px 15px;
  }

  .faqs-ds .accordion-item .accordion-header button {
    font-size: 17px;
    line-height: 1.4;
  }

  .pricing-ds .content .price-head .price-headItem h2 {
    font-size: 24px;
  }

  .testimonials-mp .swiper-slide {
    width: 100%;
    padding: 0 10px;
    margin: 0;
  }

  .testimonials-mp .swiper-slide .item {
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
  }

  .testimonials-mp .testim-swiper {
    padding: 0;
  }

  .payment-receipt {
    margin: 10px;
  }

  .payment-receipt .fixed {
    position: relative;
  }

  .payment-receipt .bottom-0 {
    bottom: auto;
  }

  .payment-receipt .left-0 {
    left: auto;
  }

  .payment-receipt .table {
    display: block;
  }

  .payment-receipt .w-1\/2 {
    width: 100%;
  }

  .payment-receipt .w-full {
    width: 100%;
  }

  .payment-receipt .px-14 {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .payment-receipt .py-10 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .payment-receipt .py-4-pay {
    padding-top: 7rem;
    padding-bottom: 1rem;
  }

  .payment-receipt .py-6 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .payment-receipt .text-sm {
    font-size: 0.75rem;
    line-height: 1.2rem;
  }

  .payment-receipt .text-xs {
    font-size: 0.65rem;
    line-height: 1.2rem;
  }

  .payment-receipt .pl-2 {
    padding-left: 0.25rem;
  }

  .payment-receipt .pl-3 {
    padding-left: 0.5rem;
  }

  .payment-receipt .pl-4 {
    padding-left: 0.75rem;
  }

  .payment-receipt .pr-3 {
    padding-right: 0.5rem;
  }

  .payment-receipt .pr-4 {
    padding-right: 0.75rem;
  }

  .payment-receipt .text-center {
    text-align: center;
  }

  .payment-receipt .text-right {
    text-align: left;
  }

  .payment-receipt .align-top {
    vertical-align: middle;
  }

  .payment-receipt .font-bold {
    font-weight: 600;
  }

  .payment-receipt .text-main {
    color: #4a5bc2;
  }

  .payment-receipt .text-neutral-600 {
    color: #505050;
  }

  .payment-receipt .text-neutral-700 {
    color: #333;
  }

  .payment-receipt .text-slate-300 {
    color: #e4e4e4;
  }

  .payment-receipt .text-slate-400 {
    color: #fff;
  }

  .payment-receipt .text-white {
    color: #f8f8f8;
  }

  .footer-ds .subscribe .form-group {
      margin: 40px 0 12px;
  }

  .footer-ds .subscribe .form-group label {
      font-size: 12px;
  }

  .footer-ds .subscribe .form-group input {
      padding: 15px 40px 15px 15px;
      font-size: 14px;
  }

  .footer-ds .subscribe .form-group button {
      bottom: 15px;
      right: 10px;
      width: 20px;
  }

  .footer-ds .subscribe span {
      font-size: 12px;
  }

  .footer-ds .contact-info .item h6 {
      font-size: 16px;
      margin-bottom: 10px;
  }

  .footer-ds .contact-info .item p {
      font-size: 12px;
      margin-top: 6px;
  }

  .footer-ds .sub-footer {
      flex-direction: column;
      text-align: center;
      padding: 20px 0;
  }

  .footer-ds .sub-footer .copy .logo {
      width: 80px;
      margin-bottom: 10px;
  }

  .footer-ds .sub-footer .copy p {
      font-size: 12px;
      line-height: 1.5;
  }

  .footer-ds .sub-footer .links {
      margin-top: 20px;
  }

  .footer-ds .sub-footer .links a {
      font-size: 12px;
      margin: 0 5px;
  }

  .footer-ds .sub-footer .links .active {
      color: #fff;
      font-weight: bold;
  }
}

@media screen and (max-width: 480px) {

  .footer-ds .subscribe .form-group {
      margin: 30px 0 10px;
  }

  .footer-ds .subscribe .form-group label {
      font-size: 10px;
  }

  .footer-ds .subscribe .form-group input {
      padding: 10px 35px 10px 10px;
      font-size: 12px;
  }

  .footer-ds .subscribe .form-group button {
      bottom: 10px;
      right: 5px;
      width: 18px;
  }

  .footer-ds .subscribe span {
      font-size: 10px;
  }

  .footer-ds .contact-info .item h6 {
      font-size: 14px;
      margin-bottom: 8px;
  }

  .footer-ds .contact-info .item p {
      font-size: 10px;
      margin-top: 4px;
  }

  .footer-ds .sub-footer {
      flex-direction: column;
      text-align: center;
      padding: 15px 0;
  }

  .footer-ds .sub-footer .copy .logo {
      width: 60px;
      margin-bottom: 8px;
  }

  .footer-ds .sub-footer .copy p {
      font-size: 10px;
      line-height: 1.4;
  }

  .footer-ds .sub-footer .links {
      margin-top: 15px;
  }

  .footer-ds .sub-footer .links a {
      font-size: 10px;
      margin: 0 3px;
  }

  .footer-ds .sub-footer .links .active {
      color: #fff;
      font-weight: bold;
  }
}


@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}