/* HERO SECTION */
.hero {
  display: flex;
  align-items: center;
  padding: 30px 0;
}
.hero .play-icon {
  position: absolute;
  left: 50%;
  bottom: 10%;
  width: auto;
}
.hero .play-icon a,
.preloader {
  top: 0;
}
.hero .play-icon:after,
.play-icon:before {
  width: auto;
}
/* CONTAINER */
.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 32px;
}

/* LEFT CONTENT */
.hero-content {
  max-width: 50%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-content h1 {
  font-size: 51px;
  font-weight: 700;
  line-height: 110%;
  letter-spacing: 0%;
  color: #fff;
}

.hero-content p {
  font-weight: 500;
  font-size: 20px;
  line-height: 32px;
  color: #f5f6f7;
  max-width: 90%;
}

/* BUTTONS */
.hero-buttons {
  display: flex;
  gap: 15px;
}

.try-btn {
  background: linear-gradient(180deg, #c96b59 0%, #d17b68 100%);
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
}
.option-btn {
  background: #46a282;
  border: none;
  padding: 13px 30px;
  border-radius: 50px;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
  font-size: 20px;
  line-height: 100%;
  font-weight: 600;
}

.hero-image img {
  width: 100%;
}

.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: 10px;
}
.hero-section.logged {
  padding-top: 100px;
}
.hero-section header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  position: relative !important;
  background: transparent !important;
}

.hero-section .desktop nav {
  background-color: #d9d9d91a;
  padding: 8px;
  display: flex;
  gap: 16px;
  border-radius: 100px;
}

.hero-section .desktop nav a {
  color: white;
  text-decoration: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  padding: 8px 24px;
}

.hero-section .desktop nav a:hover {
  background: #ffffff33;
}

.hero-section .desktop nav a.active {
  background-color: #ffffff33;
}

.button-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.button-group a {
  position: relative;
  text-decoration: none;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: initial;
  height: 52px;
  width: 134px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  cursor: pointer;
  transition: color 0.4s ease;
  z-index: 1;
}
.button-group a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  transition: left 0.4s ease;
  z-index: -1;
}
.about-login {
  background: #303030;
  border: 1px solid #ecedef;
  color: white;
}
.about-login::before {
  background: #1e1e1e;
}
.about-login:hover::before {
  left: 0;
}
.button-group .bus-signup {
  background: #c96b59;
  border: none;
  color: white;
}
.bus-signup::before {
  background: #46a282;
}
.bus-signup:hover::before {
  left: 0;
}

.djobzy-invest {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.djobzy-invest img {
  align-self: center;
  width: 22px;
  height: 22px;
}

.djobzy-invest #djobzy-invest-icon {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  transition: 0.3s ease-in;
}

.djobzy-invest #djobzy-invest-icon:hover {
  color: var(--orange);
}

header.mobile {
  display: none;
}

#mobile-menu {
  display: none;
}
.hero-main-section-bg {
  width: 100%;
  padding: 0;
  position: relative;
  background-color: #000;
  background-image:
    url("/img/payment-hero-bg.webp"),
    radial-gradient(
      50% 50% at 50% 50%,
      rgba(51, 51, 51, 0.8) 0%,
      rgba(0, 0, 0, 0.8) 100%
    );
  background-size: contain, cover, cover;
  background-position:
    right center,
    center,
    left center;
  background-repeat: no-repeat;
}
.about-hero-section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40vh;
  padding-bottom: 30px;
}
.about-hero-section h1 {
  font-size: 75px;
  font-weight: bold;
  line-height: normal;
  color: #ffffff;
  text-align: center;
  margin: 0;
}

/* djobzy functional section */
.djobzy-functional-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  column-gap: 40px;
  row-gap: 15px;
  padding: 60px 0;
  width: 100%;
}

/* Items */
.djobzy-functional-section .functional-item {
  display: flex;
  align-items: center;
  column-gap: 12px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
}

/* other feature section */
.other-features-section {
  text-align: center;
}
.other-features-section h2 {
  font-size: 40px;
  font-weight: bold;
  line-height: normal;
  color: #ffffff;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.feature-card {
  background: #111111;
  border: 1px solid #303030;
  border-radius: 25px;
  padding: 24px;
  display: flex;
  gap: 20px;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.feature-card p {
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  color: #ffffff;
  text-align: left;
}
.feature-card span {
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
  color: #cb7767;
}
.djobzy-benefits {
  padding: 60px 20px;
  text-align: center;
}

.benefits-title {
  font-size: 40px;
  font-weight: bold;
  line-height: normal;
  color: #1e1e1e;
  margin-bottom: 40px;
}

/* GRID */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

/* CARD */
.benefit-card {
  background: #cb77671a;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* IMAGE */
.benefit-card img {
  width: 100%;
  height: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* CONTENT */
.benefit-card .content {
  padding: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.benefit-card h3 {
  font-weight: 700;
  font-size: 22px;
  line-height: 34px;
  color: #0c0c0d;
}

.benefit-card p {
  font-size: 18px;
  line-height: 26px;
  font-weight: 400;
  color: #0c0c0d;
}

.benefit-card.text-image {
  flex-direction: column;
  justify-content: space-between;
}

.benefit-card.image-text {
  flex-direction: column;
}

.flexible-payment-section {
  position: relative;
  background-color: #cb7767;
  width: 100%;
  padding: 60px 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.flexible-payment-section .payment-info {
  width: 100%;
  position: relative;
}
.arc {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  pointer-events: none;
  left: 50%;
  transform: translateX(-50%);
}

.arc-wrapper {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  max-width: 98%;
  margin: auto;
}

.arc {
  position: absolute;
  border-radius: 50%;
  border: 1px solid #ffffff4d;
}
.arc-1 {
  width: 70%;
  height: 680px;
}

.arc-2 {
  width: 85%;
  height: 800px;
}

.arc-3 {
  width: 100%;
  height: 900px;
}

.dot {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.dot-left-top {
  left: 4px;
  top: 15%;
  background: linear-gradient(180deg, #f4c366 0%, #e2ae4b 100%);
  width: 22px;
  height: 22px;
}

.dot-right-top {
  right: 8px;
  bottom: -10%;
  background: linear-gradient(180deg, #39a881 0%, #218e67 100%);
  width: 22px;
  height: 22px;
}

.dot-left-bottom {
  left: 8%;
  bottom: -10%;
  background: linear-gradient(180deg, #39a881 0%, #218e67 100%);
  width: 22px;
  height: 22px;
}

.dot-right-bottom {
  right: 7.7%;
  top: 10%;
  background: linear-gradient(180deg, #f4c366 0%, #e2ae4b 100%);
  width: 22px;
  height: 22px;
}

.payment-info {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 10; /* sit above the arcs */
}

.payment-info h2 {
  color: #ffffff;
  text-align: center;
  font-weight: 700;
  font-size: 45px;
  line-height: 100%;
}

.btn-group {
  display: flex;
  align-items: center;
  gap: 14px;
}

.join-djobzy-btn {
  padding: 13px 30px;
  border-radius: 50px;
  background: #000000;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 100%;
}

.set-payment-btn {
  padding: 13px 30px;
  border-radius: 50px;
  background: #ffffff;
  color: #000000;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 100%;
}

.faq-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 80%;
  margin: auto;
  padding: 100px 40px;
  gap: 50px;
}

.faq-header h2 {
  font-size: 45px;
  font-weight: bold;
  text-align: center;
  color: #1e1e1e;
}
.faq-item {
  border: 1px solid #ddd;
  overflow: hidden;
}
.faq-container .faq-item:first-of-type {
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  padding: 46px 30px 33px;
}
.faq-container .faq-item:first-of-type .faq-question {
  padding: 0;
}
.faq-container .faq-item:first-of-type .faq-answer {
  padding: 26px 0 0;
}
.faq-container .faq-item:last-of-type {
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  padding: 33px 30px 40px;
}
.faq-container .faq-item:last-of-type .faq-question {
  padding: 0;
}
.faq-container .faq-item:last-of-type .faq-answer {
  padding: 26px 0 0;
}

.faq-question {
  background: #ffffff;
  padding: 33px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
  color: #1e1e1e;
}
.faq-question.open {
  padding: 33px 30px 0;
}
.faq-answer {
  display: none;
  padding: 26px 0 0 30px;
  background-color: #fff;
  font-size: 18px;
  color: #303030;
  line-height: 30.4px;
  font-weight: 400;
  max-width: 92%;
}
.faq-answer.open {
  padding: 26px 0 33px 30px;
}
.faq-question.open + .faq-answer {
  display: block;
}

.toggle-icon {
  font-size: 2.2rem;
}

.card-main-section {
  background-color: #d07966;
  background-image: url("/img/djobzy-content-bg-img.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.main-section {
  display: flex;
  justify-content: space-between;
  gap: 100px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 40px !important;
}

.left-div {
  flex: 1;
}

.left-div .djobzy-content {
  /* padding-top: 100px; */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
  gap: 20px;
  position: sticky;
  top: 100px;
}

.right-div {
  /* flex: 1; */
  width: 50%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.sticky-card.green {
  position: relative;
  background: #46a282;
  border-radius: 15px;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
  z-index: 3;
}

.sticky-card.green .card-text h3 {
  font-size: 22px;
  color: #ffffff;
  font-weight: 600;
  line-height: 100%;
}

.sticky-card.green .card-text ul li {
  font-size: 16px;
  color: #ffffff;
  position: relative;
  font-weight: 400;
}
.sticky-card.green:hover .card-text h3,
.sticky-card.green:hover .card-text ul li {
  color: #1a1a1a;
  transition: color 0.3s ease;
}
.sticky-card.green:hover {
  background: #dea520;
  cursor: pointer;
}
.sticky-card {
  background: white;
  border-radius: 15px;
  padding: 27px 20px;
  transition: box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 60px;
  transition:
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.sticky-card.sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.card-content {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.card-content img.main-img {
  width: 80px;
  height: 80px;
  background: #edc8b880;
  padding: 12px;
  border-radius: 15px;
  transition:
    background 0.3s ease,
    filter 0.3s ease;
}
.card-content img.main-img.green {
  background: #4aab89;
}

.sticky-card .card-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  gap: 16px;
}

.card-text h3 {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  line-height: 100%;
  transition: color 0.3s ease;
}

.card-text ul {
  list-style-type: none;
  display: flex;
  flex-flow: column;
  gap: 9px;
}

.card-text ul li {
  font-size: 16px;
  color: #000000;
  position: relative;
  font-weight: 500;
  line-height: 100%;
  list-style-type: none;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: color 0.3s ease;
}
.card-text ul li img {
  width: 20px;
  height: 20px;
  transition: filter 0.3s ease;
}

.left-div h2 {
  font-size: 40px;
  color: #ffffff;
  font-weight: bold;
  line-height: initial;
}

.left-div p {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
}
.left-div p.para {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  margin-top: 20px;
  max-width: 95%;
}
.sticky-card:not(.green):hover {
  background: #000;
  box-shadow: 0 8px 32px rgba(200, 97, 78, 0.25);
  cursor: pointer;
}

.sticky-card:not(.green):hover .card-text h3,
.sticky-card:not(.green):hover .card-text ul li {
  color: #ffffff;
}

.sticky-card:not(.green):hover .card-content img.main-img {
  background: rgba(255, 255, 255, 0.2);
}

.sticky-card:not(.green):hover .card-content img.main-img {
  filter: brightness(0) invert(1);
}

.sticky-card:not(.green):hover .card-text ul li img {
  filter: brightness(0) invert(1);
}

.sticky-card.green:hover .card-content img.main-img {
  background: rgba(0, 0, 0, 0.1);
  filter: brightness(0);
}

.sticky-card.green:hover .card-text ul li img {
  filter: brightness(0);
}

/* RESPONSIVE */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

.intern-links a {
  font-size: 16px;
  color: #c96b59;
  line-height: initial;
}
.s3_video_landing .video-content {
  left: 50%;
  margin: auto;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  border-radius: 20px;
  border: none;
  width: 800px;
  animation-name: modelopen;
  animation-duration: 0.4s;
  padding: 38px 16px;
}
.s3_video_landing .video-content .close1 {
  align-items: center;
  background-color: var(--white);
  background-position: 50%;
  border-radius: 50%;
  box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.4);
  color: #303030;
  cursor: pointer;
  display: flex;
  float: right;
  font-size: 40px;
  font-weight: 300;
  height: 30px;
  justify-content: center;
  position: absolute;
  right: 0px;
  top: 0px;
  width: 30px;
}
.s3_video_landing .video-content video {
  width: 100%;
  height: 430px;
}
.plyr__video-wrapper {
  background: transparent !important;
}
.plyr__poster {
  background-color: transparent !important;
}
@media only screen and (max-width: 992px) {
  html {
    overflow-x: hidden;
  }
  .about-hero-section {
    height: 15vh;
  }

  .hero-section.logged {
    padding-top: 60px;
  }
  header.desktop {
    display: none;
  }

  .logo-light img {
    height: 40px;
  }

  nav a {
    padding: 8px 0px;
  }

  .button-group a {
    width: 100%;
    text-align: center;
  }

  .djobzy-invest {
    display: flex !important;
    gap: 7px;
  }

  .djobzy-invest img {
    display: none !important;
  }

  header.mobile {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0px;
    z-index: 1;
    max-width: 92%;
    margin: auto;
  }

  .mobile.register {
    display: inline-block;
    height: auto;
  }

  .desktop.register {
    display: none;
  }

  #mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #2a2a2a;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    padding: 24px;
  }

  #mobile-menu.active {
    transform: translateX(0);
  }

  #mobile-menu .close-button {
    align-self: flex-end;
    font-size: 24px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    margin-bottom: 20px;
  }

  #mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  #mobile-menu nav a {
    color: white;
    font-size: 16px;
    text-decoration: none;
  }

  #mobile-menu .button-group {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  #mobile-menu .button-group button {
    padding: 10px;
    width: 100%;
    border-radius: 9999px;
    font-size: 14px;
    border: 1px solid white;
    background: transparent;
    color: white;
    cursor: pointer;
    font-family: "Montserrat", sans-serif;
  }

  #mobile-menu .button-group .bus-signup {
    background-color: #fc6a57;
    border: none;
  }
  .about-hero-section h1 {
    font-size: 32px;
  }
  .djobzy-ambition-section {
    padding: 50px 0;
    display: flex;
  }
  .image {
    display: none !important;
  }
  .djobzy-stand-section {
    gap: 10px;
    flex-direction: column;
    padding: 40px 4%;
  }
  .djobzy-stand-section .stand-left,
  .djobzy-stand-section .stand-right {
    width: 100%;
  }
  .djobzy-stand-section .stand-right {
    flex: auto;
  }
  .center-content {
    padding: 0;
    gap: 10px;
  }
  .center-content h2 {
    font-size: 20px;
    line-height: normal;
  }
  .center-content span {
    font-size: 30px;
    max-width: 80%;
    margin: auto;
  }
  .center-content p {
    font-size: 14px;
    max-width: 100%;
    line-height: 22px;
  }
  .play-button {
    padding: 8px 16px;
    font-size: 14px;
  }
  .play-button svg {
    width: 30px;
  }
  .stand-left img {
    width: 100%;
  }
  .stand-right h2 {
    font-size: 30px;
  }
  .stand-right .stand-desc {
    font-size: 16px;
    max-width: 100%;
    font-weight: 400;
    margin-bottom: 10px;
    line-height: 24px;
  }
  .stand-right .stand-item-main {
    width: 100%;
  }
  .stand-item {
    padding: 12px 0;
  }
  .stand-item .icon {
    width: 38px;
    height: 38px;
  }
  .stand-item .text span {
    font-size: 16px;
    line-height: 24.5px;
  }
  .stand-item .text p {
    font-size: 14px;
    line-height: 19.5px;
  }
  .djobzy-team-section .team-hero {
    flex-direction: column-reverse;
    align-items: center;
  }
  .djobzy-team-section .team-hero .team-content {
    gap: 12px;
    width: 100%;
  }
  .djobzy-team-section .team-hero h2 {
    font-size: 30px;
  }
  .djobzy-team-section .team-hero .team-desc,
  .djobzy-team-section .team-hero .team-desc-bold {
    font-size: 14px;
    line-height: 22px;
  }
  .djobzy-team-section .team-hero .team-map {
    width: 100%;
  }
  .djobzy-team-section .team-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .djobzy-team-section .stat-card {
    border-right: none;
    border-bottom: 1px solid #ffffff23;
    padding: 26px 0px;
  }
  .djobzy-team-section .stat-card:nth-child(1),
  .djobzy-team-section .stat-card:nth-child(3) {
    border-right: 1px solid #ffffff23;
  }
  .features-section {
    gap: 30px;
    flex-direction: column;
  }
  .features-left {
    gap: 16px;
    width: 100%;
  }
  .features-right {
    width: 80%;
  }
  .features-left h2 {
    font-size: 30px;
  }
  .features-left p {
    font-size: 16px;
    line-height: 24px;
  }
  .djobzy-team-section .stat-label {
    font-size: 12px;
    line-height: 28.5px;
  }
  .djobzy-team-section .stat-number {
    font-size: 25.64px;
    line-height: 28.5px;
  }
  .custom-play-btn img {
    width: 55px;
    height: 55px;
  }
  .watch-video-btn {
    font-size: 12px;
  }
  .work-grid {
    gap: 24px;
    flex-direction: column;
  }
  .future-work-buttons {
    gap: 16px;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .future-work-cards {
    flex-direction: column;
    gap: 20px;
  }
  .girl-circles {
    width: 100%;
    max-width: 70%;
  }
  .girl-circles img {
    width: 100%;
  }
  .girl-circles::before {
    width: 230px;
    height: 230px;
  }
  .girl-circles::after {
    width: 280px;
    height: 280px;
  }
  .how-djobzy .how-work-section {
    gap: 32px;
  }
  .how-djobzy h2 {
    font-size: 30px;
  }
  .how-djobzy p {
    font-size: 16px;
    line-height: 24px;
    max-width: 80%;
    margin: auto;
  }
  .other-features-section h2 {
    font-size: 30px;
  }
  .features-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .feature-card {
    padding: 16px;
    gap: 24px;
    min-width: 200px;
  }
  .future-work-section {
    padding: 40px 0;
  }
  .future-work-content h2 {
    font-size: 35px;
  }
  .future-work-content p {
    font-size: 17px;
    line-height: 24px;
    max-width: 100%;
  }
  .future-card-text {
    font-size: 16px;
    padding: 22px 32px 18px;
  }
  .s3_video_landing .video-content video {
    width: auto;
    height: 450px !important;
    margin: auto;
  }
  .s3_video_landing .video-content {
    max-width: 353px;
  }
  .plyr__video-wrapper {
    background: #000 !important;
    border-radius: 10px !important;
  }
  .plyr__poster {
    background-color: #000 !important;
  }
  .video-poster {
    max-width: 100%;
  }
  .brand-cell {
    min-width: 150px;
    max-width: 150px;
    height: 90px;
  }
  .brand-cell img {
    max-height: 40px;
  }
  .djobzy-benefits {
    padding: 30px 10px;
  }
  .benefits-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .benefits-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
  .benefit-card h3 {
    font-size: 18px;
    line-height: 24px;
  }
  .benefit-card p {
    font-size: 16px;
    line-height: 22px;
  }
  .faq-container {
    padding: 50px 20px;
    max-width: 100%;
  }
  .faq-header h2 {
    font-size: 35px;
  }
  .faq-question {
    font-size: 18px;
  }
  .faq-answer {
    font-size: 16px;
    max-width: 98%;
  }
  .main-section {
    justify-content: center;
    gap: 30px;
    padding: 50px 10px !important;
    align-items: center;
    flex-flow: column;
  }
  .left-div .djobzy-content {
    padding: 0;
    align-items: center;
    gap: 20px;
    position: relative;
    top: 0;
  }
  .left-div h2 {
    font-size: 32px;
    width: 100%;
    text-align: center;
  }
  .left-div p {
    font-size: 18px;
    line-height: 24px;
    text-align: center;
  }
  .left-div p.para {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
    text-align: center;
  }
  .right-div {
    gap: 20px;
    margin-top: 30px;
    width: 100%;
  }

  .djobzy-register-btn {
    margin-top: 0;
    padding: 12px 30px 10px;
    font-size: 18px;
  }
  .sticky-card .card-text {
    gap: 10px;
  }
  .sticky-card.green .card-text h3,
  .sticky-card .card-text h3 {
    font-size: 14px;
    line-height: normal;
  }
  .sticky-card.green .card-text ul li,
  .sticky-card .card-text ul li {
    font-size: 12px;
    line-height: normal;
    gap: 10px;
  }
  .card-content img.main-img {
    width: 40px;
    height: 40px;
    padding: 6px;
    border-radius: 10px;
  }
  .card-text ul li img {
    width: 15px;
    height: 15px;
  }
  .sticky-card {
    gap: 15px;
    padding: 20px 15px;
  }
  .sticky-card.green {
    gap: 15px;
    padding: 20px 15px;
  }
  .card-text ul {
    gap: 4px;
  }
  .register-link {
    font-size: 14px;
    line-height: normal;
  }
  .hero-main-section-bg {
    background-size: auto;
    background-position: bottom right;
  }
  .hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 32px;
    line-height: normal;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
  .try-btn,
  .option-btn {
    font-size: 16px;
  }
  .hero-content p {
    font-size: 16px;
    line-height: 22px;
    max-width: 100%;
  }
  .djobzy-functional-section {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
    padding: 30px 0;
  }
  .djobzy-functional-section .functional-item {
    font-size: 18px;
    line-height: 24px;
  }
  .card-main-section {
    background-position: initial;
  }
  .flexible-payment-section {
    padding: 30px 0;
  }
  .payment-info h2 {
    line-height: normal;
    font-size: 26px;
  }
  .btn-group {
    flex-direction: column;
  }
  .join-djobzy-btn,
  .set-payment-btn {
    font-size: 14px;
    padding: 10px 30px;
  }
  .arc-1 {
    width: 70%;
    height: 300px;
  }
  .arc-2 {
    width: 85%;
    height: 350px;
  }
  .arc-3 {
    height: 450px;
  }
  .dot-left-top {
    left: 4px;
    width: 11px;
    height: 11px;
  }
  .dot-left-bottom {
    left: 13%;
    width: 11px;
    height: 11px;
  }
  .dot-right-top {
    right: 15px;
    width: 11px;
    height: 11px;
  }
  .dot-right-bottom {
    right: 9.5%;
    width: 11px;
    height: 11px;
  }
  .hero-content {
    max-width: 100%;
  }
  .faq-question {
    font-size: 16px;
    padding: 16px 15px;
  }
  .toggle-icon {
    font-size: 2rem;
  }
  .faq-container .faq-item:first-of-type .faq-answer {
    font-size: 14px;
    padding: 16px 0 0;
  }
  .faq-container .faq-item:last-of-type .faq-answer {
    font-size: 14px;
    padding: 16px 0 0;
  }
  .faq-question.open {
    padding: 16px 15px 0;
  }
  .faq-answer.open {
    padding: 16px 0 16px 15px;
    font-size: 14px;
    line-height: 19px;
  }
  .faq-container .faq-item:first-of-type {
    padding: 26px 15px 16px;
  }
  .faq-container .faq-item:last-of-type {
    padding: 26px 15px 16px;
  }
  .s3_video_landing .video-content video {
    width: auto;
    height: 180px !important;
  }
  .s3_video_landing .video-content {
    max-width: 353px;
  }
  .plyr__video-wrapper {
    background: #000 !important;
    border-radius: 10px !important;
  }
  .plyr__poster {
    background-color: #000 !important;
  }
  .hero .play-icon {
    left: 10px;
    bottom: 1%;
  }
}
