html {
  scroll-behavior: smooth;
}

body {
  background: #f5f5f5;
  font-family: "Poppins", sans-serif;
}

ul {
  padding: 0;
}

svg {
  width: 100%;
  height: auto;
}

.container {
  max-width: 1710px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Header */
.header {
  padding: 20px 16px;
}

.header-custom-button {
  background-color: #5a1aee;
  color: #f1f3f7;
  border: none;
  padding: 10px 27px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  border-radius: 7px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.header-custom-button:hover {
  background-color: #4361ee;
}

/* Sticky Top Header */
#top-sticker {
  background: #fff;
  border-top: 2px solid #f1f3f7;
  border-bottom: 2px solid #f1f3f7;
  position: sticky;
  top: 0;
  z-index: 9999;
}

@media (max-width: 768px) {
  .header {
    padding: 15px 12px;
  }

  .header img {
    width: 140px;
    height: auto;
  }

  .header-custom-button {
    font-size: 14px;
    padding: 6px 16px;
    width: auto;
    min-width: 140px;
    border-radius: 6px;
  }
}

/* banner */
.hero {
  padding: 40px 16px 24px 16px;
  text-align: center;
}

.hero h1 {
  font-size: 36px;
  font-weight: 400;
  color: #1a181b;
  margin: 16px 0;
  letter-spacing: -6%;
  text-align: center;
}

.hero p {
  font-size: 16px;
  color: #1a181b;
  margin-bottom: 8px;
  text-align: center;
}

.details {
  margin-top: 16px;
  font-size: 16px;
  color: #1a181b;
  display: block;
  width: 100%;
  padding: 0 8px;
  box-sizing: border-box;
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: 50px 0 30px 0;
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero p,
  .details {
    font-size: 20px;
  }

  .details {
    width: 64%;
    display: inline-block;
  }
}

@media (min-width: 1200px) {
  .hero h1 {
    font-size: 80px;
    line-height: 108px;
  }

  .details {
    font-size: 20px;
  }
}

@media (min-width: 1920px) {
  .hero h1 {
    font-size: 100px;
  }
}

/* Form Section */

.form-section {
  background: linear-gradient(100deg, #c8fff8, #dacaff);
  border-radius: 20px;
  padding: 40px 20px 20px 20px;
  margin: 20px 16px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.form-title h3 {
  font-size: 22px;
  width: 100%;
  padding-bottom: 10px;
}

.my-custom-form {
  display: block;
}

/* Text/email inputs */
.my-custom-form input[type="text"],
.my-custom-form input[type="email"] {
  height: 45px;
  padding: 0px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  width: 100%;
  margin-top: 5px;
  margin-bottom: 15px;
}

.my-custom-form span {
  color: #1a181b;
  font-size: 18px;
}

/* Submit button */
.my-custom-form input[type="submit"] {
  background: #5a1aee;
  border: none;
  cursor: pointer;
  margin-top: 15px;
  color: #f1f3f7;
  padding: 0px 16px;
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  font-family: "Poppins", sans-serif;
  border-radius: 7px;
  transition: background-color 0.3s ease;
  margin-bottom: 20px;
}

.my-custom-form input[type="submit"]:hover {
  background: #4361ee;
}

.my-custom-form span.hs-form-required {
  color: red;
}

.my-custom-form .hs-error-msgs li {
  list-style: none;
}

.my-custom-form .hs-error-msgs li label {
  color: red;
  font-weight: 400;
  font-size: 14px;
  text-align: left;
}

.my-custom-form .hs_error_rollup label,
.my-custom-form .hs_error_rollup ul {
  display: none !important;
}

.my-custom-form .input {
  width: 100%;
}

.hb-form-request-demo .hs_submit.hs-submit {
  width: 100%;
  border-radius: 100px !important;
  background: #ee3c25 !important;
}

.parsley-errors-list li {
  color: red;
  margin-bottom: 15px;
  font-size: 14px;
  list-style: none;
  padding-left: 0;
}

.terms-condition {
  padding-top: 10px;
  font-size: 14px;
}

@media (min-width: 576px) {
  .form-section {
    padding: 30px 20px;
    margin: 20px auto;
  }

  .form-title h3 {
    font-size: 24px;
  }

  .form-section label {
    font-size: 17px;
  }

  .btn-primary {
    width: auto;
    margin-top: 20px;
  }
}

@media (min-width: 769px) {
  .my-custom-form {
    display: flex;
    gap: 15px;
  }

  .my-custom-form input[type="submit"] {
    margin-top: 35px;
  }
}

@media (min-width: 1024px) and (max-width: 1499px) {
  .form-section {
    padding: 30px;
    margin: 40px auto;
  }

  .form-title h3 {
    font-size: 28px;
    width: 211px;
  }

  /* Text/email inputs */
  .my-custom-form input[type="text"],
  .my-custom-form input[type="email"] {
    height: 60px;
    padding: 0px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
  }

  .parsley-errors-list li {
    margin-top: 10px;
  }

  .my-custom-form input[type="submit"] {
    height: 58px;
    margin-bottom: 0px;
    padding: 0px 27px;
    font-size: 18px;
    margin-top: 32px;
  }

  .my-custom-form {
    display: flex;
    gap: 15px;
  }

  .my-custom-form .hs-form-field:nth-child(1),
  .my-custom-form .hs-form-field:nth-child(2),
  .my-custom-form .hs-form-field:nth-child(3) {
    min-width: 150px;
  }

  .my-custom-form .hs_recaptcha,
  .my-custom-form .actions {
    flex: 1 1 calc(50% - 1rem);
    min-width: 100px;
    margin-top: 16px;
  }

  .terms-condition {
    padding-top: 10px;
  }
}

@media (min-width: 1500px) {
  .form-section {
    padding: 30px;
    margin: 40px auto;
  }

  .terms-condition {
    padding-top: 10px;
  }

  .parsley-errors-list li {
    margin-top: 10px;
    font-size: 14px;
  }

  .my-custom-form input[type="text"],
  .my-custom-form input[type="email"] {
    height: 60px;
    padding: 0px 15px;
    border-radius: 10px;
    margin-bottom: 5px;
  }

  .my-custom-form input[type="submit"] {
    height: 58px;
    margin-bottom: 0px;
    margin-top: 32px;
    padding: 0px 27px;
    font-size: 18px;
    min-width: 213px;
  }

  .my-custom-form {
    display: flex;
    gap: 15px;
    padding-right: 40px;
  }

  .my-custom-form .hs-form-field:nth-child(1),
  .my-custom-form .hs-form-field:nth-child(2),
  .my-custom-form .hs-form-field:nth-child(3) {
    min-width: 300px;
  }

  .my-custom-form .hs_recaptcha,
  .my-custom-form .actions {
    flex: 1 1 calc(50% - 1rem);
    min-width: 250px;
    margin-top: 16px;
  }

  .form-title h3 {
    font-size: 28px;
    width: 218px;
    padding-left: 10px;
  }
}

@media (min-width: 1600px) {
  .form-title h3 {
    font-size: 28px;
    width: 230px;
    padding-left: 40px;
  }

  .my-custom-form input[type="submit"] {
    min-width: 250px;
  }
}

.planning {
  padding-top: 30px;
}

.planning img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Carausal Section */

.carousel {
  position: relative;
  padding-bottom: 32px;
  overflow-x: hidden;
}

.swiper-slide img {
  max-width: 100%;
}

.customer-review .swiper-slide img {
  margin: 0 auto;
  display: block;
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.customer-review-slide .kenvue-logo {
  height: 56px;
}

.slider-title h3 {
  font-size: 30px;
  font-weight: 500;
  color: #1a181b;
  text-align: center;
  text-transform: capitalize;
}

.customer-review {
  margin-top: 25px;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

@media (min-width: 1024px) {
  .slider-title h3 {
    font-size: 50px;
  }

  .customer-review {
    padding: 20px 0;
  }
}

@media (min-width: 1920px) {
  .slider-title h3 {
    font-size: 60px;
  }
}

/* key benefits */
.key-benefit {
  background: linear-gradient(135deg, #0b0f2e, #11363b);
  color: white;
}

.key-benefits-section {
  padding: 50px 0;
  margin-top: 10px;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.section-subheading {
  font-size: 20px;
  color: #f1f3f7;
  text-align: center;
  margin-bottom: 10px;
}

.section-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.section-subtitle {
  text-align: center;
  color: #f1f3f7;
  margin-bottom: 40px;
  font-size: 14px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.benefit-card {
  background: #111216;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  text-align: left;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 20px;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {
  width: 90px;
  height: auto;
  margin-bottom: 15px;
}

.benefit-title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 15px;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: #f1f3f7;
}

.benefit-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefit-card ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #f1f3f7;
  font-weight: 400;
  line-height: 1.5;
}

.benefit-card ul li::before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAeCAYAAADQBxWhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAK6SURBVHgBvVdLb9pAEB7vw2/TJspDzTGPEwdUqYde88u59Bipl/RQQTj0QBWeFeZhsNfuDNQpIdgYAnwSaFkP+/kbz3y7BiiIJElYrZYYrVbLbbcTD3+b1WpVwA7QNgXQwpVKxVHKsNfFj8fhpNH47t/f30dQEJmkpKzf73tI5kAh2P75ueYXidQyCGWrNTplTOOwBUwzDl3X7WqaFsM2pETY6YzPoEDqdyUW+yQkBAGTvu+f4rCTFcPSARUMpfQ9hCmk5Hqv1/sAm0ivrz972z7DPFAB1mo1A7JISaVtSwv2jFLp00fqgrWkpBIOAMpcpwNvWo7tU6UQTLqufmNZ8iKds6yRs6pW3N7eStgDDIN7hiEqmgYWKhxOJtCi+clEYzgmtS/GIRzH0ZV6uwiqv5KSladT9RAEUT+PkNRxrl3TOEkgmE6jx+Xr/9SO0t4VQSCkzNGq67yMpN8gW10Z1c1rQqnkF8Y2oigOl+NW1TJMBVu3IBp5k+6a0kWqYY060xRfiXChTj0Mh7Ofq4QpwtB/aR+BkjPNABd4ohRjgVDqmjSHjW8hWZkxOMlTtwoyDEwxRzqVux+SWs8zroiAlOGfQs7ZDd6mIHWzmXrc9LxXYOJnJMIwjvDZZDpRGKonvP5lUSiLpBRVt4rBYGDMSW07ipTiRlYgKcHU9EntjuqW1uLzksXqPQmlHG8Ijn7oOjvHYvm9rbplkEORUWj0hdvZJexhdymCszP7mS0a1h7C8cDYgh1GcZwoOA7iOSmpvbhwOkci/u/+1LSHJqbzEwl8ZYEpMfbmDA4APDuN5jxZAc1m0+a8tLcjDGXw8tJ9ziVdJmfMc9H+dnqFIOh6FJRKpT/p1la4N+l42m63jSgyTXQoWeC/CefTcbfbDe7u7qbLF3Y2BLqJer3O8BDwKv0KjRnnw7x3m7+8EXXdthtMagAAAABJRU5ErkJggg==);
  color: #7ef3d2;
  margin-right: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
  font-size: 14px;
  flex-shrink: 0;
  align-self: center;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 32px;
  }

  .section-subtitle {
    font-size: 18px;
    margin-bottom: 50px;
  }

  .benefit-card {
    padding: 25px 30px;
  }

  .benefit-title {
    font-size: 24px;
  }

  .benefit-card ul li {
    font-size: 16px;
  }

  .benefit-card ul li::before {
    font-size: 16px;
    width: 24px;
    height: 24px;
  }
}

@media (min-width: 998px) {
  .section-title {
    font-size: 40px;
  }

  .section-subtitle {
    font-size: 20px;
    margin-bottom: 60px;
  }

  .benefit-card {
    padding: 30px 40px;
  }

  .benefit-title {
    font-size: 30px;
    line-height: 1.4;
  }

  .benefit-card ul li {
    font-size: 18px;
  }

  .benefit-card ul li::before {
    font-size: 18px;
    width: 28px;
    height: 28px;
  }
}

@media (min-width: 1024px) {
  .section-subtitle {
    padding-bottom: 40px;
  }

  .benefit-card ul li::before {
    margin-bottom: 5px;
  }

  .section-title {
    font-size: 50px;
  }

  .key-benefits-section {
    padding: 80px 0;
    margin-top: 0px;
  }

  .benefit-card img {
    width: 110px;
  }

  .benefit-card {
    padding: 50px 10px 50px 40px;
  }

  .benefit-card ul li {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 1200px) {
  .key-benefits-section {
    padding: 90px 0px 136px 0px;
  }
}

@media (min-width: 1920px) {
  .section-title {
    font-size: 60px;
  }
}

/* AI Copilot */
.section-dark {
  background: linear-gradient(to right, #0a0a23, #1a1a40);
  padding: 40px 0;
}

.copilot-subheading {
  font-size: 20px;
  font-weight: 500;
  padding-top: 10px;
  color: #1a181b;
}

.copilot-title {
  font-weight: 500;
  font-size: 50px;
  padding-top: 10px;
}

.copilot-subtitle {
  font-weight: 400;
  color: #1a181b;
  font-size: 20px;
  padding-top: 30px;
}

.text-pink {
  color: #d60087;
}

.text-white {
  color: #f1f3f7;
}

.copilot-img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.batch-img {
  padding-bottom: 15px;
  object-fit: contain;
}

.batch-title {
  font-size: 30px;
  font-weight: 500;
  max-width: 300px;
}

.batch-subtitle {
  font-size: 20px;
  font-weight: 400;
}

.copilot-title {
  font-size: 28px;
}

@media (max-width: 768px) {
  .copilot-subheading,
  .copilot-title,
  .copilot-subtitle,
  .batch-title,
  .batch-subtitle {
    text-align: center;
  }

  .section-dark {
    padding: 2rem 1rem;
  }

  .copilot-subheading {
    font-size: 16px;
    padding-top: 0;
  }

  .copilot-title {
    font-size: 28px;
    padding-top: 10px;
  }

  .slider {
    padding-bottom: 40px;
  }

  .icon-image {
    width: 90px;
  }

  .copilot-subtitle {
    font-size: 16px;
    padding-top: 20px;
  }

  .copilot-img {
    max-width: 100%;
    height: auto;
    margin-top: 30px;
  }

  .batch-img {
    display: block;
    margin: 0 auto 10px;
    width: 88px;
    height: 88px;
    padding-bottom: 10px;
  }

  .copilot-main-section {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .batch-title {
    font-size: 18px;
    max-width: 100%;
  }

  .batch-subtitle {
    font-size: 14px;
  }

  .gap-3 {
    gap: 1rem !important;
  }

  .gy-5 {
    row-gap: 1.5rem !important;
  }

  .mt-4 {
    margin-top: 1rem !important;
  }

  .mb-4 {
    margin-bottom: 1.5rem !important;
  }

  .text-center {
    text-align: center !important;
  }

  .fw-bold {
    font-weight: 600 !important;
  }

  .display-6 {
    font-size: 1.75rem !important;
  }

  .gpx-paragraph {
    padding-bottom: 20px;
  }
}

@media (min-width: 769px) {
  .copilot-title {
    font-size: 50px;
  }

  .slider {
    padding-bottom: 80px;
  }

  .custom-pagination {
    display: block;
    text-align: left;
    max-width: 200px;
    color: #f1f3f7;
  }

  .copilot-right-section {
    justify-content: center;
  }

  .swiper-pagination-bullet-active {
    background: #1a181b;
    opacity: 70%;
  }
}

@media (min-width: 1024px) {
  .copilot-title {
    width: 582px;
  }

  .swiper-slider-1 {
    padding-top: 80px;
  }
}

@media (min-width: 1500px) {
  .copilot-main-section {
    padding: 20px 0;
  }

  .copilot-left-section {
    padding-top: 10px;
  }

  .copilot-right-section {
    padding-top: 70px;
    padding-bottom: 50px;
    justify-content: right;
  }

  .swiper-slider-1 {
    padding-top: 110px;
  }

  .copilot-img {
    max-width: 700px;
  }

  .copilot-subtitle {
    width: 640.32px;
  }
}

@media (min-width: 1920px) {
  .copilot-title {
    font-size: 60px;
  }
}

/*  GxP By Design */
.section-dark {
  padding: 20px 30px 60px 30px;
}

.shield-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.gmp-label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 7px;
}

.gmp-heading {
  font-size: 25px;
  font-weight: 500;
  list-style: 45px;
  letter-spacing: -3%;
  margin: 0;
}

.caption-box {
  position: absolute;
  bottom: -8%;
  left: 60%;
  transform: translateX(-50%);
  background: #350aac78;
  border-radius: 32px;
  padding: 20px 20px;
  color: white;
  text-align: left;
  max-width: 320px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.icon {
  width: 80px;
  height: auto;
}

.gpx-subtitle {
  font-size: 16px;
  color: #f1f3f7;
  padding-top: 10px;
}

.gpx-title {
  font-size: 30px;
  font-weight: 500;
  color: #f1f3f7;
}

.gpx-paragraph {
  font-size: 16px;
  color: #f1f3f7;
  font-weight: 400;
  padding-top: 5px;
}

.list-title {
  font-size: 20px;
  font-weight: 500;
  color: #f1f3f7;
}

.list-subtitle {
  font-size: 14px;
  font-weight: 400;
  color: #f1f3f7;
  opacity: 85%;
}

.list-items {
  padding-bottom: 20px;
}

@media (min-width: 769px) {
  .section-dark {
    padding: 90px 30px;
  }

  .gmp-label {
    font-size: 20.35px;
  }

  .gmp-heading {
    font-size: 30px;
  }

  .caption-box {
    padding: 30px 20px;
    bottom: -7%;
  }

  .icon {
    width: 85px;
  }

  .gpx-subtitle {
    font-size: 20px;
  }

  .gpx-paragraph {
    font-size: 20px;
    padding-top: 20px;
  }

  .list-title {
    font-size: 30px;
  }

  .list-subtitle {
    font-size: 18px;
  }
}

@media (min-width: 1024px) {
  .list-items {
    padding-top: 10px;
    width: 100%;
  }

  .list-subtitle {
    font-size: 18px;
  }

  .gpx-paragraph {
    padding-top: 10px;
  }

  .list-title {
    font-size: 22px;
  }

  .list-subtitle {
    font-size: 18px;
  }

  .gmp-heading {
    font-size: 22px;
  }

  .gpx-paragraph {
    padding-top: 10px;
  }

  .caption-box {
    position: absolute;
    bottom: -8%;
    left: 70%;
    transform: translateX(-50%);
    background: #350aac78;
    border-radius: 32px;
    padding: 20px 20px;
    color: white;
    text-align: left;
    width: 230px;
    max-width: 230px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  }
}

@media (min-width: 1500px) {
  .section-dark {
    padding: 120px 30px;
  }

  .list-items {
    padding-top: 30px;
    width: 90%;
  }

  .gpx-paragraph {
    font-size: 20px;
    padding-top: 20px;
  }

  .list-title {
    font-size: 30px;
  }

  .list-subtitle {
    font-size: 18px;
  }

  .gpx-paragraph {
    padding-top: 20px;
    width: 630px;
  }

  .shield-container {
    justify-content: right;
    padding-bottom: 100px;
  }

  .gpx-title {
    font-size: 50px;
  }

  .caption-box {
    bottom: 0%;
    left: 70%;
    padding: 50px 0px;
    width: 340px;
    max-width: 340px;
  }

  .gmp-box {
    padding-left: 35px;
  }

  .gmp-heading {
    font-size: 46.13px;
  }

  .gxp-right-section {
    padding-left: 70px;
  }
}

@media (min-width: 1920px) {
  .gpx-title {
    font-size: 60px;
  }
}

/*  FAQ */
.faq-section {
  padding: 80px 0px;
}

.faq-subtitle {
  font-size: 20px;
  color: #1a181b;
}

.faq-title {
  font-size: 50px;
  color: #1a181b;
  font-weight: 500;
}

.selected-badge li {
  background-color: #4361ee;
  padding: 5px 20px;
  border-radius: 50px;
}

.not-selected-badge li {
  padding: 5px 20px;
  border-radius: 50px;
  color: #1a181b;
  border: 1px solid #1a181b;
}

.tab-section {
  padding-top: 15px;
}

.tab-content {
  padding-top: 30px;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  color: #1a181b;
}

.nav-tabs.no-border {
  border-bottom: none;
}

.nav-tabs .nav-link {
  border: 1px solid #1a181b;
  border-radius: 50px;
  padding: 5px 15px;
  color: #1a181b;
  background-color: #f8f9fa;
  margin-right: 10px;
}

.nav-tabs .nav-link.active {
  background-color: #4361ee;
  color: white;
  border: none;
}

.accordion-button {
  font-size: 22px;
  font-weight: 500;
  color: #1a181b;
  padding: 20px 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  outline: none;
  box-shadow: none;
}

.accordion-button:hover {
  background-color: #e2d9f6;
}

/* Remove focus ring for mouse + keyboard users */
.accordion-button:focus,
.accordion-button:focus-visible {
  outline: none;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #2c3e50;
  border-bottom: 0.5px solid #d1d0d0;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.accordion-button::after {
  background-image: none !important;
  content: "";
}

.accordion-button:not(.collapsed)::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAjCAYAAAD8BaggAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAMTSURBVHgBxZhNb9owGIBffyQ4JayDwZAKqir1MvW6H7bzfkHPu++/7LJLLzuiHaBCU6QKQfkmJCG2Z0cNhRZCSCk8kiEmTvLw2nFeB0E2aLVazVm+ZQgpEBccxzssw1p4Z97CcZyFqoawJ2iftuVy2baRnZdSpjqOEsp9w58ouUBVeZpj0pwYlUqlQgEX8pARjLGYiInb6/Umu9ruEjKvq9cfQx4SOAA6Yq1O6xESorVVSHWPCknehneA9/jQAWe+aR85towGn2HGCkzOZrPFq31wZJkYxtmHG7gxYYcQOYZMzPzzvAgvemmtogZwRc0rGI6Enj5sYhuTYLIcT8uL1+t161B30z7QHDVXu24plFvkCnAiRoXR8tqR0NXVFTtFdGJWo0T1hxgICxn7PEWe4YSXBcA3va3+3Q/CSQ8y0K10TehCEEUImzgHGXiS+a6G56Uuelv/BhmgHmWRiypG2oflFpkVAVnOKmXmTEN9IS10ABn0T5XeW6UUmKjb3cQhZmmP2CRDJLpFCO4koK/qhzNdom0s/2CJ3bTnrrk1b69JcJsMFtjVg1md7PatkUotlCQTtzmEFFHJF4UALHijTEzURaqrXnaf6tLfSKJF0nWabnOG2+12YiONRPJLGpmYjZHC4hJ2w/XsLIv5on7CJ91t6sTyXDX4SwD/TJKJeY6ULCOEftGQ3iW1D/xgMQ2mbiRRK9Q+6ekbToiKqns/uB9Fgzo8Cz04MWzAohQkEup0OnMVVgknwvM83oBGsBRSiBnMpnAijKmxXB4tUw7XdUOGmUUpPVrGqNHReQgeRnF99eLCmlpjODKdaedxtb4WjTa0PUMYMzgSeZTXXbW2aHyVJfbnfb9oFqlSNeCdZRrdxqtxuzFtHXpDr8IqWCDxLnPTNhnN1gHc7DfHTyE9GO7clRfsYrhNRpMmOSP1D/VzYpJMaW4MD7jvjB19NyW+lkmz0pBjfzxXyVMQGAFGBFFIiY4IBerbA3vU8ls6Kjsn3yxLDVKHuslKzPBCj4ZifflkEjNUhXt99RYNHC+NxCr/ARC3eYyu18W5AAAAAElFTkSuQmCC);
  transform: rotate(0deg);
  margin-top: -18px;
  margin-right: 15px;
  width: 20px;
}

.accordion-button::before {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB0AAAAeCAYAAADQBxWhAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAALhSURBVHgBvZZNTBNBFMf/b7ooAmob/LjWk95ovGpiEYjeQG5epHAxMSZgjBylHCUxIZGYeFAWL97A3kyAuBc8Sj16MKleNBHSRgERdnecN6WktLvdbS38knY/5s38970382YIIUmm8lEBDBDZCZA4LV18dSEsy4xZqBMKMriZysd3yR4DIkPqMephklPDpJdnY3MIia+o9kxglKRMIxy5Fknd78xYLsjQU5S9s0kuSCCB+ig40rllmWct1CNaDKd8r27jaBAl3F1LmJotuEdBSLt70TyX9WoU5Q9NEmSiLhkLPC9QS7R3JD/RJMEScUO4E14NOrxNDGsVXvnVnu7ASR6GIBOhyGzlOy0qSIyiSQz2HcejkfbyV/HrqfWxA6IcWr/12N4WWLD2OX9G4On4Sdy73YYbV4+ho6wvER3IrdiFk/AbJDMTxeT9DgTB3r1In0LXJQM/1lw8fPIbG1uy3CTaM5wfKj0YEpTw8mdTdeKOVy63oOuigU+fbc8PG1ehZDFmfvEv5jJ/dN9qZEr96fospHcR14Lzi9v6/k7/CYTx7vmbLR9BTVKt27gWhY9o6ctZnAdmb0velXLHeWObu+lfnpGoRMAd4CuPVPAzKnnLnvJvZXVHX1mM26ZebuLD6i7CoiZUv7pMG6T3Q3/Yk8G+1qK3e7lb+biDqVc1Q+mHnrRqy3SztazKc8v3j59tYGJmsxFBJqrymjBsGFkBWaAauX2d2caXbw6yKm8Niu0j1BIV6ozDgtkg4xWVu/8VLEJRXQYdaT/A0VEUtdRmq85CkzgaCgeKUc/wmqmiPoRDhLe6qgrYk1qfVguqabtOtSjFROXLZbNz7NBCLcnkiSu82pbMzrT6oguQMvQBOlBPFSEH0M4EbphcpCNw05LoGjV6upCwHNCwtXcQD79LK3pTP5MSQhVt6pKERK2CooRy6i9DcN8uVZyR6hKtJJn6HjdgxMvf2bBzQGuBc+fX7x9stDbJnx9jOgAAAABJRU5ErkJggg==);
  padding-right: 10px;
}

.accordion-button::after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACQAAAAjCAYAAAD8BaggAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAMTSURBVHgBxZhNb9owGIBffyQ4JayDwZAKqir1MvW6H7bzfkHPu++/7LJLLzuiHaBCU6QKQfkmJCG2Z0cNhRZCSCk8kiEmTvLw2nFeB0E2aLVazVm+ZQgpEBccxzssw1p4Z97CcZyFqoawJ2iftuVy2baRnZdSpjqOEsp9w58ouUBVeZpj0pwYlUqlQgEX8pARjLGYiInb6/Umu9ruEjKvq9cfQx4SOAA6Yq1O6xESorVVSHWPCknehneA9/jQAWe+aR85towGn2HGCkzOZrPFq31wZJkYxtmHG7gxYYcQOYZMzPzzvAgvemmtogZwRc0rGI6Enj5sYhuTYLIcT8uL1+t161B30z7QHDVXu24plFvkCnAiRoXR8tqR0NXVFTtFdGJWo0T1hxgICxn7PEWe4YSXBcA3va3+3Q/CSQ8y0K10TehCEEUImzgHGXiS+a6G56Uuelv/BhmgHmWRiypG2oflFpkVAVnOKmXmTEN9IS10ABn0T5XeW6UUmKjb3cQhZmmP2CRDJLpFCO4koK/qhzNdom0s/2CJ3bTnrrk1b69JcJsMFtjVg1md7PatkUotlCQTtzmEFFHJF4UALHijTEzURaqrXnaf6tLfSKJF0nWabnOG2+12YiONRPJLGpmYjZHC4hJ2w/XsLIv5on7CJ91t6sTyXDX4SwD/TJKJeY6ULCOEftGQ3iW1D/xgMQ2mbiRRK9Q+6ekbToiKqns/uB9Fgzo8Cz04MWzAohQkEup0OnMVVgknwvM83oBGsBRSiBnMpnAijKmxXB4tUw7XdUOGmUUpPVrGqNHReQgeRnF99eLCmlpjODKdaedxtb4WjTa0PUMYMzgSeZTXXbW2aHyVJfbnfb9oFqlSNeCdZRrdxqtxuzFtHXpDr8IqWCDxLnPTNhnN1gHc7DfHTyE9GO7clRfsYrhNRpMmOSP1D/VzYpJMaW4MD7jvjB19NyW+lkmz0pBjfzxXyVMQGAFGBFFIiY4IBerbA3vU8ls6Kjsn3yxLDVKHuslKzPBCj4ZifflkEjNUhXt99RYNHC+NxCr/ARC3eYyu18W5AAAAAElFTkSuQmCC);
  margin-top: 15px;
  width: 34px;
  transform: rotate(-180deg);
  transition: 0.3s;
  width: 40px;
}

.accordion {
  border-radius: 20px;
  overflow: hidden;
}

.accordion-body {
  color: #1a181b;
  padding: 30px 40px;
  font-size: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.accordion-item {
  border-radius: 20px;
  margin-bottom: 20px;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.accordion-header {
  margin-bottom: 0;
}

.faq-section #faqAccordion {
    transition: opacity 0.3s ease;
}

.faq-section #faqAccordion.fade-out {
    opacity: 0;
}

.faq-section #faqAccordion.fade-in {
    opacity: 1;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 40px 0px;
  }

  .faq-subtitle {
    font-size: 14px;
    text-align: center;
  }

  .faq-title {
    font-size: 28px;
    text-align: center;
    margin-top: 10px;
  }

  .tab-section {
    padding-top: 10px;
    text-align: center;
  }

  .nav-tabs .nav-link {
    font-size: 14px;
    margin-bottom: 10px;
    padding: 5px 12px;
    margin-top: 10px;
  }

  .tab-content {
    font-size: 16px;
    line-height: 26px;
    padding-top: 20px;
    text-align: center;
  }

  .accordion-button {
    font-size: 15px;
    padding: 25px 16px;
  }

  .accordion-body {
    font-size: 14px;
    line-height: 24px;
  }

  .accordion-item {
    margin-bottom: 12px;
  }

  .faq-section .row {
    flex-direction: column;
  }

  .faq-section .col-md-6 {
    width: 100%;
  }

  .nav-tabs {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (min-width: 769px) {
  .footer-text {
    width: 400px;
    font-size: 25px;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .nav-tabs .nav-link {
    margin-top: 10px;
  }

  .footer-text-col {
    padding: 0;
  }

  .social-icons {
    justify-content: flex-start !important;
    margin-bottom: 0;
  }

  .copyright-section {
    flex-direction: row !important;
    gap: 10px;
  }

  .copyright-section > div {
    text-align: left !important;
  }

  .faq-title {
    font-size: 35px;
  }
}

@media (min-width: 1200px) {
  .faq-title {
    font-size: 50px;
  }
}

@media (min-width: 1500px) {
  .faq-section {
    padding: 120px 0px 120px 0px;
  }

  .accordion-button::before {
    padding-right: 20px;
  }
}

/* Footer */
footer {
  color: #f9fafb;
  padding: 25px 0;
}

footer a {
  color: #cbd5e0;
  text-decoration: none;
}

footer a:hover {
  color: #f9fafb;
  text-decoration: underline;
}

.footer-text {
  font-size: 25px;
  font-weight: 500;
  color: #42ead4;
  min-width: 336px;
  margin: 0 auto;
  text-align: center;
}

.social-icons {
  gap: 20px;
  display: flex;
}

.social-icons a img {
  transition: transform 0.3s ease, filter 0.3s ease;
}

.social-icons a:hover img {
  transform: scale(1.1);
  filter: brightness(1.2);
  color: #1877f2;
}

.copyright-text {
  font-size: 16px;
  color: #f1f3f7;
  opacity: 60%;
}

.copyright-section {
  border-top: 1px solid #4a5568;
  padding-top: 25px;
  margin-top: 25px;
  gap: 10px;
}

@media (max-width: 768px) {
  .footer-text-col {
    width: 100% !important;
    padding: 0 1rem;
  }

  .footer-text {
    font-size: 18px;
    margin-bottom: 1rem;
    min-width: auto;
    width: 100%;
    text-align: center;
    padding-bottom: 12px;
    padding-top: 10px;
  }

  .social-icons {
    justify-content: center !important;
    margin-bottom: 1rem;
    padding-right: 10px;
  }

  .copyright-section {
    flex-direction: column !important;
    gap: 8px;
  }

  .copyright-section > div {
    text-align: center !important;
  }
}

@media (min-width: 769px) {
  .footer-text {
    text-align: left;
    margin: 0;
  }
  .copyright-section {
    padding-right: 10px;
  }
}
