@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
html,
body {
  padding: 0;
  margin: 0;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.25;
  font-weight: 400;
  font-size: 18px;
}

*,
*::before,
*::after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  box-sizing: border-box;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

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

#loader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#loader img {
  margin-bottom: 30px;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}

.lds-ellipsis div {
  position: absolute;
  top: 33px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #13b5c6;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}
@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.burger {
  padding: 10px;
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  margin: 0;
  transition: transform 0.3s ease-in-out;
}

.burger__box {
  width: 25px;
  height: 18px;
  display: inline-block;
  position: relative;
}

.burger__inner {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  border-radius: 5px;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: background-color 0.1s ease-in-out;
}

.burger__inner::before, .burger__inner::after {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  border-radius: 5px;
  content: "";
  left: 0;
  transition: transform 0.2s ease-in-out;
}

.burger__inner::before {
  top: -8px;
}

.burger__inner::after {
  top: 8px;
}

.burger--active .burger__inner {
  background-color: transparent;
}

.burger--active .burger__inner:before {
  transform: translateY(8px) rotate(45deg);
}

.burger--active .burger__inner:after {
  transform: translateY(-8px) rotate(-45deg);
}

.innerWrapper {
  max-width: 1190px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  height: 60px;
}

.topBar {
  position: relative;
  z-index: 99;
}

.topBar__top {
  background-color: white;
  padding: 15px 0;
}

.topBar__top .innerWrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.topBar__bottom {
  background-color: #13b5c6;
  padding: 15px 0;
}

.clientZone {
  margin: 0;
  padding: 0;
  list-style: none;
  height: -moz-fit-content;
  height: fit-content;
  color: #333;
}

.clientZone__link {
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: flex-end;
  padding: 5px 15px;
  transition: background-color 0.2s ease-in;
  border-radius: 20px;
}

.clientZone__link:hover {
  background-color: #f2f2f2;
}

.clientZone .icon {
  display: inline-flex;
  height: 30px;
  width: auto;
  margin-right: 18px;
}

.clientZone .icon img {
  display: block;
  width: auto;
  height: 100%;
}

.navigation {
  text-align: right;
}

.navigation__list {
  margin: 0;
  padding: 0;
  list-style: none;
  position: absolute;
  top: 161px;
  right: 0;
  height: calc(100vh - 90px - 71px);
  width: 100%;
  background-color: #13b5c6;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  transition: transform 0.3s ease-in, opacity 0.3s ease-in;
  transform: translateX(-100%) translateY(0%);
}

.navigation__list--active {
  transform: translateX(0%);
  opacity: 1;
}

.navigation__list--exit {
  transform: translateY(100%) translateX(0%);
  opacity: 0;
}

.navigation__item {
  margin: 10px 0;
}

.navigation__link {
  color: white;
  text-decoration: none;
  padding: 15px;
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 18px;
}
.navigation__link:hover {
  color: white;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 992px) {
  .burger {
    display: none;
  }
  .navigation__list {
    position: relative;
    height: auto;
    transform: none;
    top: unset;
    opacity: 1;
    flex-direction: row;
    justify-content: space-around;
  }
  .navigation__item {
    margin: 0;
  }
  .navigation__link {
    padding: 8px;
    position: relative;
  }
  .navigation__link::before {
    content: "";
    width: 50px;
    height: 2px;
    border-radius: 2px;
    background: white;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.2s ease-in;
  }
  .navigation__link:hover::before {
    transform: translateX(-50%) scaleX(1);
  }
}
@media (min-width: 1440px) {
  .logo {
    max-width: 150px;
    height: auto;
  }
  .clientZone .icon {
    height: unset;
    width: unset;
  }
  .navigation__list {
    justify-content: space-between;
  }
}
.section {
  padding: 80px 0;
}

.section--noPadding {
  padding: 0;
}

.section__title {
  margin-bottom: 0px;
}

.section__title h2 {
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.section__subtitle {
  margin-bottom: 40px;
  margin-top: -10px;
}

.section__subtitle h3 {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section--blue {
  background-color: #009fa6;
  color: white;
}

.section--navy {
  background-color: #000b24;
}

.section--grey {
  background-color: #f2f2f2;
}

.section p {
  line-height: 1.4;
}

@media (min-width: 768px) {
  .section__title h2 {
    font-size: 40px;
  }
  .section__subtitle h3 {
    font-size: 15px;
  }
}
@media (min-width: 1400px) {
  .section__title h2 {
    font-size: 60px;
    margin-top: 0;
  }
}
.footer {
  text-align: center;
  padding: 15px;
  color: #333;
  font-size: 1.2rem;
}

.contact__section {
  background-color: #009fa6;
  color: white;
}

.contact__info__wrapper {
  width: fit-content;
  width: -moz-fit-content;
  margin-top: 30px;
}

.contact__info__wrapper p {
  text-align: left;
}

.contactForm {
  padding: 0 15px;
  margin-top: 20px;
}

.contactForm__select, .contactForm__textarea, .contactForm__input {
  width: 100%;
  color: #999;
  border: 1px solid #dddddd;
  padding: 10px 15px;
  margin-bottom: 12px;
  background: white;
}

.contactForm__textarea::-moz-placeholder, .contactForm__input::-moz-placeholder {
  color: #aaa;
}

.contactForm__textarea::placeholder, .contactForm__input::placeholder {
  color: #aaa;
}

.contactForm__select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(/_img/_templates/arrow.png) 96%/15% no-repeat #fff;
  background-size: 10px 13px;
  padding: 10px 30px 10px 15px;
}

.contactForm__textarea {
  height: 150px;
}

.contactForm__button {
  display: block;
  background-color: #000b24;
  padding: 7px;
  width: 230px;
  margin-left: auto;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  margin-top: 10px;
  font-family: "Quicksand";
}

@media (min-width: 768px) {
  .contact {
    display: flex;
  }
  .contact__info {
    width: 35%;
  }
  .contact__form {
    width: 65%;
  }
}
@media (min-width: 1440px) {
  .contactForm {
    display: flex;
    justify-content: space-between;
  }
  .contactForm__column {
    width: 43.3%;
    display: flex;
    flex-direction: column;
  }
  .contactForm__textarea {
    flex: 1;
    margin-bottom: 0;
  }
  .contact__info__wrapper {
    font-size: 1.2rem;
  }
}
/* slider zaufali nam */
#slider_clients {
  position: relative;
  padding: 30px;
}
#slider_clients .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100px;
  width: 100%;
  position: relative;
  text-align: center;
}
#slider_clients .swiper-logo {
  max-width: 90%;
  max-height: 100px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  right: auto;
}
#slider_clients .swiper-button-next,
#slider_clients .swiper-button-prev {
  color: #009fa6;
}

@media (min-width: 480px) {
  #slider_clients .swiper-slide {
    max-width: 200px;
  }
}
.imagesList {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
}

.imagesList img {
  display: inline-block;
  height: 35px;
  width: auto;
  margin-bottom: 20px;
  transition: transform 0.2s ease-in;
  max-width: 170px;
  max-height: 80px;
}

.imagesList img:hover {
  transform: scale(1.1);
}

@media (min-width: 1440px) {
  .imagesList img {
    height: unset;
  }
}
.opinion {
  padding: 0 25px;
  margin-bottom: 30px;
  font-weight: 400;
}

.opinion__content {
  position: relative;
  padding-left: 35px;
}

.opinion__content::before {
  content: "";
  background-image: url(/_img/_templates/quote.png);
  background-size: contain;
  position: absolute;
  display: block;
  left: 0;
  top: -5px;
  width: 30px;
  height: 24px;
}

.opinion__author {
  margin-top: 20px;
  text-align: right;
}

@media (min-width: 768px) {
  .opinionsWrapper {
    display: flex;
    font-family: "PT Sans", sans-serif;
  }
  .opinion {
    width: 50%;
  }
}
@media (min-width: 1440px) {
  #opinions {
    padding: 80px 0;
  }
  .opinion {
    font-size: 18px;
  }
  .opinion__content::before {
    width: 40px;
    height: 32px;
    left: -16px;
    top: -10px;
  }
}
.presentation__hero {
  position: relative;
  background: #000b24 url(/_img/_templates2/hero.jpg) no-repeat center center;
  color: white;
}
.presentation__hero_filter {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 60%, rgba(0, 0, 0, 0.6) 100%);
}
.presentation__hero .innerWrapper {
  position: relative;
  min-height: 550px;
}
.presentation__hero .section__subtitle {
  margin-top: -20px;
  margin-bottom: 20px;
}
.presentation__hero_frame {
  position: absolute;
  left: 0;
  bottom: 50px;
  max-width: 800px;
  margin: 0 20px;
}
.presentation__hero_title {
  font-size: 40px;
  font-weight: 900;
  text-transform: uppercase;
  color: white;
  margin-bottom: 15px;
  text-shadow: 0px 0px 20px #333;
}
.presentation__hero_content {
  font-size: 22px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  text-shadow: 0px 0px 20px #333;
}
.presentation__hero_content p {
  line-height: 1.2;
}
.presentation__hero_content strong {
  color: #009fa6;
  font-weight: 700;
}
.presentation__hero_footer {
  position: absolute;
  bottom: 10px;
  right: 10%;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.presentation__about {
  position: relative;
}
.presentation__screens {
  position: relative;
}
.presentation__offer {
  position: relative;
  background-color: #000b24;
  padding: 80px 0;
  color: white;
}
.presentation__offer_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.presentation__offer_list > li {
  background-color: white;
  border-radius: 10px;
  min-height: 20px;
  color: #000b24;
  padding: 15px;
  font-weight: 600;
}
.presentation__offer_tiles {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
}
.presentation__offer_tiles > div:nth-child(even) {
  background-color: white;
  color: #000b24;
}
.presentation__offer_tiles > div:nth-child(odd) {
  background-color: #009fa6;
  color: white;
}
.presentation__offer_tiles_item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 10px;
  padding: 15px;
}
.presentation__offer_tiles_item .my_content {
  font-size: 50px;
  font-weight: 900;
  line-height: 1.1;
  text-align: right;
}
.presentation__offer_tiles_item .my_content .my_small {
  font-size: 16px;
}
.presentation__offer_tiles_item .my_content small {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
}
.presentation__offer_tiles_item .my_image {
  min-width: 50px;
}
.presentation__offer_footer {
  font-size: 30px;
  font-weight: 900;
}
.presentation__offer_footer strong {
  color: #009fa6;
}
.presentation__sport {
  position: relative;
  background-color: #009fa6;
  padding: 80px 0;
  color: white;
}
.presentation__functionality {
  position: relative;
  background-color: #000b24;
  background: linear-gradient(180deg, #000b24 38%, #009fa6 100%);
  padding: 80px 0;
  color: white;
}
.presentation__functionality_list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
  margin: 30px 0;
  padding: 0;
  list-style: none;
}
.presentation__functionality_list > li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
}
.presentation__functionality_list > li:before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #009fa6;
}
.presentation__handball {
  position: relative;
}
.presentation__basketball {
  position: relative;
  background-color: #000b24;
  background: linear-gradient(90deg, #000b24 38%, #009fa6 100%);
  padding: 80px 0;
  color: white;
}
.presentation__volleyball {
  position: relative;
  background-color: #009fa6;
  padding: 80px 0;
  color: white;
}
.presentation__icehockey {
  position: relative;
}
.presentation__equipment {
  position: relative;
}
.presentation__portfolio {
  position: relative;
  background-color: #000b24;
  padding: 80px 0;
  color: white;
}
.presentation__portfolio_gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin: 30px 0;
}
.presentation__portfolio_item {
  position: relative;
}

@media (min-width: 768px) {
  .presentation__hero .innerWrapper {
    min-height: 690px;
  }
  .presentation__hero_title {
    font-size: 75px;
  }
  .presentation__hero_content {
    font-size: 40px;
  }
  .presentation__offer_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .presentation__offer_tiles {
    grid-template-columns: repeat(2, 1fr);
  }
  .presentation__portfolio_gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .presentation__basketball::before {
    content: "";
    background: url(/_img/_templates2/p_kosz.png) no-repeat;
    background-position: 90% 0%;
    position: absolute;
    inset: 0;
    background-size: auto 100%;
  }
  .presentation__basketball_image {
    display: none;
  }
  .presentation__volleyball::before {
    content: "";
    background: url(/_img/_templates2/p_siatk.png) no-repeat;
    background-position: 100% 0%;
    position: absolute;
    inset: 0;
    background-size: auto 100%;
    margin-top: 80px;
  }
  .presentation__volleyball_image {
    display: none;
  }
}
@media (min-width: 1200px) {
  .presentation__offer_list {
    grid-template-columns: repeat(3, 1fr);
  }
  .presentation__offer_tiles {
    grid-template-columns: repeat(4, 1fr);
  }
  .presentation__basketball::before {
    background-position: 70% 0%;
  }
}