.main {
  margin: 54px auto 0 auto;
}
.main__hero {
  min-height: 280px;
}
@media only screen and (max-width: 600px) {
  .main {
    margin: 46px auto 0 auto;
  }
  .main__hero {
    min-height: 180px;
  }
}

.trusted {
  margin-bottom: 80px;
}

.category {
  width: calc(100% - 40px);
  margin: 20px auto 0 auto;
  padding: 0px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  border-radius: 50px;
  overflow: hidden;
}
@media only screen and (max-width: 1200px) {
  .category {
    width: calc(100% - 20px);
    border-radius: 30px;
  }
}
@media only screen and (max-width: 600px) {
  .category {
    width: calc(100% - 10px);
  }
}
.category__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 600px) {
  .category__video {
    height: 700px;
  }
}
.category__container {
  width: 100%;
  padding: 80px 10px 60px 10px;
  position: relative;
  background: rgb(255, 255, 255);
  background: linear-gradient(0deg, rgb(255, 255, 255) 52%, rgba(255, 255, 255, 0) 100%);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 830px) {
  .category__container {
    padding: 30px 10px 30px 10px;
  }
}
.category__containerMaxWidth {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: center;
  gap: 20px;
  max-width: 1400px;
  width: 100%;
}
@media only screen and (max-width: 830px) {
  .category__containerMaxWidth {
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-start;
    justify-content: center;
  }
}
.category__about {
  width: 60%;
  max-width: 60%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}
.category__about img {
  width: 130px;
}
@media only screen and (max-width: 830px) {
  .category__about img {
    width: 80px;
  }
}
@media only screen and (max-width: 830px) {
  .category__about {
    max-width: 100%;
    width: 100%;
  }
}
.category__h1 {
  color: black;
  font-size: 40px;
  font-weight: 700;
  line-height: 1em;
  margin: 0 0 10px 0;
}
@media only screen and (max-width: 830px) {
  .category__h1 {
    font-size: 30px;
    margin: 0;
  }
}
.category__table {
  width: 100%;
  box-shadow: 0px 0px 38px -19px black;
  border: 1px solid #800000;
  background: white;
  border-radius: 15px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 5px 0;
}
@media only screen and (max-width: 830px) {
  .category__table {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.category__table .grid-col-one {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid black;
  grid-area: 1/1/2/2;
}
@media only screen and (max-width: 830px) {
  .category__table .grid-col-one {
    border-right: none;
    border-bottom: 1px solid black;
  }
}
.category__table .grid-col-two {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  border-right: 1px solid black;
  grid-area: 1/2/2/4;
}
@media only screen and (max-width: 830px) {
  .category__table .grid-col-two {
    border-right: none;
    border-bottom: 1px solid black;
  }
}
.category__table .grid-col-three {
  width: 100%;
  padding: 5px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  grid-area: 1/4/2/5;
}
@media only screen and (max-width: 830px) {
  .category__table .grid-col-three {
    padding: 10px 10px;
  }
}
.category__table .grid-icon {
  font-size: 28px;
  color: #800000;
  margin-bottom: 4px;
}
.category__table .grid-col-three--guaranteed .grid-icon {
  color: #2f7d32;
}
.category__table .small-text {
  font-size: 16px;
  color: black;
  font-weight: 500;
  text-align: center;
}
.category__table .small-text__sub {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
}
.category__table .small-text--bold {
  font-weight: 700;
}
.category__table .grid-col-three--guaranteed .small-text {
  color: #2f7d32;
}
.category__table .guaranteed-number {
  font-size: 38px;
  color: #2f7d32;
  font-weight: 700;
}
.category__table .big-number {
  font-size: 38px;
  color: black;
  font-weight: 700;
}
.category__table .small-number {
  font-size: 26px;
  color: black;
  font-weight: 700;
}
.category__logo {
  width: 40%;
  border-radius: 20px;
  background: #800000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px 30px;
  position: relative;
  box-shadow: 0px 0px 38px -19px black;
  height: 330px;
}
.category__logo img {
  height: 90%;
  width: auto;
  max-width: 90%;
  object-fit: contain;
}
@media only screen and (max-width: 830px) {
  .category__logo img {
    width: 100px;
  }
}
@media only screen and (max-width: 830px) {
  .category__logo {
    width: fit-content;
    padding: 10px 10px;
    height: fit-content;
  }
}

.category-catalog {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 0, 0, 0.06) 0%, transparent 100%), radial-gradient(ellipse 60% 40% at 90% 100%, rgba(128, 0, 0, 0.05) 0%, transparent 100%), radial-gradient(ellipse 50% 60% at 50% 50%, rgba(128, 0, 0, 0.02) 0%, transparent 100%), linear-gradient(180deg, #f9f6f6 0%, #ffffff 40%, #f7f3f4 70%, #ffffff 100%);
  margin: 30px 0 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px 60px 20px;
}
.category-catalog::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 15% 25%, rgba(128, 0, 0, 0.035) 0%, transparent 40%), radial-gradient(circle at 85% 75%, rgba(128, 0, 0, 0.03) 0%, transparent 35%);
  pointer-events: none;
}
#bazy-danych.category-catalog::before {
  background-image: url('../../images/catalog/databases2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  left: -100vw;
  right: -100vw;
  top: -30%;
  bottom: -30%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
#programowanie.category-catalog::before {
  background-image: url('../../images/catalog/programming.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  left: -100vw;
  right: -100vw;
  top: -30%;
  bottom: -30%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
#devops.category-catalog::before,
[id^="devops"].category-catalog::before {
  background-image: url('../../images/catalog/devops_sysops.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.14;
  left: -100vw;
  right: -100vw;
  top: -30%;
  bottom: -30%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
#inne.category-catalog::before {
  background-image: url('../../images/catalog/others2.jpg');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.14;
  left: -100vw;
  right: -100vw;
  top: -30%;
  bottom: -30%;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 25%, black 75%, transparent 100%);
}
.category-catalog::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, #800000 50%, transparent 90%);
  opacity: 0.3;
  pointer-events: none;
}
@media only screen and (max-width: 1050px) {
  .category-catalog {
    padding: 20px 15px 40px 15px;
  }
}
.category-catalog__navigation {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .category-catalog__navigation {
    gap: 6px;
    margin: 0 auto 25px auto;
  }
}
.category-catalog__navLink {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border: 2px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
  text-decoration: none;
  outline: none;
  background: white;
  font-weight: 700;
  color: black;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 12px;
  transition: 0.4s;
}
.category-catalog__navLink:hover {
  color: white;
  background: #800000;
  border-color: #800000;
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(128, 0, 0, 0.2);
  cursor: pointer;
}
.category-catalog__navLink.active {
  color: white;
  background: #800000;
  border-color: #800000;
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.25);
}
@media only screen and (max-width: 850px) {
  .category-catalog__navLink {
    font-size: 14px;
    padding: 8px 15px;
  }
}
@media only screen and (max-width: 600px) {
  .category-catalog__navLink {
    font-size: 13px;
    padding: 7px 12px;
  }
}
.category-catalog__container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 0 50px 0;
  position: relative;
  z-index: 1;
}
.category-catalog__categoryTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0px auto 25px auto;
  width: 90%;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__categoryTitle {
    width: 100%;
    gap: 10px;
    margin: 0 auto 20px auto;
  }
}
.category-catalog__h2 {
  color: #800000;
  font-size: 34px;
  font-weight: 400;
  text-align: center;
  min-width: fit-content;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 450px) {
  .category-catalog__h2 {
    font-size: 20px;
  }
}
.category-catalog__line {
  width: 100%;
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent, #800000);
  position: relative;
}
.category-catalog__line::before {
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 2px;
  left: 0;
  content: " ";
  background: #800000;
}
.category-catalog__line--second {
  background: linear-gradient(90deg, #800000, transparent);
}
.category-catalog__line--second::before {
  position: absolute;
  display: inline-block;
  height: 20px;
  width: 2px;
  left: unset;
  right: 0;
  content: " ";
  background: #800000;
}
.category-catalog__element {
  width: 100%;
  margin: 0 0 10px 0;
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 500px) 120px 210px 140px 80px 140px 70px 1fr 100px;
  grid-template-rows: 1fr;
  grid-column-gap: 10px;
  grid-row-gap: 0px;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 3px 15px;
  min-height: 55px;
  outline: none;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}
.category-catalog__element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(128, 0, 0, 0.08), transparent);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.category-catalog__element::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #800000;
  border-radius: 12px 0 0 12px;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.category-catalog__element:hover {
  border-color: #800000;
  transform: translateX(6px);
  box-shadow: 0 4px 25px rgba(128, 0, 0, 0.15);
  cursor: pointer;
}
.category-catalog__element:hover::before {
  width: 40%;
}
.category-catalog__element:hover::after {
  transform: scaleY(1);
}
.category-catalog__element:hover .category-catalog__h3 {
  color: #800000;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__element {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: fit-content;
    padding: 15px;
    margin: 0 0 8px 0;
  }
  .category-catalog__element:hover {
    transform: translateX(0);
  }
}
@media only screen and (max-width: 650px) {
  .category-catalog__element {
    width: 100%;
    margin: 0 0 6px 0;
  }
}
.category-catalog__trainingInfo {
  width: 100%;
  grid-area: 1/1/2/2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 2px;
  padding: 0 15px;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__trainingInfo {
    grid-area: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 10px 0;
    gap: 4px;
  }
}
.category-catalog__h3 {
  color: black;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25em;
  transition: color 0.3s ease;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__h3 {
    font-size: 22px;
    text-align: center;
  }
}
.category-catalog__author {
  grid-area: 1/3/2/4;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  gap: 8px;
  position: relative;
  z-index: 2;
  align-self: center;
}
.category-catalog__author[data-author-id] {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(128, 0, 0, 0.05);
  border: 1px solid rgba(128, 0, 0, 0.1);
  transition: all 0.3s ease;
  width: fit-content;
}
.category-catalog__author[data-author-id]:hover {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
  transform: scale(1.03);
}
.category-catalog__authorPhoto {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(128, 0, 0, 0.2);
  flex-shrink: 0;
}
.category-catalog__authorPhoto--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 0, 0, 0.1);
  color: #800000;
  font-size: 14px;
}
.category-catalog__authorName {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
}
.category-catalog__element:has(.category-catalog__author:hover) {
  z-index: 10;
}
.category-catalog__author[data-author-id]:hover .category-catalog__authorName {
  color: #800000;
}
.category-catalog__authorTooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #2a2a2a;
  color: white;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 100;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.category-catalog__authorTooltip strong {
  font-weight: 700;
  display: block;
  font-size: 13px;
}
.category-catalog__authorTooltip span {
  font-weight: 400;
  opacity: 0.8;
  font-size: 11px;
}
.category-catalog__author:hover .category-catalog__authorTooltip {
  opacity: 1;
  visibility: visible;
}

/* Multi-trainer (no author assigned) */
.category-catalog__author--multi {
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(128, 0, 0, 0.05);
  border: 1px solid rgba(128, 0, 0, 0.1);
  transition: all 0.3s ease;
  text-decoration: none;
}
.category-catalog__author--multi:hover {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
  transform: scale(1.03);
}
.category-catalog__authorStack {
  display: flex;
  flex-direction: row;
}
.category-catalog__authorStack img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-left: -10px;
  flex-shrink: 0;
}
.category-catalog__authorStack img:first-child {
  margin-left: 0;
}

@media only screen and (max-width: 1050px) {
  .category-catalog__author {
    grid-area: unset;
    justify-content: center;
    min-width: auto;
    margin: 5px auto;
  }
  .category-catalog__authorTooltip {
    display: none;
  }
}
.category-catalog__days {
  grid-area: 1/5/2/6;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #656263;
  font-size: 13px;
  font-weight: 600;
  padding: 0 10px;
  white-space: nowrap;
}
.category-catalog__days i {
  font-size: 14px;
  color: #656263;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__days {
    grid-area: unset;
    font-size: 16px;
  }
  .category-catalog__days i {
    font-size: 16px;
  }
}
.category-catalog__rate {
  grid-area: 1/7/2/8;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #e6a800;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
}
.category-catalog__rate i {
  font-size: 13px;
  color: #e6a800;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__rate {
    grid-area: unset;
    font-size: 16px;
  }
  .category-catalog__rate i {
    font-size: 16px;
  }
}
.category-catalog__checkBtn {
  grid-area: 1/9/2/10;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #800000;
  text-decoration: none;
  background: rgba(128, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(128, 0, 0, 0.15);
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
  cursor: pointer;
}
.category-catalog__checkBtn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.category-catalog__element:hover .category-catalog__checkBtn {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
  color: #600000;
  box-shadow: 0 2px 12px rgba(128, 0, 0, 0.15);
}
.category-catalog__element:hover .category-catalog__checkBtn i {
  transform: translateX(3px);
}
@media only screen and (max-width: 1050px) {
  .category-catalog__checkBtn {
    grid-area: unset;
    margin: 8px 0 4px 0;
    padding: 10px 30px;
    font-size: 15px;
  }
}
.category-catalog__newTraining {
  grid-area: 1/2/2/3;
  color: #006ee9;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  line-height: 1em;
}
.category-catalog__newTraining i {
  transform: scaleX(-1);
  font-size: 11px;
}
@media only screen and (max-width: 1050px) {
  .category-catalog__newTraining {
    grid-area: unset;
    font-size: 18px;
    text-align: center;
  }
}
.category-catalog__guaranteed {
  width: 100%;
  grid-area: 1/4/2/5;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: #e8f5e9;
  color: #2e7d32;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .3px;
  white-space: nowrap;
}
.category-catalog__guaranteed i {
  font-size: 16px;
}
.category-catalog__guaranteed--false {
  display: none;
}
@media only screen and (max-width: 1370px) {
  .category-catalog__guaranteed {
    font-size: 11px;
  }
  .category-catalog__guaranteed i {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1050px) {
  .category-catalog__guaranteed {
    grid-area: unset;
    margin: 10px 0;
    width: auto;
    padding: 5px 14px;
  }
  .category-catalog__guaranteed i {
    font-size: 18px;
  }
  .category-catalog__guaranteed br {
    display: none;
  }
}
.category-catalog__trainingsPrice {
  width: 100%;
  color: #800000;
  font-size: 16px;
  font-weight: 800;
  line-height: 1em;
  grid-area: 1/6/2/7;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.category-catalog__priceLabel {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.3px;
}
.category-catalog__trainingsPrice .bold {
  font-weight: 800;
}
@media only screen and (max-width: 1370px) {
  .category-catalog__trainingsPrice {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1050px) {
  .category-catalog__trainingsPrice {
    grid-area: unset;
    margin: 10px 0;
    font-size: 22px;
  }
}

.trainers {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 20px 80px 20px;
}
@media only screen and (max-width: 1200px) {
  .trainers {
    padding: 0 0 40px 0;
  }
}
.trainers__h2 {
  color: #800000;
  font-size: 32px;
  font-weight: 700;
  margin: 80px 0 50px 0;
}
@media only screen and (max-width: 1200px) {
  .trainers__h2 {
    margin: 40px 0 30px 0;
    font-size: 28px;
    text-align: center;
  }
}
.trainers__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.trainers__trainer {
  width: calc((100% - 80px) / 5);
}
@media only screen and (max-width: 1200px) {
  .trainers__container {
    padding: 0 10px;
  }
  .trainers__trainer {
    width: calc((100% - 60px) / 4);
  }
}
@media only screen and (max-width: 860px) {
  .trainers__trainer {
    width: calc((100% - 40px) / 3);
  }
}
@media only screen and (max-width: 530px) {
  .trainers__trainer {
    width: calc((100% - 20px) / 2);
  }
}
@media only screen and (max-width: 410px) {
  .trainers__container {
    gap: 15px;
  }
  .trainers__trainer {
    width: 100%;
    max-width: 300px;
  }
}
.trainers__trainer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 5px;
}
.trainers__trainer:hover {
  cursor: pointer;
}
.trainers__trainer:hover .overlay {
  background: rgba(179, 0, 0, 0.7215686275);
}
.trainers__trainer:hover .trainers__trainerPhoto {
  transform: scale(1.03);
  border-color: rgba(128, 0, 0, 0.4);
  box-shadow: 0 8px 25px rgba(128, 0, 0, 0.2);
}
.trainers__trainer:hover .trainers__showMore {
  color: #800000;
}
.trainers__trainerPhoto {
  width: 100%;
  border-radius: 30px;
  aspect-ratio: 4/5;
  margin: 0 0 2px 0;
  border: 2px solid rgba(0, 0, 0, 0.219);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.trainers__trainerPhoto img {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  object-fit: cover;
}
.trainers__trainerPhoto .overlay {
  background: transparent;
  transition: 0.4s;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 30px;
  height: 100%;
}
.trainers__trainerPhoto .overlay.active {
  background: rgba(179, 0, 0, 0.7215686275);
  transition: 0.4s;
}
.trainers__name {
  font-size: 20px;
  color: black;
  font-weight: 700;
  text-align: center;
  line-height: 1em;
}
.trainers__showMore {
  font-size: 20px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.377);
  outline: none;
  text-decoration: none;
  background: none;
  border: none;
  line-height: 1em;
}


.guarantees-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse 80% 50% at 20% 0%, rgba(128, 0, 0, 0.06) 0%, transparent 100%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(128, 0, 0, 0.05) 0%, transparent 100%),
    linear-gradient(180deg, #f9f6f6 0%, #ffffff 40%, #f7f3f4 70%, #ffffff 100%);
}
.guarantees-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('../../images/catalog/clock.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.12;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, black 15%, black 85%, transparent 100%);
}
.guarantees-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 10%, #800000 50%, transparent 90%);
  opacity: 0.3;
  pointer-events: none;
}
.guarantees {
  padding: 120px 10px 80px 10px;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  justify-content: center;
}
@media only screen and (max-width: 1150px) {
  .guarantees {
    padding: 80px 10px 50px 10px;
  }
}
@media only screen and (max-width: 600px) {
  .guarantees {
    padding: 50px 5px 30px 5px;
  }
}
.guarantees__h2 {
  color: #800000;
  font-size: 32px;
  font-weight: 700;
  margin: 0 0 40px 0;
  text-align: center;
}
@media only screen and (max-width: 1150px) {
  .guarantees__h2 {
    font-size: 24px;
  }
}
.guarantees__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.guarantees__row {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 130px 140px 75px 140px 120px auto;
  column-gap: 10px;
  align-items: center;
  background: white;
  border: 2px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 8px 15px;
  min-height: 55px;
  text-decoration: none;
  outline: none;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: visible;
  z-index: 0;
}
.guarantees__row::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(128, 0, 0, 0.08), transparent);
  transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 12px;
  z-index: 0;
  pointer-events: none;
}
.guarantees__row::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #800000;
  border-radius: 12px 0 0 12px;
  transform: scaleY(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1;
}
.guarantees__row:hover {
  border-color: #800000;
  transform: translateX(6px);
  box-shadow: 0 4px 25px rgba(128, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1;
}
.guarantees__row:hover::before {
  width: 40%;
}
.guarantees__row:hover::after {
  transform: scaleY(1);
}
.guarantees__row:hover .guarantees__rowH3 {
  color: #800000;
}
.guarantees__row:hover .guarantees__rowLogoImg {
  filter: grayscale(0%);
  opacity: 1;
}
@media only screen and (max-width: 1050px) {
  .guarantees__row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 15px;
  }
}
@media only screen and (max-width: 500px) {
  .guarantees__row {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.guarantees__rowLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.guarantees__rowLogoImg {
  max-height: 40px;
  max-width: 55px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.4s ease;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowLogo {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .guarantees__rowLogoImg {
    filter: grayscale(0%);
    opacity: 1;
  }
}
.guarantees__rowTitle {
  padding: 0 10px 0 0;
  position: relative;
  z-index: 2;
}
.guarantees__rowH3 {
  color: black;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25em;
  transition: color 0.3s ease;
}
.guarantees__rowCategory {
  font-size: 12px;
  font-weight: 500;
  color: #888;
  line-height: 1em;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowTitle {
    grid-column: 1 / -1;
    text-align: center;
    padding: 0;
  }
  .guarantees__rowH3 {
    font-size: 18px;
  }
}
.guarantees__rowDate {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  position: relative;
  z-index: 2;
}
.guarantees__rowDate i {
  color: #800000;
  font-size: 14px;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowDate {
    justify-content: center;
  }
}
.guarantees__rowDays {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  position: relative;
  z-index: 2;
}
.guarantees__rowDays i {
  color: #800000;
  font-size: 13px;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowDays {
    justify-content: center;
  }
}
.guarantees__rowStatus {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1em;
  position: relative;
  z-index: 2;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .3px;
  white-space: nowrap;
}
.guarantees__rowStatus i {
  font-size: 14px;
}
.guarantees__status--1 {
  background: #e8f5e9;
  color: #2e7d32;
}
.guarantees__status--2 {
  background: #fff8e1;
  color: #f57f17;
}
.guarantees__status--3 {
  background: #ffebee;
  color: #c62828;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowStatus {
    justify-content: center;
    font-size: 13px;
  }
}
.guarantees__rowPrice {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  position: relative;
  z-index: 2;
}
.guarantees__oldPrice {
  font-size: 12px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}
.guarantees__newPrice {
  font-size: 15px;
  font-weight: 800;
  color: #800000;
}
.guarantees__priceLabel {
  font-size: 11px;
  font-weight: 700;
  color: #999;
  letter-spacing: 0.3px;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowPrice {
    align-items: center;
    grid-column: 1 / -1;
  }
  .guarantees__newPrice {
    font-size: 18px;
  }
}

/* Trainer in guaranteed terms row */
.guarantees__rowTrainer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 2;
  min-width: 0;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 20px;
  background: rgba(128, 0, 0, 0.05);
  border: 1px solid rgba(128, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.guarantees__rowTrainer:hover {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
  transform: scale(1.03);
}
.guarantees__rowTrainerPhoto {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(128, 0, 0, 0.2);
  flex-shrink: 0;
}
.guarantees__rowTrainerPhoto--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 0, 0, 0.1);
  color: #800000;
  font-size: 14px;
}
.guarantees__rowTrainerName {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}
.guarantees__rowTrainer:hover .guarantees__rowTrainerName {
  color: #800000;
}
.guarantees__rowTooltip {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #2a2a2a;
  color: white;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 14px;
  border-radius: 10px;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s, visibility 0.25s;
  z-index: 100;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}
.guarantees__rowTooltip strong {
  font-weight: 700;
  display: block;
  font-size: 13px;
}
.guarantees__rowTooltip span {
  font-weight: 400;
  opacity: 0.8;
  font-size: 11px;
}
.guarantees__rowTrainer:hover .guarantees__rowTooltip {
  opacity: 1;
  visibility: visible;
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowTooltip {
    display: none;
  }
  .guarantees__rowTrainer {
    justify-content: center;
    min-width: auto;
  }
}


/* ====== "SPRAWDZ" BUTTON (guaranteed terms) ====== */
.guarantees__rowBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 700;
  color: #800000;
  background: rgba(128, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(128, 0, 0, 0.15);
  border-radius: 8px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
  cursor: pointer;
}
.guarantees__rowBtn i {
  font-size: 11px;
  transition: transform 0.3s ease;
}
.guarantees__row:hover .guarantees__rowBtn {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
  color: #600000;
  box-shadow: 0 2px 12px rgba(128, 0, 0, 0.15);
}
.guarantees__row:hover .guarantees__rowBtn i {
  transform: translateX(3px);
}
@media only screen and (max-width: 1050px) {
  .guarantees__rowBtn {
    grid-column: 1 / -1;
    justify-self: center;
    padding: 10px 30px;
    font-size: 15px;
  }
}

/* "All guaranteed terms" button */
.guarantees__allBtn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 35px auto 0 auto;
  padding: 14px 40px;
  background: #800000;
  color: white;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 4px 20px rgba(128, 0, 0, 0.3);
}
.guarantees__allBtn:hover {
  background: #5c0000;
  box-shadow: 0 6px 30px rgba(128, 0, 0, 0.45);
  transform: translateY(-3px);
  color: white;
}
.guarantees__allBtn i {
  font-size: 14px;
}

.guarantees__showAllBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 12px 0 0 0;
  padding: 14px 20px;
  background: rgba(128, 0, 0, 0.06);
  color: #800000;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid rgba(128, 0, 0, 0.15);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.guarantees__showAllBtn:hover {
  background: rgba(128, 0, 0, 0.12);
  border-color: rgba(128, 0, 0, 0.3);
}
.guarantees__showAllBtn i {
  font-size: 12px;
}

.other-trainings {
  width: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 130px 0 50px 0;
}
@media only screen and (max-width: 1250px) {
  .other-trainings {
    padding: 70px 0 40px 0;
  }
}
@media only screen and (max-width: 700px) {
  .other-trainings {
    padding: 50px 0 30px 0;
  }
}
.other-trainings__h2 {
  text-align: center;
  font-size: 34px;
  font-weight: 800;
  color: #800000;
}
@media only screen and (max-width: 1250px) {
  .other-trainings__h2 {
    font-size: 28px;
  }
}
@media only screen and (max-width: 700px) {
  .other-trainings__h2 {
    padding: 0 10px;
    font-size: 22px;
    margin: 0 0 20px 0;
  }
}
.other-trainings__container {
  width: 100%;
  position: relative;
  padding: 30px 10px !important;
  display: flex;
  flex-direction: row;
  align-items: safe center;
  justify-content: safe center;
  margin: 0 0 20px 0;
  max-height: 400px;
}
@media only screen and (max-width: 600px) {
  .other-trainings__container {
    padding: 20px 0 !important;
  }
}
.other-trainings__background {
  width: 100%;
  height: 200px;
  background: #800000;
  position: absolute;
}
.other-trainings__playback {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  z-index: 20;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.other-trainings__playback i {
  color: white;
  font-size: 20px;
  margin-left: 2px;
}
.other-trainings__playback--visible {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.other-trainings__swiper {
  width: 100% !important;
  max-width: 1300px !important;
  margin: 0 auto !important;
}
.other-trainings__slide {
  border-radius: 20px;
  background: linear-gradient(165deg, #ffffff 0%, #f8f5f5 50%, #f2eded 100%);
  border: 2px solid rgba(128, 0, 0, 0.1);
  padding: 25px 15px 20px 15px;
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
  text-decoration: none;
  outline: none;
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  box-sizing: border-box;
}
/* Shine sweep effect */
.other-trainings__slide::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -75%;
  width: 50%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.6) 50%, transparent 60%);
  transition: none;
  pointer-events: none;
  z-index: 10;
}
.other-trainings__slide:hover::before {
  animation: shineSweep 0.6s ease forwards;
}
@keyframes shineSweep {
  0% { left: -75%; }
  100% { left: 125%; }
}
/* Top accent bar */
.other-trainings__slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #800000, #c00000);
  border-radius: 0 0 3px 3px;
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.other-trainings__slide:hover {
  border-color: rgba(128, 0, 0, 0.3);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 40px rgba(128, 0, 0, 0.2), 0 0 0 1px rgba(128, 0, 0, 0.05);
  background: linear-gradient(165deg, #ffffff 0%, #fff9f9 50%, #fff5f5 100%);
}
.other-trainings__slide:hover::after {
  width: 60%;
}
.other-trainings__slide img {
  width: 100px;
  margin: 0 0 15px 0;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}
.other-trainings__slide:hover img {
  transform: scale(1.12) rotate(-2deg);
}
.other-trainings__name {
  color: #800000;
  font-weight: 800;
  font-size: 22px;
  text-align: center;
  margin: 0 0 auto 0;
  padding: 0 0 15px 0;
  line-height: 1.2em;
  transition: color 0.3s ease;
}
.other-trainings__slide:hover .other-trainings__name {
  color: #a00000;
}
.other-trainings__guaranteed {
  color: #2f7d32;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2em;
  margin: 0 0 6px 0;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.other-trainings__slide:hover .other-trainings__guaranteed {
  opacity: 1;
}
.other-trainings__guaranteed i {
  font-size: 18px;
}
.other-trainings__guaranteed span {
  width: auto;
}
.other-trainings__newTraining {
  color: #006ee9;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-align: center;
  font-size: 14px;
  line-height: 1.2em;
  font-weight: 700;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}
.other-trainings__slide:hover .other-trainings__newTraining {
  opacity: 1;
}
.other-trainings__newTraining i {
  font-size: 14px;
}
.other-trainings__count {
  text-align: center;
  color: #800000;
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 6px 16px;
  background: rgba(128, 0, 0, 0.06);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.other-trainings__slide:hover .other-trainings__count {
  background: rgba(128, 0, 0, 0.12);
}
.other-trainings__nextBtn {
  background: none;
  outline: none;
  text-decoration: none;
  color: rgb(255, 255, 255);
  z-index: 2;
  font-size: 70px;
  margin: 0 0 0 30px;
  cursor: pointer;
}
@media only screen and (max-width: 1250px) {
  .other-trainings__nextBtn {
    font-size: 40px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 600px) {
  .other-trainings__nextBtn {
    font-size: 34px;
  }
}
.other-trainings__prevBtn {
  background: none;
  outline: none;
  text-decoration: none;
  color: rgb(255, 255, 255);
  z-index: 2;
  font-size: 70px;
  margin: 0 30px 0 0;
  cursor: pointer;
}
@media only screen and (max-width: 1250px) {
  .other-trainings__prevBtn {
    font-size: 40px;
    margin: 0 10px;
  }
}
@media only screen and (max-width: 600px) {
  .other-trainings__prevBtn {
    font-size: 34px;
  }
}

/*# sourceMappingURL=training_category.css.map */
