/********** Template CSS **********/
:root {
  --primary: #4fb9fc;
  --secondary: #0095c9;
  --light: #f0f6ff;
  --dark: #002060;
}

body {
  max-width: 100%;
  max-height: 100vh;
  font-family: "Heebo", sans-serif !important;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Heading ***/
h1,
h2,
.fw-bold {
  font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
  font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
  font-weight: 500 !important;
}

/*** Gradient Text & BG ***/
.text-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-primary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.bg-secondary-gradient {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

.bg-primary {
  background-color: #ffff !important;
}

/*** Button ***/
.btn {
  transition: 0.5s;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient {
  position: relative;
  overflow: hidden;
  border: none;
  color: #ffffff;
  z-index: 1;
}

.btn.btn-primary-gradient::after,
.btn.btn-secondary-gradient::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.5s;
  z-index: -1;
  opacity: 0;
}

.btn.btn-primary-gradient,
.btn.btn-secondary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.btn.btn-secondary-gradient,
.btn.btn-primary-gradient::after {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

.btn.btn-primary-gradient:hover::after,
.btn.btn-secondary-gradient:hover::after {
  opacity: 1;
}

.btn-square {
  width: 38px;
  height: 38px;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
  border-radius: 50px;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 45px;
  bottom: 45px;
  z-index: 99;
  border: none;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Navbar ***/
/* li {
    list-style: none;
}

a {
    text-decoration: none;
    color: var(--light);
    font-size: 1rem;
}

a:hover {
    border-bottom: 2px solid var(--light);
    color: var(--light);
    transition: .2s ease-in-out;
}

header {
    position: relative;
    padding: 0.75rem 2.5rem;
    background-color: var(--secondary);
}

.navbar {
    width: 100%;
    height: 60px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo img {
    width: 100px;
    height: auto;
}

.navbar .links {
    display: flex;
    gap: 2rem;
    margin: 0;
}

.navbar .toggle-btn {
    color: var(--light);
    font-size: 1.5rem;
    cursor: pointer;
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    right: 2rem;
    top: 60px;
    height: 0;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border-radius: 10px;
}

.dropdown-menu.open  {
    height: auto;
    display: block;
}

.dropdown-menu li {
    padding: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media(max-width: 992px) {
    .navbar .links {
        display: none;
    }

    .navbar .toggle-btn {
        display: block;
    }
}

@media(max-width: 576px) {
    .dropdown-menu {
        left: 2rem;
        width: unset;
    }
} */

.navbar-light .navbar-nav .nav-link,
.navbar-light .navbar-brand {
  position: relative;
  font-family: "Jost", sans-serif;
  margin-right: 25px;
  padding: 20px 0;
  font-size: 18px;
  font-weight: 500;
  color: var(--light) !important;
  outline: none;
  transition: 0.5s;
  /* display: flex;
    justify-content: center;
    align-items: center; */
}

.navbar-light .sign {
  padding: 20px 0 10px 0;
}

/* .navbar-collapse {
    display: flex;
    justify-content: center;
    align-items: center;
} */

/* .navbar-light .navbar-nav .nav-link::before {
    position: absolute;
    content: "";
    width: 0;
    height: 0;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    border: 10px solid;
    border-color: var(--light) transparent transparent transparent;
    transition: .5s;
} */

.sticky-top.navbar-light .navbar-nav .nav-link,
.navbar-light .sign {
  padding: 5px 0;
  color: var(--light) !important;
}

/* .sticky-top.navbar-light .navbar-nav .nav-link:hover {
    border-bottom: 2px solid var(--light);
} */

.navbar-light .navbar-nav .nav-link:hover::before,
.navbar-light .navbar-nav .nav-link.active::before {
  top: 0;
}

.navbar-light .navbar-brand h1 {
  color: #ffffff;
}

.dmk-logo {
  width: 150px;
  height: auto;
}

.navbar-light .navbar-brand img {
  max-height: 60px;
  transition: 0.5s;
  margin: 15px;
}

.sticky-top.navbar-light .navbar-brand img {
  max-height: 45px;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  margin: 0;
  padding: 10px 20px;
  background-color: var(--light);
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: opacity 0.3s ease-in-out, visibility 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
}

.dropdown-item {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  text-decoration: none;
  color: #4c585b;
  display: block;
}

.dropdown-item:hover {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  color: var(--light);
}

/* Gaya dasar untuk transisi halus */
.nav-link.nav-btn {
  position: relative;
  z-index: 10; /* Pastikan teks di atas slider */
  transition: color 0.3s ease, transform 0.3s ease; /* Tambahkan transisi untuk teks */
  color: #495057; /* Warna teks default Bootstrap */
}

/* Elemen slider yang akan bergerak */
.slider {
  position: absolute;
  left: 0;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 50px; /* Sangat bulat */
  /* Mengubah transisi untuk efek yang lebih dinamis */
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55),
    width 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  z-index: 5; /* Slider berada di belakang teks */
  color: #fff;
}

/* Gaya untuk teks yang sedang aktif */
.nav-item.nav-item-btn.active .nav-link.nav-btn {
  color: white;
}

/* Container harus relatif agar slider bisa diposisikan dengan benar */
.nav-pills-custom {
  position: relative;
  display: flex;
  justify-content: center;
}

/* Mengatur tampilan container tombol */
.tab-container {
  padding: 8px;
  background-color: white;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-custom {
  font-weight: 500;
  color: #fff; /* Warna teks default */
  position: relative;
  z-index: 1; /* Pastikan teks di atas background */
  overflow: hidden; /* Sembunyikan background yang di luar area tombol */
  transition: color 0.3s ease; /* Transisi untuk warna teks */
  margin-right: 0;
}

/* Pseudo-element untuk efek background gradien */
.btn-custom::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  z-index: -1; /* Posisikan di bawah teks */
  opacity: 0; /* Sembunyikan secara default */
  border-radius: inherit; /* Warisi border-radius dari parent */
  transition: opacity 0.3s ease; /* Transisi untuk transparansi */
}

/* Gaya untuk tombol yang aktif */
.btn-active {
  color: #fff; /* Ubah warna teks menjadi putih saat aktif */
}

.btn-active::after {
  opacity: 1; /* Tampilkan background gradien */
}

.btn-regist:focus {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  transition: 0.5s;
}

.btn-costum:hover {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

@media (max-width: 991.98px) {
  .navbar-light {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    border: none;
  }
  .sticky-top.navbar-light {
    position: relative;
    background: linear-gradient(to top right, var(--primary), var(--secondary));
    box-shadow: none !important;
    width: 100%;
  }

  .navbar-light .navbar-collapse {
    margin-top: 15px;
    border-top: 1px solid #dddddd;
  }

  .navbar-light .navbar-collapse .navbar-nav,
  .navbar-light .navbar-collapse .navbar-nav .dropdown a {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .navbar-light .navbar-collapse .navbar-nav .dropdown .dropdown-item {
    display: flex;
    justify-content: start;
    align-items: start;
  }

  .navbar-light .navbar-collapse .sign .btn-sign {
    display: block;
  }

  .navbar-light .navbar-nav .nav-link,
  .sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    margin: 0;
    color: #fff !important;
  }

  .navbar-light .navbar-nav .nav-link::before {
    display: none;
  }

  .navbar-light .navbar-nav .nav-link:hover,
  .navbar-light .navbar-nav .nav-link.active {
    color: var(--light) !important;
    margin: 0;
  }

  .navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .navbar-light .navbar-brand img {
    max-height: 45px;
    margin: 10px 0;
  }

  .sign {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-sign {
    width: 50%;
  }   

  .nav-pills-custom {
    width: fit-content;
    margin: 0 auto;
  }

  .nav-item.nav-item-btn.active .nav-link.nav-btn {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    border-radius: 2rem;
    color: #fff;
  } 

  .nav-item.nav-item-btn .nav-link.nav-btn:focus {
    color: white;
  }
  /* .btn-login-register {
    display: flex;
    flex-direction: column;
  } */
}

@media (min-width: 992px) {
  .navbar-light {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
  }

  .sticky-top.navbar-light {
    position: fixed;
    background: linear-gradient(
      to bottom right,
      var(--secondary),
      var(--primary)
    );
  }

  .sticky-top.navbar-light .navbar-nav .nav-link::before {
    border-top-color: var(--primary);
  }

  .sticky-top.navbar-light .navbar-brand h1 {
    background: linear-gradient(
      to bottom right,
      var(--primary),
      var(--secondary)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

@media (min-width: 1400px) {
  .navbar-light .navbar-brand img {
    margin: 0;
  }
}

/*** Hero Header ***/
.hero-header {
  /* margin-bottom: 2rem; */
  padding: 10rem 3rem 0 3rem;
  background: url(../img/bg-circle.png), url(../img/bg-triangle.png),
    url(../img/wave.png);
  /* background-position:
        left 0px top 0px,
        right 0px top 50%,
        center bottom; */
  background-repeat: no-repeat;
}

.header {
  position: relative;
  height: 200px;
  padding: 10rem 3rem 0 3rem;
  background: url(../img/bg-circle.png), url(../img/bg-triangle.png),
    url(../img/bg.png);
  background-repeat: no-repeat;
}

.header-title {
  position: absolute;
  width: 90%;
  border-radius: 5px;
  padding: 20px 30px;
  left: 50%;
  transform: translate(-50%, 10%);
  background-color: #fff;
  box-shadow: 0 8px 8px -4px #dddddd;
}

.header-title .row span,
.header-title .row .breadcrumb {
  margin-bottom: 0;
}

.header-title .row .title {
  font-size: 20px;
  font-weight: 500;
  color: #4c585b;
}

.header-title .row .breadcrumb {
  font-size: 16px;
  font-weight: 500;
}

.header-title .row .breadcrumb-wrapper {
  display: flex;
  align-items: center;
  justify-content: end;
}

/* .header-title {
    position: absolute;
    height: 60px;
    width: 90%;
    padding: 10px 25px;
    left: 50%;
    transform: translate(-50%, 15%);
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 8px 8px -4px #DDDDDD;
    display: flex;
    align-items: center;
}

.header-title .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.header-title .row .col-xl-6 .col-lg-6 .col-sm-12 {
    display: flex;
    align-items: center;
}

 */

/* .header .img {
    width: 100%;
} */

@media (max-width: 991.98px) {
  .hero-header {
    padding: 6rem 0 9rem 0;
  }

  .header {
    margin-bottom: 3rem;
    height: 50px;
  }

  .header-title {
    top: 50%;
    transform: translate(-50%, 70%);
  }

  .header-title .row {
    justify-content: center;
  }

  .header-title {
    padding: 10px 15px;
  }

  .header-title .row .title {
    font-size: 18px;
  }

  .header-title .row .breadcrumb {
    font-size: 14px;
  }

  .title-wrapper,
  .header-title .row .breadcrumb-wrapper {
    display: flex;
    justify-content: center;
  }
}

/*** About ***/

/*** Feature ***/
.feature-item {
  transition: 0.5s;
}

.feature-item:hover {
  margin-top: -15px;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.08);
}

/*** Pricing ***/
.pricing .nav {
  padding: 2px;
}

.pricing .nav-link {
  padding: 12px 30px;
  font-weight: 500;
  color: var(--dark);
  background: #ffffff;
}

.pricing .nav-item:first-child .nav-link {
  border-radius: 30px 0 0 30px;
}

.pricing .nav-item:last-child .nav-link {
  border-radius: 0 30px 30px 0;
}

.pricing .nav-link.active {
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

/*** Screenshot ***/
.screenshot-carousel {
  position: relative;
  /* width: 253px; */
  height: 500px;
  padding: 15px;
  /* margin-right: 30px; */
}

@media (max-width: 576px) {
  .screenshot-carousel {
    height: 100px;
  }
}

/* .screenshot-carousel::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: 253px 500px;
    background: url(../img/dashboard.png) center center no-repeat;
    z-index: 1;
} */

/* .img-about {
    width: 50%;
} */

/* .screenshot-carousel .owl-item img {
    position: relative;
    width: 223px;
    height: 470px;
}

.screenshot-carousel .owl-dots {
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.screenshot-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 5px 0;
    width: 15px;
    height: 15px;
    background: linear-gradient(to bottom right, var(--primary), var(--secondary));
    border-radius: 15px;
    transition: .5s;
}

.screenshot-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 5px;
    left: 5px;
    background: #FFFFFF;
    border-radius: 5px;
}

.screenshot-carousel .owl-dot.active {
    box-shadow: 0 0 10px var(--dark);
} */

/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
  transition: 0.5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
}

.testimonial-carousel .owl-item.center .testimonial-item h5,
.testimonial-carousel .owl-item.center .testimonial-item p {
  color: #ffffff !important;
}

.testimonial-carousel .owl-nav {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
  margin: 0 12px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  border-radius: 60px;
  font-size: 18px;
  transition: 0.5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
}

/*** Video Profile ***/
.video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.video-wrapper {
  position: relative;
  width: 75%;
  height: 350px; /* Tinggi tetap untuk 16:9 dengan lebar 800px */
  border-radius: 15px;
  overflow: hidden;
  transform: translateY(-25%);
  border-radius: 15px;
}

.image-container {
  position: relative;
  display: inline-block;
  border-radius: 15px;
}

.image-container img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.overlay-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: white;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 15px;
}

.overlay-text .see {
  margin-top: 16px;
  font-size: 1rem;
}

.overlay-text .watch {
  margin-top: 6px;
  font-size: 1.4rem;
  font-weight: 800;
}

.overlay-text .play-button {
  position: relative;
  height: 50px;
  width: 50px;
  background: linear-gradient(#4fb9fc, #0095c9);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 40px;
  color: #ffffff;
  z-index: 1;
}

.overlay-text .play-button i {
  background: transparent;
  border-radius: 50%;
}

.overlay-text .play-button:before,
.overlay-text .play-button:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: #0095c9;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.7;
}

.overlay-text .play-button:before {
  animation: pulse 2s ease-out infinite;
}

.overlay-text .play-button:after {
  animation: pulse 2s 1s ease-out infinite;
}

/* .overlay-text .play-button i {
    color: linear-gradient(#4FB9FC, #0095C9);
} */

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Modal Container */
.modal {
  display: none; /* Sembunyikan modal secara default */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

/* Modal Content */
.modal-content {
  position: relative;
  width: 60%;
  max-width: 720px;
  height: auto;
  border-radius: 10px;
  text-align: center;
}

/* Close Button */
.close-button {
  position: absolute;
  top: -2.5rem;
  right: 0;
  font-size: 24px;
  cursor: pointer;
  color: #ffffff;
}

/* Video Iframe */
.modal-content iframe {
  width: 100%;
  height: 400px;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 576px) {
  .video-wrapper {
    width: 90%;
    height: 50%;
    transform: translateY(-40%);
  }

  .image-container {
    height: 180px;
  }

  .image-container img {
    height: 180px;
  }

  .overlay-text .see {
    font-size: 0.8rem;
  }

  .overlay-text .watch {
    font-size: 1.2rem;
  }

  .overlay-text .play-button {
    height: 35px;
    width: 35px;
    font-size: 25px;
  }

  .modal-content {
    width: 80%;
    height: 200px;
  }
}

/* .video-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    border-radius: 15px;
} */

/* .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
} */

/* .video-wrapper .play{
    display: flex;
    justify-content: center;
    align-items: center;
} */

/*** Footer ***/
.footer {
  margin-top: 3rem;
  padding-top: 1rem;
  padding-right: 3rem;
  padding-left: 3rem;
  background: linear-gradient(
    to bottom right,
    var(--primary),
    var(--secondary)
  );
  background-position: left 0px bottom 0px, right 0px top 50%, center top;
  background-repeat: no-repeat;
}

.footer img {
  width: 20%;
  height: auto;
  margin-bottom: 1.75rem;
}

.footer p {
  font-weight: 500;
}

.footer .btn.btn-social {
  margin-right: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  border: 1px solid #ffffff;
  border-radius: 40px;
  transition: 0.3s;
}

.footer .btn.btn-social:hover {
  color: var(--primary);
}

.footer .btn.btn-link {
  display: block;
  margin-bottom: 10px;
  padding: 0;
  text-align: left;
  color: var(--light);
  font-weight: normal;
  transition: 0.3s;
}

.footer .btn.btn-link::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}

.footer .btn.btn-link:hover {
  letter-spacing: 1px;
  box-shadow: none;
}

.footer .copyright {
  padding: 25px 0;
  font-size: 14px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
  max-width: 85%;
}

.footer .copyright a {
  color: var(--light);
}

.footer .footer-menu a {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .footer-menu a:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.quick-link {
  margin-left: 3.5rem;
}

.registered h4 {
  text-align: center;
}

.registered-img {
  display: flex;
  justify-content: center;
}

.registered-img img {
  width: 11rem !important;
  height: auto;
}
@media (max-width: 576px) {
  .footer img {
    width: 50%;
  }

  .footer p {
    font-size: 16px;
    font-weight: 500;
  }

  .registered h4 {
    text-align: start;
  }

  .registered-img {
    display: flex;
    justify-content: start;
  }

  .quick-link {
    margin-left: 0;
  }

  .container-download {
    position: unset !important;
  }

  .img-download {
    width: 220px !important;
    position: unset !important;
    transform: translateY(0%) !important;
  }
}

.container-download {
  background: linear-gradient(
    to bottom right,
    var(--secondary),
    var(--primary)
  );
  border-radius: 2rem;
  position: relative;
}

.img-download {
  width: 350px;
  transform: translateY(-65%);
  position: absolute;
}

.google-play-icon {
  display: flex;
  align-items: center;
  padding: 10px;
  border-radius: 15px;
  width: fit-content;
  background-color: #f0f6ff;
  box-shadow: 0 8px 8px -4px #dddddd;
}

.icon-container {
  padding: 2px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.icon-container i {
  font-size: 32px;
  width: 40px;
  height: auto;
  text-align: center;
}

.text-on {
  display: flex;
  flex-direction: column;
  margin-left: 4px;
  margin-right: 10px;
}

.text-on text {
  margin-bottom: 5px;
}

.text-on text:nth-of-type(1) {
  font-size: 11px;
  margin-bottom: 0;
}

.text-on text:nth-of-type(2) {
  font-weight: bold;
  font-size: 15px;
  color: #262b47;
  margin-bottom: 0;
}

.container-about span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--success);
}
.container-about span::before {
  position: relative;
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 10px;
}
