@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

@font-face {
  font-family: 'Aeonik TRIAL';
  src: url('../fonts/AeonikTRIAL-Bold.woff2') format('woff2'),
    url('../fonts/AeonikTRIAL-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik TRIAL';
  src: url('../fonts/AeonikTRIAL-Regular.woff2') format('woff2'),
    url('../fonts/AeonikTRIAL-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Aeonik TRIAL';
  src: url('../fonts/AeonikTRIAL-Light.woff2') format('woff2'),
    url('../fonts/AeonikTRIAL-Light.woff') format('woff');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

/* Custom Reset */
body {
  font-family: 'Aeonik TRIAL';
  font-weight: normal;
  background-color: #121212;
}

a.active,
a:focus,
button:focus,
button.active {
  outline: none;
}

a {
  text-decoration: none;
}

a:focus,
a:hover,
a:active {
  outline: 0;
  box-shadow: none;
}

a:focus,
a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  transition: all 0.5s ease-in-out;
}

a:hover {
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  list-style: none;
}

p {
  margin: 0;
  padding: 0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
}

img {
  border-style: none;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.navbar-nav .nav-item .nav-link {
  color: #B3B9C6;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  padding: 10px !important;
}

.wrapper {
  overflow: hidden;
}

.dark-mode .marquee-wrapper::after {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 89.9%);
}

.navbar-nav .nav-item .nav-link:hover {
  text-decoration: underline;
}

.btn-book img {
  position: relative;
  z-index: 10;
}

.btn-book {
  border-radius: 12px;
  background: var(--New-Theme-Yellow, #FDEE3A);
  color: var(--Base-Color-White, #121212);
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  transition: all 0.5s;
  font-weight: 500;
  border: none;
  line-height: 24px;
  position: relative;
  padding: 16px 32px;
}

.btn-book span {
  position: relative;
  z-index: 2;
  /* Ensure text appears above background */
}


.btn-book:after {
  content: "";
  background-color: #E6D935;
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 50%;
  transition: .3s;
  width: 0;
  z-index: 1;
}

.btn-book:hover {
  box-shadow: 0px 16px 32px 0px rgba(253, 238, 58, 0.12);
}

#content16 .marquee2 {
  --duration: 150s;
}

.btn-book:hover:after {
  background-color: #E6D935;
  border-radius: 12px;
  height: 100%;
  left: 0px;
  top: 0px;
  width: 100%;
}

.counter-box {
  border-radius: 20px;
  background: #1D1D1D;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
}

.counter-box .number h1 {
  color: var(--Gray-900, #EDEDF1);
  font-size: 56px;
  font-style: normal;
  font-weight: 400;
  line-height: 64px;
}

.counter-box .number p {
  color: var(--Gray-500, #B3B9C6);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
}

.title h2 {
  color: var(--Gray-950, var(--Button-Default, #EDEEF1));
  text-align: center;
  font-size: 56px;
  font-style: normal;
  font-family: 'Aeonik TRIAL';
  font-weight: 400;
  line-height: 70px;
  margin-bottom: 16px;
}

.title p {
  color: var(--Gray-700, #B3B9C6);
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  max-width: 817px;
  margin: 0 auto;
}

.work-box {
  border-bottom: 1px solid #d7dae0;
  padding: 28px 0px;
}

.work-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.flex-box {
  display: flex;
  align-items: center;
  grid-gap: 10px;

}

.coaches-hero-sec .video-banner iframe {
  position: static;
  height: 580px;

}

.circle,
.circle::before {
  content: " ";
  margin: 15px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 0 auto;
  transition: all 0.2;
  background-color: #FDEE3A;
}

.circle::before {
  animation: mymove 2s infinite;
  position: absolute;
  background-color: #e8df76
}

@-webkit-keyframes mymove {
  50% {
    transform: scale(2.5);
    opacity: 0
  }

  100% {
    transform: scale(2.5);
    opacity: 0
  }
}

.work-box {
  cursor: pointer;
}

.work-sec {
  padding: 56px 0px;
}

.work-sec .title {
  margin: 48px 0px;
}

.work-box h2 {
  font-size: 20px;
  font-weight: normal;
  line-height: 40px;
  color: #EDEDF1;
}

.dark-mode .btn-call {
  display: none !important;
}

.dark-mode .btn-call.dark-btn img {
  filter: none;
}

.dark-mode .btn-call.dark-btn span {
  background: var(--Gradient, linear-gradient(73deg, #f55418 23.88%, #b455ff 77.51%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-call.dark-btn {
  display: none !important;
}

.dark-mode .btn-call.dark-btn {
  display: flex !important;
  grid-gap: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  border-radius: 12px;
  background-color: var(--Base-Color-White, #fff);
}

.work-body p {
  color: #464c5e;
  font-size: 20px;
  line-height: 30px;
  max-width: 822px;
  font-weight: 400;
  margin-top: 10px;
}

.btn-call {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(98.08% 98.08% at 50% 1.92%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 96.5%),
    var(--Button-Default, #24262d);
  box-shadow: 0px 0px 0px 1px #121212;
  padding: 16px 32px;
  align-items: center;
  grid-gap: 8px;
  font-weight: 500;
  display: none;
  color: #fff;
  font-size: 16px;
  transition: all 0.5s ease-in-out;
  line-height: 24px;
  justify-content: center;
}

#accordionExample1 .work-title[aria-expanded="true"] .btn-call {
  display: flex;
}

.btn-call img {
  filter: brightness(14);
  transition: all 0.5s ease-in-out;
}

.btn-call:focus {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: radial-gradient(96.97% 96.97% at 50% 3.03%, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.32) 96.5%),
    var(--Button-Pressed, #363a44);
  box-shadow: 0px 0px 0px 1px #121212;
}

.btn-call:hover {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(96.94% 96.94% at 50% 3.06%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 96.5%),
    var(--Button-Hover, #363a44);
  box-shadow: 0px 0px 0px 1px #121212;
  color: #fff;
}

.video-box {
  text-align: center;
  position: relative;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.box-footer {
  background-color: #1D1D1D;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  text-align: start;
  left: 0;
  right: 0;
  bottom: 12px;
  width: 90%;
  margin: 0 auto;
}

.box-footer h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #EDEEF1;
}

.box-footer span {
  font-size: 14px;
  font-weight: normal;
  color: #B3B9C6;
  line-height: 20px;
  display: block;
}

.video-sec {
  margin: 56px 0px;
}

.contact-box {
  background-color: #1D1D1D;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 840px;
  margin: 0 auto;
}

.contact-sec {
  padding: 48px 0px;
}

.contact-box h4 {
  font-size: 32px;
  line-height: 40px;
  font-weight: 400;
  color: #EDEEF1;
  margin: 16px 0px 4px;
}

.contact-box p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #B3B9C6;
}

footer p {
  font-size: 16px;
  line-height: 24px;
  color: #B3B9C6;
}

footer {
  border-top: 1px solid #363A44;
  padding: 24px 0px;
}

.hero-sec {
  max-height: 839px;
  overflow: hidden;
  background: #121212;
}

.hero-sec .text-box h2 {
  font-size: 59px;
  font-weight: 400;
  color: #EDEEF1;
  margin-top: 14px;
  font-family: 'Aeonik TRIAL';
  line-height: 72px;
}

.top-title {
  display: flex;
  align-items: center;
  grid-gap: 20px;
}

.top-title .star-img img {
  height: 51px;
}

.top-title h1 {
  color: var(--Gray-950, var(--Button-Default, #EDEEF1));
  font-size: 64px;
  font-weight: 400;
  font-family: 'Aeonik TRIAL';
  line-height: 60px;
}

.hero-sec .text-box h2 span {
  color: #FDEE3A;
}

.hero-sec .text-box {
  padding: 213px 0px;
}

.top-title .review-box {
  background: #FDEE3A;
  display: flex;
  align-items: center;
  grid-gap: 8px;
  padding: 12px;
  border-radius: 12px;
}

.top-title .review-box img {
  height: 31px;
}

.top-title .review-box h6 {
  font-size: 11px;
  line-height: 16px;
  font-weight: 700;
  text-align: start;
  display: block;
  color: #121212;
}

.top-title .review-box span {
  font-size: 9px;
  line-height: 13px;
  color: #121212;
  text-align: start;
  display: block;
}

.hero-sec p {
  font-size: 24px;
  line-height: 36px;
  font-weight: normal;
  color: #B3B9C6;
  text-align: start;
  margin: 16px 0px 36px;
}

.faq-sec {
  background-color: #121212;
  padding: 72px 0px;
}

.bg-white {
  color: #24262d;
  background-color: #fff;
}

.button-box {
  position: relative;
  max-width: 377px;
  margin: 0 auto;
}

.button-box::after {
  content: "";
  background-image: url(../images/curve-line.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -79px;
  top: -73px;
  width: 174px;
  height: 125px;
}


.mySwiper {
  padding-top: 48px;
}

header .toggle-switch {
  position: relative;
  display: inline-block;
  width: 91px;
  height: 40px;
}

header .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

header .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 88px;
  background: var(--Gray-100, #edeef1);
  transition: 0.4s;
}

header .slider:before {
  position: absolute;
  content: "";
  height: 32px;
  width: 32px;
  left: 4px;
  bottom: 4px;
  border-radius: 60px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(98.08% 98.08% at 50% 1.92%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 96.5%),
    var(--Button-Default, #24262d);
  box-shadow: 0px 0px 0px 1px #121212;
  transition: 0.4s;
}

header input:checked+.slider:before {
  transform: translateX(48px);
}

header input:checked+.slider:after {
  transform: translate(-48px, -50%);
}

header .slider:before {
  content: url(../images/sun.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 7px;
}

header .slider:after {
  content: url(../images/moon-black.svg);
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 16px;
  height: 17px;
  right: 12px;
  padding-top: 0px;
  top: 59%;
  transform: translate(0, -50%);
}

.dark-mode header .slider:after {
  content: url(../images/sun.svg);
}

.dark-mode header .slider::before {
  content: url(../images/moon-white.svg);
}

.right-side {
  display: flex;
  align-items: center;
  grid-gap: 36px;
  margin-left: 48px;
}

.dark-mode .top-title h1 {
  color: #fff;
}

.navbar-nav {
  padding-left: 133px;
}

.dark-mode .hero-sec .text-box h2 {
  color: #fff;
}

.dark-mode .box-footer {
  background-color: #24262d;
}

.box .toggle {
  display: none;
}

.dark-mode .box-footer span {
  color: #b4bac5;
}

.box .active {
  display: inline-block;
}

.dark-mode .hero-box p {
  color: #fff;
}

.dark-mode .hero-sec .btn-book span {
  background: var(--Gradient, linear-gradient(73deg, #f55418 23.88%, #b455ff 77.51%));
  background-clip: text !important;
  -webkit-background-clip: text;
  position: relative;
  -webkit-text-fill-color: transparent;
}

.dark-mode .hero-sec .btn-book::before {
  content: "";
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 12px;
}

.modal-body video {
  width: 100%;
  height: 500px;
}

.btn-book:hover.bg-white {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(96.94% 96.94% at 50% 3.06%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 96.5%),
    #363a44;
  box-shadow: 0px 0px 0px 1px #121212;
}

.modal-header .btn-close {
  padding: 0.5rem 0.5rem;
  margin: -0.5rem auto -0.5rem -0.5rem;
  margin-left: auto;
  margin-right: 0;
}

/* ========= new-css */
.btn-read {
  color: var(--Gray-950, #EDEEF1);
  text-align: center;
  font-size: 16px;
  width: 100%;
  font-weight: 500;
  border-radius: 12px;
  border: 1px solid var(--Shark-900, #363A44);
  background: var(--New-Theme-fg, #1D1D1D);
  margin-top: 24px;
  padding: 16px 0px;
  transition: all 0.4s ease-in-out;
  line-height: 24px;
}

.linkdin-review-box {
  border-radius: 12px;
  background: var(--Shark-50, #1D1D1D);
  padding: 24px;
  transition: all 0.5s ease-in-out;
  display: block;
}

.work-box.accordion-item .btn-book {
  display: none;
}

.work-box.accordion-item [aria-expanded="true"] .btn-book {
  display: flex;
}

.linkdin-review-box:hover {
  background: var(--Shark-50, #24262d);
}

.linkdin-review-box:hover .btn-read {
  color: #24262d;
  background: #E6D935;
}

.work-slider {
  margin-top: 48px;
}

.linkdin-work .swiper-pagination {
  position: static;
  margin-top: 48px;
}

.swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  background-color: #edeef1;
  border-radius: 50%;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: radial-gradient(98.08% 98.08% at 50% 1.92%, rgba(255, 255, 255, 0.32) 0%, rgba(255, 255, 255, 0) 96.5%),
    var(--Button-Default, #24262d);
}

.linkdin-work {
  padding: 56px 0px;
  padding-bottom: 56px;
  background-color: #121212;
}

.dark-mode {
  background-color: #24262d;
}

.dark-mode .navbar-nav .nav-item .nav-link {
  color: #fff;
}

.dark-mode header .slider {
  background-color: #363a44;
}

.dark-mode .counter-box {
  background: var(--Shark-100, #363a44);
}

.dark-mode .counter-box .number h1 {
  color: var(--Shark-900, #ededf1);
}

.dark-mode .counter-box .number p {
  color: var(--Shark-500, #6c758b);
}

.dark-mode .title h2 {
  color: #fff;
}

.dark-mode .title p {
  color: var(--Shark-700, #b4bac5);
}

.dark-mode .work-box h2 {
  color: var(--Shark-900, #ededf1);
}

.dark-mode .work-body p {
  color: #b4bac5;
}

.dark-mode .linkdin-review-box {
  border: 1px solid var(--Shark-100, #363a44);
  background: var(--Shark-50, #24262d);
}

.dark-mode .swiper-pagination-bullet {
  background-color: #363a44;
}

.dark-mode .box-footer h6 {
  color: var(--Shark-950, #f6f7f9);
}

.dark-mode .box-footer p {
  color: var(--Shark-700, #b4bac5);
}

.dark-mode .contact-box {
  background: var(--Shark-100, #363a44);
}

.dark-mode .contact-box h4 {
  color: var(--Shark-700, #ededf1);
}

.dark-mode .contact-box p {
  color: var(--Shark-700, #b4bac5);
}

.dark-mode footer {
  border-top: 1px solid var(--Shark-200, #3d424f);
}

.dark-mode footer p {
  color: var(--Shark-500, #6c758b);
}

.typed-cursor {
  display: none;
}

/* .bottom-graident {
      background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 0%, #F6F7F9 95.81%);
      width: 815px;
      height: 96px;
      position: absolute;
      bottom: 0;
      right: 0;
}  */

.client-sec {
  max-height: 893px;
  overflow: hidden;
  position: relative;
}

.dark-mode .client-sec {
  background: var(--Black, #17181c);
}

.dark-mode .client-sec .text-box h2 {
  color: var(--Base-Color-White, #fff);
}

.dark-mode .client-sec .text-box p {
  color: var(--Base-Color-White, #fff);
}

.client-sec .text-box h2 {
  color: var(--Base-Color-White, #000000);
  font-size: 60px;
  margin-bottom: 18px;
  font-weight: 700;
  line-height: 60px;
}

.client-sec .text-box p {
  color: var(--Base-Color-White, #000000);
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
}

.client-sec .text-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-height: 893px;
  height: 100%;
}

.marquee-wrapper {
  text-align: center;
  width: 910px;
  margin-left: 100px;
  position: relative;
}

.marquee-wrapper::after {
  content: "";
  background: linear-gradient(360deg, rgba(18, 18, 18, 0.00) 0%, #121212 89.9%);
  height: 49px;
  width: 862px;
  position: absolute;
  top: -16px;
  left: 0;
}

.marquee-wrapper::before {
  content: "";
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 89.9%);
  height: 49px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.marquee-wrapper .marquee-container {
  overflow: hidden;
  margin: 0 auto !important;
  text-align: center;
  display: flex;
  align-items: center;
}

.marquee-inner span {
  height: 50%;
}

.marquee-wrapper .marquee-block {
  width: 250px;
  height: 1500px;
  overflow: hidden;
  box-sizing: border-box;
  position: relative;
  margin: 0px 0 20px 00px;
  padding: 30px 0;
  float: left;
}

.marquee-inner {
  display: block;
  height: 200%;
  width: 250px;
  position: absolute;
  margin: 20px 0 20px 0px;
}

.client-sec {
  padding: 80px 0px 56px;
  background-color: #121212;
}

.client-sec .swiper-slide {
  height: auto !important;
}

.client-box {
  border-radius: 16px;
  border: 1px solid var(--Shark-900, #363A44);
  background: var(--New-Theme-fg, #1D1D1D);
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.client-box ul {
  display: flex;
  align-items: center;
  grid-gap: 4px;
}

.user-detail {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}

.user-detail h6 {
  color: #F6F7F9;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  grid-gap: 4px;
  line-height: 20px;
}

.review-slider {
  margin-top: 48px;
}

.user-detail span {
  display: block;
  color: #8B93A5;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.client-box p {
  color: #B4BAC5;
  font-size: 16px;
  font-weight: 400;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  line-clamp: 9;
  -webkit-box-orient: vertical;
  margin: 8px 0px 24px;
  line-height: 24px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #E6D935;
}

.layer {
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.00) 0%, #121212 89.9%);
  height: 135px;
  width: 862px;
  position: absolute;
  top: -135px;
  right: 0;
}

.marquee-inner.to-left {
  top: -40px;
}

.counter-sec {
  background-color: #121212;
  margin: 72px 0px;
}

.dark-mode .hero-sec {
  background: #17181c;
}

.dark-mode .hero-sec p {
  color: #fff;
}

.marquee-inner.to-right {
  top: -100%;
}

.marquee-inner.to-left {
  animation: marqueeTop 35s linear infinite;
}

.marquee-inner.to-right {
  animation: marqueeBottom 35s linear infinite;
}

.marquee-item {
  width: 97%;
  height: 335px;
  display: block;
  margin: 0;
  transition: all 0.2s ease-out;
}

.marquee-item img {
  border-radius: 20px;
}

@keyframes marqueeTop {
  0% {
    top: -40px;
  }

  100% {
    top: -100%;
  }
}

@keyframes marqueeBottom {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

.navbar-brand img {
  height: 24px;
}

.dark-mode .btn-book {
  background-color: #fff;
}

.dark-mode .btn-book span {
  background: var(--Gradient, linear-gradient(73deg, #f55418 23.88%, #b455ff 77.51%));
  background-clip: text !important;
  -webkit-background-clip: text;
  position: relative;
  -webkit-text-fill-color: transparent;
}

.navbar {
  padding: 21px 0px;
  background-color: #1D1D1D;
}

.faq-sec .btn-book span {
  background: var(--Gradient, linear-gradient(73deg, #f55418 23.88%, #b455ff 77.51%));
  background-clip: text !important;
  -webkit-background-clip: text;
  position: relative;
  -webkit-text-fill-color: transparent;
}

/* ======== new-css */
.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.swiper-button-next,
.swiper-button-prev {
  border-radius: 41px;
  background: var(--Base-Color-White, #fff);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
  width: 56px;
  height: 56px;
}

.swiper-button-next svg,
.swiper-button-prev svg {
  height: 17px;
}

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

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

.postion-relative {
  position: relative;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.linkdin-work .nav-link {
  color: #B3B9C6;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  border-radius: 72px;
  border: 1px solid var(--Shark-900, #363A44);
  background: var(--New-Theme-fg, #1D1D1D);
  display: inline-block;
  padding: 12px 28px;
}

.linkdin-work .nav-link.active,
.linkdin-work .nav-link:hover {
  background: #FDEE3A;
  color: #121212;
}

.nav-wrapper {
  margin-top: 48px;
}

.linkdin-work .nav {
  grid-gap: 16px;
  justify-content: center;
  max-width: 1048px;
  margin: 0 auto 48px;
}

.faq-boxes {
  display: grid;
  grid-template-columns: 3fr 3fr 3fr 3fr 3fr;
}

.faq-box {
  text-align: center;
  position: relative;
}

.faq-box span {
  color: #121212;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 40px;
  letter-spacing: -1.12px;
  border-radius: 63.75px;
  background: #FDEE3A;
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.faq-box h3 {
  color: #F6F7F9;
  font-size: 28px;
  margin: 12px 0px 14px;
  font-weight: 400;
  line-height: 40px;
  letter-spacing: -1.12px;
}

.faq-box p {
  color: #B3B9C6;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.faq-box2,
.faq-box4 {
  padding-top: 164px;
}

.faq-box::after {
  content: "";
  position: absolute;
  width: 177px;
  height: 156px;
  background-repeat: no-repeat;
  background-size: contain;
}

.faq-box.faq-box1::after,
.faq-box.faq-box3::after {
  background-image: url(../images/arrows.svg);
  top: 29px;
  right: -105px;
}

.faq-box.faq-box2::after,
.faq-box.faq-box4::after {
  background-image: url(../images/arrows-2.svg);
  top: 29px;
  right: -71px;
  width: 197px;
  height: 124px;
}

.faq-sec .title h2 {
  margin-bottom: 48px;
}

.video-sec {
  margin: 56px 0px;
}

#accordionExample1 .work-title[aria-expanded="true"] .btn-call {
  display: flex;
}

.accordion-item:first-of-type .accordion-button {
  border-radius: 0px;
}

.accordion {
  margin-top: 48px;
}

.work-sec .accordion-button::after {
  display: none;
}

.accordion-button:not(.collapsed) {
  color: #363a44;
  background-color: transparent;
  box-shadow: none;
}

.accordion-item {
  background-color: #121212;
  border: none;
  border-bottom: 1px solid #363A44;
  padding: 40px 0px;
}

.accordion-item:first-of-type {
  border-radius: 0px;
}

.accordion-button {
  font-size: 24px;
  font-weight: 500;
  background-color: #121212;
  color: #EDEDF1 !important;
  text-align: start;
  line-height: 36px;
  padding: 0px;
}

.accordion-button::after {
  background-image: url(../images/add.svg);
  margin-left: auto;
  margin-right: 0px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.svg);
}

.accordion-body {
  padding: 0px;
}

.accordion-body p {
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  color: #B3B9C6;
  max-width: 956px;
  margin-top: 4px;
}

.accordion-button:focus {
  border-color: transparent;
  box-shadow: none;
}

.work-accordion-body {
  opacity: 0;
  visibility: hidden;
}

.work-accordion-body p {
  font-size: 20px;
  line-height: 30px;
  margin: 4px 0px 24px;
  color: #ffffff;
  font-weight: normal;
  max-width: 495px;
}

.dark-mode .accordion-item {
  background-color: transparent;
  border-bottom: 1px solid #d7dae0;
}

.profile-avatar {
  border-radius: 50%;
  width: 100px;
  height: 100px;
}

.dark-mode .accordion-button {
  background-color: transparent;
  color: var(--Shark-900, #ededf1);
}

.dark-mode .accordion-body p {
  color: #b4bac5;
}

.dark-mode .accordion-item {
  border-bottom: 1px solid #3d424f;
}

.dark-mode .accordion-button:not(.collapsed)::after {
  filter: brightness(12);
}





.marquee-parent2 {
  --space: 48px;
  margin-top: 0px;
  position: relative;
}

.marquee-parent2::after {
  content: '';
  background: linear-gradient(270deg, #010101 0%, rgba(1, 1, 1, 0.00) 100%);
  width: 90px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.marquee-parent2::before {
  content: '';
  background: linear-gradient(90deg, #010101 0%, rgba(1, 1, 1, 0.00) 100%);
  width: 90px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.marquee-parent2 {
  --space: 1rem;
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  margin-top: 70px;
}

.marquee2 {
  --duration: 120s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  transform: skewY(-0deg);
}

.marquee__group2 {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  animation: scroll var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .marquee__group2 {
    animation-play-state: paused;
  }
}





@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

.linkdin-work2 h2 {
  text-align: start;
  max-width: 449px;
}

.right-content {
  max-width: 268px;
  margin-left: auto;
}

.right-content p {
  text-align: start;
  margin-bottom: 24px;
}

.linkdin-work2 .nav-item {
  width: 32%;
}

.linkdin-work.linkdin-work2 .nav-link {
  width: 100%;
  padding: 19px 32px;
}

.linkdin-work.linkdin-work2 .nav {
  max-width: 100%;
}



/*  */
.pricing-sec .nav {
  max-width: fit-content;
  border-radius: 12px;
  border: 1px solid #363A44;
  background: #1D1D1D;
  padding: 6px;
  grid-gap: 4px;
  margin: 0;
}

.pricing-sec .nav-link {
  border-radius: 8px;
  border: 1px solid transparent;
  min-width: 178px;
  padding: 10px 20px;
}

.pricing-card {
  border-radius: 16px;
  border: 1px solid #363A44;
  background: #1D1D1D;
  padding: 24px;
  position: relative;
}

.pricing-tag {
  color: rgba(179, 185, 198, 1);
  font-family: Inter;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  border-radius: 16px;
  border: 1px solid rgba(54, 58, 68, 1);
  padding: 5px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 24px;
  right: 24px;
}

.pricing-card .pricing-header span {
  color: #B3B9C6;
  font-family: "Aeonik TRIAL";
  font-size: 20px;
  font-weight: 400;
  line-height: 30px;
  display: block;
  letter-spacing: -0.6px;
  margin-bottom: 16px;
}

.pricing-card.active-card .btn-start {
  background: #FDEE3A;
  color: #121212;
}

.pricing-card .pricing-header h2 {
  color: #EDEDF1;
  font-family: "Aeonik TRIAL";
  font-size: 56px;
  font-weight: 400;
  line-height: 60px;
}

.pricing-card .pricing-header p {
  color: #B3B9C6;
  font-family: "Aeonik TRIAL";
  font-size: 18px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.72px;
  margin-bottom: 24px;
}

.btn-start {
  color: #FFF;
  font-family: "Aeonik TRIAL";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  border-radius: 12px;
  border: 1px solid #363A44;
  background: #1D1D1D;
  height: 56px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.pricing-card:hover .btn-start {
  background: #FDEE3A;
  color: #121212;
}

.pricing-body h6 {
  color: #667085;
  text-align: center;
  font-family: "Aeonik TRIAL";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  max-width: fit-content;
  margin: 0 auto;
  background: #1D1D1D;
  padding: 0px 12px;
  position: relative;
}

.pricing-body .divider {
  background: #667085;
  height: 1px;
  width: 100%;
  margin-top: -11px;
}

.pricing-body ul {
  margin-top: 32px;
}

.pricing-body ul li {
  display: flex;
  grid-gap: 12px;
  align-items: baseline;
  margin-bottom: 24px;
}

.pricing-body ul li:last-child {
  margin-bottom: 0px;
}

.pricing-body ul li p {
  color: #B3B9C6;
  font-family: "Aeonik TRIAL";
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  flex: 1;
}







/*  */
.review-card {
  border-radius: 83px;
  background: #1D1D1D;
  padding: 12px;
  padding-right: 16px;
  display: flex;
  align-items: center;
  grid-gap: 12px;
  width: fit-content;
  margin: 0 auto 12px;
}

.review-card ul {
  display: flex;
  align-items: center;
  grid-gap: 4px;
}

.review-card span {
  color: #B4BAC5;
  font-size: 14px;
  font-weight: 400;
  display: block;
  line-height: 20px;
}

.product-hero-sec .text-box {
  text-align: center;
}

.product-hero-sec .text-box h1 {
  text-align: center;
  color: #EDEEF1;
  font-family: "Aeonik TRIAL";
  margin-bottom: 16px;
  font-size: 64px;
  font-style: normal;
  font-weight: 400;
  line-height: 72px;
}

.product-hero-sec .text-box h1 span {
  color: #FDEE3A;
}

.product-hero-sec .text-box p {
  color: #B3B9C6;
  font-family: "Aeonik TRIAL";
  font-size: 20px;
  font-weight: 400;
  margin: 16px auto;
  max-width: 734px;
  line-height: 36px;
}

.product-hero-sec .nav,
.faq-sec .nav {
  max-width: fit-content;
  border-radius: 50px;
  border: 1px solid #363A44;
  background: #1D1D1D;
  padding: 6px;
  grid-gap: 4px;
  margin: 0 auto 48px;
}

.product-hero-sec .nav-link,
.faq-sec .nav-link {
  color: #B3B9C6;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  background: var(--New-Theme-fg, #1D1D1D);
  display: inline-block;
}

.product-hero-sec .nav-link,
.faq-sec .nav-link {
  border-radius: 50px;
  border: 1px solid transparent;
  min-width: 178px;
  padding: 10px 20px;
}

.product-hero-sec .nav-link.active,
.product-hero-sec .nav-link:hover,
.faq-sec .nav-link.active,
.faq-sec .nav-link:hover {
  background: #FDEE3A;
  color: #121212;
}

.product-card-wrapper {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  grid-gap: 20px;
}

.product-card {
  overflow: hidden;
  background: #1D1D1D;
  border-radius: 12px;
}

.product-card-body {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 24px 20px;
}

.product-card-body h6 {
  color: #F6F7F9;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 4px;
}

.product-card-body p {
  color: #8B93A5;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.product-card-body p span {
  color: #F6F7F9;
}


.product-card ul {
  display: grid;
  grid-template-columns: 6fr 6fr;
  grid-gap: 16px;
  transition: all 0.5s ease-in-out;
  z-index: 1;
  padding: 0px 20px;
}

.product-card ul .btn-book {
  width: 100%;

}

.btn-start:hover {
  background: var(--New-Theme-Yellow, #FDEE3A);
  color: var(--Base-Color-White, #121212);

}

.cart-btn {
  border-radius: 60px;
  background: #FDEE3A;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-wrapper {
  position: relative;
}

.product-img-wrapper::after {
  content: '';
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.60) 0%, rgba(0, 0, 0, 0.60) 100%);
}

.product-card-body .product-tag {
  color: #000;
  font-family: "Aeonik TRIAL";
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  border-radius: 8px;
  background: #FDEE3A;
  display: inline-block;
  padding: 3px 10px;
}

.title h2 span {
  color: #FDEE3A;
}

.product-img-wrapper .product-img {
  max-height: 272px;
  width: 100%;
  min-height: 272px;
  object-fit: cover;
  object-position: left;
}

.product-hero-sec {
  padding: 72px 0px;
}

.product-hero-sec .nav-wrapper {
  margin-top: 72px;
}

.product-hero-sec .text-box h1 span {
  display: block;
}





/*  */

.work-page .marquee-parent {
  --space: 1rem;
  display: grid;
  align-content: center;
  overflow: hidden;
  gap: var(--space);
  width: 100%;
  margin-top: 56px;
  position: relative;
}

.work-page .marquee-parent::after {
  content: "";
  background: linear-gradient(0deg, #121212 0%, rgba(18, 18, 18, 0.00) 100%);
  height: 378px;
  width: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}

.work-page .marquee {
  --duration: 120s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  user-select: none;
  gap: var(--gap);
  transform: skewY(-0deg);
}

.work-page .marquee__group {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--gap);
  animation: scroll var(--duration) linear infinite;
}

.work-page .marquee2 .marquee__group {
  animation: scroll2 var(--duration) linear infinite;
}

@media (prefers-reduced-motion: reduce) {
  .work-page .marquee__group {
    animation-play-state: paused;
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}

@keyframes scroll2 {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(calc(0% - var(--gap)));
  }
}

.work-page .client-box-wrapper {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr 4fr;
  position: relative;
  grid-gap: 20px;
  margin-bottom: 48px;
  margin-top: 48px;
  overflow: hidden;
  height: 2590px;
}

.work-page .client-box-wrapper::after {
  content: '';
  width: 100%;
  height: 286px;
  background: linear-gradient(360deg, #121212 0%, rgba(18, 18, 18, 0.00) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.work-page .client-box-wrapper::before {
  content: '';
  width: 100%;
  height: 286px;
  background: linear-gradient(900deg, #121212 0%, rgba(18, 18, 18, 0.00) 100%);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.work-page .client-box {
  border-radius: 16px;
  border: 1px solid var(--Shark-900, #363A44);
  background: var(--New-Theme-fg, #1D1D1D);
  height: min-content;
  padding: 24px;
  margin-bottom: 20px;
}

.work-page .client-box ul {
  display: flex;
  align-items: center;
  grid-gap: 4px;
}

.work-page .client-box p {
  color: #B4BAC5;
  font-family: "Space Grotesk";
  font-size: 16px;
  font-weight: 400;
  margin: 8px 0px 24px;
  line-height: 24px;
}

.work-page .user-detail {
  display: flex;
  align-items: center;
  grid-gap: 16px;
}

.work-page .user-detail h6 {
  color: #EDEDF1;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  grid-gap: 4px;
  line-height: 20px;
}

.work-page .user-detail span {
  display: block;
  color: #B4BAC5;
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
}

.work-page .client-sec,
.work-page .video-sec {
  padding: 80px 0px 56px;
  margin: 0;
  max-height: 100%;
}

.work-page .client-sec {
  background-color: #121212;
}

.work-page .video-sec {
  background-color: #121212;
}

.work-page .video-sec .title p {
  max-width: 628px;
}

.work-page .video-icon {
  border-radius: 133.48px;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(27.86846923828125px);
  width: 101.01px;
  height: 101.01px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.work-page .video-banner {
  position: relative;
  margin: 48px auto 0px;
  z-index: 1;
  max-width: 974px;
}

.work-page .banner-img {
  border-radius: 24px;
}

.work-page .video-banner::after,
.work-page .video-banner::before {
  content: "";
  border-radius: 23px;
  background: #FDEE3A;
  width: 203px;
  height: 487px;
  position: absolute;
  z-index: -1;
  bottom: 20px;
  transition: all 0.5s ease-in-out;
}

.work-page .video-banner::after {
  left: -54px;
  transform: rotate(-13.694deg);
}

.work-page .video-banner::before {
  right: -54px;
  transform: rotate(13.69deg);
}

.work-page .video-banner:hover::after {
  left: -54px;
  transform: rotate(-20deg);
}

.work-page .video-banner:hover::before {
  right: -54px;
  transform: rotate(20deg);
}

.work-page .video-box {
  text-align: center;
  position: relative;
  display: block;
}

.work-page .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.work-page .box-footer {
  background-color: #1D1D1D;
  border-radius: 8px;
  padding: 12px;
  position: absolute;
  text-align: start;
  left: 0;
  right: 0;
  bottom: 12px;
  width: 90%;
  margin: 0 auto;
}

.work-page .box-footer h6 {
  font-size: 20px;
  line-height: 30px;
  font-weight: bold;
  color: #EDEEF1;
}

.work-page .box-footer span {
  font-size: 14px;
  font-weight: normal;
  color: #B3B9C6;
  line-height: 20px;
  display: block;
}

.work-page .modal-body video {
  width: 100%;
  height: 500px;
}

.work-page .swiper-button-next,
.work-page .swiper-button-prev {
  border-radius: 41px;
  background: var(--Base-Color-White, #fff);
  box-shadow: 0px 8px 24px 0px rgba(0, 0, 0, 0.08);
  width: 56px;
  height: 56px;
}

.work-page .swiper-button-prev {
  left: -23px;
}

.work-page .postion-relative {
  position: relative;
}

.work-page .swiper-button-next.swiper-button-disabled,
.work-page .swiper-button-prev.swiper-button-disabled {
  opacity: 1;
}

.work-page .swiper-button-next {
  right: -23px;
}

.work-page .swiper-button-next:after,
.work-page .swiper-button-prev:after {
  content: none;
}

.work-page .swiper-button-next svg,
.work-page .swiper-button-prev svg {
  height: 17px;
}

.work-page .mySwiper {
  padding-top: 48px;
}

.work-page .product-hero-sec.cheatsheet-sec .text-box p {
  max-width: 823px;
  line-height: 30px;
  margin-bottom: 32px;
}

.work-page .work-image-holder img {
  max-width: inherit;
  margin-left: 30px;
  display: none;
  transition: opacity 0.4s ease;
}

.work-page .work-image-holder img.active {
  display: block;
}

.work-page .accordion-item:first-of-type {
  border-radius: 0px;
  padding-top: 0px;
}

.work-page .accordion {
  margin-top: 0px;
}

.work-page .mt-72 {
  margin-top: 72px;
}

.work-page .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.work-page .accordion-button:not(.collapsed)::after {
  background-image: none;
}

.work-page .accordion-collapse {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}

.product-accordion .accordion-body ul li {
  list-style: disc;
  margin-left: 20px;
  color: #B3B9C6;
}

.work-page .accordion-collapse.show {
  max-height: fit-content;
}

.work-page .accordion-button {
  position: relative;
}

.work-page .accordion-button::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-right: auto;
  content: "";
  background-image: url(../images/add.svg) !important;
  margin-left: auto;
  margin-right: 0px;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform .2s ease-in-out;
}

.work-page .accordion-button.active::after {
  content: none;
}

.work-page .product-hero-sec .text-box h1 {
  line-height: 60px;
}

.work-image-holder .img {
  display: none;

}

.work-image-holder .img video {
  height: 699px;
  border-radius: 20px;
  margin-left: 40px;

}

.work-image-holder .img.active {
  display: block;

}

.video-banner iframe {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 20px;

}

.work-page .btn-book {
  font-size: 18px;

}

.work-page .work-image-holder img.active {
  display: block;
  width: 968px;
}


.work-page .product-accordion .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.svg);
}

.work-page .product-accordion .accordion-button::after {
  background-image: url(../images/add.svg);
  margin-left: auto;
  content: "";
  margin-right: 0px;
  width: 1.25rem;
  height: 1.25rem;
  background-repeat: no-repeat;
  background-size: 1.25rem;
}






/*  */

.product-hero-sec.pitch-hero .text-box {
  max-width: 900px;
  margin: 0 auto;
}

.product-hero-sec.pitch-hero .text-box p {
  margin: 16px auto 32px;
  max-width: 846px;
  line-height: 30px;
}

.work-page .product-hero-sec.pitch-hero .marquee {
  --duration: 300s;
}

.subtitle-list {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
  justify-content: center;
  grid-gap: 8px;
}

.subtitle-list h6 {
  font-size: 16px;
  line-height: 24px;
  color: #B3B9C6;
}

.pitch-desk-page .linkdin-work .title {
  max-width: 793px;
  margin: 0 auto 48px;
}

.pitch-desk-page .work-page .video-sec .title p {
  max-width: 730px;
}

.tool-box-wrapper {
  background: #1D1D1D;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  grid-gap: 40px;
  padding: 32px 40px;
}

.tool-box {
  text-align: center;
}

.tool-box h6 {
  font-size: 20px;
  line-height: 30px;
  color: #B3B9C6;
  margin-top: 20px;
}

.tool-sec {
  padding: 72px 0px;
}

.portfolio-sec .title {
  max-width: 580px;
  margin: 0 auto;
}

.portfolio-box h6 {
  font-size: 16px;
  line-height: 24px;
  color: #B3B9C6;
  margin-bottom: 8px;
}

.portfolio-box h3 {
  font-size: 32px;
  line-height: 40px;
  color: #EDEEF1;
  margin-bottom: 16px;
}

.portfolio-box p {
  font-size: 16px;
  line-height: 24px;
  color: #B3B9C6;
  margin-bottom: 8px;
}

.project-detail-wrapper {
  display: grid;
  grid-template-columns: 4fr 4fr 4fr;
  grid-gap: 16px;
  margin-bottom: 40px;
  margin-top: 24px;
}

.project-detail-wrapper h4 {
  font-size: 20px;
  color: #EDEEF1;
  line-height: 30px;
}

.portfolio-box ul {
  display: flex;
  grid-gap: 24px;
}

.btn-default {
  font-size: 16px;
  line-height: 24px;
  color: #EDEEF1;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-gap: 8px;
  border-radius: 12px;
  border: 1px solid #EDEEF1;
  padding: 16px 32px;
}

.btn-default:hover {
  background: #FDEE3A;
  border: 1px solid #1D1D1D;
  color: #1D1D1D;
}

.btn-default:hover img {
  filter: brightness(0);
}

.portfolio-box {
  padding: 20px;
  background-color: #1D1D1D;
  border-radius: 20px;
  margin-top: 32px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.portfolio-sec {
  padding: 72px 0px;
}

.portfolio-box::after {
  content: '';
  background: linear-gradient(270deg, #010101 0%, rgba(1, 1, 1, 0.00) 100%);
  width: 215px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
}

.pitch-desk-page .product-card ul {
  grid-template-columns: 12fr;
  margin-bottom: 20px;
}

.user-detail img {
  object-fit: cover;

  object-poistion: Center;
  border-radius: 50%;
}

.portfolio-box::before {
  content: '';
  background: linear-gradient(90deg, #010101 0%, rgba(1, 1, 1, 0.00) 100%);
  width: 215px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.product-card-body {
  min-height: 120px;

}

.text-rotator {
  overflow: hidden;
  display: inline-block;
  position: relative;
  height: 72px;
  width: 100%;
}

.text-rotator .line {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  display: flex;
  gap: 0.25rem;
}


.coaches-header {
  background: #1D1D1D;
  padding: 22px 0px;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

.coaches-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.coaches-header-inner h6 {
  font-size: 20px;
  font-weight: normal;
  color: #fff;
  font-family: 'Aeonik TRIAL';
}

.btn-secondary {
  font-size: 16px;
  color: #fff;
  font-weight: normal;
  font-family: 'Aeonik TRIAL';
  padding: 16px 32px;
  border: 1px solid #363A44;
  background-color: transparent;
  font-family: 'Aeonik TRIAL';
}

.coaches-hero-sec {
  text-align: center;
  padding: 70px 0px;
}

.coaches-header.active .btn-secondary {
  background: #FDEE3A;
  color: #121212;
}

.coaches-hero-sec h1 {
  font-size: 64px;
  max-width: 793px;
  margin: 0 auto 16px;
  font-weight: 400;
  line-height: 60px;
  color: #fff;
}

.coaches-hero-sec h1 span {
  color: #FDEE3A;
}

.coaches-hero-sec p {
  color: #B3B9C6;
  max-width: 912px;
  margin: 0 auto;
  font-size: 20px;
  font-weight: normal;
  font-family: 'Aeonik TRIAL';
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  backdrop-filter: blur(55px);
  border-radius: 50px;
}

.video-banner {
  position: relative;
  margin: 48px auto;
  z-index: 1;
  max-width: 974px;
}

.roadmap-inner {
  display: flex;
  align-items: center;
}

.number-circle {
  font-size: 40px;
  font-weight: 700;
  color: #121212;
  background: #FDEE3A;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Space Grotesk";
}

.roadmap-box {
  border-radius: 12px;
  background-color: #1D1D1D;
  flex: 1;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  border: 1px solid #363A44;
}

.roadmap-inner {
  position: relative;
}

.roadmap-inner::after {
  content: '';
  background-image: url(../images/bottom-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  left: 52px;
  width: 6px;
  height: 100%;
  bottom: -81%;
}

.roadmap-inner:last-child::after {
  content: none;
}

.roadmap-box h4 {
  font-size: 24px;
  font-weight: bold;
  color: #F6F7F9;
  margin-bottom: 8px;
  line-height: 36px;
  font-family: 'Aeonik TRIAL';
}

.roadmap-box p {
  font-size: 16px;
  color: #B3B9C6;
  line-height: 24px;
  font-family: 'Aeonik TRIAL';
  max-width: 735px;
}

.roadmap-wrapper {
  margin-top: 48px;
}

.how-its-work-sec {
  padding: 69px 0px;
}


.tab-panel {
  display: none;
  margin-top: 15px;
}

.tab-panel.active {
  display: block;
}

.tab-buttons {
  display: flex;
  align-items: center;
  justify-content: end;
}

.tab-buttons .tab-btn {
  color: rgba(255, 255, 255, 0.70);
  font-family: "Aeonik TRIAL";
  font-size: 14px;
  font-weight: 400;
  padding: 6px 12px;
  border: 1px solid transparent;
  background-color: transparent;
  line-height: 20px;
}

.tab-buttons .tab-btn.active {
  border-radius: 100px;
  border: 1px solid var(--Gray-50, #363A44);
  color: var(--Base-Color-Black, #000);
  background: var(--New-Theme-Yellow, #FDEE3A);
}

.pricing-sec .tab-content {
  margin-top: -58px;
}

.pricing-card .pricing-header h2 span {
  font-size: 16px;
  color: rgba(237, 237, 241, 0.56);
  display: inline-block;
  margin-left: -14px;
}