@charset "UTF-8";
[class*=__container] {
  max-width: 1290px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

#faq {
  padding: 5vh 0;
}
#faq .faq-box {
  margin: 10px auto;
}
#faq .faq-box__element {
  margin-top: 15px;
}
#faq .faq-box__element p {
  margin-bottom: 0;
}
#faq .faq-box__question {
  font-family: "Raleway", sans-serif;
  font-size: 1.6rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid rgb(161, 161, 161);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgb(99, 99, 99);
}
#faq .faq-box__question:hover {
  cursor: pointer;
}
#faq .faq-box__answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Raleway", sans-serif;
  font-size: 1.5rem;
  margin-top: 0;
  padding: 0 15px;
  border-radius: 5px;
  border: 2px solid #066970;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
  color: rgb(65, 65, 65);
}
#faq .faq-box .showUp {
  -webkit-animation: showUp 0.4s ease-in-out;
          animation: showUp 0.4s ease-in-out;
  padding: 15px;
  height: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  margin-top: 10px;
}

.faq-box {
  margin: 10px auto;
}
.faq-box__element {
  margin-top: 15px;
}
.faq-box__button {
  color: #066970;
}
.faq-box__question {
  font-family: "Raleway", sans-serif;
  font-size: 2rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  border-radius: 5px;
  border: 2px solid rgb(80, 80, 80);
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: rgb(49, 49, 49);
}
.faq-box__question:hover {
  cursor: pointer;
}
.faq-box__answer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: "Raleway", sans-serif;
  font-size: 1.8rem;
  margin-top: 0;
  padding: 0 15px;
  border-radius: 5px;
  border: 2px solid red;
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 0;
}
.faq-box .showUp {
  -webkit-animation: showUp 0.4s ease-in-out;
          animation: showUp 0.4s ease-in-out;
  padding: 15px;
  height: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  opacity: 1;
  margin-top: 10px;
}

body {
  font-family: "Roboto", sans-serif;
}

/* Style dla logo */
.logo-img {
  height: 50px;
  width: auto;
}

/* Style dla menu */
.navbar {
  position: relative;
}

.nav-link {
  position: relative;
  padding: 10px 15px;
  margin: 0 5px;
  font-weight: 500;
  color: #5a5a5a !important;
  /* ciemnoszary dla nieaktywnych */
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

/* Efekt hover i active - kolor tekstu */
.nav-link:hover,
.nav-link.active {
  color: #066970 !important;
  /* kolor dla aktywnego/hooverowanego */
}

/* Podkreślenie dla aktywnego/hooverowanego elementu */
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -15px;
  /* pozycjonowanie na dolnej krawędzi .navbar */
  left: 0;
  width: 0;
  height: 3px;
  background-color: #066970;
  -webkit-transition: width 0.3s ease;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Style dla ikon w menu */
.nav-icon {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  opacity: 0;
  -webkit-transform: translateX(-10px);
          transform: translateX(-10px);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.nav-link:hover .nav-icon,
.nav-link.active .nav-icon {
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* Responsywność */
@media (max-width: 991.98px) {
  .navbar-nav {
    padding-top: 15px;
  }
  .nav-link {
    margin: 5px 0;
    padding-left: 15px;
  }
  .nav-icon {
    margin-right: 8px;
  }
  /* Dostosowanie podkreślenia na mobile */
  .nav-link::after {
    bottom: -5px;
    height: 2px;
  }
}
/* Footer styles */
.footer-section a:hover {
  color: #c0f0f5 !important;
  text-decoration: underline !important;
}

.social-icons {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.social-icons a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  margin-right: 1rem;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  text-align: center;
  line-height: 36px;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-size: 16px;
}

.social-icons a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-transform: translateY(-3px);
          transform: translateY(-3px);
  text-decoration: none !important;
}

.copyright-section a:hover {
  color: #c0f0f5 !important;
}

/* Terapeuci */
/* Style dla sekcji zespołu - start*/
.team__cards {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.team__card {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  margin: 1%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .team__card {
    -webkit-flex-basis: 30%;
        -ms-flex-preferred-size: 30%;
            flex-basis: 30%;
  }
}
.team__image {
  width: 100%;
}
.team__hero {
  background-color: #F2FCF8;
  padding: 5rem 0;
  color: #383838;
  text-align: center;
  font-size: 3rem;
}
.team__button {
  margin: 0 auto;
  display: block;
  text-decoration: none !important;
  text-align: none;
  margin-top: 1rem;
  background-color: white;
  border: 2px solid #066970;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: #066970;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.team__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border: 2px solid #43AAB3;
  cursor: pointer;
}
.team__title {
  margin-top: 1.5rem;
  text-align: center;
  color: #383838;
  font-weight: 300;
  font-size: 2.2rem;
}
.team__job {
  text-align: center;
  font-weight: 700;
  color: #383838;
  text-transform: uppercase;
  font-size: 1.2rem;
}
.team__mail {
  display: block;
  text-decoration: none;
  color: #383838;
  text-align: center;
}
.team__socials {
  margin: 2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.team__socials img {
  width: 20px;
  margin: 10px;
}

/* Style dla sekcji zespołu - koniec*/
/* Style dla podstrony kontakt - start*/
.contact__textFat {
  display: block;
  color: #066970;
  font-weight: 600;
}
.contact__text {
  display: block;
  color: #066970;
}
.contact__form {
  padding: 2rem 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact__form input,
.contact__form textarea {
  padding: 0.8rem 1.2rem;
  border: 2px solid #066970;
}
.contact__box {
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding: 2rem;
}
.contact__box:nth-child(1) {
  background-color: #EAF9FA;
}
.contact__socials {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.contact__socials img {
  width: 1.5rem;
  margin-top: 3rem;
  margin-right: 1rem;
}
.contact__button {
  display: block;
  text-decoration: none;
  margin-top: 2rem;
  background-color: #066970;
  border: 2px solid #066970;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  padding: 0.5rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.contact__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border: 2px solid #43AAB3;
  cursor: pointer;
}

/* Style dla podstrony kontakt - koniec*/
/* Style dla podstrony terapeuty - start */
.singleT__upper {
  background-color: #F2FCF8;
  padding: 4rem 0 0;
}
.singleT__more {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .singleT__more {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.singleT__text {
  text-align: center;
  color: #383838;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0;
}
.singleT__name {
  text-align: center;
  color: #383838;
  font-size: 2.4rem;
}
.singleT__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 5rem 1rem;
}
.singleT__boxLeft {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .singleT__boxLeft {
    width: 40%;
  }
}
.singleT__boxRight {
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .singleT__boxRight {
    width: 60%;
    margin-top: 0rem;
  }
}
.singleT__nameBox {
  margin-top: 2rem;
  font-weight: 300;
  font-size: 1.8rem;
}
.singleT__Job {
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
}
.singleT__socials {
  margin: 0.7rem 0;
}
.singleT__socials img {
  width: 1.1rem;
  margin-right: 0.7rem;
}
.singleT__image {
  width: 300px;
  height: 300px;
}
.singleT__button {
  display: block;
  text-decoration: none;
  margin-top: 2rem;
  background-color: #066970;
  border: 2px solid #066970;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  padding: 0.5rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.singleT__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border: 2px solid #43AAB3;
  cursor: pointer;
}
.singleT__more {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 2px solid #066970;
}
.singleT__more:first-of-type {
  border-top: 2px solid #066970;
}
.singleT__desc {
  margin-top: 7rem;
}
.singleT__moreTitle {
  color: #818181;
  width: 20%;
  margin: 2rem;
}
.singleT__moreTitleFat {
  width: 70%;
  color: #383838;
  font-weight: 600;
}

.breadcrumb {
  background-color: transparent;
  padding-left: 0;
  margin-bottom: 0;
}

.breadcrumb-item a {
  color: #066970;
  font-weight: 600;
  text-decoration: none;
}

/* Style dla podstrony terapeuty - koniec */
.hero {
  background-image: url("../../../assets/src/img/bgc.jpg");
  height: 700px;
  background-position: center;
}
.hero__container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.hero__box {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .hero__box {
    width: 40%;
  }
}
.hero__title {
  color: white;
  font-size: 2.3rem;
  font-weight: 600;
  margin-bottom: 3rem;
}
.hero__text {
  color: white;
}
.hero__button {
  display: block;
  margin-top: 4rem;
  background-color: #066970;
  border: 2px solid #066970;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  color: white;
  padding: 1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  text-decoration: none;
}
.hero__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border: 2px solid #43AAB3;
  cursor: pointer;
}

.about {
  padding: 5rem 0;
}
.about__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.about__title {
  position: relative;
  margin-bottom: 1rem;
}
.about__title::before {
  content: "";
  display: inline-block;
  width: 50px;
  /* dostosuj rozmiar według potrzeb */
  height: 50px;
  background-image: url("../../../assets/src/img/dot.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  /* odstęp od tekstu */
  /* dodatkowe pozycjonowanie jeśli potrzebne */
  position: absolute;
  left: -45px;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.about__titleBig {
  font-size: 2.5rem;
}
.about__titleSmall {
  letter-spacing: 1px;
  font-weight: 500;
}
.about__box {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .about__box {
    width: 60%;
  }
}

.teamAbout {
  background-color: #EAF9FA;
  padding: 5rem 0;
}
.teamAbout__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.teamAbout__title {
  position: relative;
  margin-bottom: 4rem;
}
.teamAbout__title::before {
  content: "";
  display: inline-block;
  width: 50px;
  /* dostosuj rozmiar według potrzeb */
  height: 50px;
  background-image: url("../../../assets/src/img/kropelka.svg");
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 10px;
  /* odstęp od tekstu */
  /* dodatkowe pozycjonowanie jeśli potrzebne */
  position: absolute;
  left: -45px;
  top: 30%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.teamAbout__titleBig {
  font-size: 2.5rem;
}
.teamAbout__box {
  width: 90%;
}
@media screen and (min-width: 768px) {
  .teamAbout__box {
    width: 60%;
  }
}

/* Style dla podstrony Strefa - start */
.strefa__container {
  padding: 7rem 1rem;
}
.strefa__button {
  display: block;
  text-decoration: none;
  margin: 3rem auto 0;
  font-size: 1rem;
  background-color: white;
  border: 2px solid #066970;
  letter-spacing: 0.5px;
  font-weight: 500;
  text-transform: uppercase;
  color: #066970;
  padding: 0.5rem 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2rem;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.strefa__button:hover {
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  border: 2px solid #43AAB3;
  cursor: pointer;
}
.strefa__titleBig {
  text-align: center;
  font-weight: 300;
  font-size: 1.8rem;
  margin-bottom: 0;
  color: white;
  font-weight: 600;
  text-shadow: 2px 2px 2px #0D0603;
}
.strefa__titleSmall {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.strefa__column {
  margin-top: 1rem;
  padding: 2rem;
  background-color: #EAF9FA;
}
.strefa__title {
  width: 80%;
  margin: 0 auto;
}

/* Wrapper dla obrazka, aby zachować proporcje */
.usluga-card-image-wrapper {
  width: 100%;
  aspect-ratio: 16/10;
  /* Popularna proporcja, możesz zmienić na 4/3 lub 1/1 (kwadrat) */
  overflow: hidden;
}

/* Obrazek wewnątrz wrappera */
.usluga-card-image-wrapper .card-img-top {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* Gwarantuje wypełnienie, nawet jeśli obrazek ma inne proporcje */
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* Delikatne style dla całej karty */
.usluga-card-link {
  border: 1px solid #eee;
  /* Subtelna ramka */
  border-radius: 8px;
  /* Zaokrąglenie (jeśli Bootstrap domyślnie nie nadaje) */
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

/* Efekt "podniesienia" i zoom na obrazku po najechaniu */
.usluga-card-link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.usluga-card-link:hover .card-img-top {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/* Upewnia się, że tytuł jest pogrubiony */
.usluga-card-link .card-title {
  font-weight: 600;
}

/* Style dla podstrony Strefa - koniec */
/* BLOG - start */
.post-thumbnail {
  height: 200px;
  overflow: hidden;
}

.post-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

a:hover .post-thumbnail img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.bg-light-blog {
  background-color: #FFF5EE !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.blog__title {
  text-align: center;
  font-weight: 300;
  font-size: 1.7rem;
  margin-bottom: 0;
}
.blog__category {
  font-weight: 700;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 10%;
  text-transform: uppercase;
  margin-bottom: 4rem;
}
.blog__smallCategory {
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
}
.blog__date {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2rem;
}
.blog__date span {
  margin: 2px;
}

.singleBlog__title {
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  font-weight: 300;
}
.singleBlog__category {
  font-family: "Roboto", sans-serif;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-top: 2px;
  font-weight: 600;
}
.singleBlog__exc {
  font-family: "Roboto", sans-serif;
  font-family: 1.4rem;
  margin-top: 1rem;
}

/* BLOG - koniec */
.single-service {
  height: 400px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.subpage__container {
  padding: 5rem 0;
}

.singleT__moreTitle {
  margin: 0;
}

.singleT__upper {
  padding-bottom: 2rem;
}

.hero {
  background-size: cover;
}
/*# sourceMappingURL=main.css.map */
