@charset "UTF-8";
/* fontavesome cdn link  */
@import url("./font-awesome/all.min.css");
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2"), url("../fonts/Poppins-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2"), url("../fonts/Poppins-Bold.woff") format("woff");
  font-display: swap;
}
:root {
  --main-color: #ffdd95;
  --black: #000;
  --light-black: #1a1a1a;
  --bg-color: #222;
  --white: #fff;
  --light-white: #aaa;
  --bg-dark-gradient: linear-gradient(
    180deg,
    rgba(1, 1, 1, 0.6),
    rgba(0, 0, 0, 0.8)
  );
  --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  --text-shadow: 2px 2px 0px #ffab00, -2px -2px 0px #ffab00, 0px 0px 8px #ff8700;
  --glow-warm: 0 0 12px rgba(255, 197, 143, 0.35);
  --glow: 0 0 10px rgba(255, 255, 255, 0.25);
  --glow-rainbow: 0 0 6px rgba(255, 0, 0, 0.4), 0 0 10px rgba(255, 165, 0, 0.4),
    0 0 14px rgba(255, 255, 0, 0.4), 0 0 18px rgba(0, 255, 0, 0.4),
    0 0 22px rgba(0, 127, 255, 0.4), 0 0 26px rgba(75, 0, 130, 0.4),
    0 0 30px rgba(148, 0, 211, 0.4);
  --border: 0.1rem var(--light-black) solid;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  border: none;
  text-transform: capitalize;
  transition: 0.2s all linear;
  font-family: "Poppins", sans-serif;
  text-decoration: none;
}

html {
  font-size: 62.5%;
  scroll-padding-top: 7rem;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0.8rem;
}

::-webkit-scrollbar-thumb {
  background-color: var(--main-color);
}

::-webkit-scrollbar-track {
  border-color: none;
}

body {
  background-color: var(--bg-color);
}

section {
  padding: 2rem;
  margin: 0 auto;
  max-width: 1410px;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  color: var(--main-color);
  border-radius: 0.5rem;
  border: 0.2rem solid var(--main-color);
  font-size: 1.8rem;
  padding: 1rem 2rem;
  cursor: pointer;
  background: none;
  transition: 0.2s linear;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.btn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 0;
  background: var(--main-color);
  z-index: -1;
  transition: 0.2s linear;
}
.btn:hover {
  color: var(--white);
}
.btn:hover::before {
  width: 100%;
  left: 0;
}

.heading {
  font-size: 3rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.2);
  color: var(--main-color);
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}
.header.active {
  background-color: rgba(0, 0, 0, 0.534);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
.header .flex {
  display: flex;
  align-items: center;
}
.header .flex .logo {
  margin-right: auto;
}
.header .flex .logo a h1 {
  font-size: 2.5rem;
  color: var(--white);
  font-weight: bold;
  font-style: italic;
  display: inline-block;
}
.header .flex .search-form {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.header .flex .search-form.active {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.header .flex .search-form .search-bar {
  border-radius: 0.5rem;
  border: 1px var(--light-black) solid;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 50rem;
}
.header .flex .search-form .search-bar input {
  width: 100%;
  background: none;
  font-size: 1.8rem;
  color: var(--white);
}
.header .flex .search-form .search-bar input ::-webkit-search-cancel-button {
  -webkit-appearance: none;
          appearance: none;
}
.header .flex .search-form .search-bar label {
  font-size: 2rem;
  color: var(--white);
  cursor: pointer;
}
.header .flex .search-form .search-bar label:hover {
  color: var(--main-color);
}
.header .flex .search-form a {
  display: block;
  font-size: 2rem;
  text-align: center;
  height: 4rem;
  width: 4.5rem;
  line-height: 4rem;
  border-radius: 0.5rem;
  color: var(--white);
  border: var(--light-black) 1px solid;
}
.header .flex .search-form a:hover {
  background-color: var(--main-color);
  color: var(--black);
}
.header .flex .lang-switcher {
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 9999;
}
.header .flex .lang-switcher a img {
  width: 34px;
  height: auto;
  border-radius: 4px;
  opacity: 0.6;
  transition: all 0.2s ease;
}
.header .flex .lang-switcher a img:hover {
  opacity: 1;
  transform: scale(1.1);
}
.header .btn {
  margin-top: 0;
  margin-left: auto;
}

#menu-btn {
  font-size: 2.5rem;
  color: var(--main-color);
  margin-right: 1rem;
  cursor: pointer;
}

#search-toggler {
  height: 3.5rem;
  width: 4.5rem;
  line-height: 3.5rem;
  font-size: 2rem;
  color: var(--white);
  background-color: var(--light-black);
  border-radius: 0.5rem;
  margin-left: 1rem;
  text-align: center;
  display: none;
}

.side-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  display: none;
}
.side-bar.active {
  display: block;
}
.side-bar .navbar {
  height: 100%;
  width: 35rem;
  background-color: rgba(0, 0, 0, 0.8);
  padding: 2rem;
  overflow: scroll;
  animation: slide-in 0.2s cubic-bezier(0.32, 0.85, 0.21, 1.26);
}
.side-bar .navbar #close-btn {
  margin-bottom: 2rem;
  padding: 1rem;
  border: 0.1rem solid #555;
  border-radius: 5rem;
  display: inline-block;
  color: var(--white);
  cursor: pointer;
  font-size: 1.8rem;
}
.side-bar .navbar #close-btn:hover {
  background-color: var(--white);
  color: var(--black);
}
.side-bar .navbar #close-btn:hover i {
  margin-right: 1rem;
}
.side-bar .navbar #close-btn i {
  margin-right: 0.5rem;
}
.side-bar .navbar a {
  display: block;
  padding: 0.6rem 0;
  font-size: 1.6rem;
  color: var(--main-color);
}
.side-bar .navbar a:hover {
  color: var(--white);
}
.side-bar .navbar .title {
  background-color: var(--light-black);
  color: var(--white);
  font-size: 2rem;
  border-radius: 0.5rem;
  padding: 0.8rem 0;
  text-align: center;
  margin: 1rem 0;
}
.side-bar .navbar .row {
  -moz-column-count: 2;
       column-count: 2;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.hero .hero-slider {
  width: 100%;
}
.hero .swiper-pagination-bullet {
  height: 1rem;
  width: 1rem;
  color: var(--main-color);
  background: var(--light-white);
  text-align: center;
  line-height: 1.5rem;
}
.hero .swiper-pagination-bullet-active {
  background: var(--main-color);
  opacity: 1;
}
.hero .slide-1 {
  background-image: url("../images/hero-1.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-2 {
  background-image: url("../images/hero-2.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-3 {
  background-image: url("../images/hero-3.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-4 {
  background-image: url("../images/hero-4.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-5 {
  background-image: url("../images/hero-5.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-6 {
  background-image: url("../images/hero-6.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide-7 {
  background-image: url("../images/hero-7.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero .slide {
  position: relative;
  z-index: 0;
}
.hero .slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 100% 50%, transparent 30%, rgba(0, 0, 0, 0.9) 60%);
  z-index: -1;
}
.hero .slide .content {
  min-height: 50vh;
  display: flex;
  align-items: center;
}
.hero .slide .content span {
  font-size: 2rem;
  color: var(--main-color);
  text-transform: uppercase;
}
.hero .slide .content h2 {
  margin: 0.5rem 0 1.5rem 0;
  font-size: 5rem;
  line-height: 1.2;
  max-width: 50rem;
  color: var(--white);
}
.hero .slide .content .flex {
  display: flex;
  gap: 1.5rem;
}
.hero .slide .content .flex p {
  font-size: 1.8rem;
  color: var(--light-white);
}
.hero .slide .content .flex p i {
  margin-right: 0.8rem;
  color: var(--white);
}
.hero .slide .buttons {
  margin: 2rem 0;
}
.hero .slide .buttons a:last-child {
  margin-left: 1.5rem;
  color: var(--white);
  font-size: 1.8rem;
  background: none !important;
}
.hero .slide .buttons a:last-child i {
  margin-left: 0.5rem;
}
.hero .slide .buttons a:last-child:hover {
  color: var(--main-color);
}
.hero .slide .description {
  font-size: 1.8rem;
  color: var(--light-white);
  line-height: 1.8;
  max-width: 50rem;
}

@keyframes slide-in {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.services .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
  padding-bottom: 2rem;
}
.services .box-container .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--bg-dark-gradient);
}
.services .box-container .box i {
  font-size: 3.5rem;
  background: var(--main-color);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
}
.services .box-container .box h3 {
  font-size: 2rem;
  margin: 0.5rem 0;
  color: var(--white);
}
.services .box-container .box p {
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--light-white);
  padding: 0.5rem 0;
}

.pricing {
  background: var(--bg-dark-gradient);
  padding: 0 0 5rem 0;
}
.pricing .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  gap: 1.5rem;
  justify-content: center;
  align-items: stretch;
}
.pricing .box-container .box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2.5rem 2rem;
  background-color: var(--bg-color);
}
.pricing .box-container .box i {
  font-size: 10rem;
  background: var(--main-color);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
  margin: 2rem auto;
}
.pricing .box-container .box h3 {
  font-size: 2rem;
  margin: 2rem 0;
  color: var(--white);
}
.pricing .box-container .box h3.price {
  font-size: 8rem;
  color: var(--main-color);
}
.pricing .box-container .box h3.price span {
  font-size: 6rem;
  vertical-align: super; /* podnosi do góry */
  margin-left: 2px;
  opacity: 0.6; /* opcjonalnie */
}
.pricing .box-container .box p {
  line-height: 1.8;
  font-size: 1.5rem;
  color: var(--light-white);
  padding: 0.5rem 0;
}
.pricing .box-container .box a i {
  font-size: 3rem;
  margin-right: 2rem;
}

.faq .box-container {
  display: grid;
  gap: 2rem;
}
.faq .box-container .box {
  border: 0.1rem var(--black) solid;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: var(--box-shadow);
}
.faq .box-container .box .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  color: var(--white);
  font-size: 2rem;
}
.faq .box-container .box .title .fa-minus {
  transform: rotate(180deg);
  transition: 0.2s linear;
}
.faq .box-container .box .title .fa-plus {
  transform: rotate(90deg);
  transition: 0.2s linear;
}
.faq .box-container .box .content {
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--light-white);
  transform-origin: top;
  transform: scaleY(0);
  height: 0;
}
.faq .box-container .box .content.active {
  transform: scaleY(1);
  height: auto;
  padding-top: 1rem;
  transition: 0.2s linear;
}

.contact {
  background: var(--bg-dark-gradient);
}
.contact .box-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, 35rem);
  gap: 2rem;
  align-items: stretch;
  justify-content: center;
}
.contact .box-container .box {
  background-size: cover !important;
  background-position: center !important;
  padding: 6rem 4rem;
  box-shadow: var(--box-shadow);
  background-color: var(--bg-color);
  border: var(--border);
}
.contact .box-container .box.box-1 {
  background: url(../images/contact-1.png) no-repeat;
}
.contact .box-container .box.box-2 {
  background: url(../images/contact-2.png) no-repeat;
}
.contact .box-container .box.box-3 {
  background: url(../images/contact-3.png) no-repeat;
}
.contact .box-container .box i {
  color: var(--light-white);
  font-size: 5rem;
  height: 12rem;
  width: 12rem;
  margin-bottom: 12rem;
  background: var(--light-black);
  opacity: 0.5;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.contact .box-container .box h4 {
  margin: 1.5rem 0;
  font-size: 2.5rem;
  color: var(--white);
}
.contact .box-container .box a {
  display: block;
  text-transform: none;
  color: var(--light-white);
  font-size: 1.7rem;
  line-height: 1.8;
}
.contact .box-container .box a:hover {
  text-decoration: underline;
  color: var(--main-color);
}
.contact .form {
  margin-top: 2rem;
  text-align: center;
}
.contact .form .flex {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.contact .form .flex .input {
  flex: 1 1 45rem;
}
.contact .form .input,
.contact .form textarea {
  background: none;
  color: var(--white);
  border: var(--border);
  border-radius: 0.5rem;
  padding: 1.6rem;
  font-size: 2rem;
  text-transform: none;
}
.contact .form .input:focus,
.contact .form textarea:focus {
  border-color: var(--main-color);
  transition: 0.2s linear;
}
.contact .form .input::-moz-placeholder, .contact .form textarea::-moz-placeholder {
  text-transform: capitalize;
}
.contact .form .input::placeholder,
.contact .form textarea::placeholder {
  text-transform: capitalize;
}
.contact .form textarea {
  height: 20rem;
  width: 100%;
  margin: 1.5rem auto;
  resize: none;
}
.contact .form .btn:hover {
  background-color: var(--main-color);
}

.logoSwiper {
  width: 100%;
  overflow: hidden;
}
.logoSwiper .swiper-wrapper {
  display: flex;
  align-items: center;
  transition-timing-function: linear !important;
}
.logoSwiper .swiper-slide {
  width: auto !important;
  min-width: 140px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logoSwiper img {
  height: 55px;
  max-width: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(1);
  opacity: 0.9;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.logoSwiper img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: scale(1.05);
}

.footer {
  background-color: var(--black);
}
.footer .list h3 {
  color: var(--white);
  font-size: 3rem;
}
.footer .list p {
  font-size: 1.4rem;
  line-height: 1.6;
  color: var(--light-white);
  padding: 0.5rem 0;
}
.footer .list .list-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 1rem 0;
  padding-top: 1rem;
}
.footer .list .list-links a {
  padding: 0.5rem 1rem;
  font-size: 2rem;
  color: var(--light-white);
  background-color: var(--bg-color);
  border-radius: 0.5rem;
}
.footer .list .list-links a:hover {
  background-color: var(--main-color);
  color: var(--black);
}
.footer .row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  align-items: center;
  gap: 2rem;
}
.footer .row .extra-links a {
  margin-right: 1.5rem;
  font-size: 1.8rem;
  color: var(--light-white);
  display: inline-block;
}
.footer .row .extra-links a:hover {
  color: var(--white);
}
.footer .row .share a {
  font-size: 2rem;
  height: 4rem;
  width: 4rem;
  line-height: 4rem;
  border-radius: 0.5rem;
  background-color: var(--light-black);
  color: var(--light-white);
  text-align: center;
  margin-left: 0.5rem;
}
.footer .row .share a:hover {
  background-color: var(--main-color);
  color: var(--black);
}
.footer .credit {
  text-align: center;
  font-size: 2rem;
  color: var(--light-white);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 3rem 0 1rem 0;
}
.footer .credit span {
  color: var(--main-color);
}

@media (max-width: 1200px) {
  html {
    font-size: 55%;
  }
}
@media (max-width: 991px) {
  #search-toggler {
    display: inline-block;
  }
  .header .flex .search-form {
    position: absolute;
    top: calc(100% - 0.1rem);
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    border-top: 0.1rem solid rgba(255, 255, 255, 0.2);
    padding: 1.5rem;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  .header .flex .search-form .search-bar {
    width: 100%;
  }
  .footer .list {
    text-align: center;
  }
  .footer .list .list-links {
    justify-content: center;
  }
  .footer .row {
    flex-flow: column;
    text-align: center;
  }
  .footer .row .extra-links {
    padding: 1rem;
  }
  .pricing-header {
    flex-direction: row;
    align-items: center;
  }
  .pricing-hero {
    width: 110px;
    height: 72px;
  }
  .pricing {
    padding: 2.5rem 0;
  }
}
@media (max-width: 450px) {
  html {
    font-size: 50%;
  }
  .hero .slide::before {
    background: rgba(0, 0, 0, 0.7);
  }
  .hero .content h3 {
    font-size: 4rem;
  }
}/*# sourceMappingURL=style.css.map */