@charset "UTF-8";
/* ----------------------------------------------
 * Generated by Animista on 2026-6-4 9:16:14
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation tracking-in-expand
 * ----------------------------------------
 */
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5em;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
/* ----------------------------------------------
 * Generated by Animista on 2026-6-4 9:19:30
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */
/**
 * ----------------------------------------
 * animation slide-in-left
 * ----------------------------------------
 */
@keyframes slide-in-left {
  0% {
    transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  outline: none;
}

html,
body {
  -ms-overflow-style: none;
  scrollbar-width: none;
  overflow-y: scroll; /* nadal umożliwia scroll */
}

body {
  font-family: "Inter", sans-serif;
  font-weight: 400;
}

section {
  scroll-margin-top: 115px;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Merriweather", serif;
}
i {
	font-family: 'Great Vibes', serif;
	font-size: 33px;
}
.wrapper {
  margin: 0 auto;
  max-width: 1200px;
  width: 100%;
}

.tracking-in-expand {
  animation: tracking-in-expand 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.3s both;
}

.tracking-in-expand-text {
  animation: tracking-in-expand 0.8s cubic-bezier(0.215, 0.61, 0.355, 1) 0.9s both;
}

.slide-in-left {
  animation: slide-in-left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 1.7s both;
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}

.hamburger:hover {
  opacity: 0.7;
}

.hamburger.is-active:hover {
  opacity: 0.7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
  background-color: #000;
}

.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  width: 40px;
  height: 4px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: "";
  display: block;
}

.hamburger-inner::before {
  top: -10px;
}

.hamburger-inner::after {
  bottom: -10px;
}

.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}

.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
}

.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.header {
  position: relative;
  background-image: url("/img/heroSmall.jpg");
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.header-shadow {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.62);
  z-index: 0;
}

.header__heading,
.header__text,
.header-name {
  position: relative;
  color: #fefefe;
  z-index: 1;
}

.header-name {
  font-family: "Great Vibes", serif;
  padding: 0.5em;
  font-size: 2.6em;
}

.header__text {
  top: 0.5em;
}

.header__btn-text {
  position: absolute;
  bottom: 4rem;
  z-index: 1;
  display: inline-block;
  background-color: #5b8def;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 1.6em;
  color: #fefefe;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.header__btn-text:hover, .header__btn-text:focus-visible {
  background: #3f6fe5;
  transform: translateY(-2px);
}

.hamburger {
  position: fixed;
  top: 3em;
  left: 1em;
  transform: translateY(-50%);
  z-index: 500;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  z-index: 500;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: #fefefe;
}

.is-active .hamburger-inner,
.is-active .hamburger-inner::before,
.is-active .hamburger-inner::after {
  background-color: #fefefe !important;
}

.hamburger--dark .hamburger-inner,
.hamburger--dark .hamburger-inner::before,
.hamburger--dark .hamburger-inner::after {
  background-color: #2b2b2b;
}

.nav-mobile {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transform: translateX(-102%);
  transition: transform 0.3s;
  z-index: 10;
  background-color: #2b2b2b;
}
.nav-mobile--active {
  transform: translateX(0);
}
.nav-desktop {
  display: none;
  transition: box-shadow 0.3s ease, background-color 0.3s ease;
}
.nav__link {
  z-index: 2;
  position: relative;
  display: inline-block;
  margin: 0.5em;
  padding: 0.5em;
  font-size: 2.3rem;
  color: #fefefe;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s;
  cursor: pointer;
}
.nav__link:hover, .nav__link:focus-visible {
  color: #3f6fe5;
}
.nav__logo {
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 0.5rem;
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.nav__logo:hover, .nav__logo:focus-visible {
  transform: scale(1.1);
}

.nav__link.active {
  color: #3f6fe5;
  position: relative;
}

.nav__link.active::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #3f6fe5;
}

.nav-desktop.scrolled {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
}

.aboutUs {
  min-height: 500px;
}
.aboutUs__img {
  height: 270px;
  border-radius: 10%;
  margin: 0 10px;
}
.aboutUs__text {
  font-size: 1.9em;
}

.section-title {
  padding-top: 20px;
  background-color: #f6f7fb;
  text-align: center;
}

.aboutUsOdd {
  background-color: #f6f7fb;
}

.aboutUsEven {
  background-color: #fefefe;
}

.aboutUsOdd,
.aboutUsEven {
  padding: 45px 15px;
}
.aboutUsOdd .wrapper,
.aboutUsEven .wrapper {
  display: flex;
  align-items: center;
}

.aboutUsEven .wrapper {
  flex-direction: row-reverse;
}

.aboutUs__img {
  transition: transform 0.3s ease;
}
.aboutUs__img:hover, .aboutUs__img:focus-visible {
  transform: scale(1.05);
}

.announcements {
  padding: 4em 0;
}
.announcements__container {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.announcements {
  padding: 4em 1em;
  background: #f6f7fb;
}
.announcements-title {
  margin-bottom: 30px;
}
.announcements__container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.announcements__container {
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

.announcements__empty {
  margin: auto;
  font-size: 2.3rem;
  color: #3b3b3b;
}

.announcement__card {
  display: flex;
  z-index: 2;
  justify-content: space-between;
  align-items: center;
  padding: 1.5em 2em;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.announcement__card:hover, .announcement__card:focus-visible {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  transform: scale(1.03);
}
.announcement__card .announcement__text {
  font-size: 1.8rem;
  color: #2b2b2b;
}
.announcement__card .announcement__date {
  font-size: 1.3rem;
  color: #3b3b3b;
  white-space: nowrap;
  margin-left: 2em;
}

.offer {
  padding: 40px 10px;
  background: #fefefe;
}

.offer__heading {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}

.offer__description {
  margin-top: 10px;
  font-size: 1.8em;
  line-height: 1.7;
  color: #3b3b3b;
}

.offer__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.offer-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.offer-card:hover,
.offer-card:focus-visible {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offer-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(91, 141, 239, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #5b8def;
}
.offer-card__icon i {
  font-size: 2.4em;
  line-height: 1;
}

.offer-card__title {
  font-size: 2.2rem;
  color: #2b2b2b;
  margin-bottom: 14px;
}

.offer-card__description {
  font-size: 1.7rem;
  line-height: 1.7;
  color: #3b3b3b;
  margin-bottom: 20px;
}

.offer-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offer-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  color: #3b3b3b;
}

.offer-card__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #5b8def;
  flex-shrink: 0;
}

.offer__cta {
  margin-top: 50px;
  text-align: center;
}

.offer__cta-text {
  font-size: 1.8em;
  margin-bottom: 15px;
}

.offer-cta {
  display: inline-block;
  border: none;
  background: #5b8def;
  color: white;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 1.7rem;
  font-weight: 600;
  text-decoration: none;
  z-index: 1;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.offer-cta:hover,
.offer-cta:focus-visible {
  background: #3f6fe5;
  transform: translateY(-2px);
}

.certificates {
  padding: 4rem 1rem;
  background-color: #f6f7fb;
}
.certificates .section-title {
  padding-bottom: 35px;
}

.certificates-title {
  font-size: 2.6rem;
  font-weight: 500;
  margin: 0 0 1.5rem;
}

.certificates-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.certificates-item {
  font-size: 1.7rem;
  line-height: 1.7;
  padding: 0.5rem 0 0.5rem 1.25rem;
  color: #3b3b3b;
  border-bottom: 1px solid #2b2b2b;
  position: relative;
}

.certificates-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.certificates-block + .certificates-block {
  margin-top: 2.5rem;
}

.contact {
  background-color: #2b2b2b;
  padding: 1.5em 0;
}

.contact-item {
  display: grid;
  grid-template-columns: 1fr;
  text-align: center;
}

.contact-title {
  font-size: 1.9rem;
  color: #f6f7fb;
  margin-bottom: 0.2em;
  margin-top: 0.4em;
}

.contact-text {
  font-size: 1.6rem;
  color: #fefefe;
}
.contact-text a {
  text-decoration: none;
}

.contact-text a {
  color: #fefefe;
  transition: color 0.3s ease;
}

.contact-text a:hover,
.contact-text a:focus-visible {
  color: #3f6fe5;
}

.ph-facebook-logo {
  font-size: 2.1em;
  color: currentColor;
}

.footer {
  background-color: #2b2b2b;
  color: #f6f7fb;
  padding: 0.6em 0.3em;
  text-align: center;
  font-size: 1.4em;
}

.heading {
  font-size: 3.2em;
  color: #2b2b2b;
}

*:focus {
  outline: none;
}

@media (max-width: 768px) {
  .header {
    background-image: url("../img/akademia - Copy.jpg");
  }
  .header__heading {
    font-size: 3.1em;
  }
  .header__text {
    font-size: 2.1em;
  }
  .offer__cta-text {
    font-size: 1.5em;
  }
  .aboutUsOdd .wrapper,
  .aboutUsEven .wrapper {
    display: block;
    overflow: hidden;
  }
  .aboutUs__img {
    float: left;
    width: 45%;
    height: auto;
    max-height: 300px;
    max-width: 200px;
    -o-object-fit: fill;
       object-fit: fill;
    margin: 0 15px 10px 0;
    border-radius: 10%;
  }
  .aboutUsEven .aboutUs__img {
    float: right;
    margin: 0 0 10px 15px;
  }
}
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
  .header {
    height: 50vh !important;
  }
  .nav-desktop {
    display: flex;
    position: fixed;
    align-items: center;
    padding: 1em 2em;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000000;
  }
  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .nav__links {
    display: flex;
    gap: 1rem;
    margin-left: auto;
  }
  .nav__link {
    font-size: 1.7rem;
    color: #fefefe;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.3s;
  }
  .nav__link:hover {
    color: #3f6fe5;
  }
  .nav__logo {
    z-index: 1;
    display: flex;
    align-items: center;
  }
  .nav__logo img {
    height: clamp(60px, 5vw, 90px);
    width: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .header {
    background-image: url("../img/akademia - Copy.jpg");
  }
  .header__text {
    font-size: 1.9em;
  }
  .header__heading {
    font-size: 2.8em;
  }
  .aboutUs__img {
    height: 300px;
    border-radius: 10%;
    margin: 0 15px;
  }
  .aboutUs__text {
    font-size: 2.1em;
  }
  .contact-text {
    font-size: 2.1em;
  }
  .contact-title {
    font-size: 2.4em;
  }
  .footer {
    font-size: 2.2em;
  }
  .offer {
    padding: 50px 10px;
  }
  .offer__heading {
    margin-bottom: 60px;
  }
  .offer__description {
    font-size: 17px;
  }
  .offer__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .offer-card {
    padding: 32px;
    border-radius: 26px;
  }
  .offer-card__icon {
    width: 52px;
    height: 52px;
  }
  .offer-card__title {
    font-size: 2.4rem;
  }
  .offer-card__description {
    font-size: 1.5rem;
  }
  .offer-card__item {
    font-size: 1.35rem;
  }
  .offer__cta-text {
    font-size: 2rem;
  }
  .offer__cta-button {
    padding: 15px 30px;
    font-size: 1.5rem;
  }
  .heading {
    font-size: 4em;
  }
  #contact .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: center; /* wyśrodkowanie całej grupy */
    flex-wrap: wrap; /* zawijanie na telefonie */
    gap: 30px 40px; /* odstępy między elementami */
    padding: 40px 20px;
    max-width: 1200px; /* ograniczenie szerokości na dużych ekranach */
    margin: 0 auto; /* wyśrodkowanie wrappera */
  }
  .contact-item {
    display: flex;
    flex-direction: column; /* tytuł nad tekstem */
    align-items: center; /* wyśrodkowanie tekstu w pionie */
    text-align: center; /* wyśrodkowanie tekstu */
    min-width: 180px; /* minimalna szerokość na mniejszych ekranach */
    flex: 1 1 200px; /* elastyczność */
    max-width: 250px; /* maksymalna szerokość */
  }
}
@media (min-width: 992px) {
  .nav__link {
    font-size: 1.9rem;
  }
  .nav__logo {
    z-index: 1;
    display: flex;
    align-items: center;
  }
  .header {
    background-image: url("../img/akademia - Copy.jpg");
  }
  .header__text {
    font-size: 2.2em;
  }
  .header__heading {
    font-size: 3.3em;
  }
  .aboutUs__img {
    height: 400px;
    border-radius: 10%;
    margin: 0 15px;
  }
  .aboutUs__text {
    font-size: 2.3em;
  }
  .offer {
    padding: 60px 10px;
  }
  .offer__heading {
    margin-bottom: 72px;
  }
  .offer__description {
    font-size: 18px;
  }
  .offer__cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .offer-card {
    padding: 40px;
    border-radius: 28px;
  }
  .offer-card__icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    margin-bottom: 28px;
  }
  .offer-card__title {
    font-size: 2.8rem;
  }
  .offer-card__description {
    font-size: 1.6rem;
    margin-bottom: 28px;
  }
  .offer-card__list {
    gap: 14px;
  }
  .offer-card__item {
    font-size: 1.4rem;
    gap: 12px;
  }
  .offer-card__item::before {
    width: 8px;
    height: 8px;
  }
  .offer__cta {
    margin-top: 72px;
  }
  .offer__cta-text {
    font-size: 2.2rem;
    margin-bottom: 24px;
  }
  .offer__cta-button {
    padding: 16px 32px;
    font-size: 1.6rem;
  }
  .heading {
    font-size: 4.8em;
  }
}/*# sourceMappingURL=style.min.css.map */