:root {
  --hero-text-light: #fff;
  --hero-text-dark: #001f3f;
  --tile-icon-bg-light: #001f3f;
  --tile-icon-color-light: #fff;
  --tile-icon-bg-dark: #fff;
  --tile-icon-color-dark: #001f3f;
  --tile-link-color-light: #001f3f;
  --tile-link-color-dark: #fff;
  --pricing-bg-light: whitesmoke;
  --pricing-bg-dark: #2c313c;
  --faq-bg: #303a52;
}

#ff5959 .hero_text {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 32px;
  width: 100%;
  border-radius: 3px;
}

.dropdown svg {
  color: var(--bs-body-color);
}

@media (min-width: 992px) {
  .hero_text {
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 32px;
    width: fit-content;
    border-radius: 3px;
  }
}

.header__progress-bar {
  height: 4px;
  width: 0%;
  background: #546de5;
  background: linear-gradient( 139deg, rgba(84, 109, 229, 1) 62%, rgba(252, 92, 101, 0.39) 100% );
  transition: width 0.1s linear;
  /*position: fixed;*/
  /*top: 0;*/
  left: 0;
  /*z-index: 9999;*/
}

[data-bs-theme="dark"] .hero_text {
  color: var(--hero-text-light);
  background-color: #2d3436;
}

[data-bs-theme="light"] .hero_text {
  color: var(--hero-text-light);
  background-color: var(--hero-text-dark);
}

.homepage__list {
  display: flex;
  flex-direction: column;
}

@media (min-width: 992px) {
  .homepage__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

.homepage__list li {
  font-family: "Bai Jamjuree", sans-serif;
}

.arturlewandowiczcom {
  writing-mode: sideways-lr;
  /*writing-mode: vertical-rl;*/
  text-orientation: mixed;
  border-radius: 15px;
  /*padding: 2rem 1rem;*/
  font-size: 56px;
  font-weight: 900;
  font-family: "Bai Jamjuree", sans-serif;
  z-index: 1;
  display: flex !important;
  align-items: center;
  align-content: stretch;
  justify-content: center;
  margin: 0 100px 0 0;
}

.dots-svg {
  left: -32%;
  top: -250px;
  position: relative;
  z-index: -1;
}

.ceo-lol {
  border-top-left-radius: 50px;
  border-top-right-radius: 10px;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 10px;
}

[data-bs-theme="dark"] .ceo-lol {
  filter: grayscale(0.7);
}

.avatar {
  border-radius: 50%;
}

.avatar-footer {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  object-fit: contain;
}

.lang__code {
  color: #2ed573;
}

.ceo-overlay {
  position: relative;
  background-color: var(--bs-body-bg);
  border-radius: 15px;
  padding: 1rem 2rem;
  left: -32%;
  top: -150px;
  /*width: fit-content;*/
  display: flex;
}

[data-bs-theme="dark"] .rate-review {
  color: var(--link-color-dark);
}

[data-bs-theme="light"] .rate-review {
  color: var(--link-color);
}

/* KAFELKI */

.tile-offer-wrapper {
  /*padding: 3rem !important;*/
  border-radius: 8px;
  height: 100%;
}

.tile-body-wrapper {
  padding: 3rem !important;
  border-radius: 8px;
  height: 100%;
  min-height: 325px;
}

.tile-body-wrapper a {
  font-family: "Bai Jamjuree", sans-serif;
}

[data-bs-theme="dark"] .tile-body-wrapper a {
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--tile-link-color-dark);
}

[data-bs-theme="light"] .tile-body-wrapper a {
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--tile-link-color-light);
}

.tile-icon-wrapper {
  width: fit-content;
  position: relative;
  padding: 1.5rem;
  border-radius: 5px;
  top: 40px;
  left: 50px;
  font-size: 2rem;
  display: grid;
  place-items: center;
}

[data-bs-theme="dark"] .tile {
}

[data-bs-theme="light"] .tile {
}

[data-bs-theme="dark"] .tile-icon-wrapper {
  background-color: #2c313c;
  border-radius: 50%;
  border: 2px solid;
}

[data-bs-theme="dark"] .tile-body-wrapper {
  background-color: whitesmoke;
}

[data-bs-theme="dark"] .tile-body-wrapper {
  background-color: #2c313c;
}

[data-bs-theme="light"] .tile-icon-wrapper {
  background-color: var(--tile-icon-bg-light);
  color: var(--tile-icon-color-light);
}

[data-bs-theme="light"] .tile-body-wrapper {
  background-color: whitesmoke;
}

/* PRICING CARDS */

@media (min-width: 992px) {
  [data-bs-theme="light"] .pricing-row {
    position: relative;
    overflow: hidden;
    width: 100%;
    /*padding: 9.6rem 5rem;*/
    background-image: linear-gradient( to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 15%, rgba(255, 255, 255, 0) 85%, rgba(255, 255, 255, 1) 100% ), url("../../assets/img//testimonial-background.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    animation: bgMove 8s ease-in-out infinite alternate;
  }
}

@keyframes bgMove {
  from {
    background-position: 30% center;
  }
  to {
    background-position: 70% center;
  }
}

.pricing__wrapper {
  border: 1px solid var(--bs-border-color) !important;
  border-radius: 15px;
}

[data-bs-theme="dark"] .pricing__wrapper {
  background-color: var(--pricing-bg-dark);
}

[data-bs-theme="light"] .pricing__wrapper {
  background-color: var(--pricing-bg-light);
}

.pricing__badge-top, .pricing__badge {
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--bs-body-color);
  top: 15px;
  position: relative;
  padding: 5px 15px;
  border-radius: 10px;
  border: 1px solid var(--bs-border-color);
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 1px;
}

[data-bs-theme="dark"] .pricing__badge {
  background-color: var(--bg-dark);
}

[data-bs-theme="light"] .pricing__badge {
  background-color: var(--bg-light);
}

[data-bs-theme="dark"] .pricing__badge-top {
  background-color: #2ed573;
  color: #000;
}

[data-bs-theme="light"] .pricing__badge-top {
  background-color: var(--slick-dot-active);
  color: #fff;
}

.pricing__heading {
  font-size: 1.5rem;
  text-transform: uppercase;
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: bold;
}

.pricing__price {
  font-family: "Bai Jamjuree", sans-serif;
  font-weight: bold;
  font-size: 32px;
}

[data-bs-theme="dark"] .pricing__list-check {
  color: rgb(98, 209, 247);
}

[data-bs-theme="light"] .pricing__list-check {
  color: blue;
}

[data-bs-theme="dark"] .pricing a {
  font-family: "Bai Jamjuree", sans-serif;
  color: rgb(98, 209, 247);
}

[data-bs-theme="light"] .pricing a {
  font-family: "Bai Jamjuree", sans-serif;
  color: blue;
}

/* PORTFOLIO */

/* .homepage__blog-wrapper {
  position: relative;
  background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] .homepage__blog-wrapper::before {
  background-color: var(--pricing-bg-dark);
}

[data-bs-theme="light"] .homepage__blog-wrapper::before {
  background-color: whitesmoke;
}

.homepage__blog-wrapper::before {
  content: '';
  position: absolute;
  top: -19px;
  left: 0;
  width: 100%;
  height: 30px;
  z-index: 1;

  clip-path: polygon( 0 100%, 10% 0%, 20% 100%, 30% 0%, 40% 100%, 50% 0%, 60% 100%, 70% 0%, 80% 100%, 90% 0%, 100% 100% );
}

@media (min-width: 992px) {
  .homepage__blog-wrapper::before {

    clip-path: polygon( 0 100%, 2% 0%, 4% 100%, 6% 0%, 8% 100%, 10% 0%, 12% 100%, 14% 0%, 16% 100%, 18% 0%, 20% 100%, 22% 0%, 24% 100%, 26% 0%, 28% 100%, 30% 0%, 32% 100%, 34% 0%, 36% 100%, 38% 0%, 40% 100%, 42% 0%, 44% 100%, 46% 0%, 48% 100%, 50% 0%, 52% 100%, 54% 0%, 56% 100%, 58% 0%, 60% 100%, 62% 0%, 64% 100%, 66% 0%, 68% 100%, 70% 0%, 72% 100%, 74% 0%, 76% 100%, 78% 0%, 80% 100%, 82% 0%, 84% 100%, 86% 0%, 88% 100%, 90% 0%, 92% 100%, 94% 0%, 96% 100%, 98% 0%, 100% 100% );
  }
} */

/* Przykład stylizacji zawartości portfolio */

.portfolio-content {
  padding: 20px;
}

[data-bs-theme="dark"] #portfolio {
  background-color: var(--pricing-bg-dark);
  /*corner-shape: bevel;*/
  /*border-bottom-right-radius: 100% 50px;*/
  /*border-top-left-radius: 100% 50px;*/
}

[data-bs-theme="light"] #portfolio {
  background-color: whitesmoke;
  /*corner-shape: bevel;*/
  /*border-bottom-right-radius: 100% 50px;*/
  /*border-top-left-radius: 100% 50px;*/
}

[data-bs-theme="dark"] .portfolio__card-text {
  color: #ccc;
}

[data-bs-theme="light"] .portfolio__card-text {
  color: var(--hero-text-dark);
}

[data-bs-theme="light"] .portfolio__card-link {
  color: var(--hero-text-dark);
  font-size: 12px;
}

[data-bs-theme="dark"] .portfolio__card-link {
  color: var(--hero-text-light);
  font-size: 12px;
}

[data-bs-theme="light"] .portfolio__card-title {
  color: var(--hero-text-dark);
}

[data-bs-theme="dark"] .portfolio__card-title {
  color: var(--hero-text-light);
}

/* BLOG CARDS */

[data-bs-theme="dark"] #blog-posts {
  background-color: var(--faq-bg);
}

[data-bs-theme="dark"] #blog-posts:has(.homepage__blog-wrapper) {
  background-color: var(--bs-body-bg) !important;
}

[data-bs-theme="light"] #blog-posts {
  background-color: whitesmoke;
}

.blog__card-link {
  color: var(--bs-body-color) !important;
  text-decoration: 2px transparent;
  transition: 0.2s all ease-in-out;
}

[data-bs-theme="light"] .blog__card-link:hover h3 {
  color: var(--bs-body-color) !important;
  text-decoration: underline solid var(--bs-body-color) 1px;
}

[data-bs-theme="dark"] .blog__card-link:hover h3 {
  color: var(--bs-body-color) !important;
  text-decoration: underline solid var(--bs-body-color) 1px;
}

html[lang="en"] .js-link-blog a {
  text-decoration: line-through !important;
  opacity: 0.3;
}

.blog__card {
  border-radius: 15px;
  background-color: var(--bs-body-bg);
  border: 1px solid var(--bs-border-color);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

/* [data-bs-theme="dark"] .blog__card {
  position: relative;
  overflow: hidden;
}

[data-bs-theme="dark"] .blog__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

[data-bs-theme="dark"] .blog__card:hover::before {
  opacity: 1;
}

[data-bs-theme="dark"] .blog__card * {
  position: relative;
  z-index: 2;
} */

[data-bs-theme="dark"] .blog__card:hover {
  background: #212529;
  background: linear-gradient( 139deg, rgba(33, 37, 41, 1) 62%, rgba(0, 0, 0, 0.39) 100% );
  /*background: url("../../assets/img/g85ffcac6bb5d6b89933fb31490af6144a753e2a4bf85a2af54ab0e1c278fe9410b7e50452b7d5b80abbf2522d616c1db99726150394d1e46610536065a3492fc_640.jpg") center / cover no-repeat;*/
  /*background: #212529;*/
  /*background: linear-gradient(139deg, rgba(33, 37, 41, 1) 62%, rgba(138, 80, 128, 0.39) 100%);*/
  /*border: 1px solid pink;*/
}

[data-bs-theme="light"] .blog__card:hover {
  background: #f5f5f5;
  background: linear-gradient( 139deg, rgba(255, 255, 255, 1) 62%, rgba(245, 245, 245, 0.39) 100% );
  -webkit-box-shadow: 0px 6px 31px -12px rgba(226, 226, 226, 1);
  -moz-box-shadow: 0px 6px 31px -12px rgba(226, 226, 226, 1);
  box-shadow: 0px 6px 31px -12px rgba(226, 226, 226, 1);
}

.blog__card-date {
  color: var(--bs-body-color);
  font-family: "Bai Jamjuree", sans-serif;
  opacity: 0.7;
}

.blog__card-arrow {
  opacity: 0.1;
  visibility: hidden;
}

.blog__card-link:hover .blog__card-arrow {
  opacity: 1;
  visibility: visible;
}

div:has( > .blog__card-arrow) {
  margin-top: 10px;
}

.blog__card p {
  opacity: 0.8;
  margin-bottom: 0 !important;
}

[data-bs-theme="light"] section#faq {
  background-color: var(--bs-body-bg);
}

[data-bs-theme="dark"] section#faq {
  background-color: var(--faq-bg);
}

.footer-link {
  font-family: "Bai Jamjuree", sans-serif;
  text-decoration: none;
  font-size: 20px;
  color: var(--bs-body-color);
}

[data-bs-theme="light"] .footer-link:hover {
  color: blue;
}

[data-bs-theme="dark"] .footer-link:hover {
  color: #2ed573;
}

:root {
  --shape-base: var(--bs-body-color, #222);
  --shape-count: 6;
}

/* Kontener sekcji — dopasuj wysokość/padding według potrzeby */

.floating-section {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: 3rem 1rem;
  background: transparent;
}

/* Wspólny styl dla wszystkich kształtów */

.floating-shape {
  position: absolute;
  pointer-events: none;
  transform-origin: center;
  color: var(--shape-base);
  background: currentColor;
  /*filter: invert(1);*/
  mix-blend-mode: difference;
  opacity: 1;
  will-change: transform, opacity;
  transition: transform 0.4s linear;
}

/* Różne kształty */

.shape-circle {
  border-radius: 50%;
}

.shape-square {
}

.shape-triangle {
  width: 0;
  height: 0;
  background: transparent;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid currentColor;
}

/* Drobne warianty (pozycje, rozmiary, opacity, animacje) */

.s-1 {
  width: 220px;
  height: 220px;
  left: 30px;
  top: 20px;
  opacity: 1;
  animation: float-1 5s linear infinite;
  background-color: #ff6b6b;
}

.s-2 {
  width: 240px;
  height: 240px;
  right: 10%;
  top: 30%;
  opacity: 0.7;
  animation: float-2 10s linear infinite;
  background-color: greenyellow;
}

.s-3 {
  width: 80px;
  height: 80px;
  left: 20%;
  bottom: 10%;
  opacity: 0.8;
  animation: float-3 4s linear infinite;
  background-color: rgb(228, 82, 106);
}

.s-4 {
  width: 160px;
  height: 160px;
  right: 30px;
  top: 330px;
  opacity: 0.9;
  animation: float-4 12s linear infinite;
  background-color: orange;
}

.s-5 {
  width: 100px;
  height: 100px;
  left: 10%;
  top: 10%;
  opacity: 0.7;
  animation: float-5 6s linear infinite;
  background-color: yellow;
}

.s-6 {
  width: 60px;
  height: 60px;
  left: 90%;
  bottom: 45%;
  opacity: 0.5;
  animation: float-6 5s linear infinite;
  background-color: rgb(255, 255, 255);
}

/* Delikatne animacje ruchu (pływanie) */

@keyframes float-1 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(18px) rotate(6deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-2 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(-4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-3 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(12px) rotate(3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-4 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-5 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(22px) rotate(7deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

@keyframes float-6 {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-3deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* Ustawienia dla trójkąta (nadpisanie pozycji z klas s-*) */

.shape-triangle.s-2 {
  width: 0;
  height: 0;
  border-left-width: 30px;
  border-right-width: 30px;
  border-bottom-width: 52px;
}

.shape-triangle.s-5 {
  border-left-width: 20px;
  border-right-width: 20px;
  border-bottom-width: 40px;
}

/* Subtelne skalowanie przy hover — nieobowiązkowe, można usunąć */

.floating-section:hover .floating-shape {
  transform: scale(1.02);
}

/* Responsywność — zmniejszamy niektóre elementy na małych ekranach */

@media (max-width: 700px) {
  .s-1 {
    width: 140px;
    height: 140px;
  }
}

@media (max-width: 700px) {
  .s-4 {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 700px) {
  .s-2, .s-5 {
    display: block;
  }
}

/* SINGLE PHP */

#single-post {
  position: relative;
  overflow: hidden;
  min-height: 800px;
}

/* Ciemna nakładka + winieta */

[data-bs-theme="dark"] #single-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgb(33, 37, 41) 0%, rgba(33, 37, 41, 0) 70% ), radial-gradient( circle at center, rgba(0, 0, 0, 0.6) 0%, rgba(33, 37, 41, 1) 100% );
  pointer-events: none;
  z-index: 1;
}

[data-bs-theme="light"] #single-post::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( to top, rgb(33, 37, 41) 0%, rgba(33, 37, 41, 0) 70% ), radial-gradient( circle at center, rgba(0, 0, 0, 0.3) 0%, rgba(33, 37, 41, 1) 70% );
  pointer-events: none;
  z-index: 1;
}

#single-post > * {
  position: relative;
  z-index: 2;
}

[data-bs-theme="dark"] #single-post {
  background-color: var(--pricing-bg-dark);
  /*padding: 50px 0!important;*/
}

[data-bs-theme="light"] #single-post {
  background-color: whitesmoke;
  /*padding: 50px 0!important;*/
}

.single__post-excerpt {
  font-size: 20px;
  font-style: italic;
}

@media (min-width: 992px) {
  .single__post-excerpt {
    font-size: 24px;
  }
}

/* PILLS */

.nav-pills .nav-link {
  border-radius: 0.25rem;
  color: #495057;
  background-color: transparent;
  border: 0;
  display: inline-block;
  padding: 0.5rem 1rem;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}

/* Hover / Focus */

.nav-pills .nav-link:hover, .nav-pills .nav-link:focus {
  color: var(--slick-dot-active);
  background-color: transparent;
}

/* Active */

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: var(--slick-dot-active);
}

/* Disabled */

.nav-pills .nav-link.disabled, .nav-pills .nav-link:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: transparent;
}

.posts-list a {
  font-family: "Bai Jamjuree", sans-serif;
  color: var(--bs-body-color);
  text-decoration: none !important;
}

.posts-list a:hover {
  color: #2ed573;
}

.posts-list span {
  font-size: 12px;
  text-decoration: none !important;
  color: #777777;
}

.load-more-projects {
  opacity: 0.5;
}

.load-more-projects:hover {
  opacity: 1;
}

.sticky-el {
  position: sticky;
  top: 90px;
}

.blog-cat {
  /*background-color: var(--bs-body-bg);*/
  /*border: 1px solid var(--bs-border-color);*/
  padding: 10px 30px;
  border-radius: 10px;
  display: inline-block;
  /*position: relative;*/
  /*top: 40px;*/
  font-size: 16px;
}

.blog-cat::before {
  content: "w kategorii";
  margin-right: 5px;
  color: #8f8f8f;
}

/* [data-bs-theme="dark"] .blog-cat {
-webkit-box-shadow: 0px 0px 30px -14px rgba(88, 174, 253, 1);
-moz-box-shadow: 0px 0px 30px -14px rgba(88, 174, 253, 1);
box-shadow: 0px 0px 30px -14px rgba(88, 174, 253, 1);
}

[data-bs-theme="light"] .blog-cat {
  -webkit-box-shadow: 0px -17px 93px -16px rgba(245, 245, 245, 1);
  -moz-box-shadow: 0px -17px 93px -16px rgba(245, 245, 245, 1);
  box-shadow: 0px -17px 93px -16px rgba(245, 245, 245, 1);
} */

.blog-cat svg {
  fill: #58aefd;
}

.leaflet-control-attribution {
  visibility: hidden;
}

#map {
  height: 100%;
  top: 50%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Overlay na środku */

.center-overlay {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  font-family: system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  color: #111;
}

.leaflet-marker-icon {
  transform: scale(1.1);
}

/* CONTACT FORM */

@media (min-width: 992px) {
  [data-bs-theme="dark"] #contact-form {
    margin-top: -250px;
    position: relative;
    z-index: 1;
    background-color: var(--bg-dark);
    border-radius: 15px;
    min-height: 570px;
  }
}

@media (min-width: 992px) {
  [data-bs-theme="light"] #contact-form {
    margin-top: -250px;
    position: relative;
    z-index: 1;
    background-color: var(--projects-bg);
    border-radius: 15px;
    min-height: 570px;
  }
}

.contact-form-img {
  right: 0;
  position: relative;
}

.contact__page-link {
  font-size: 20px;
  color: var(--bs-body-color);
  text-decoration: none;
  font-family: "Bai Jamjuree", sans-serif;
  display: inline-block;
}

.contact__page-link:hover {
  color: var(--stars-color);
}

.contact__page-icons a {
  font-size: 20px !important;
  margin-right: 5px;
  opacity: 0.5;
  color: var(--bs-body-color);
  transition: all 0.2s ease-in-out;
}

.contact__page-icons a:hover {
  opacity: 1;
}

/* SINGLE PROJECT */

@media (min-width: 992px) {
  [data-bs-theme="light"] .split-bg {
    /*background: linear-gradient(to right, #fff 0 58.33%, #f9fbfb 58.33% 100%);*/
    /*background: linear-gradient(to right, #fff 0 58.33%, #f0efef 58.33% 100%);*/
    /*background: linear-gradient(to right, #fff 0 58.33%, whitesmoke 58.33% 100%);*/
    /*-webkit-box-shadow: 0px 4px 26px -5px rgba(211, 211, 220, 1);*/
    /*-moz-box-shadow: 0px 4px 26px -5px rgba(211, 211, 220, 1);*/
    /*box-shadow: 0px 4px 26px -5px rgba(211, 211, 220, 1);*/
  }
}

[data-bs-theme="dark"] .split-bg {
  /*background: linear-gradient(to right, #fff 0 58.33%, #f9fbfb 58.33% 100%);*/
  /*background: linear-gradient(to right, #2c313c 0 58.33%, #f1f1f1 58.33% 100%);*/
  /*background-color: #2c313c;*/
}

@media (min-width: 992px) {
  [data-bs-theme="dark"] .split-bg {
    /*background: linear-gradient(to right, #fff 0 58.33%, #f9fbfb 58.33% 100%);*/
    /*background: linear-gradient(to right, #2c313c 0 58.33%, #f1f1f1 58.33% 100%);*/
    /*background-color: #2c313c;*/
  }
}

.parallax {
  position: relative;
  height: 700px;
  background: url("../../assets/img/396shots_so.png") center / contain no-repeat;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.parallax::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.parallax p {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 3.5rem;
  font-family: "Bai Jamjuree", sans-serif;
}

.project-logo-wrapper {
  background-color: #fff;
  border-radius: 25px;
}

/* .glow-background::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(150px);
   transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
} */

/* :root {
  --glow-x: 50%;
  --glow-y: 50%;
  overflow-x: hidden;
}

.glow-background::after {
  content: '';
  position: absolute;
  top: var(--glow-y);
  left: var(--glow-x);
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  z-index: -1;
  filter: blur(120px);
  transition: top 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background: radial-gradient( circle, rgba(255, 128, 0, 0.7) 0%, rgba(255, 128, 0, 0) 70% );
}

[data-bs-theme="light"] .glow-background::after {
  background: radial-gradient( circle, rgba(255, 128, 0, .4) 0%, rgba(255, 128, 0, 0) 70% );
}

[data-bs-theme="dark"] .glow-background::after {
  background: radial-gradient( circle, rgb(72, 126, 243) 0%, rgba(255, 128, 0, 0) 70% );
} */

.text-with-image {
  position: relative;
  z-index: 1;
  background-image: url("../../assets/img//ja.png?h=c7169bf2034acd16df6f4834e1587d36");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  /*font-family: Anton, sans-serif!important;*/
  /*text-transform: uppercase;*/
}

@media (min-width: 992px) {
  .text-with-image {
    font-size: 35em;
    color: transparent;
    background-image: url("../../assets/img//photo-1581850518616-bcb8077a2336.jpg");
    letter-spacing: 10px;
  }
}

/* .text-with-image span {
  display: block;
  font-size: 54px!important;

  position: relative;
}

@media (min-width: 992px) {
  .text-with-image span {
    font-size: 160px!important;
    letter-spacing: 10px;
    top: -40px;
  }
} */

.yyy {
  border-radius: 91% 9% 90% 10% / 29% 82% 18% 71%;
  background: #546de5;
  /*background: linear-gradient(139deg, rgba(84, 109, 229, 1) 62%, rgba(252, 92, 101, 0.39) 100%);*/
  color: #fff;
  padding: 10px;
}

#shorts {
  width: 90%;
  margin: 0 auto;
}

@media (min-width: 992px) {
  #shorts {
    width: 40% !important;
  }
}

#shorts a {
  display: block;
  border-bottom: 1px solid var(--bs-border-color);
}

#shorts a:hover .shorts-title {
  color: var(--slick-dot-active);
}

#shorts li:last-child a {
  border-bottom: 0;
}

.shorts-date {
  color: #acacac;
  font-size: 14px;
}

.shorts-title {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  font-weight: bold;
}

[data-bs-theme="light"] .shorts-title {
  color: #212529;
}

[data-bs-theme="dark"] #shorts .shorts-title {
  color: #ccc;
}

.shorts-description {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 14px;
  color: var(--pricing-bg-dark);
}

[data-bs-theme="light"] .shorts-description {
  color: var(--pricing-bg-dark);
}

[data-bs-theme="dark"] .shorts-description {
  color: #999999;
}

.boost-sun::after {
}

.boost-small-col {
  background-color: #f4f4f4;
  -webkit-box-shadow: 8px 8px 5px -3px rgba(253, 196, 72, 1);
  -moz-box-shadow: 8px 8px 5px -3px rgba(253, 196, 72, 1);
  box-shadow: 8px 8px 5px -3px rgba(253, 196, 72, 1);
  border-radius: 8px;
}

.boost-small-col p {
  font-family: "Bai Jamjuree", sans-serif;
  font-size: 18px;
}

.aje::after {
  border-radius: 20px;
  border: 0.5px solid rgba(255, 255, 255, 0.05);
  background: rgba(22, 22, 22, 0.3);
  box-shadow: 15px 26.023px 50px 0px rgba(253, 196, 72, 0.04);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  padding: 64px 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.boost-sun {
  position: relative;
}

.boost-sun::before {
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(0deg, rgba(255, 1, 79, 0) 15.49%, #fdc448 100%);
  filter: blur(2px);
  border-radius: 100%;
  width: 410px;
  height: 410px;
  z-index: -1;
}

#tech-stack-wrapper {
  corner-shape: bevel;
  border-bottom-right-radius: 100% 50px;
  border-top-left-radius: 100% 50px;
}

[data-bs-theme="light"] #tech-stack-wrapper {
  background-color: #f5f5f5;
  background-image: url("data:image/svg+xml,<svg id='patternId' width='100%' height='100%' xmlns='http://www.w3.org/2000/svg'><defs><pattern id='a' patternUnits='userSpaceOnUse' width='20' height='20' patternTransform='scale(1) rotate(0)'><rect x='0' y='0' width='100%' height='100%' fill='%23f5f5f5ff'/><path d='M 10,-2.55e-7 V 20 Z M -1.1677362e-8,10 H 20 Z' stroke-width='1' stroke='%23f0f0f0ff' fill='none'/></pattern></defs><rect width='800%' height='800%' transform='translate(0,0)' fill='url(%23a)'/></svg>");
}

[data-bs-theme="dark"] #tech-stack-wrapper {
  /*background-color: #000;*/
  background: #222f3e;
}

#tech-stack-wrapper .container {
  margin: 120px auto;
}

.tech-stack {
  position: relative;
  flex-direction: column;
  padding: 10px 0;
  margin-bottom: 30px;
  filter: grayscale(.4);
}

[data-bs-theme="light"] .tech-stack img {
  border: 1px solid var(--bs-border-color);
  corner-shape: bevel;
  border-bottom-right-radius: 15px;
  border-top-left-radius: 15px;
}

[data-bs-theme="dark"] .tech-stack img {
  border: 1px solid #ccc;
  border-radius: 10px;
}

[data-bs-theme="light"] .tech-stack {
}

[data-bs-theme="dark"] .tech-stack {
  /*filter: invert(1) grayscale(1) contrast(100%);*/
}

