@font-face {
  font-family: 'Plus Jakarta Sans';
  src: url('../fonts/PlusJakartaSans-VariableFont_wght.ttf');
}

:root {
  --bisstek-body: 'Plus Jakarta Sans', sans-serif;
  --bisstek-heading: 'Plus Jakarta Sans', sans-serif;
  --bisstek-p: 'Plus Jakarta Sans', sans-serif;
  --bisstek-primary-theme: #02050a;
  --bisstek-color-primary: #9b181d;
  --bisstek-color-secondary: #3f5af3;
  --white: #ffffff;
  --offwhite: rgba(255, 255, 255, 0.8);
  --black: #333333;
  --bisstek-background-primary: black;
  --bisstek-border-primary: #1e2228;
  --bisstek-border-secondary: #0b0f15;
  --bisstek-text-primary: #b0b2b7;
  --bisstek-heading-primary: #171717;
  --bistek-light-blue: rgba(63, 90, 243, 0.1);.foot-wrap
}

#google_translate_element {
  position: fixed;
  bottom: 10px; /* Position the box 10px from the bottom */
  left: 10px; /* Position the box 10px from the left */
  background-color: white; /* You can change this as per your site's color scheme */
  border-radius: 5px;
  padding: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  z-index: 5000; /* Ensure it's on top of other elements */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--bisstek-body);
  background-color: var(--bisstek-primary-theme);
  min-width: 375px;
  color: var(--white);
  font-size: 16px;
  line-height: 1.625;
  font-weight: normal;
  width: 100vw;
  overflow-x: hidden;
}
h1 {
  font-family: var(--bisstek-heading);
}

h3 {
  font-family: var(--bisstek-heading);
  font-size: 30px;
  font-weight: 600px;
  line-height: 1;
  font-weight: 600;
}

p {
  font-family: var(--bisstek-p);
}

ul {
  list-style: none;
  color: inherit;
  padding-left: 0 !important;
}

li a {
  text-decoration: none;
  color: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

input,
select,
textarea {
  background-color: var(--bisstek-border-primary);
  color: var(--bisstek-text-primary);
  font-size: 16px;
  font-weight: 400;
  box-shadow: none;
  border: none;
  padding: 15.5px 30px;
  border-radius: 0;
  margin-bottom: 25px;
  width: 100%;
  outline: none;
}

textarea {
  box-sizing: border-box;
  resize: vertical;
  min-height: 200px;
}

select option {
  background-color: var(--bisstek-border-primary);
  color: var(--bisstek-text-primary);
  font-size: 16px;
  font-weight: 400;
  outline: none;
  border: none;
}

img {
  max-width: 100%;
  height: auto;
}

select option:hover {
  background-color: var(--bisstek-border-primary);
  color: var(--bisstek-text-secondary);
}

select option:checked {
  background-color: var(--bisstek-primary-color);
  color: white;
}

button {
  outline: none;
  border: none;
  background: transparent;
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: 0;
  border: 0;
}

.custom-cursor-follower {
  width: 10px;
  height: 10px;
  background-color: var(--bisstek-color-primary);
  border-radius: 50%;
  position: absolute;
  pointer-events: none;
  z-index: 999;
  transition: all 0.1s;
}

@media (max-width: 979px) {
  .custom-cursor-follower {
    display: none;
  }
}

.bisstek-sidebar ::-webkit-scrollbar {
  width: 8px;
}

.bisstek-sidebar ::-webkit-scrollbar-track {
  background: transparent;
}

.bisstek-sidebar ::-webkit-scrollbar-thumb {
  background: #888;
}

.bisstek-sidebar ::-webkit-scrollbar-thumb:hover {
  background: #555;
}

@media (max-width: 576px) {
  .container {
    padding: 16px;
    margin: 0;
  }
}

.button-primary {
  background-color: var(--bisstek-color-primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 22px 30px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  width: max-content;
  z-index: 1;
}

.button-primary span {
  display: flex;
  align-items: center;
  justify-self: center;
}

.button-primary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.button-primary:hover {
  color: var(--common-white);
}
.button-primary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.button-secondary {
  background-color: var(--white);
  color: var(--black);
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 22px 30px;
  border-radius: 0px;
  transition: all 0.3s ease-in-out;
  overflow: hidden;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
}
.button-secondary:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgb(233, 233, 233, 0.8);
  transform-origin: right center;
  transform: scale(0, 1);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.button-secondary:hover:before {
  transform-origin: left center;
  transform: scale(1, 1);
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  animation: fadesaway 0.2s forwards;
  animation-delay: 3s;
}

@keyframes fadesaway {
  from {
    opacity: 1;
  }
  to {
    display: none;
  }
}

.preloader .top {
  width: 100%;
  height: 50%;
  background: var(--bisstek-border-primary);
}

.preloader .bottom {
  width: 100%;
  height: 50%;
  background: var(--bisstek-border-primary);
}

.preloader .preloader-text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999999;
  transform: translate(-50%, -50%);
  animation: hidetext 0.5s ease-in-out forwards;
  animation-delay: 0.5s;
}

@keyframes hidetext {
  from {
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  to {
    transform: translate(-50%, -40%);
    opacity: 0;
    display: none;
  }
}

.preloader .top {
  animation: slideUp 1.5s ease forwards;
  animation-delay: 1s;
}

.preloader .bottom {
  animation: slideDown 1.5s ease forwards;
  animation-delay: 1s;
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
    display: none;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
    display: none;
  }
}

/* site bisstekloader */
.bisstekloader-close {
  background-color: var(--bisstek-color-primary);
  color: var(--white);
  height: 60px;
  width: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  position: fixed;
  z-index: 99;
  line-height: 1;
  cursor: pointer;
  right: 50px;
  top: 50px;
  transition: all 0.3s ease-in-out;
}

#bisstekloader {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: var(--bisstek-primary-theme);
  z-index: 9999999;
}

.spinner-box {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: transparent;
}
@keyframes pulse {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0.25;
    transform: scale(0.75);
  }
}
.pulse-container {
  width: 120px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pulse-bubble {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--bisstek-color-primary);
}

.pulse-bubble-1 {
  animation: pulse 0.4s ease 0s infinite alternate;
}
.pulse-bubble-2 {
  animation: pulse 0.4s ease 0.2s infinite alternate;
}
.pulse-bubble-3 {
  animation: pulse 0.4s ease 0.4s infinite alternate;
}

@media only screen and (max-width: 992px) {
  .bisstekloader-close {
    top: 40px;
    right: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .bisstekloader-close {
    top: 20px;
    right: 20px;
  }
}

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

.foot-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.social-icons .icon {
  background-color: var(--bisstek-border-primary);
  color: var(--white);
  width: 40px;
  height: 40px;
  line-height: 30px;
  border: 1px solid var(--bisstek-border-primary);
  border-radius: 5px;
  transition: all 0.2s ease-in-out;
  display: flex;
  justify-content: center;
  text-align: center;
}

.social-icons .icon img {
  width: 25px;
  height: 25px;
  margin-top: 7px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.social-icons .icon:hover img {
  transform: scale(1.2);
}

@media (max-width: 576px) {
  .social-icons {
    margin-bottom: 80px;
  }
}

.mainsection {
  position: relative;
  height: 130vh;
}

.mainsection .mainsection-text {
  mix-blend-mode: exclusion;
  list-style: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -70%);
}
html {
  overflow-x: hidden;
}
.mainsection .mainsection-text .main-heading {
  mix-blend-mode: exclusion;
  list-style: 1;
  font-size: 20vw;
}

.main-section .section-paragraph {
  padding-bottom: 10px;
}

.lower-section {
  text-align: center;
}

.scrolling-image {
  position: absolute;
  top: 10%;
  left: 10%;
  z-index: -1;
  animation: scrollAnimation 30s linear infinite;
}

@keyframes scrollAnimation {
  0% {
    left: 30%;
  }
  30% {
    left: -40%;
    display: none;
  }
  31% {
    left: 100%;
    display: none;
  }
  32% {
    opacity: 1;
    display: block;
  }
  100% {
    left: 30%;
  }
}

.scrolling-image1 {
  position: absolute;
  top: 11%;
  left: 80%;
  z-index: -1;
  animation: scrollAnimation1 30s linear infinite;
}

@keyframes scrollAnimation1 {
  0% {
    left: 70%;
  }
  70% {
    left: -40%;
    display: none;
  }
  71% {
    left: 100%;
    display: none;
  }
  72% {
    opacity: 1;
    display: block;
  }
  100% {
    left: 70%;
  }
}

.scrolling-image2 {
  position: absolute;
  top: 54%;
  left: 15%;
  z-index: -1;
  max-width: 350px;
  animation: scrollAnimation2 30s linear infinite;
}

@keyframes scrollAnimation2 {
  0% {
    left: 35%;
  }
  30% {
    left: -40%;
    display: none;
  }
  31% {
    left: 100%;
    display: none;
  }
  32% {
    opacity: 1;
    display: block;
  }
  100% {
    left: 35%;
  }
}

.scrolling-image3 {
  position: absolute;
  top: 54%;
  left: 90%;
  z-index: -1;
  max-width: 350px;
  animation: scrollAnimation3 30s linear infinite;
}

@keyframes scrollAnimation3 {
  0% {
    left: 90%;
  }
  70% {
    left: -10%;
    display: none;
  }
  71% {
    left: 100%;
    display: none;
  }
  72% {
    opacity: 1;
    display: block;
  }
  100% {
    left: 90%;
  }
}

@media (max-width: 979px) {
  .scrolling-image,
  .scrolling-image1,
  .scrolling-image2,
  .scrolling-image3 {
    width: 150px;
  }
}

@media (max-width: 767px) {
  .mainsection {
    height: 100vh;
    width: 100vw;
    overflow: hidden;
  }
  .mainsection .mainsection-text {
    transform: translate(-50%, -50%);
  }
}

.hero-section-bg .section-background {
  background-image: url('../img/pricing/page-header-bg.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.hero-section-bg .background-overlay {
  background-color: rgba(2, 5, 10, 0.8);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.hero-section-bg .hero-section-content {
  padding: 180px 0;
  text-align: center;
}

.hero-section-bg .overlay-images .overlay-image-1 {
  mix-blend-mode: multiply;
  top: 0;
  right: 0;
  position: absolute;
  z-index: -1;
}

.hero-section-bg .overlay-images img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transform-origin: left;
}

.hero-section-bg .overlay-images .overlay-image-2 {
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: -1;
}

.hero-section-bg .overlay-images .overlay-image-3,
.hero-section-bg .overlay-images .overlay-image-2 {
  bottom: 0;
  position: absolute;
  left: 0;
  z-index: -1;
}

.hero-section-bg .title {
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hero-section-bg .title::before {
  background: linear-gradient(270deg, #3f5af3 0%, transparent 100%);
  content: '';
  width: 100%;
  height: 76%;
  position: absolute;
  top: 15%;
  right: 0;
  z-index: -1;
  opacity: 0.95;
}

.hero-section-content .title-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.hero-section-bg .title-container .title-2 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  color: var(--bisstek-text-primary);
}

.hero-section-bg .title-container .title-2:hover {
  color: var(--white);
}

.hero-section-bg .title-container .title-3 {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}

@media (max-width: 979px) {
  .hero-section-bg .title {
    font-size: 40px;
  }
}

.animated-textbar {
  position: relative;
  padding: 51px 0;
  overflow: hidden;
  background-color: #02050a;
}

.animated-textbar .textbar-background {
  background: url('../img/common/running-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.animated-textbar .textbar-background::before {
  background-color: var(--bisstek-color-primary);
  mix-blend-mode: multiply;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.animated-textbar ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 60px;
}

.animated-textbar ul li {
  display: inline-block;
  white-space: nowrap;
  font-size: 24px;
  color: var(--rr-color-common-white);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  font-size: 100px;
  line-height: 1;
}

.animated-textbar ul li::after {
  content: '';
  background: url(../img/icons/stroke-star.png) no-repeat;
  width: 60px;
  height: 60px;
  display: block;
  position: absolute;
  top: 20px;
  left: -55px;
}

@media (max-width: 1299px) {
  .animated-textbar {
    position: relative;
    padding: 41px 0;
    overflow: hidden;
  }
  .animated-textbar ul li {
    font-size: 30px;
    font-weight: 400;
  }
  .animated-textbar ul li::after {
    top: -19px;
  }
}

@media (max-width: 979px) {
  .animated-textbar {
    position: relative;
    padding: 31px 0;
    overflow: hidden;
  }
  .animated-textbar ul li {
    font-size: 26px;
    font-weight: 400;
  }
  .animated-textbar ul li::after {
    top: -19px;
  }
}

.scroller__inner {
  padding-block: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.animated-textbar .text-stroke {
  color: var(--rr-color-common-white);
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--rr-color-common-white);
}

.scroller[data-animated='true'] .scroller__inner {
  width: max-content;
  flex-wrap: nowrap;
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, forwards) linear infinite;
}
.scroller[data-animated='true'] .scroller__inner.inner-2 {
  animation: scroll var(--_animation-duration, 40s)
    var(--_animation-direction, reverse) linear infinite;
}

.scroller[data-direction='right'] {
  --_animation-direction: reverse;
}

.scroller[data-direction='left'] {
  --_animation-direction: forwards;
}

.scroller[data-speed='fast'] {
  --_animation-duration: 30s;
}

.scroller[data-speed='slow'] {
  --_animation-duration: 60s;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}

input[type='radio'] {
  display: none;
}

#div2,
#div1 {
  display: none;
  margin-top: 80px;
}

#radio1:checked ~ #div1 {
  display: block;
  animation: slideFromBottom 0.5s ease-in-out forwards;
}

#radio2:checked ~ #div2 {
  display: block;
  animation: slideFromBottom 0.5s ease-in-out forwards;
}

@keyframes slideFromBottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.pricing-plan {
  padding: 120px 0px;
}

@media (max-width: 576px) {
  .pricing-plan {
    padding: 80px 0px;
  }
}

.pricing-plan .label-button {
  background-color: var(--white);
  display: flex;
  align-items: center;
  border-bottom: none;
  border-radius: 100px;
  padding: 10px;
  margin-bottom: 30px;
  max-width: 160px;
  margin: 0 auto;
  justify-content: center;
}

.pricing-plan .label-button .bg-blue {
  background-color: var(--bisstek-color-primary);
  color: var(--white);
  font-size: 12px;
  padding: 3px 10px;
  font-weight: 700;
  border-radius: 100px;
}

.pricing-plan label {
  cursor: pointer;
  padding: 5px 10px;
  color: var(--bisstek-heading-primary);
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-family: 600px;
}

.pricetable {
  padding: 120px 0px;
  overflow-x: auto;
}

@media (max-width: 576px) {
  .pricetable {
    padding: 80px 0px;
  }
}

#price-table {
  border-collapse: collapse;
  width: 100%;
  border-radius: 10px;
}

.pricetable h3 {
  padding-bottom: 60px;
  text-align: center;
}

#price-table th {
  height: 80px;
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: var(--bisstek-color-primary);
  color: white;
}

#price-table th p {
  font-size: 12px;
  text-align: center;
}

#price-table td,
#price-table th {
  border: 1px solid var(--bisstek-border-primary);
  padding: 16px;
  text-align: center;
}

#price-table td img {
  width: 30px;
}

#price-table td:nth-child(1) {
  max-width: 225px;
}

#price-table tr:nth-child(even) {
  background-color: var(--bisstek-background-primary);
}

#price-table tr:hover {
  cursor: pointer;
  background-color: var(--bisstek-border-primary);
}

.prices-plugin {
  padding: 120px 0px;
  overflow-x: auto;
}

@media (max-width: 576px) {
  .prices-plugin {
    padding: 80px 0px;
  }
}

.prices-plugin h3 {
  text-align: center;
}

.prices-plugin .text-gradient {
  font-size: 60px;
  letter-spacing: -2.8px;
  background: linear-gradient(-120deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  font-weight: 700;
}

.prices-plugin .gradient {
  background: linear-gradient(-120deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.prices-plugin table {
  margin-top: 60px;
}

#radio1:checked ~ .label-button > label[for='radio1'] {
  background-color: var(--bistek-light-blue);
  color: var(--bisstek-heading-primary);
  border-radius: 100px;
}

#radio2:checked ~ .label-button > label[for='radio2'] {
  background-color: var(--bistek-light-blue);
  color: var(--bisstek-heading-primary);
  border-radius: 100px;
}

.mobo-friendly {
  padding: 80px 0;
  text-align: center;
}

.mobo-friendly p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.mobo-friendly h5 {
  font-size: 18px;
  color: var(--bisstek-text-primary);
  font-weight: 500;
  margin-top: 20px;
}

@media (max-width: 576px) {
  .mobo-friendly {
    padding: 60px 0;
  }
}

.mobo-images {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  align-items: center;
  padding-top: 80px;
}

.mobile-1,
.mobile-2,
.tablet {
  display: inline-flex;
}

.mobile-1 img:nth-child(1),
.mobile-2 img:nth-child(1),
.tablet img:nth-child(1) {
  position: relative;
}

.mobo-inner-image {
  position: absolute;
  top: 2%;
  max-width: 211px;
  left: 2%;
  z-index: -1;
  width: 95%;
}

.tab-inner-image {
  position: absolute;
  top: 2%;
  max-width: 420px;
  left: 2%;
  z-index: -1;
  width: 95%;
}

.page-builder {
  padding: 80px 0 260px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  align-items: start;
}

@media (max-width: 576px) {
  .page-builder {
    padding: 60px 0;
  }
}

@media (max-width: 979px) {
  .page-builder {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    align-items: center;
  }
}

.page-builder-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.page-builder-text h5 {
  font-size: 18px;
  color: var(--bisstek-text-primary);
  font-weight: 500;
  margin-top: 20px;
}

.page-builder .item-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.page-builder .item-checks {
  display: flex;
  justify-content: left;
  align-items: start;
}

@media (max-width: 576px) {
  .page-builder .item-checks {
    display: flex;
    justify-content: left;
    margin: 8px 0;
  }
}

.page-builder .item-checks p {
  color: var(--bisstek-text-primary);
}

.page-builder .item-checks::before {
  content: '\2713';
  font-size: 10px;
  width: 21px;
  height: 21px;
  line-height: 22px;
  border-radius: 100%;
  margin-right: 7px;
  color: #ffffff;
  background: #72bf40;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-builder-images {
  position: relative;
}

@media (max-width: 767px) {
  .page-builder-images {
    display: none;
  }
}

.page-builder-images img:nth-child(1) {
  z-index: -1;
}

.page-builder-images img:nth-child(2) {
  position: absolute;
  left: 5%;
  top: 5%;
}

.page-builder-images img:nth-child(3) {
  position: absolute;
  left: 5%;
  top: 185%;
  width: 50%;
}

.page-builder-images img:nth-child(4) {
  position: absolute;
  left: 0%;
  top: 300%;
  width: 50%;
}

.page-builder-images img:nth-child(5) {
  position: absolute;
  right: 20%;
  top: -20%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-builder-images img:nth-child(6) {
  position: absolute;
  right: -10%;
  top: -20%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-builder-images img:nth-child(7) {
  position: absolute;
  right: -10%;
  top: 90%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-builder-images img:nth-child(8) {
  position: absolute;
  right: -10%;
  top: 200%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.page-builder-images img:nth-child(9) {
  position: absolute;
  left: 50%;
  top: 200%;
  animation: rotate 5s linear infinite;
}

@keyframes rotate {
  0% {
    transform: translateX(-50%) rotate(0deg) translate(20px) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(360deg) translate(20px) rotate(-360deg);
  }
}

@media (max-width: 1024px) {
  .page-builder {
    grid-template-columns: repeat(1, 1fr);
  }
  .page-builder-text {
    padding-top: 500px;
  }
}

@media (max-width: 767px) {
  .page-builder-text {
    padding-top: 0px;
  }
}

.sell-pro {
  padding: 80px 0 260px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
}

@media (max-width: 576px) {
  .sell-pro {
    padding: 60px 0;
  }
}

@media (max-width: 1024px) {
  .sell-pro {
    padding: 80px 0;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    align-items: center;
    padding-bottom: 500px;
  }
}

.sell-pro-text p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 20px;
}

.sell-pro-text h5 {
  font-size: 18px;
  color: var(--bisstek-text-primary);
  font-weight: 500;
  margin-top: 20px;
}

.sell-pro .sell-pro-images {
  position: relative;
}

@media (max-width: 767px) {
  .sell-pro .sell-pro-images {
    display: none;
  }
  .sell-pro {
    padding-bottom: 80px;
  }
}

.sell-pro-images img:nth-child(2) {
  position: absolute;
  left: 5%;
  top: 5%;
}

.sell-pro-images img:nth-child(3) {
  position: absolute;
  left: 0%;
  top: 185%;
  width: 30%;
}

.sell-pro-images img:nth-child(4) {
  position: absolute;
  left: 0%;
  animation: rotate 5s linear infinite;
  top: 175%;
}

.sell-pro-images img:nth-child(5) {
  position: absolute;
  right: -10%;
  top: 255%;
  width: 40%;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.sell-pro-images img:nth-child(6) {
  position: absolute;
  right: -10%;
  top: -40%;
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

@media (max-width: 1415px) {
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .price-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}

.price-card {
  background: var(--bisstek-background-primary);
  padding: 40px 50px;
  border: 1px var(--bisstek-border-primary) solid;
  min-height: 850px;
}

.price-cards .card-title h4 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 25px;
}

.price-cards h2 {
  font-size: 60px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
}

.price-cards p {
  color: var(--bisstek-text-primary);
  font-size: 16px;
  font-weight: 500;
}

.card-buttons {
  margin-top: 40px;
}

.card-buttons button {
  width: 100%;
  margin-bottom: 10px;
  text-align: center;
  justify-content: center;
}

.card-buttons button img {
  width: 20px;
  margin-left: 5px;
  transform: rotate(320deg);
  transition: all 0.3s ease-in-out;
}

.card-buttons button:hover img {
  transform: rotate(360deg);
}

.price-card .card-desc {
  margin-top: 20px;
}

.price-card .card-desc h3 {
  margin-top: 20px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}

.price-card .card-desc h3 {
  margin-bottom: 20px;
  font-size: 16px;
}

.testimonal {
  padding: 0 0 130px 0;
}

@media (max-width: 979px) {
  .testimonal {
    padding: 0 0 80px 0;
  }
}

@media (max-width: 576px) {
  .testimonal {
    padding: 60px 0;
  }
}

/* our happy clients */

.our-happy-clients-section {
  position: relative;
  display: flex;
}

.our-happy-clients-section .left-client-section {
  width: 54%;
  padding: 121px 100px 128px;
  font-size: 18px;
  line-height: 24px;
  position: relative;
  z-index: 2;
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--bisstek-color-primary);
}

.brand-logos-main {
  padding-top: 80px;
}

.our-happy-clients-section .left-client-section .our-happy-clients-title {
  max-width: 790px;
}

.our-happy-clients-section .left-client-section .our-happy-clients-title h3 {
  margin-bottom: 20px;
}

.our-happy-clients-section .left-client-section .brands_heading {
  margin-bottom: 35px;
  display: block;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
}

.our-happy-clients-section .left-client-section .brands_heading:before {
  width: 31px;
  height: 2px;
  background-color: #fff;
  display: inline-block;
  vertical-align: middle;
  content: '';
  margin-right: 12px;
}

.our-happy-clients-section .right-client-section {
  position: absolute;
  right: 0;
  height: 600px;
  width: 56.25%;
  top: 100px;
  z-index: 1;
  background: #3f5af3;
}

.our-happy-clients-section .right-client-section img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

@media (max-width: 979px) {
  .our-happy-clients-section {
    display: block;
    padding: 0;
  }
  .our-happy-clients-section .left-client-section {
    width: 100%;
    padding: 121px 100px 128px;
    line-height: 24px;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
  }

  .our-happy-clients-section .right-client-section {
    position: relative;
    width: 100%;
    z-index: 1;
    top: 0;
    height: 400px;
  }
}

@media (max-width: 650px) {
  .our-happy-clients-section .left-client-section {
    padding: 90px 80px 110px;
  }
}
/* scroll section  */

.custom-cursor {
  display: none;
  cursor: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
  background-color: rgba(255, 255, 255, 0.6);
  color: black;
  text-align: center;
  line-height: 5rem;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  transition: transform 0.1s;
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.custom-cursor::after {
  content: 'VIEW';
  font-size: 0.7rem;
}

.normal {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
}

.panel {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.5em;
  text-align: left;
  color: white;
  position: relative;
  box-sizing: border-box;
  z-index: -1;
  overflow-y: hidden;
  overflow-x: hidden;
}

.panel-left {
  width: 30vw;
  height: 100%;
  padding-top: 8rem;
  padding-left: 5rem;
}
.panel-right {
  width: 70vw;
  height: 100%;
}
.panel-right img {
  width: 100%;
  height: 100%;
  background-position: cover;
  object-fit: cover;
}

.panel h1 {
  font-size: 1.8em;
  font-weight: 800;
  margin: 0 auto;
  text-align: left;
}

.panel p {
  font-weight: 300;
  text-align: left;
  font-size: 0.7em;
  line-height: 1.8em;
  margin: 0.3em 0 1em 0;
}
.panel.description {
  padding-bottom: 60px;
}
.panel button {
  background-color: black;
  color: white;
  font-weight: 300;
  border: none;
  font-size: 1rem;
  padding: 0.2rem 1rem;
  border-radius: 30px;
  margin-left: 2rem;
  cursor: pointer;
}
.panel-left .content {
  max-width: 22rem;
}

.orange {
  background-color: #c7a000;
}

.red {
  background-color: rgb(52, 0, 0);
}

.purple {
  background-color: #980308;
}

/* HEADINGS */
.header-section {
  padding: 0 15px;
  text-align: center;
  margin: 40vh auto 50vh;
}

@media (max-width: 1024px) {
  .panel-left .content {
    max-width: none;
    width: 100%;
  }
  .panel {
    flex-direction: column;
    height: 100%;
    width: 100%;
    text-align: center;
  }
  .panel-left {
    width: 100%;
    height: 100%;
    padding-top: 3rem;
    padding-left: 0rem;
    /* padding: 3rem 2rem; */
  }
  .panel-right {
    width: 100%;
    height: 100%;
  }
  .panel-left .content {
    max-width: none;
  }
  .panel h1 {
    text-align: center;
  }

  .panel p {
    text-align: center;
  }
  .panel button {
    margin-left: 0rem;
  }
}

@media (max-width: 600px) {
  .panel-left {
    padding-top: 3rem;
    padding-left: 1.5rem;
    padding-bottom: 3rem;
    padding-right: 1.5rem;
  }
  .panel {
    height: 100%;
    width: 100%;
  }
  .panel h1 {
    font-size: 1.3em;
  }
  .panel p {
    font-size: 0.6em;
  }
}

/* SCROLL DOWN */
.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 0);
  color: black;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 16px;
  overflow: visible;
}

/* our happy clients section end */

.section-intro {
  text-transform: uppercase;
  text-align: center;
}

.section-title {
  color: var(--bisstek-color-primary);
  font-size: 14px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 25px;
  position: relative;
}

.section-title::before {
  content: '';
  display: block;
  width: 37px;
  height: 10px;
  position: absolute;
  top: 4%;
  left: -50%;
  transform: translateY(50%);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    270deg,
    rgba(155, 24, 29, 0.4) 0%,
    transparent 100%
  );
  transition: all 0.3s ease-in-out;
  animation: fadeIn 1s ease forward;
}

.section-title::after {
  content: '';
  display: block;
  width: 37px;
  height: 10px;
  position: absolute;
  top: 48%;
  right: -50%;
  transform: translateY(-50%);
  transition: all 0.3s ease-in-out;
  background: linear-gradient(
    90deg,
    rgba(155, 24, 29, 0.4) 0%,
    transparent 100%
  );
  transition: all 0.3s ease-in-out;
  animation: fadeIn 1s ease forward;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.section-heading {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 576px) {
  .section-heading {
    font-size: 32px;
  }
}

.section-paragraph {
  width: 100%;
  margin-bottom: 40px;
  line-height: 28px;
  font-size: 22px;
  font-weight: 400;
  mix-blend-mode: exclusion;
}

.testimonal .testimonal-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  animation: fadeInUp 1s forwards;
  background-color: #02050a;
}

@media (max-width: 1100px) {
  .testimonal .testimonal-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    align-items: center;
    gap: 20px;
  }
}

.testimonal .testimonal-card {
  position: relative;
  margin-top: 120px;
}

.testimonal .image-container img {
  border-radius: 50%;
  border: 10px solid #02050a;
  border-radius: 50%;
  position: absolute;
  top: -90px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
}

.testimonal .card-main {
  background-color: var(--bisstek-background-primary);
  padding: 150px 40px 40px 40px;
  position: relative;
  text-align: center;
  min-height: 450px;
}

.testimonal .card-main h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.testimonal .card-main .card-title p {
  color: var(--bisstek-color-primary);
  font-size: 12px;
  text-transform: uppercase;
  display: block;
  margin-top: 15px;
}

.testimonal .card-desc {
  margin-top: 40px;
  max-width: 265px;
  margin: 0 auto;
  color: var(--bisstek-text-primary);
}

.team-section {
  padding: 130px 16px;
}

@media (max-width: 576px) {
  .team-section {
    padding: 80px 0;
  }
}

.why-choose-us {
  padding: 130px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 576px) {
  .why-choose-us {
    padding: 80px 0;
  }
}

.why-choose-us .section-title::after {
  right: -27%;
  top: 50%;
}

.why-choose-us .section-title::before {
  left: 0%;
}
.why-choose-us .section-title {
  padding-left: 8%;
}

@media (max-width: 979px) {
  .why-choose-us .section-title {
    padding-left: 12%;
  }
  .why-choose-us .section-title::after {
    right: -25%;
    top: 50%;
  }
}

@media (max-width: 1024px) {
  .why-choose-us {
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    align-items: center;
  }
  .why-choose-us .choose-img,
  .why-choose-us .choose-text {
    text-align: center;
  }
}

.team-member-content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  justify-content: center;
}

@media (max-width: 1415px) {
  .team-member-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
  }
}

.why-choose-us .section-heading {
  padding-bottom: 40px;
}

.team-member-content .team-img {
  position: relative;
}

.team-member-content .team-img img {
  max-width: 100%;
  height: auto;
}

.our-team .heading {
  font-size: 250px;
  line-height: 250px;
  text-align: center;
  white-space: nowrap;
  word-break: keep-all;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    rgba(255, 255, 255, 0.1),
    rgba(56, 152, 236, 0)
  );
  background-clip: text;
  margin-bottom: -80px;
  font-weight: 600;
  max-width: 100%;
}

@media (max-width: 1300px) {
  .our-team .heading {
    font-size: 150px;
  }
}

@media (max-width: 979px) {
  .our-team .heading {
    font-size: 120px;
  }
}

@media (max-width: 576px) {
  .our-team .heading {
    font-size: 80px;
  }
}

.our-team .section-heading {
  text-align: center;
}

.our-team-images {
  padding-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.our-team-images img {
  border-radius: 500px;
  cursor: pointer;
}

.image1,
.image2,
.image3,
.image4 {
  position: relative;
}

@media (max-width: 1390px) {
  .our-team-images {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }
}

.our-team .circle {
  width: 200px;
  height: 200px;
  z-index: 5;
  background-color: var(--bisstek-color-primary);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  position: absolute;
  visibility: hidden;
  opacity: 0;
  top: auto;
  bottom: -5%;
  left: 20%;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.our-team img:hover + .circle {
  opacity: 1;
  visibility: visible;
  animation: popup 0.3s ease;
}

@keyframes popup {
  from {
    transform: scale(0);
  }
  top {
    transform: scale(1);
  }
}

.progress-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
  justify-content: space-between;
  padding: 130px 0;
}

@media (max-width: 576px) {
  .progress-bar {
    padding: 80px 0;
  }
}

@media (max-width: 979px) {
  .progress-bar {
    grid-template-columns: repeat(1, 1fr);
  }
}

.progress-section {
  width: 100%;
  max-width: 600px;
  border-radius: 15px;
  padding: 1rem 2rem;
  margin: 0 auto;
}

.task-progress {
  margin: 1.5rem 0;
}

.task-progress p {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

span {
  color: var(---white);
}

.progress {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  border: none;
  border-radius: 10px;
  height: 10px;
}

.progress::-webkit-progress-bar,
.progress::-webkit-progress-value {
  border-radius: 10px;
}

.progress::-moz-progress-bar {
  border-radius: 10px;
}

.progress1::-webkit-progress-value {
  background: var(--bisstek-color-primary);
}

.progress2::-webkit-progress-value {
  background: #ffb453;
}

.progress3::-webkit-progress-value {
  background: #3fff76;
}

.team-member-content .team-overlay {
  display: none;
  position: absolute;
  top: 0;
  height: 98%;
  width: 100%;
  background: linear-gradient(
    0deg,
    rgb(155, 24, 29, 0.4) 30%,
    rgba(63, 90, 243, 0.1) 70%
  );
  z-index: 99;
  transition: all 0.3s ease-in-out;
}

.team-member-content .team-card:hover .team-overlay {
  display: block;
  transition-delay: 300ms;
}

.team-member-content .social-icons {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 0 15%;
  position: absolute;
  bottom: 20px;
}

.team-member-content .team-intro h3 {
  transition: all 0.3 ease;
  line-height: 1.2;
  margin-top: 16px;
  font-weight: 700;
}

.team-member-content .team-intro p {
  transition: all 0.3 ease;
  color: var(--bisstek-text-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 40px;
}

.hero-section {
  position: relative;
}

.hero-section .hero-bg {
  position: absolute;
  top: 0;
}

.hero-section .hero-bg img {
  width: 100%;
}

.hero-section .hero-bg-1 {
  position: absolute;
  bottom: 0;
}

.hero-section .title {
  font-size: 135px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 30px;
  display: inline-block;
  position: relative;
  z-index: 1;
}

.hero-section .title::before {
  background: linear-gradient(270deg, #9b181d 0%, transparent 100%);
  content: '';
  width: 100%;
  height: 76%;
  position: absolute;
  top: 15%;
  right: 0;
  z-index: -1;
  opacity: 0.95;
}

.hero-section .hero-section-image {
  position: absolute;
  bottom: 0;
  right: 0;
}

.hero-container {
  padding: 150px 0px 300px 0;
  position: relative;
  padding-left: 200px;
}

.hero-section .hero-images-bg img:nth-child(1) {
  position: absolute;
  top: 30%;
}
.hero-section .hero-images-bg img:nth-child(2) {
  position: absolute;
  top: 50%;
  left: 15%;
}
.hero-section .hero-images-bg img:nth-child(3) {
  position: absolute;
  top: 73%;
  left: 3%;
}

@media (max-width: 1399px) {
  .hero-section .hero-images-bg img:nth-child(2) {
    left: 18%;
  }
  .hero-section .hero-images-bg img:nth-child(3) {
    left: 3%;
  }
  .hero-section .hero-images-bg {
    display: none;
  }
}

@media only screen and (max-width: 992px) {
  .hero-container {
    padding: 100px 0 100px 40px;
  }
  .hero-section .hero-section-image {
    display: none;
  }
}

@media only screen and (max-width: 767px) {
  .hero-content {
    padding-left: 0;
  }
}

.hero-section .hero-btn {
  background-image: url(../img/hero/hero-btn-bg.png);
  color: var(--common-white);
  font-size: 60px;
  height: 180px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-btn {
    height: 120px;
    width: 120px;
    font-size: 40px;
  }
}
.hero-section .hero-btn img {
  transform: rotate(-45deg) scale(1);
  transition: all 0.3s ease-in-out;
}
.hero-section .hero-btn:before {
  background-color: var(--bisstek-color-primary);
  mix-blend-mode: multiply;
  content: '';
  width: 170px;
  height: 170px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0.9;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 767px) {
  .hero-section .hero-btn:before {
    height: 110px;
    width: 110px;
  }
}
.hero-section .hero-btn:hover:before {
  width: 100%;
  height: 100%;
}
.hero-section .hero-btn:hover img {
  transform: rotate(-45deg) scale(1.05);
}

.hero-container h4 {
  font-size: 50px;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero-container h3 {
  font-size: 75px;
  font-weight: 700;
  margin-bottom: 40px;
}

@media (max-width: 979px) {
  .hero-container h4 {
    font-size: 40px;
  }

  .hero-container h3 {
    font-size: 55px;
  }
  .hero-section .title {
    font-size: 75px;
  }
}

@media (max-width: 979px) {
  .hero-container h4 {
    font-size: 20px;
  }

  .hero-container h3 {
    font-size: 35px;
  }
  .hero-section .title {
    font-size: 50px;
  }
}

.qwery-section {
  position: relative;
  overflow: hidden;
  background-image: url(../img/hero/main-bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  height: 100%;
}

.qwery-section {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .qwery-section {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .qwery-section {
    padding: 60px 0;
  }
}

.qwery-section .qwery-text-wrap {
  text-align: center;
}

.qwery-section .qwery-text-wrap h1 {
  font-size: 70px;
  line-height: 1.1em;
  color: var(--white);
}
.qwery-text-wrap h1 .text-gradient {
  background: -webkit-linear-gradient(
    120deg,
    #fc8a3d 0%,
    #eb314d 50%,
    #c31480 100%
  );
  background: -webkit-linear-gradient(
    330deg,
    #fc8a3d 0%,
    #eb314d 50%,
    #c31480 100%
  );
  background: -o-linear-gradient(330deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  background: linear-gradient(120deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.qwery-text-wrap .underline::before {
  content: '';
  display: block;
  position: absolute;
  left: -5%;
  top: 105%;
  width: 100%;
  height: 100%;
  background-image: url('../img/hero/demos-underline.webp');
  background-repeat: no-repeat;
  background-position: top center;
}

.qwery-section .qwery-text-wrap h6 {
  color: var(--white);
  margin-top: 26px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  line-height: -1.1em;
}

@media (max-width: 979px) {
  .qwery-section .qwery-text-wrap h1 {
    font-size: 60px;
  }
}

@media (max-width: 979px) {
  .qwery-section .qwery-text-wrap h1 {
    font-size: 45px;
  }
  .qwery-section .qwery-text-wrap h6 {
    font-size: 14px;
  }
  .qwery-images {
    display: none;
  }
}

.qwery-images {
  position: relative;
  margin-top: 80px;
  min-height: 450px;
}

.qwery-images img:nth-child(1) {
  position: absolute;
  width: 192px;
  left: 8%;
}

.qwery-images img:nth-child(2) {
  position: absolute;
  width: 80px;
  top: 22%;
  left: 18%;
  z-index: 2;
}

.qwery-images img:nth-child(3) {
  position: absolute;
  width: 345px;
  top: 28%;
  left: -4%;
}

.qwery-images img:nth-child(4) {
  z-index: 1;
  position: absolute;
  width: 160px;
  top: 72%;
  left: 25%;
}

.qwery-images img:nth-child(5) {
  position: absolute;
  width: 450px;
  top: 32%;
  left: 31%;
}

.qwery-images img:nth-child(6) {
  position: absolute;
  width: 160px;
  top: 38%;
  left: 54%;
}

.qwery-images img:nth-child(7) {
  position: absolute;
  width: 180px;
  top: 67%;
  left: 63%;
}

.qwery-images img:nth-child(8) {
  position: absolute;
  width: 345px;
  top: 12%;
  left: 67%;
}

.qwery-images img:nth-child(9) {
  position: absolute;
  width: 80px;
  top: 4%;
  left: 92%;
}

.qwery-images img:nth-child(10) {
  position: absolute;
  width: 345px;
  top: 32%;
  left: 81%;
}
.scroll-image {
  padding: 130px 0;
  min-height: 100vh;
  position: relative;
}

@media (max-width: 979px) {
  .scroll-image {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .scroll-image {
    padding: 60px 0;
  }
}

.scroll-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

@media (max-width: 979px) {
  .scroll-container {
    grid-template-columns: repeat(1, 1fr);
  }
}

.scroll-container-image {
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.work-process {
  padding: 130px 0;
  background-color: #02050a;
}

@media (max-width: 979px) {
  .work-process {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .work-process {
    padding: 60px 0;
  }
}

.work-process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 80px;
}

@media (max-width: 1024px) {
  .work-process-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
  .process-card .card-image {
    margin: 40px auto !important;
  }
}

.process-card .card-image {
  background-color: var(--bisstek-background-primary);
  height: 160px;
  width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  margin-bottom: 45px;
}

.process-card .card-image::before {
  background-color: transparent;
  content: '';
  height: 140px;
  width: 140px;
  position: absolute;
  top: 0;
  left: -20px;
  border: 1px solid var(--bisstek-color-primary);
  border-radius: 50%;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.process-card .card-image:hover::before {
  left: 5px;
  top: 5px;
}

.process-card .card-image:hover img {
  animation-name: wobble-vertical;
  animation-duration: 1s;
}

@keyframes wobble-vertical {
  16.65% {
    transform: translateY(8px);
  }
  33.3% {
    transform: translateY(-6px);
  }
  49.95% {
    transform: translateY(4px);
  }
  66.6% {
    transform: translateY(-2px);
  }
  83.25% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(0);
  }
}

.work-process .card-title h3 {
  color: var(--white);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
}

.work-process .card-title {
  color: var(--bisstek-text-primary);
  font-size: 16px;
  margin-bottom: 15px;
  line-height: 28px;
}

.work-process .agency-img img {
  width: 100%;
  margin-top: 30px;
}

.odometer-section {
  padding: 0px 0 130px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.odometer-inside {
  display: flex;
}

@media (max-width: 979px) {
  .odometer-section {
    padding: 0px 0 80px 0;
  }
}

@media (max-width: 576px) {
  .odometer-section {
    padding: 0px 0 60px 0;
  }
}

.odometer-section .odometer-text {
  display: flex;
  align-items: center;
}

.odometer-section .odometer-text p {
  color: var(---white);
  font-size: 20px;
  margin-bottom: 0;
  margin-left: -20px;
  position: relative;
  z-index: 1;
}

@media (max-width: 1050px) {
  .odometer-section {
    grid-template-columns: auto auto;
  }
}

@media (max-width: 992px) {
  .odometer-section .odometer-text .odometer {
    font-size: 70px;
  }
}

@media (max-width: 767px) {
  .odometer-section .odometer-text .odometer {
    font-size: 65px;
  }
  .odometer-section .odometer-text p {
    font-size: 15px;
    line-height: 1.2;
  }
  .odometer-section {
    grid-template-columns: auto;
  }
}

.odometer-section .odometer {
  color: var(--bisstek-color-primary);
  font-size: 120px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.about-us {
  background-color: var(--bisstek-background-primary);
  padding: 150px 0;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  margin-top: 120px;
  overflow-x: clip;
}

.about-us {
  width: 100%;
}

.about-us .section-title {
  padding-left: 8%;
}

.about-us .section-title::after {
  right: -23%;
  top: 54%;
}

.about-us .section-title::before {
  left: 0%;
}

.about-us .about-us-shape {
  position: absolute;
  top: 0%;
  right: 0%;
  z-index: -1;
}

.about-us .about-text-img {
  position: absolute;
  bottom: 6%;
  left: 14%;
  z-index: -1;
}

.about-us .about-us-shape img,
.about-us .about-text-img img {
  max-width: 100%;
  height: auto;
}

.about-us .about-us-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.about-us .about-us-images img {
  max-width: 100%;
  height: auto;
}

.about-us .about-us-images img:nth-child(1) {
  position: absolute;
  top: -1%;
}

.about-us .about-us-images img:nth-child(2) {
  border-right: 10px solid var(--bisstek-border-secondary);
  border-top: 10px solid var(--bisstek-border-secondary);
  position: absolute;
  top: 50%;
  left: 48%;
}

@media (max-width: 979px) {
  .about-us .section-title {
    padding-left: 20%;
  }

  .about-us .section-title::after {
    right: -25%;
    top: 54%;
  }
  .about-us .about-us-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  .about-us .about-us-images img:nth-child(1) {
    position: relative;
    top: 0%;
  }

  .about-us .about-us-images img:nth-child(2) {
    position: absolute;
    top: 75%;
    left: 12px;
  }
}

.service-provider {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .service-provider {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .service-provider {
    padding: 60px 0;
  }
}

.service-provider .team-member-content .buttons {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, 0%);
}

.service-provider .team-member-content h3 {
  color: var(--bisstek-text-primary);
  margin-top: 0px;
  font-weight: var(--sbold);
  line-height: 1.2;
  transition: all 0.3s ease-in-out 0s;
  margin-bottom: 12px;
  text-align: center;
}

.service-provider .team-card:hover h3 {
  color: var(--white);
}

.service-provider .overlay-icon {
  background-color: var(--white);
  height: 80px;
  width: 80px;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 20px;
  left: 15px;
  transition: all 0.4s ease-in-out;
  z-index: 20;
  cursor: pointer;
}

.service-provider .overlay-icon svg {
  color: var(--bisstek-color-primary);
}

.service-provider .overlay-icon:hover {
  background-color: var(--bisstek-color-primary);
}

.service-provider .overlay-icon:hover svg {
  color: var(--white);
}

.build-website {
  padding: 28% 0;
  position: relative;
}

.build-website .website-text-wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  min-height: 800px;
  justify-content: flex-end;
  z-index: 2;
}

.build-website .text-gradient {
  background: linear-gradient(-120deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.build-website .title-wrap {
  position: relative;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 100%;
  flex: 1 1 100%;
}

.build-website .title-wrap h2 {
  font-size: 48px;
  font-weight: 700;
  position: sticky;
  top: 43%;
}

.build-website .website-text-wrap p {
  font-size: 16px;
  color: var(--bisstek-text-primary);
  margin-bottom: 15px;
  margin-top: 30px;
  line-height: 40px;
}

@media (max-width: 979px) {
  .build-website .title-wrap h2 {
    font-size: 38px;
  }
}

@media (max-width: 979px) {
  .build-website .title-wrap h2 {
    font-size: 26px;
  }
}

.build-website-images img {
  max-width: 100%;
  height: auto;
}

.build-website-images img:nth-child(1) {
  position: absolute;
  top: 7%;
  opacity: 0.7;
  width: 100%;
  object-fit: cover;
}

.build-website-images img:nth-child(2) {
  position: absolute;
  top: 7%;
}

.build-website-images img:nth-child(3) {
  position: absolute;
  top: 20%;
}

.build-website-images img:nth-child(4) {
  position: absolute;
  top: 36%;
}

.build-website-images img:nth-child(5) {
  position: absolute;
  top: 70%;
}

.build-website-images img:nth-child(6) {
  position: absolute;
  top: 68%;
}

.build-website-images img:nth-child(7) {
  position: absolute;
  top: 87%;
}

.build-website-images img:nth-child(8) {
  position: absolute;
  margin-bottom: 80px;
}

@media (max-width: 576px) {
  .build-website-images {
    display: none;
  }
  .build-website .website-text-wrap {
    min-height: 0;
  }
}

@media (max-width: 1024) {
  .build-website-images {
    display: none;
  }
}
.faq {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .faq {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .faq {
    padding: 60px 0;
  }
}

.faq .section-title {
  padding-left: 8%;
}

.faq .section-title::after {
  right: -27%;
  top: 50%;
}

.faq .section-title::before {
  left: 0%;
}

.faq .content-image img {
  max-width: 100%;
  height: auto;
}

.faq .section-heading {
  margin: 20px 0 40px 0;
}

.faq .faq-content {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

@media (max-width: 979px) {
  .faq .section-title {
    padding-left: 10%;
  }
  .faq .faq-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
  .faq .section-title::after {
    right: -25%;
    top: 50%;
  }
}

/* Core styles/functionality */
.tab input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.tab input[type='checkbox']:checked ~ .tab__content {
  max-height: 1000px;
  transition: all 2s ease-in-out;
}

.tab__content {
  color: var(--bisstek-text-primary);
  font-size: 16px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}

.tab__content p {
  padding: 1rem;
}

.faq-section .label_icon {
  min-width: 80px;
  height: 80px;
  display: grid;
  font-size: 30px;
  align-content: center;
  text-align: center;
  justify-content: center;
  transition: all 0.35s;
  transform: rotate(0deg);
  background: var(--bisstek-color-primary);
  transition: tranform 0.3s ease;
}

.faq-section .tab input[type='checkbox']:checked + .tab__label .label_icon img {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.faq-section
  .tab
  input[type='checkbox']:not(:checked)
  ~ .tab__label
  .label_icon
  img {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.tab input:checked ~ .tab__content {
  max-height: 100%;
}

.tab input {
  width: 90%;
}

/* Visual styles */
.accordion {
  color: var(--white);
  border: 2px solid var(--bisstek-border-primary);
  border-radius: 0.5rem;
  overflow: hidden;
}
.tab__label,
.tab__close {
  display: flex;
  color: var(--white);
  background: transparent;
  cursor: pointer;
}

.tab__label {
  justify-content: space-between;
  padding: 1rem;
  font-size: 24px;
  align-items: center;
}

.tab__label::after {
  content: '\276F';
  width: 40px;
  height: 40px;
  display: grid;
  align-content: center;
  text-align: center;
  justify-content: center;
  transform: rotate(90deg);
  transition: all 0.35s;
  background: var(--bisstek-color-primary);
  border-radius: 100px;
}

.tab input:checked + .tab__label::after {
  transform: rotate(270deg);
}

.tab__close {
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

.accordion--radio {
  --theme: var(--bisstek-color-primary);
  max-width: 100%;
}

/* Arrow animation */
.tab input:not(:checked) + .tab__label:hover::after {
  animation: bounce 0.5s infinite;
}
@keyframes bounce {
  25% {
    transform: rotate(90deg) translate(0.25rem);
  }
  75% {
    transform: rotate(90deg) translate(-0.25rem);
  }
}

.client-feedback {
  padding: 60px 20px;
  overflow-x: hidden;
}

@media (max-width: 979px) {
  .client-feedback {
    padding: 40px 16px;
  }
}

@media (max-width: 576px) {
  .client-feedback {
    padding: 30px 16px;
  }
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: calc(100% / 3);
  cursor: pointer;
}

.client-feedback .swiper-container {
  position: relative;
}

.client-feedback .swiper-pagination {
  bottom: -10% !important;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  border: 4px var(--bisstek-color-primary) solid !important;
  width: 20px;
  height: 20px;
}

.swiper-pagination-bullet-active {
  background: var(--bisstek-color-primary) !important;
}

.client-feedback .testimonal-cards {
  display: flex !important;
  overflow-x: scroll;
  white-space: wrap;
  flex-wrap: nowrap;
}

.client-feedback .testimonal-card {
  min-width: 420px;
}

.project {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .project {
    padding: 80px 0;
  }
}

.project .section-intro {
  text-align: left;
}

@media (max-width: 576px) {
  .project {
    padding: 60px 0;
  }
}

.project .section-title {
  padding-left: 4%;
}

.project .section-title::after {
  right: -23%;
  top: 50%;
}

.project .content-image img {
  max-width: 100%;
  height: auto;
}

.project .section-title::before {
  left: 0%;
}

.project .project-desc {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.project .section-heading {
  max-width: 775px;
}

.project .tab__label::after {
  display: none;
}

.project .accordion {
  border-top: 2px solid var(--bisstek-border-primary);
  border-right: none;
  border-left: none;
  border-bottom: none;
  border-radius: 0;
}

.project .accordion:last-child {
  border-top: 2px solid var(--bisstek-border-primary);
  border-bottom: 2px solid var(--bisstek-border-primary);
  border-right: none;
  border-left: none;
}

.project .accordion {
  margin-top: 25px;
}

.project .tab__content p {
  padding: 0;
  margin: 16px 0 30px 0;
}

.project .tab .p-head {
  color: var(--bisstek-color-primary);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
  display: block;
}

.project .tab__label,
.tab__close {
  display: block;
}

.project .project-content {
  padding: 16px;
  position: relative;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: start;
}

@media (max-width: 1024px) {
  .project .project-content {
    flex-wrap: wrap;
  }
}

.project .tab-content {
  transition: all 1s ease;
}

.multiple-design {
  padding: 130px 20px;
  background-color: #02050a;
}

@media (max-width: 979px) {
  .multiple-design {
    padding: 80px 16px;
  }
  .multiple-design {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .multiple-design {
    padding: 60px 16px;
  }
}

.multiple-design .text-gradient {
  font-size: 60px;
  letter-spacing: -2.8px;
  background: linear-gradient(-120deg, #fc8a3d 0%, #eb314d 50%, #c31480 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.multiple-design .text-container {
  text-align: center;
  margin: 0 auto;
  display: grid;
  justify-content: center;
}

.multiple-design .text-container h3 {
  font-size: 40px;
  text-transform: uppercase;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 979px) {
  .multiple-design .text-container h3 {
    font-size: 30px;
  }

  .multiple-design .text-gradient {
    font-size: 50px;
  }
}

.multiple-design .item-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 30px 0 20px 0;
}

.multiple-design .item-checks {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 576px) {
  .multiple-design .item-checks {
    display: flex;
    justify-content: left;
    margin: 8px 0;
  }
  .multiple-design .item-container {
    flex-wrap: wrap;
    justify-content: center;
  }
}

.multiple-design .item-checks p {
  color: var(--bisstek-text-primary);
}

.multiple-design .input {
  max-width: 375px;
  margin: 0 auto;
  justify-content: center;
}

.multiple-design .item-checks::before {
  content: '\2713';
  font-size: 10px;
  width: 21px;
  height: 21px;
  line-height: 22px;
  border-radius: 100%;
  margin-right: 7px;
  color: #ffffff;
  background: #72bf40;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-section {
  overflow: hidden;
  padding: 120px 0;
}

@media (max-width: 979px) {
  .blog-section {
    padding: 80px 0;
  }
  .project-desc {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .blog-section {
    padding: 60px 0;
  }
}

.blog-section .blog-card {
  background-color: var(--bisstek-background-primary);
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  gap: 20px;
  padding: 30px;
  border: 1px solid var(--bisstek-background-primary);
  transition: all 0.3s ease-in-out;
  cursor: pointer;
  margin-top: 50px;
}

.blog-section .swiper-container-2 {
  position: relative;
}

.blog-section .swiper-pagination {
  bottom: -10% !important;
}

@media (max-width: 979px) {
  .blog-section .blog-card {
    display: block;
    margin: 0 auto;
    margin-top: 50px;
  }
}

.blog-section .blog-card:hover {
  border: 1px solid var(--bisstek-color-primary);
}

.blog-section .blog-card img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.blog-section .blog-card:hover img {
  transform: scale(1.01);
}

.blog-section .blog-info {
  display: flex;
  gap: 10px;
  justify-content: start;
  align-items: center;
  color: var(--bisstek-text-primary);
}

.blog-section .blog-card .blog-title h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 30px;
  text-transform: capitalize;
}

.recent-project {
  padding: 130px 20px;
  background-color: #02050a;
}
.recent-project .projects {
  white-space: nowrap;
  overflow-x: scroll;
  scrollbar-width: none;
}
.recent-project .projects::-webkit-scrollbar {
  display: none !important;
}

@media (max-width: 797px) {
  .recent-project {
    padding: 80px 16px;
  }
}

.recent-project .projects {
  white-space: nowrap;
  overflow-x: scroll;
  gap: 60px;
}

.projects::-webkit-scrollbar {
  display: none;
}

.recent-project,
.section-heading {
  padding-bottom: 40px;
}

.projects .swiper-slide {
  flex-shrink: 1 !important;
}

.recent-project .projects .projects-card {
  width: 576px;
  height: 432px;
  display: inline-block;
  position: relative;
  margin-right: 30px;
}

.recent-project .projects .projects-card img {
  border-radius: 12px;
  width: 576px;
  height: 432px;
}

.projects-card .overlay {
  position: absolute;
  bottom: 0%;
  left: 5%;
}
.recent-projects-section {
  padding: 20px;
  overflow: hidden;
  background-color: #02050a;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.section-title {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
}

.projects-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding-bottom: 10px;
  height: auto;
  flex-wrap: wrap;
}

.projects-container::-webkit-scrollbar {
  height: 8px;
}

.projects-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

.projects-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.project-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 300px; /* Fixed width */
  height: 100%; /* Ensuring cards are of fixed height */
  position: relative;
  display: flex;
  flex-direction: column;
}

.image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}
.image-wrapper {
  max-height: 300px;
  overflow-y: auto;
  width: 100%;
}

.image-wrapper::-webkit-scrollbar {
  width: 6px;
}

.image-wrapper::-webkit-scrollbar-thumb {
  background-color: darkgrey;
  border-radius: 10px;
}

.image-wrapper::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  text-align: center;
  padding: 10px;
}

.project-name {
  font-size: 18px;
  font-weight: bold;
}

.project-details {
  font-size: 14px;
}

.sponsor {
  padding: 130px 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  justify-content: center;
  align-items: center;
}

@media (max-width: 979px) {
  .sponsor {
    padding: 80px 0;
  }
}

.sponsor-content h3 {
  margin: 0;
}

.sponsor-content {
  border-right: none;
  border: 1px solid var(--bisstek-background-primary);
  padding: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 180px;
}

@media (max-width: 576px) {
  .sponsor {
    padding: 60px 0;
    display: block;
    max-width: 0 auto;
  }
  .sponsor-content:nth-child(1) {
    width: 100%;
  }
}

#home-animated-text-1 .textbar-background,
#home-animated-text-2 .textbar-background,
#home-animated-text-3 .textbar-background {
  background: none;
}

#home-animated-text-1 .textbar-background::before {
  background-color: transparent;
}

#home-animated-text-1 ul li::after {
  background: none;
}

#home-animated-text-1 .blue-running-text {
  color: var(--bisstek-color-primary);
}

#home-animated-text-2 .textbar-background::before {
  background-color: var(--bisstek-border-primary);
}

#home-animated-text-3 .textbar-background::before {
  background-color: var(--bisstek-color-primary);
}

.filter-content {
  display: grid;
  grid-template-columns: 350px auto;
  gap: 40px;
}

@media (max-width: 767px) {
  .filter-content {
    margin-top: 30px;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.filter-content h5 {
  font-size: 32px;
  font-weight: 600;
  line-height: 1em;
  color: var(--white);
  margin-bottom: 20px;
}

.filter-content label span {
  margin-left: 5px;
}

.filter-content input {
  width: auto;
}

.filter-content .checkbox-value {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.has-icon::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../img/icons/booked.svg);
  background-color: #fc5612;
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
  display: inline-block;
  margin-right: 6px;
}

.filter-content input[type='checkbox'] {
  transform: scale(1.2);
  padding: 10px;
  cursor: pointer;
}

.multi-card {
  transition: all 0.5s ease;
  animation: moveUp 0.5s ease forwards;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.multi-card-img {
  display: flex;
  align-items: center;
  justify-content: center;
}
.multi-card-img img {
  object-fit: cover;
}

@keyframes moveUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hidden {
  transition: all 0.5s ease;
  animation: moveDown 0.5s ease forwards;
  -webkit-animation: moveDown 0.5s ease forwards;
  -moz-animation: moveDown 0.5s ease forwards;
  -ms-animation: moveDown 0.5s ease forwards;
  -o-animation: moveDown 0.5s ease forwards;
  display: none;
}
@keyframes moveDown {
  from {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(50px);
    display: none;
  }
}

.cards-section .card-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.cards-section .card-text h6 {
  font-size: 20px;
  margin-top: 0;
  font-weight: 500;
}

.cards-section .card-text p {
  color: var(--bisstek-text-primary);
  font-size: 12px;
  margin-top: 0;
  font-weight: 500;
}

.cards-section .card-imgaes img {
  max-width: 30px;
}

.checkbox-section {
  background: var(--bisstek-border-primary);
  padding: 40px 22px;
  border-radius: 8px;
  height: fit-content;
  will-change: position, transform;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 24% !important;
}

@media (max-width: 768px) {
  .checkbox-section {
    position: unset !important;
  }
  .cards-section .card-text h6 {
    font-size: 18px;
  }
  .cards-section .card-text p {
    color: var(--bisstek-text-primary);
    font-size: 10px;
  }
}

.cards-section {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0;
  align-items: start;
}

.cards-section .multi-card {
  background: var(--bisstek-border-primary);
  padding: 8px;
  border-radius: 8px;
  min-height: 270px;
}

@media screen and (max-width: 1439px) {
  .cards-section {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 1279px) {
  .cards-section {
    gap: 20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1023px) {
  .cards-section {
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-company {
  padding: 130px 20px;
}

@media (max-width: 979px) {
  .about-company {
    padding: 60px 16px 130px 16;
    margin-bottom: 100px;
  }
  .about-company {
    flex-wrap: wrap;
    gap: 40px;
  }
}

@media (max-width: 576px) {
  .about-company {
    padding: 60px 16px 130px 16px;
    margin-bottom: 100px;
  }
}

.about-company,
.about-company .company-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.company-item {
  display: grid;
  grid-template-columns: 75px auto;
  align-items: center;
}

.about-company,
.company-item {
  cursor: pointer;
}

.about-company .section-paragraph,
.about-company,
.company-items {
  margin: 30px 0;
}

.about-company .items-image img:hover {
  animation: bounceupdown 0.5s infinite;
}

@keyframes bounceupdown {
  25% {
    transform: translateY(0.25rem);
  }
  75% {
    transform: translateY(-0.25rem);
  }
}

@media (max-width: 979px) {
  .about-company {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .company-items {
    display: block !important;
  }
  .company-items,
  .company-item {
    padding-top: 20px;
  }
}

.about-company .company-images {
  position: relative;
}

.about-company .company-images img:nth-child(2) {
  border: 10px var(--bisstek-background-primary) solid;
  position: absolute;
  top: 47%;
  right: 9%;
}

.about-company .company-images img:nth-child(3) {
  left: -9%;
  position: absolute;
  top: -5%;
  z-index: -1;
}

.about-company .company-images img:nth-child(4) {
  left: -13%;
  position: absolute;
  top: -15%;
  z-index: -1;
}

@media (max-width: 979px) {
  .about-company .company-images img:nth-child(2) {
    right: 3%;
  }
}

.about-company .section-title::after {
  right: -27%;
  top: 50%;
}

.about-company .section-title::before {
  left: 0%;
}
.about-company .section-title {
  padding-left: 8%;
}

@media (max-width: 979px) {
  .about-company .section-title {
    padding-left: 12%;
  }
  .about-company .section-title::after {
    right: -25%;
    top: 50%;
  }
}

.about-work {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .about-work {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .about-work {
    padding: 60px 0;
  }
}

.about-work-intro {
  text-align: center;
}

.about-work-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 40px;
  margin: 40px 0 20px 0;
}

@media (max-width: 1205px) {
  .about-work-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 979px) {
  .about-work-cards {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
  }
}

.about-work-cards .work-card {
  padding: 40px;
  background-color: var(--bisstek-background-primary);
  min-height: 345px;
}

.about-work-cards .work-card h6 {
  color: var(--white);
  height: 40px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bisstek-color-primary);
  border-radius: 10px;
  margin-bottom: 25px;
}

.about-work-cards .work-card h3 {
  font-size: 24px;
  color: var(--white);
  font-weight: 700;
}

.about-work-cards .work-card p {
  font-size: 16px;
  color: var(--bisstek-text-primary);
  margin-bottom: 15px;
  line-height: 28px;
}

.button-tab {
  background-color: var(--bisstek-background-primary);
  color: var(--white);
  border: none;
  box-shadow: none;
  border-radius: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  padding: 12px 25px;
  margin: 20px 0;
}

@media (max-width: 979px) {
  .about-2 {
    margin-bottom: 130px;
    flex-direction: column;
  }
  .about-company {
    margin-bottom: 130px;
  }
}

.selected-button-tab {
  background-color: var(--bisstek-color-primary);
}

.content-container {
  display: flex;
  justify-content: start;
  margin-top: 20px;
}

.box {
  display: none;
  transition: all 0.3 ease;
  animation: fadeIn 0.5s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}

.box:nth-child(1) {
  display: block;
}

.content-container h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.content-container p {
  font-size: 16px;
  color: var(--bisstek-text-primary);
  margin-bottom: 15px;
  line-height: 28px;
}

.faq-section {
  padding: 130px 0;
}

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

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

.faq-section {
  display: grid;
  grid-template-columns: 65% 35%;
  justify-content: center;
  align-items: start;
  gap: 40px;
}

@media (max-width: 1210px) {
  .faq-section {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 776px) {
  .faq-section .tab__label {
    font-size: 20px;
  }
}

.faq-section .accordion {
  background-color: var(--bisstek-border-primary);
  background-color: var(--bisstek-background-primary);
  margin-top: 20px;
}

.faq-section .tab__label::after {
  content: '';
  display: none;
  width: 0px;
  height: 0px;
}

.faq-section .faq-images {
  text-align: center;
}

.faq-section .faq-image {
  position: relative;
  justify-content: center;
  display: inline-flex;
  margin-top: 20px;
}

.faq-section .image-overlay-text h4 {
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0;
}

.faq-section .image-overlay-text h4:nth-child(1) {
  position: absolute;
  top: 30px;
  left: 30px;
}

.faq-section .image-overlay-text h4:nth-child(2) {
  background-color: var(--bisstek-color-primary);
  padding: 20px 30px;
  bottom: 10px;
  border-radius: 20px 0 0 0;
  position: absolute;
  bottom: 0px;
  right: 0px;
}

.faq-section .tab__content {
  background-color: var(--bisstek-primary-theme);
  max-height: 0;
  overflow: hidden;
  transition: all 1s ease;
}

@media (max-width: 776px) {
  .faq-section .tab__label {
    font-size: 16px;
  }
}

.faq-section .tab__label {
  padding: 0 0 0 1rem;
}

.faq-section .faq-input {
  padding: 40px;
  margin-bottom: 40px;
  background-color: var(--bisstek-border-primary);
}

.faq-section .faq-input input {
  background: var(--bisstek-primary-theme);
  margin-bottom: 0;
  height: 55px;
}

.faq-section .faq-input .input {
  display: flex;
}

.faq-section button {
  background-color: var(--bisstek-color-primary);
  color: var(--white);
  width: 75px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-form {
  padding: 130px 0 40px 0px;
}

@media (max-width: 979px) {
  .contact-us-form {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .contact-us-form {
    padding: 60px 0;
  }
}

.contact-us-form h3 {
  margin: 40px 0;
  color: var(--white);
  position: relative;
}

.contact-us-form h3::before {
  background-color: var(--bisstek-color-primary);
  content: '';
  display: block;
  height: 5px;
  width: 80px;
  position: absolute;
  bottom: -8px;
  left: 0;
}

.contact-form .form-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

@media (max-width: 576px) {
  .contact-form .form-flex {
    flex-direction: column;
    gap: 0px;
  }
}

.contact-form input,
textarea {
  background: transparent;
  border: 1px var(--bisstek-border-primary) solid;
}

.latest-news {
  padding: 130px 0;
}

@media (max-width: 979px) {
  .latest-news {
    padding: 80px 0;
  }
}

@media (max-width: 576px) {
  .latest-news {
    padding: 60px 0;
  }
}

.latest-news .main-content {
  text-align: center;
}

.latest-news .news-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.news-cards .blog-card {
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  background-color: transparent;
}

@media (max-width: 1299px) {
  .latest-news .news-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 979px) {
  .latest-news .news-cards {
    grid-template-columns: repeat(1, 1fr);
  }
}

.past-projects {
  padding-bottom: 80px;
}

.past-projects .filter-content {
  display: block;
}

.past-projects .checkbox-section {
  position: relative !important;
  background-color: transparent;
}

.past-projects .checkbox-section span {
  color: var(--bisstek-text-primary);
}

.past-projects .checkbox-section ul {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

.past-projects .checkbox-section label {
  padding: 12px;
  border-radius: 8px;
  background: var(--bisstek-border-primary);
}

.past-projects .projects-card {
  padding: 40px 0;
}

.past-projects .header {
  display: flex;
  align-items: center;
  grid-column-gap: 40px;
  grid-row-gap: 40px;
  margin-top: 10rem;
}
.past-projects #diff {
  margin-top: 0.1rem;
}

.past-projects .header h2 {
  font-size: 40px;
}

@media (max-width: 1400px) {
  .past-projects .header h2 {
    font-size: 28px;
    width: -webkit-fill-available;
  }
  .past-projects .header {
    margin-top: 12rem;
  }
  .past-projects #diff {
    margin-top: 0.1rem;
  }
  .past-projects #diff2 {
    margin-top: 15rem;
  }
  .past-projects #diff4 {
    margin-top: 5rem;
  }
}
@media (max-width: 1200px) {
  .past-projects .header {
    margin-top: 14rem;
  }
  .past-projects #diff {
    margin-top: 0.1rem;
  }
  .past-projects #diff4 {
    margin-top: 2rem;
  }
  .past-projects #diff5 {
    margin-top: 7rem;
  }
}
@media (max-width: 990px) {
  .past-projects .header {
    margin-top: 26rem;
  }
  .past-projects #diff {
    margin-top: 0.1rem;
  }
  .past-projects #diff3 {
    margin-top: 16rem;
  }
  .past-projects #diff5 {
    margin-top: 16rem;
  }
}
@media (max-width: 767px) {
  .past-projects .header h2 {
    font-size: 28px;
    width: -webkit-fill-available;
  }
  .past-projects .header {
    margin-top: 4rem;
  }
  .past-projects #diff3 {
    margin-top: 3rem;
  }
  .past-projects #diff4 {
    margin-top: 1rem;
  }
  .past-projects #diff5 {
    margin-top: 1rem;
  }
}

.past-projects .header .line {
  opacity: 0.24;
  background-color: var(--bisstek-color-secondary);
  width: 100%;
  height: 2px;
}

.past-projects .sub-heading {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

.past-projects .paragraph {
  color: var(--bisstek-text-primary);
  font-size: 14px;
  padding: 20px 0;
}

.past-projects .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.past-projects .tag-background {
  background: var(--bisstek-border-primary);
  padding: 16px;
  border-radius: 8px;
}

.past-projects .content {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto 1fr;
  grid-template-columns: 1fr 0.6fr;
  grid-auto-rows: auto;
  grid-auto-columns: 1fr;
  max-height: 100vh;
  display: grid;
  margin: 40px 0;
}

.past-projects .main-img {
  grid-area: span 2 / span 1 / span 2 / span 1;
  border: 1px solid var(--bisstek-border-primary);
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
  background-color: var(--bisstek-color-primary);
}

.past-projects .main-img img {
  border-radius: 4px;
  width: 90%;
  margin-top: 5%;
  transition: transform 10s linear;
}

.past-projects .hover-div {
  display: flex;
  align-items: center;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--black);
  transition: transform 0.3s linear;
  z-index: 30;
}

.past-projects .main-img:hover .hover-div {
  display: none;
}

.past-projects .main-img:hover img {
  transform: translateY(-100%);
}

.past-projects .main-img img:not(:hover) {
  transition-duration: 0s;
  transform: translateY(0);
}

.past-projects .second-card {
  padding: 40px;
  border-radius: 8px;
  border: 1px solid var(--bisstek-border-primary);
}

.past-projects .second-card h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
  padding-bottom: 30px;
}

.past-projects button {
  height: 40px;
  font-size: 12px;
  margin-bottom: 20px;
}

.past-projects .second-img img {
  border-radius: 8px;
}

@media (max-width: 767px) {
  .past-projects .content {
    grid-template-columns: 1fr;
  }
  .past-projects .main-img {
    display: none;
    background-color: transparent;
    border: none;
  }
  .past-projects .second-img img {
    display: none;
    visibility: none;
  }
}

@media (max-width: 430px) {
  .past-projects .content {
    grid-template-columns: 1fr;
  }
  .past-projects .main-img {
    display: none;
    background-color: transparent;
    border: none;
  }
  .past-projects #diff2 {
    margin-top: 24rem;
  }
  .past-projects #diff3 {
    margin-top: 24rem;
  }
  .past-projects #diff4 {
    margin-top: 10rem;
  }
  .past-projects #diff5 {
    margin-top: 14rem;
  }
}

.cube-container {
  width: 200px;
  height: 200px;
  perspective: 800px;
  margin: 50px auto;
}

.cube {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  animation: rotate 8s infinite linear;
  padding: 2rem;
}

.face {
  position: absolute;
  width: 200px;
  height: 200px;
  color: rgb(214, 21, 21);
  font-size: 18px;
  text-align: center;
  line-height: 200px;
  background: transparent;
  opacity: 0.9;
  border: 2px solid;
  border-image: linear-gradient(
      to right,
      #ff6b6b,
      #355c7d,
      #557d35,
      #cfcf16,
      #a51f1f
    )
    1;
  box-shadow: 0 0 100px rgba(245, 8, 8, 0.8);
}

.front {
  transform: translateZ(100px);
}

.back {
  transform: rotateY(180deg) translateZ(100px);
}

.right {
  transform: rotateY(90deg) translateZ(100px);
}

.left {
  transform: rotateY(-90deg) translateZ(100px);
}

.top {
  transform: rotateX(90deg) translateZ(100px);
}

.bottom {
  transform: rotateX(-90deg) translateZ(100px);
}

.cube-container:hover .cube {
  animation-play-state: paused;
}

@keyframes rotate {
  0% {
    transform: rotateX(0) rotateY(0) rotateZ(0);
  }

  100% {
    transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg);
  }
}
