@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Righteous&display=swap");
@import url("https://fonts.googleapis.com/css2?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");
body {
  font-family: "Poppins", sans-serif;
  background: white;
  overflow-x: hidden;
}

html,
body {
  scroll-behavior: smooth;
  font-size: 16px;
}

a {
  color: var(--color-text-white);
  position: relative;
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s ease;
}

u {
  color: var(--color-blue-one);
}

p,
h1,
h2,
h3 {
  margin-bottom: 0;
}

strong {
  font-weight: 700;
}

.mobile-menu-is-open {
  overflow-y: hidden;
  touch-action: none;
  -ms-touch-action: none;
}
.mobile-menu-is-open .logo img {
  transition: all 0.3s ease;
}
@media (max-width: 576px) {
  .mobile-menu-is-open .logo img {
    opacity: 0;
  }
}

h1 {
  font-size: 3.9rem;
  font-family: "Righteous", sans-serif;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 2rem;
}

.material-symbols-sharp {
  font-variation-settings: "FILL" 0, "wght" 200, "GRAD" 0, "opsz" 24;
}

/* animacja ładowania sekcji */
.animate {
  position: relative;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.3s ease;
}

.animate.active {
  transform: translateY(0);
  opacity: 1;
}

/* kolory */
:root {
  --color-blue-one: #6cbfe6;
  --color-purple: #b44291;
  --color-background: #002631;
  --color-grey: #f2f2f2;
  --color-text-black: #252525;
}

::-moz-selection {
  color: var(--color-text-white);
  background-color: var(--color-blue-one);
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
}

::selection {
  color: var(--color-text-white);
  background-color: var(--color-blue-one);
  -webkit-background-clip: text;
  -webkit-text-fill-color: white;
}

@keyframes fadeInImage {
  from {
    opacity: 0;
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInText {
  from {
    opacity: 0;
    transform: translate3d(0, 20%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, 15%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes ButtonShake {
  2%, 18% {
    transform: rotate(0deg);
  }
  4%, 16% {
    transform: rotate(2deg);
  }
  6%, 10%, 14% {
    transform: rotate(-4deg);
  }
  8%, 12% {
    transform: rotate(4deg);
  }
}
/* header */
.header {
  background: transparent;
  border-bottom: 0px solid rgba(140, 135, 136, 0.3137254902);
  position: absolute;
  width: 100%;
  z-index: 999;
  transition: all 0.3s ease;
}
.header .logo {
  z-index: 100;
}
.header .navbar-brand.logo img {
  margin-top: 10px;
  margin-bottom: 10px;
  max-width: 300px;
  filter: drop-shadow(0px 0px 20px #6cbfe6);
}
@media (max-width: 576px) {
  .header .navbar-brand.logo img {
    max-width: 150px;
  }
}
.header li.nav-item {
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}
.header.tlo {
  background: linear-gradient(180deg, var(--color-background) 0%, rgba(0, 38, 49, 0) 100%);
}

.navbar {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
  padding-bottom: 0;
  padding-top: 0;
}
.navbar .menu {
  justify-content: flex-end;
}

.navbar-nav {
  gap: 10px;
}
.navbar-nav .nav-link {
  font-weight: bold;
  color: var(--color-purple);
  font-weight: 500;
}
.navbar-nav .nav-link.active {
  color: var(--color-blue-one);
  filter: drop-shadow(0px 0px 20px #6cbfe6);
}
.navbar-nav .nav-link:hover {
  color: var(--color-blue-one);
  filter: drop-shadow(0px 0px 20px #6cbfe6);
}
.navbar-nav .nav-link:focus {
  color: var(--color-blue-one);
}

.nav-item a {
  font-size: 1rem;
  letter-spacing: 0px;
}

.demo a {
  display: flex;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.0588235294);
  border-radius: 15px;
  padding: 10px 8px;
  gap: 2px;
}
.demo a img {
  width: 18px;
  height: 18px;
  transform: translateY(1px);
}

@media (min-width: 1400px) {
  .navbar-expand-xxl .navbar-nav .nav-link {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    height: 40px;
  }
}
/* --- hamburger menu --- */
#menuToggle {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  z-index: 1;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
  flex-direction: column;
  gap: 6px;
}
#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
  -webkit-touch-callout: none;
}
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(0px, -4px);
  background: var(--color-blue-one);
}
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, 4px);
}
#menuToggle input:checked ~ #menu__mobile {
  right: 0;
  display: block;
}
#menuToggle span {
  display: block;
  width: 37px;
  height: 2px;
  position: relative;
  background: var(--color-blue-one);
  z-index: 1;
  transform-origin: 4px 0px;
  transition: all 0.3s ease;
}
#menuToggle span:first-child {
  transform-origin: 0% 0%;
}
#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

#menu__mobile {
  position: absolute;
  width: 50vw;
  height: auto;
  right: 0;
  top: 0;
  padding: 50px;
  background: rgba(0, 38, 49, 0.9490196078);
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
  -webkit-font-smoothing: antialiased;
  transition: 0.3s ease;
  display: none;
  backdrop-filter: blur(10px);
}
@media (max-width: 576px) {
  #menu__mobile {
    width: 100vw;
  }
  #menu__mobile ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  #menu__mobile ul li a {
    display: block;
    text-decoration: none;
    color: var(--color-purple);
  }
  #menu__mobile li {
    font-size: 22px;
    height: auto;
  }
}

#menu__mobile p {
  color: var(--color-blue-one);
  margin-bottom: 20px;
}

.menu__mobile-kontakt {
  display: flex;
  flex-direction: column;
  padding-top: 50px;
}
.menu__mobile-kontakt a {
  display: flex;
  align-items: center;
  color: white;
  text-decoration: none;
  gap: 10px;
}
.menu__mobile-kontakt a:nth-child(1):before {
  content: "call";
  font-family: "material symbols sharp";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 200, "opsz" 48;
  font-size: 1.5rem;
  color: var(--color-blue-one);
}
.menu__mobile-kontakt a:nth-child(2):before {
  content: "mail";
  font-family: "material symbols sharp";
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 200, "opsz" 48;
  font-size: 1.5rem;
  color: var(--color-blue-one);
}

@media (min-width: 1400px) {
  #menuToggle {
    display: none;
  }
}
/* zakładka cennik */
.section__baner {
  display: flex;
  align-items: flex-end;
  height: auto;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  background: #002631;
  padding: 0 0 100px 0;
}
@media (max-width: 576px) {
  .section__baner {
    min-height: 300px;
  }
}
.section__baner:after {
  content: "";
  position: absolute;
  background: url(json/smil/orbity-nowe.svg);
  bottom: 0;
  right: 0;
  width: 1000px;
  height: 1000px;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  top: -353px;
  right: 220px;
}
@media (max-width: 1440px) {
  .section__baner:after {
    right: 0px;
  }
}
@media (max-width: 768px) {
  .section__baner:after {
    display: none;
  }
}
.section__baner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 1vw;
  width: 40%;
  height: 100px;
  background: -webkit-linear-gradient(-70deg, #002935 0%, #6bbce4 50%, #002935 80%);
  filter: blur(100px);
}
@media (max-width: 1024px) {
  .section__baner .section__baner-text {
    padding-top: 200px;
  }
}
@media (max-width: 768px) {
  .section__baner .section__baner-text {
    padding-top: 50px;
  }
}
.section__baner .section__baner-text h1 {
  font-family: "Poppins", sans-serif;
  text-align: left;
  font-weight: normal;
  position: relative;
  font-size: clamp(1.8rem, 4vw, 2rem);
  line-height: 1.2;
  color: white;
  text-shadow: 0px 0px 100px #63b8df;
}
.section__baner .section__baner-text h1 span {
  font-weight: 500;
  background: -webkit-linear-gradient(0deg, #b44291 20%, #3e5fa9 70%, #6cbfe6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
}

li {
  list-style-type: none;
}

ol,
ul {
  padding-left: 1.3rem;
  line-height: 26px;
}

/* sekcja 1 cennik */
.section__1 {
  padding: 100px 0 100px 0;
  position: relative;
}
.section__1-cennik {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.section__1-cennik .start,
.section__1-cennik .biznes {
  position: relative;
  background: var(--color-grey);
  flex: 1 1 400px;
  max-width: 600px;
  padding: 20px;
  border-radius: 60px;
  corner-shape: squircle;
  transition: all 0.3s ease;
}
.section__1-cennik .start ul li,
.section__1-cennik .biznes ul li {
  position: relative;
  display: flex;
  justify-content: space-between;
  line-height: 1.8;
}
.section__1-cennik .start ul li.check::before,
.section__1-cennik .biznes ul li.check::before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  left: -28px;
  top: 0px;
  background: url(images/check_small_blue.svg) no-repeat;
}
.section__1-cennik .start ul li.uncheck::before,
.section__1-cennik .biznes ul li.uncheck::before {
  content: "";
  width: 28px;
  height: 28px;
  position: absolute;
  left: -28px;
  top: 0px;
  background: url(images/remove.svg) no-repeat;
}
.section__1-cennik .start ul li span,
.section__1-cennik .biznes ul li span {
  font-weight: 600;
  text-align: right;
}
.section__1-cennik .start ul li:hover,
.section__1-cennik .biznes ul li:hover {
  color: var(--color-blue-one);
  cursor: pointer;
  transition: all 0.3s ease;
}
.section__1-cennik .start ul li.uncheck:hover,
.section__1-cennik .biznes ul li.uncheck:hover {
  color: var(--color-purple);
  cursor: pointer;
}
.section__1-cennik .start:hover,
.section__1-cennik .biznes:hover {
  background: #fff;
}
.section__1-cennik .start:hover .cena,
.section__1-cennik .biznes:hover .cena {
  color: var(--color-grey);
  background: var(--color-blue-one);
  transform: scale(1.1);
  transform-origin: bottom left;
}
.section__1-cennik .start {
  border: 3px solid var(--color-grey);
}
.section__1-cennik .start:hover {
  border: 3px solid var(--color-blue-one);
}
.section__1-cennik .biznes {
  border: 3px solid var(--color-purple);
}
.section__1-cennik .biznes:hover {
  border: 3px solid var(--color-purple);
}
.section__1-cennik .start .nazwa {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 10px;
  color: var(--color-blue-one);
}
.section__1-cennik .biznes .nazwa {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  padding-bottom: 10px;
  background: -webkit-linear-gradient(0deg, #b44291 0%, #00adff 10%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-box-decoration-break: clone;
}
.section__1-cennik .cena {
  display: flex;
  gap: 10px;
  padding-bottom: 20px;
  background: #fff;
  padding: 5px 10px;
  border-radius: 20px;
  corner-shape: squircle;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.section__1-cennik .cena span {
  font-weight: 600;
}

.button {
  gap: 20px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  background: var(--color-blue-one);
  padding: 10px 10px;
  border-radius: 35px;
  corner-shape: squircle;
  cursor: pointer;
  position: relative;
  z-index: 0;
}
.button p {
  color: white;
}
.button a {
  display: flex;
  align-items: center;
  color: white;
  padding: 7px 15px;
  border-radius: 35px;
  corner-shape: squircle;
  gap: 5px;
  background: -webkit-linear-gradient(0deg, #b44290 0%, #73509c 100%);
}
.button a:hover {
  gap: 15px;
}
.button img {
  width: 20px;
  transition: all 0.2s ease;
}

/* --- sekcja footer --- */
.footer {
  background: var(--color-background);
}

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

.section__top-footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px 0px;
}
.section__top-footer img {
  max-width: 240px;
}

.section__top-footer-logo {
  flex: 1 1 auto;
}

.section__top-footer-text {
  display: flex;
  gap: 15px;
  position: relative;
  flex: 1 1 auto;
  justify-content: flex-end;
}
.section__top-footer-text p {
  position: relative;
  color: white;
}
.section__top-footer-text p:before {
  content: "";
  position: absolute;
  height: 0.1rem;
  width: 40px;
  background-color: var(--color-blue-one);
  top: 50%;
  left: -100px;
}
.section__top-footer-text p:after {
  content: "";
  position: absolute;
  height: 0.1rem;
  width: 40px;
  background-color: var(--color-gray);
  top: 50%;
  left: -60px;
}

.section__footer-bottom {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  gap: 20px;
  padding: 100px 0px 50px 0px;
}
.section__footer-bottom p {
  color: #bbbbbb;
  font-size: inherit;
  font-weight: 400;
}
.section__footer-bottom p:first-of-type {
  color: white;
  font-weight: 600;
  margin-bottom: 10px;
}
.section__footer-bottom a {
  display: flex;
  align-items: flex-start;
  color: #bbbbbb;
  line-height: inherit;
  width: -moz-fit-content;
  width: fit-content;
}
.section__footer-bottom a:hover {
  color: var(--color-blue-one);
}
.section__footer-bottom .section__footer-bottom-adres {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 0 1 300px;
}
.section__footer-bottom .section__footer-bottom-system {
  display: flex;
  flex-direction: column;
  position: relative;
  flex: 1 1 400px;
}

.section__footer-copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 18px;
       column-gap: 18px;
  flex-wrap: wrap;
  padding: 30px 0px;
}
.section__footer-copyright .footer__year p {
  font-size: 0.75rem;
  font-weight: 400;
  color: #bbbbbb;
}

/* cookie baner */
/* to top */
#to__top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 0px;
  border: none;
  outline: none;
  background-color: var(--color-blue-one);
  color: white;
  cursor: pointer;
  border-radius: 100px;
  height: 50px;
  width: 50px;
  transition: 0.2s ease;
}
#to__top:hover {
  background-color: var(--color-purple);
  transition: all 0.2s ease;
}

.info {
  margin-top: 40px;
  padding: 40px 20px;
  border-radius: 8px;
  display: none;
}
.info--success {
  background: rgba(3, 176, 3, 0.2705882353);
  border: 1px solid green;
  display: block;
}
.info--error {
  background: rgba(176, 3, 3, 0.2705882353);
  border: 1px solid red;
  display: block;
}/*# sourceMappingURL=cennik.css.map */