/* SUPERMENTOR */
/* Opcje */
/* fonty */
/* Zmiana z 26px na 21px */
/*** KOLORY ***/
/*** UKRYTE ***/
.ukryte {
  opacity: 0.1;
}
/*** OGÓLNE  ***/
::selection {
  background: #FFF;
  color: #1a1a1a;
}
::-moz-selection {
  background: #FFF;
  color: #1a1a1a;
}
:focus {
  outline: 0px;
}
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #182E34;
  background-color: #C1CDC2;
  letter-spacing: 0.5px;
  font-size: 18px;
  height: 100vh;
  /* Pełna wysokość przeglądarki */
  background-size: cover;
  /* Pełne pokrycie */
  background-attachment: fixed;
  /* Utrzymuje tło w stałej pozycji */
  background-repeat: no-repeat;
  /* Zapobiega powtarzaniu tła */
}
a {
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
  color: #213F47;
}
a:hover {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
  color: #792D47;
}
a:active {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
  color: #792D47;
}
a:focus {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
  color: #792D47;
}
a.white {
  display: inline-block;
}
a.white:hover {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  background-color: #FFF;
  color: #1a1a1a;
  padding: 5px 10px;
  border-radius: 7px;
}
p {
  letter-spacing: 0.5px;
  font-size: 18px;
  margin: 0px;
  font-weight: 400;
  text-transform: initial;
  margin-bottom: 20px;
}
ul {
  list-style: none;
  margin: 0px;
  padding: 0px;
}
li {
  letter-spacing: 0.5px;
}
ol {
  padding: 0px;
  margin: 0px;
}
ol li {
  padding-bottom: 8px;
  margin-left: 20px;
}
ol ol li {
  padding-bottom: 5px;
  line-height: initial;
}
ol ul {
  list-style: disc;
}
ol ul li {
  padding-bottom: 5px;
  line-height: initial;
  color: #999999;
}
ol a {
  text-decoration: underline;
}
ol a.active,
ol a:active,
ol a:hover,
ol a:focus {
  text-decoration: none;
  font-weight: 600;
  background-color: #FFF;
  color: #1a1a1a;
  padding: 5px 10px;
  border-radius: 7px;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  border-radius: 7px;
  overflow: hidden;
}
table tr {
  border-bottom: 1px solid #C1CDC2;
}
table tr:nth-child(even) {
  background-color: rgba(193, 205, 194, 0.2);
}
table tr:hover {
  background-color: rgba(140, 166, 141, 0.2);
}
table tr:last-child {
  border-bottom: none;
}
table td,
table th {
  padding: 12px 15px;
  text-align: left;
  vertical-align: middle;
}
@media (max-width: 767px) {
  table td,
  table th {
    padding: 8px 10px;
  }
}
table th {
  background-color: #213F47;
  color: #FFF;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9em;
  letter-spacing: 1px;
}
table th:first-child {
  border-top-left-radius: 7px;
}
table th:last-child {
  border-top-right-radius: 7px;
}
/********************************************************* HEADER - Page ********************************************************/
header {
  background-color: #FFF;
  border-bottom: 6px solid #792D47;
  position: relative;
  width: 100%;
  overflow-x: hidden;
  z-index: 1020;
}
@media (max-width: 576px) {
  header .logo img {
    width: 100%;
  }
}
@media (min-width: 0px) {
  header .logo img {
    width: 100%;
  }
}
@media (min-width: 576px) {
  header .logo img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  header .logo img {
    width: 30vw;
  }
}
@media (min-width: 992px) {
  header .logo img {
    width: 18vw;
  }
}
@media (min-width: 1200px) {
  header .logo img {
    width: 15vw;
  }
}
@media (min-width: 1400px) {
  header .logo img {
    width: 300px;
  }
}
header .navbar-nav {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  header .navbar-nav {
    text-align: center;
    margin-top: 20px;
    flex-direction: column;
  }
}
header .navbar-nav li {
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 992px) {
  header .navbar-nav li {
    display: block;
    margin: 10px 0;
    text-align: center;
  }
}
header .navbar-nav li a {
  font-size: 18px;
  color: #792D47;
  padding: 10px 20px;
  border-radius: 7px;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
  display: block;
}
@media (max-width: 576px) {
  header .navbar-nav li a {
    font-size: 18px;
    padding: 8px 15px;
  }
}
header .navbar-nav li a.active,
header .navbar-nav li a:active,
header .navbar-nav li a:hover,
header .navbar-nav li a:focus {
  background-color: #213F47;
  color: #FFF;
}
header .navbar-nav li a.active:hover,
header .navbar-nav li a:active:hover,
header .navbar-nav li a:hover:hover,
header .navbar-nav li a:focus:hover {
  background-color: #417C8B;
}
header .navbar-toggler {
  border: none;
  background-color: #792D47;
  padding: 10px;
  border-radius: 7px;
  float: right;
}
@media (max-width: 576px) {
  header .navbar-toggler {
    padding: 7px;
  }
  header .navbar-toggler .navbar-toggler-icon {
    width: 1.2em;
    height: 1.2em;
  }
}
header .navbar-toggler:focus {
  outline: none;
  box-shadow: none;
}
header .navbar-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 1.5em;
  height: 1.5em;
}
header .navbar-toggler:hover {
  background-color: #417C8B;
}
header .navbar-toggler.collapsed {
  background-color: #792D47;
  color: #FFF;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
}
header .navbar-toggler.collapsed:hover {
  background-color: #417C8B;
}
@media (max-width: 992px) {
  header .navbar-collapse {
    background-color: rgba(255, 255, 255, 0.98);
    border-radius: 0;
    padding: 15px;
    margin: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-height: 80vh;
    overflow-y: auto;
  }
  header .navbar-collapse.show,
  header .navbar-collapse.collapsing {
    top: auto;
    left: 0;
    right: 0;
    width: 100%;
    padding-top: 50px;
  }
  header .navbar-collapse .navbar-nav {
    width: 100%;
  }
  header .navbar-collapse .navbar-nav li {
    width: 100%;
  }
  header .navbar-collapse .navbar-nav li a {
    width: 100%;
    text-align: center;
  }
  header .navbar-collapse .btn-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #792D47;
    border-radius: 50%;
    padding: 8px;
    color: #FFF;
    opacity: 1;
  }
  header .navbar-collapse .btn-close:hover {
    background-color: #213F47;
  }
}
header .search-form {
  width: 100%;
}
header .search-form .input-group {
  border-radius: 7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
header .search-form .input-group .form-control {
  border: 2px solid #C67989;
  border-right: none;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  height: 40px;
  font-size: 0.95rem;
  background-color: #FFF;
  color: #182E34;
}
header .search-form .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #792D47;
}
header .search-form .input-group .form-control::placeholder {
  color: #182E34;
  opacity: 0.7;
}
header .search-form .input-group .btn {
  background-color: #792D47;
  border: 2px solid #792D47;
  color: #FFF;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  transition: background-color 0.3s;
}
header .search-form .input-group .btn:hover {
  background-color: #562032;
  border-color: #562032;
}
header .search-form .input-group .btn i {
  font-size: 1rem;
}
.offcanvas {
  background-color: #792D47;
}
.offcanvas .offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.offcanvas .offcanvas-header .offcanvas-title {
  color: #FFF;
}
.offcanvas .offcanvas-header .btn-close {
  color: #FFF;
  opacity: 1;
  background-color: #FFF;
}
.offcanvas .offcanvas-header .btn-close:hover {
  opacity: 0.8;
}
.offcanvas .offcanvas-body .navbar-nav li {
  margin: 10px 0;
}
.offcanvas .offcanvas-body .navbar-nav li a {
  color: #FFF;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 7px;
  transition: all 0.3s ease;
}
.offcanvas .offcanvas-body .navbar-nav li a:hover,
.offcanvas .offcanvas-body .navbar-nav li a:focus,
.offcanvas .offcanvas-body .navbar-nav li a.active {
  background-color: #FFF;
  color: #792D47;
}
.offcanvas .offcanvas-body .offcanvas-search {
  padding: 15px 0;
  margin-bottom: 20px;
}
.offcanvas .offcanvas-body .offcanvas-search .search-form {
  position: relative;
}
.offcanvas .offcanvas-body .offcanvas-search .search-form .search-field {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border-radius: 50px;
  border: 2px solid #FFF;
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFF;
  font-size: 1.1rem;
}
.offcanvas .offcanvas-body .offcanvas-search .search-form .search-field::placeholder {
  color: #FFF;
  opacity: 0.7;
}
.offcanvas .offcanvas-body .offcanvas-search .search-form .search-field:focus {
  outline: none;
  background-color: rgba(255, 255, 255, 0.2);
}
.offcanvas .offcanvas-body .offcanvas-search .search-form .search-submit {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.4rem;
  cursor: pointer;
  padding: 5px;
}
.offcanvas-search {
  padding: 15px 20px;
}
.offcanvas-search .search-form {
  width: 100%;
}
.offcanvas-search .search-form .input-group {
  border-radius: 7px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.offcanvas-search .search-form .input-group .form-control {
  border: 2px solid #C67989;
  border-right: none;
  border-top-left-radius: 7px;
  border-bottom-left-radius: 7px;
  height: 40px;
  font-size: 0.95rem;
  background-color: #FFF;
  color: #182E34;
}
.offcanvas-search .search-form .input-group .form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #792D47;
}
.offcanvas-search .search-form .input-group .form-control::placeholder {
  color: #182E34;
  opacity: 0.7;
}
.offcanvas-search .search-form .input-group .btn {
  background-color: #792D47;
  border: 2px solid #792D47;
  color: #FFF;
  border-top-right-radius: 7px;
  border-bottom-right-radius: 7px;
  transition: background-color 0.3s;
}
.offcanvas-search .search-form .input-group .btn:hover {
  background-color: #562032;
  border-color: #562032;
}
.offcanvas-search .search-form .input-group .btn i {
  font-size: 1rem;
}
/********************************************************* CONTENT ********************************************************/
.top-category-section {
  background-color: #562032;
  color: #FFF;
  padding: 50px 0;
}
.top-category-section h2 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  margin-bottom: 30px;
  color: #FFF;
  font-weight: 600;
  position: relative;
}
.top-category-section h2:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0%;
  width: 80px;
  height: 3px;
  background-color: #FFF;
}
.top-category-section .section-title-left {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 32px;
  margin-bottom: 0;
  color: #FFF;
  font-weight: 600;
  text-align: left;
  position: relative;
}
.top-category-section .section-title-left:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0%;
  width: 80px;
  height: 3px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .top-category-section .section-title-left {
    text-align: center;
    margin-bottom: 20px;
  }
  .top-category-section .section-title-left:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
/********************************************************* CONTENT - TOP KATEGORIE ********************************************************/
.category-card-black {
  background-color: #000;
  border-radius: 20px;
  padding: 30px;
  color: #FFF;
  text-align: center;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  transition: all 3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.category-card-black:hover {
  background-color: #C67989;
  transition: all 0.5s ease-out;
}
.category-card-black:focus {
  background-color: #C67989;
  transition: all 0.5s ease-out;
}
.category-card-black .category-title-black {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.5s ease-out;
}
.category-card-black .category-desc-black {
  opacity: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
  text-align: center;
  margin: 0;
}
.category-card-black:hover .category-desc-black {
  opacity: 1;
  height: auto;
  max-height: 100px;
  margin: 5px 0 10px;
  transition: all 0.5s ease-out;
}
.category-card-black .card-arrow-black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.5s ease-out;
}
.category-card-black:hover .card-arrow-black {
  transform: translateY(10px);
}
.category-card {
  background-color: #792D47;
  border-radius: 20px;
  padding: 30px;
  color: #FFF;
  text-align: center;
  width: 100%;
  height: 250px;
  position: relative;
  overflow: hidden;
  transition: all 3s ease-in-out;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.category-card:hover {
  background-color: #C67989;
  transition: all 0.5s ease-out;
}
.category-card:focus {
  background-color: #C67989;
  transition: all 0.5s ease-out;
}
.category-card .category-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.5s ease-out;
}
.category-card .category-desc {
  opacity: 0;
  height: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s ease-out;
  text-align: center;
  margin: 0;
}
.category-card:hover .category-desc {
  opacity: 1;
  height: auto;
  max-height: 100px;
  margin: 5px 0 10px;
  transition: all 0.5s ease-out;
}
.category-card .card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid white;
  transition: all 0.5s ease-out;
}
.category-card:hover .card-arrow {
  transform: translateY(10px);
}
/********************************************************* CONTENT - OSTATNIE WPISY ********************************************************/
.latest-posts-section {
  background-color: #C1CDC2;
  padding: 60px 0;
}
.section-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.5rem;
  color: #562032;
  margin-bottom: 40px;
  font-weight: 600;
  position: relative;
}
.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #792D47;
}
.post-card {
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 30px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.post-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}
.post-content {
  padding: 20px 25px 30px;
}
.post-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.4rem;
  color: #792D47;
  margin-bottom: 20px;
  font-weight: 600;
}
.post-meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.post-date {
  display: inline-block;
  color: #182E34;
  background-color: rgba(193, 205, 194, 0.4);
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 15px;
  text-align: center;
}
.read-more-btn {
  background-color: #213F47;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  border: none;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
}
.read-more-btn:hover {
  background-color: #417C8B;
  color: #FFF;
}
.read-more-btn i {
  margin-left: 8px;
}
/********************************************************* CONTENT - MY I NASZA MISJA ********************************************************/
.mission-section {
  background-color: #182E34;
  color: #FFF;
  padding: 80px 0;
}
.mission-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 50px;
  position: relative;
}
.mission-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFF;
}
.person-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
  color: #FFF;
}
.person-image-container {
  position: relative;
  max-width: 100%;
  margin: 0 auto 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  display: block;
}
@media screen and (min-width: 576px) {
  .person-image-container {
    width: 250px;
    height: 250px !important;
  }
}
@media screen and (min-width: 992px) {
  .person-image-container {
    width: 300px;
    height: 300px !important;
  }
}
@media screen and (min-width: 1200px) {
  .person-image-container {
    width: 300px;
    height: 300px !important;
  }
}
.person-image-container:hover {
  transform: translateY(-5px);
}
.person-image {
  width: 100%;
  display: block;
  height: 100% !important;
  object-fit: cover;
  object-position: center top;
}
.mission-text {
  margin-top: 20px;
  font-size: 1.05rem;
  line-height: 1.7;
}
@media (max-width: 991px) {
  .mission-text {
    margin-top: 40px;
  }
}
.mission-paragraph {
  margin-bottom: 25px;
}
/********************************************************* CONTENT - NASZ ZESPÓŁ EKSPERTÓW ********************************************************/
.experts-section {
  background-color: #C1CDC2;
  padding: 80px 0;
  text-align: center;
}
.experts-section .section-title {
  color: #792D47;
  margin-bottom: 50px;
}
.expert-card,
.contact-card {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #FFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
.expert-card:hover,
.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.expert-card hr,
.contact-card hr {
  border: 2px solid #213F47;
  width: 100%;
}
.expert-card .expert-bio,
.contact-card .expert-bio {
  text-align: center;
  color: #182E34;
  line-height: 1.6;
}
.expert-card .expert-bio p,
.contact-card .expert-bio p {
  margin-bottom: 15px;
  font-size: 0.95rem;
}
.expert-image-container {
  max-width: 100%;
  margin: 0 auto 20px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
}
@media screen and (max-width: 575px) {
  .expert-image-container {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 576px) {
  .expert-image-container {
    width: 250px;
    height: 250px !important;
  }
}
@media screen and (min-width: 992px) {
  .expert-image-container {
    width: 300px;
    height: 300px !important;
  }
}
@media screen and (min-width: 1200px) {
  .expert-image-container {
    width: 300px;
    height: 300px !important;
  }
}
.expert-image-container:hover {
  transform: translateY(-5px);
}
.expert-image {
  width: 100%;
  display: block;
}
@media screen and (max-width: 575px) {
  .expert-image {
    height: auto;
  }
}
@media screen and (min-width: 576px) {
  .expert-image {
    height: 100% !important;
    object-fit: cover;
    object-position: center top;
  }
}
.expert-name {
  font-family: 'Josefin Sans', sans-serif;
  color: #213F47;
  font-weight: 600;
  margin-bottom: 12px;
}
.expert-role {
  background-color: #8CA68D;
  color: #FFF;
  padding: 6px 16px;
  border-radius: 5px;
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
/********************************************************* CONTENT - NIC O WAS BEZ WAS ********************************************************/
.philosophy-section {
  background-color: #792D47;
  color: #FFF;
  padding: 80px 0;
  text-align: center;
}
.philosophy-section .section-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  margin-bottom: 50px;
  color: #FFF;
}
.philosophy-section .section-title:after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #FFF;
}
.philosophy-box {
  background-color: #C67989;
  border-radius: 50px;
  padding: 20px 30px;
  margin-bottom: 25px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background-color 0.3s;
}
.philosophy-box:hover {
  transform: translateY(-5px);
  background-color: #ce8b99;
}
.philosophy-text {
  font-size: 1.3rem;
  font-weight: 500;
  color: #FFF;
}
.contact-btn {
  background-color: #213F47;
  color: #FFF;
  padding: 15px 30px;
  border-radius: 5px;
  border: none;
  font-size: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s;
  text-decoration: none;
  margin-top: 30px;
}
.contact-btn:hover {
  background-color: #417C8B;
  color: #FFF;
}
.contact-btn i {
  margin-left: 10px;
  font-size: 1.2rem;
}
@media (max-width: 991px) {
  .philosophy-box {
    height: auto;
    min-height: 80px;
    padding: 20px 15px;
  }
  .philosophy-text {
    font-size: 1.1rem;
  }
}
/********************************************************* FOOTER ********************************************************/
footer {
  padding: 75px 0px;
  background-color: #FFF;
  z-index: 1000;
}
/********************************************************* UNIWERSALNE STYLE DLA DATY, KATEGORII I PAGINACJI ********************************************************/
.blog-date {
  display: inline-flex;
  align-items: center;
  color: #182E34;
  background-color: rgba(193, 205, 194, 0.4);
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-right: 10px;
  margin-bottom: 10px;
}
.blog-date i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.blog-category {
  display: inline-flex;
  align-items: center;
  color: #FFF;
  background-color: #792D47;
  padding: 6px 15px;
  border-radius: 25px;
  font-size: 0.9rem;
  margin-bottom: 10px;
  margin-right: 10px;
}
.blog-category i {
  margin-right: 8px;
  font-size: 1.1rem;
}
.blog-category > a,
.blog-category:not(.anything) a {
  color: #FFF !important;
  text-decoration: none !important;
}
.blog-category > a:hover,
.blog-category:not(.anything) a:hover {
  color: #e6e6e6;
  text-decoration: none;
}
.post-tools {
  display: inline-flex;
  align-items: center;
  background-color: #8CA68D;
  padding: 6px 16px;
  border-radius: 25px;
  font-size: 0.9rem;
  color: #FFF;
  margin-bottom: 10px;
}
/********************************************************* UNIWERSALNE STYLE DLA KART I TREŚCI ********************************************************/
.blog-card,
.single-post-content {
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .blog-card,
  .single-post-content {
    padding: 20px;
  }
}
.blog-card:hover,
.single-post-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.blog-card p,
.single-post-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}
.blog-card h2,
.single-post-content h2,
.blog-card h3,
.single-post-content h3,
.blog-card h4,
.single-post-content h4 {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  margin-top: 25px;
  margin-bottom: 20px;
}
.blog-card h2,
.single-post-content h2 {
  font-size: 2rem;
}
@media (max-width: 767px) {
  .blog-card h2,
  .single-post-content h2 {
    font-size: 1.6rem;
  }
}
.blog-card h3,
.single-post-content h3 {
  font-size: 1.6rem;
}
@media (max-width: 767px) {
  .blog-card h3,
  .single-post-content h3 {
    font-size: 1.4rem;
  }
}
.blog-card ul,
.single-post-content ul,
.blog-card ol,
.single-post-content ol {
  margin-bottom: 20px;
  padding-left: 30px;
}
.blog-card ul li,
.single-post-content ul li,
.blog-card ol li,
.single-post-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}
.blog-card img,
.single-post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin: 20px 0;
}
.blog-card ul,
.single-post-content ul {
  list-style: disc;
  margin-bottom: 20px;
  padding-left: 30px;
}
.blog-card ul li,
.single-post-content ul li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #182E34;
  display: list-item;
}
.blog-card ul ul,
.single-post-content ul ul {
  list-style: circle;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-card ul ol,
.single-post-content ul ol {
  list-style: decimal;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-card ul ol li,
.single-post-content ul ol li {
  display: list-item;
}
.blog-card ol,
.single-post-content ol {
  list-style: decimal;
  margin-bottom: 20px;
  padding-left: 30px;
}
.blog-card ol li,
.single-post-content ol li {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #182E34;
  display: list-item;
}
.blog-card ol ol,
.single-post-content ol ol {
  list-style: lower-alpha;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-card ol ul,
.single-post-content ol ul {
  list-style: disc;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-card ol ul li,
.single-post-content ol ul li {
  display: list-item;
}
.blog-card .blog-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
  object-fit: cover;
}
@media (min-width: 992px) {
  .blog-card .blog-image {
    height: 250px;
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .blog-card .blog-content-wrapper {
    padding-left: 30px;
  }
}
.blog-card .blog-card-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #792D47;
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .blog-card .blog-card-title {
    font-size: 1.5rem;
  }
}
.blog-card .blog-card-title a {
  color: #792D47;
  text-decoration: none;
}
.blog-card .blog-card-title a:hover {
  color: #C67989;
  text-decoration: none;
}
.blog-card .blog-meta {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.blog-card .blog-content {
  margin-bottom: 20px;
  line-height: 1.6;
  color: #182E34;
}
.blog-card .read-more-btn {
  background-color: #213F47;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
  text-decoration: none !important;
}
.blog-card .read-more-btn i {
  margin-left: 8px;
}
.blog-card .read-more-btn:hover {
  background-color: #417C8B;
  color: #FFF;
  text-decoration: none;
}
/********************************************************* SINGLE POST STYLES ********************************************************/
.single-post-section {
  background-color: #C1CDC2;
  padding: 60px 0;
}
.single-post_header {
  margin-bottom: 30px;
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media (max-width: 767px) {
  .single-post_header {
    padding: 20px;
  }
}
.single-post_header:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.single-post-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 600;
  color: #792D47;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .single-post-title {
    font-size: 1.8rem;
  }
}
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 10px;
}
.single-post-featured-image {
  margin-bottom: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}
.single-post-featured-image img {
  width: 100%;
  height: auto;
  display: block;
}
/********************************************************* EKSPERCI - PROFILE STYLES ********************************************************/
.expert-profile-section {
  background-color: #C1CDC2;
  padding: 60px 0;
}
.expert-image-container-large {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.expert-image-container-large img {
  width: 100%;
  height: auto;
  display: block;
}
.expert-sidebar-info {
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}
.expert-sidebar-info h3 {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.expert-sidebar-info .expert-role {
  display: inline-block;
  background-color: #8CA68D;
  color: #FFF;
  padding: 6px 16px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
}
.expert-sidebar-info .expert-contact-details {
  font-size: 0.95rem;
  color: #182E34;
}
.expert-sidebar-info .expert-contact-details a {
  color: #792D47;
  text-decoration: underline;
}
.expert-sidebar-info .expert-contact-details a:hover {
  color: #C67989;
}
.expert-content {
  background-color: #FFF;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
}
.expert-content .expert-title {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  font-size: 2.2rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.expert-content .expert-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #792D47;
}
.expert-content h2 {
  font-family: 'Josefin Sans', sans-serif;
  color: #213F47;
  font-size: 1.5rem;
  margin: 30px 0 15px;
}
.expert-content .expert-bio-full {
  color: #182E34;
  line-height: 1.8;
}
.expert-content .expert-bio-full p {
  margin-bottom: 15px;
}
.expert-content .expert-bio-full ul {
  margin-bottom: 20px;
  padding-left: 20px;
  list-style: disc;
}
.expert-content .expert-bio-full ul li {
  margin-bottom: 8px;
}
.expert-card-small {
  text-align: center;
  background-color: #FFF;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  height: 100%;
}
.expert-card-small:hover {
  transform: translateY(-5px);
}
.expert-card-small .expert-image-small {
  width: 120px;
  height: 120px;
  margin: 0 auto 15px;
  overflow: hidden;
  border: 4px solid #8CA68D;
}
.expert-card-small .expert-image-small img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert-card-small .expert-name-small {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.expert-card-small .expert-role-small {
  display: block;
  color: #182E34;
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
}
.related-experts h2 {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  text-align: center;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 30px;
}
.related-experts h2:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #792D47;
}
/********************************************************* KOMENTARZE ********************************************************/
.comments-area {
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 30px;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .comments-area {
    padding: 20px;
  }
}
.comments-area .comments-title {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  font-size: 1.8rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}
.comments-area .comments-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 3px;
  background-color: #792D47;
}
.comments-area .comment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
}
.comments-area .comment-list .comment {
  margin-bottom: 30px;
}
.comments-area .comment-list .comment:last-child {
  margin-bottom: 0;
}
.comments-area .comment-list .comment .children {
  list-style: none;
  padding-left: 50px;
  margin-top: 30px;
}
@media (max-width: 767px) {
  .comments-area .comment-list .comment .children {
    padding-left: 20px;
  }
}
.comments-area .comment-body {
  background-color: rgba(193, 205, 194, 0.2);
  border-radius: 10px;
  padding: 20px;
  position: relative;
}
.comments-area .comment-body .comment-author {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.comments-area .comment-body .comment-author img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
}
.comments-area .comment-body .comment-author .fn {
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 600;
  color: #792D47;
  font-style: normal;
}
.comments-area .comment-body .comment-author .fn a {
  color: #792D47;
}
.comments-area .comment-body .comment-author .fn a:hover {
  color: #C67989;
}
.comments-area .comment-body .comment-author .says {
  display: none;
}
.comments-area .comment-body .comment-metadata {
  font-size: 0.9rem;
  color: #182E34;
  margin-bottom: 15px;
}
.comments-area .comment-body .comment-metadata a {
  color: #182E34;
}
.comments-area .comment-body .comment-metadata a:hover {
  color: #213F47;
}
.comments-area .comment-body .comment-content {
  line-height: 1.7;
  color: #182E34;
  margin-bottom: 15px;
}
.comments-area .comment-body .comment-content p {
  margin-bottom: 15px;
}
.comments-area .comment-body .comment-content p:last-child {
  margin-bottom: 0;
}
.comments-area .comment-body .reply {
  text-align: right;
}
.comments-area .comment-body .reply .comment-reply-link {
  background-color: #213F47;
  color: #FFF;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  transition: background-color 0.3s;
  display: inline-block;
}
.comments-area .comment-body .reply .comment-reply-link:hover {
  background-color: #417C8B;
  color: #FFF;
  text-decoration: none;
}
.comments-area .comment-respond {
  background-color: #FFF;
  border-radius: 10px;
  padding: 25px;
  margin-top: 30px;
  border: 1px solid rgba(193, 205, 194, 0.5);
}
.comments-area .comment-respond .comment-reply-title {
  font-family: 'Josefin Sans', sans-serif;
  color: #792D47;
  font-size: 1.6rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}
.comments-area .comment-respond .comment-reply-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #792D47;
}
.comments-area .comment-respond .comment-reply-title small {
  font-size: 0.9rem;
  margin-left: 10px;
  font-weight: normal;
}
.comments-area .comment-respond .comment-reply-title small a {
  color: #213F47;
}
.comments-area .comment-respond .comment-reply-title small a:hover {
  color: #417C8B;
}
.comments-area .comment-respond .comment-form .comment-notes,
.comments-area .comment-respond .comment-form .logged-in-as {
  margin-bottom: 20px;
  color: #182E34;
  font-size: 0.95rem;
}
.comments-area .comment-respond .comment-form .comment-form-author,
.comments-area .comment-respond .comment-form .comment-form-email,
.comments-area .comment-respond .comment-form .comment-form-url,
.comments-area .comment-respond .comment-form .comment-form-comment {
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form .comment-form-author label,
.comments-area .comment-respond .comment-form .comment-form-email label,
.comments-area .comment-respond .comment-form .comment-form-url label,
.comments-area .comment-respond .comment-form .comment-form-comment label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #182E34;
}
.comments-area .comment-respond .comment-form .comment-form-author input,
.comments-area .comment-respond .comment-form .comment-form-email input,
.comments-area .comment-respond .comment-form .comment-form-url input,
.comments-area .comment-respond .comment-form .comment-form-comment input,
.comments-area .comment-respond .comment-form .comment-form-author textarea,
.comments-area .comment-respond .comment-form .comment-form-email textarea,
.comments-area .comment-respond .comment-form .comment-form-url textarea,
.comments-area .comment-respond .comment-form .comment-form-comment textarea {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid rgba(193, 205, 194, 0.5);
  border-radius: 5px;
  font-size: 0.95rem;
  color: #182E34;
  background-color: rgba(193, 205, 194, 0.1);
}
.comments-area .comment-respond .comment-form .comment-form-author input:focus,
.comments-area .comment-respond .comment-form .comment-form-email input:focus,
.comments-area .comment-respond .comment-form .comment-form-url input:focus,
.comments-area .comment-respond .comment-form .comment-form-comment input:focus,
.comments-area .comment-respond .comment-form .comment-form-author textarea:focus,
.comments-area .comment-respond .comment-form .comment-form-email textarea:focus,
.comments-area .comment-respond .comment-form .comment-form-url textarea:focus,
.comments-area .comment-respond .comment-form .comment-form-comment textarea:focus {
  outline: none;
  border-color: #213F47;
  box-shadow: 0 0 0 2px rgba(33, 63, 71, 0.2);
}
.comments-area .comment-respond .comment-form .comment-form-author textarea,
.comments-area .comment-respond .comment-form .comment-form-email textarea,
.comments-area .comment-respond .comment-form .comment-form-url textarea,
.comments-area .comment-respond .comment-form .comment-form-comment textarea {
  min-height: 150px;
}
.comments-area .comment-respond .comment-form .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.comments-area .comment-respond .comment-form .comment-form-cookies-consent input {
  margin-right: 10px;
}
.comments-area .comment-respond .comment-form .comment-form-cookies-consent label {
  font-size: 0.9rem;
  color: #182E34;
  line-height: 1.4;
}
.comments-area .comment-respond .comment-form .form-submit {
  margin-bottom: 0;
}
.comments-area .comment-respond .comment-form .form-submit .submit {
  background-color: #792D47;
  color: #FFF;
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s;
}
.comments-area .comment-respond .comment-form .form-submit .submit:hover {
  background-color: #C67989;
}
.comments-area .comment-navigation {
  margin: 30px 0;
}
.comments-area .comment-navigation .nav-links {
  display: flex;
  justify-content: space-between;
}
.comments-area .comment-navigation .nav-links .nav-previous a,
.comments-area .comment-navigation .nav-links .nav-next a {
  background-color: #213F47;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
}
.comments-area .comment-navigation .nav-links .nav-previous a:hover,
.comments-area .comment-navigation .nav-links .nav-next a:hover {
  background-color: #417C8B;
  text-decoration: none;
}
.comments-area .comment-navigation .nav-links .nav-previous a:before {
  content: '\2190';
  margin-right: 10px;
}
.comments-area .comment-navigation .nav-links .nav-next a:after {
  content: '\2192';
  margin-left: 10px;
}
.comments-area .no-comments {
  text-align: center;
  color: #182E34;
  margin-top: 20px;
  font-style: italic;
}
@media (min-width: 0px) {
  h2 {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  h2 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  h2 {
    font-size: 3vw;
  }
}
@media (min-width: 992px) {
  h2 {
    font-size: 3vw;
  }
}
@media (min-width: 1200px) {
  h2 {
    font-size: 3vw;
  }
}
@media (min-width: 1400px) {
  h2 {
    font-size: 2vw;
  }
}
@media (min-width: 0px) {
  h3 {
    font-size: 30px;
  }
}
@media (min-width: 576px) {
  h3 {
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  h3 {
    font-size: 3vw;
  }
}
@media (min-width: 992px) {
  h3 {
    font-size: 2vw;
  }
}
@media (min-width: 1200px) {
  h3 {
    font-size: 2vw;
  }
}
@media (min-width: 1400px) {
  h3 {
    font-size: 1.2vw;
  }
}
@media (min-width: 0px) {
  p,
  ol,
  li {
    font-size: 15px;
  }
}
@media (min-width: 576px) {
  p,
  ol,
  li {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  p,
  ol,
  li {
    font-size: 14px;
  }
}
@media (min-width: 992px) {
  p,
  ol,
  li {
    font-size: 16px;
  }
}
@media (min-width: 1200px) {
  p,
  ol,
  li {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  p,
  ol,
  li {
    font-size: 18px;
  }
}
@media (min-width: 0px) {
  small,
  .small {
    font-size: 12px;
  }
}
@media (min-width: 576px) {
  small,
  .small {
    font-size: 10px;
  }
}
@media (min-width: 768px) {
  small,
  .small {
    font-size: 12px;
  }
}
@media (min-width: 992px) {
  small,
  .small {
    font-size: 14px;
  }
}
@media (min-width: 1200px) {
  small,
  .small {
    font-size: 16px;
  }
}
@media (min-width: 1400px) {
  small,
  .small {
    font-size: 16px;
  }
}
h1 {
  font-weight: 800;
  line-height: 0.9em;
}
h2 {
  font-weight: 600;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  line-height: 1.5;
  vertical-align: baseline;
}
/* ANIMACJA TRANSITION */
.anima {
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
}
.anima_not {
  -webkit-transition: initial;
  -moz-transition: initail;
  -o-transition: initail;
  -ms-transition: ainitail;
  transition: ainitail;
}
/* ANIMACJE NOWE */
.reveal {
  position: relative;
  opacity: 0;
  transition: opacity 1.6s ease-out, filter 1.6s ease-out;
  /* Płynne przejście dla rozmycia i przezroczystości */
}
.reveal.active_anima {
  opacity: 1;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.active_anima.fadeIn {
  animation: fadeIn 1.5s cubic-bezier(0.42, 0, 0.58, 1);
}
.ul_circle {
  list-style: circle;
  margin-left: 20px;
}
/* home */
.social ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.social ul li {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 25px;
  height: 60px;
}
.social ul li a {
  width: 90%;
  height: 90%;
}
.social ul li a:hover,
.social ul li a:active,
.social ul li a:focus {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
}
.social ul li img {
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 0px;
  display: block;
  -webkit-transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -ms-transition: all 0.2ss ease-in-out;
  transition: all 0.2ss ease-in-out;
}
.social p {
  text-transform: uppercase;
  letter-spacing: 2px;
}
footer .social {
  position: relative;
  right: initial;
  bottom: 0px;
  margin-left: -15px;
}
/********************************************************* RESPONSIVE ********************************************************/
/* XXL 1400px */
/* XL 1200px */
@media (max-width: 1200px) {
  header .social {
    /*ok*/
  }
  header .social p {
    display: block;
    text-align: right;
    margin: initial;
  }
  header .social .social_icons {
    display: flex;
    justify-content: end;
    align-items: center;
  }
}
/* LG 992px */
@media (max-width: 992px) {
  .container-fluid {
    padding-left: 40px;
    padding-right: 40px;
  }
  .vmargines_full {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  header .social {
    /*ok*/
  }
  header .social p {
    display: block;
    text-align: right;
    margin: initial;
  }
  header .social .social_icons {
    display: flex;
    justify-content: end;
    align-items: center;
  }
  .calltoaction {
    /*ok*/
  }
  .calltoaction.right-top {
    display: none;
  }
  .pagination,
  .pagination_aside {
    display: none !important;
  }
  footer {
    padding: 20px 0px 100px 0px;
  }
  footer .social ul {
    justify-content: center;
    margin-top: 30px;
  }
}
/* MD 768px */
@media (max-width: 768px) {
  .container-fluid {
    padding-left: 10px;
    padding-right: 10px;
  }
  .vmargines_full {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .calltoaction {
    /*ok*/
  }
  .calltoaction.right-top {
    display: none;
  }
  .bg_grey {
    /*ok*/
    border-radius: 10px;
  }
  .social ul {
    justify-content: center;
  }
  .btn-02 {
    padding: 10px 15px 10px 15px;
    margin: 25px;
    font-size: 13px;
    line-height: 2;
  }
  header.single_post {
    padding: 50px;
  }
  header .social {
    margin-top: 10px;
  }
  header .social p {
    display: block;
    text-align: center;
    margin: initial;
  }
  header .social .social_icons {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .home .bg_grey,
  footer .bg_grey {
    padding: 20px;
  }
  .home.social,
  footer.social {
    position: fixed;
    right: initial;
    top: initial;
    bottom: 0;
    background-color: #191919;
    width: 100%;
  }
  .home.social .col2,
  footer.social .col2 {
    display: none !important;
  }
  .home.social ul,
  footer.social ul {
    display: flex;
    float: none;
    margin-bottom: initial;
    justify-content: center;
    align-items: center;
  }
  .home.social ul li,
  footer.social ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px;
    height: 60px;
    width: 40px;
  }
  .home.social ul li img,
  footer.social ul li img {
    margin: auto;
    width: 80%;
    padding: 0px;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
  }
  .home.social ul li img:hover,
  footer.social ul li img:hover {
    width: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
  }
  .home.social p,
  footer.social p {
    font-size: 12px;
    text-align: right;
    text-transform: uppercase;
    letter-spacing: 2px;
  }
  .services .subcategory,
  .flety .subcategory {
    margin: 0px 0px 37.5px 0px;
  }
  .services .subcategory .name_cat,
  .flety .subcategory .name_cat {
    font-size: 18px;
  }
  .services .subcategory ul,
  .flety .subcategory ul {
    margin: 10px 0px;
  }
  .services .subcategory ul li,
  .flety .subcategory ul li {
    display: none;
    font-size: 18px;
    margin-right: 0px;
  }
  .services .subcategory ul li:last-child,
  .flety .subcategory ul li:last-child {
    display: grid;
  }
  .services .subcategory ul li:last-child:before,
  .flety .subcategory ul li:last-child:before {
    display: none;
  }
  .services .subcategory ul li:last-child span,
  .flety .subcategory ul li:last-child span {
    background-color: #FFF;
    color: #1a1a1a;
    padding: 10px 20px;
    border-radius: 7px;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
  }
  footer .social ul {
    justify-content: center;
    margin-top: 30px;
  }
}
/* SM 576px */
@media (max-width: 576px) {
  /* home */
  .social ul {
    display: inline;
  }
  .social ul li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
    height: 60px;
  }
  .social ul li a {
    width: 90%;
    height: 90%;
  }
  .social ul li a:hover,
  .social ul li a:active,
  .social ul li a:focus {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
  }
  .social ul li img {
    margin: auto;
    width: initial;
    height: 100%;
    padding: 0px;
    display: block;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2ss ease-in-out;
    transition: all 0.2ss ease-in-out;
  }
  .social p {
    text-transform: uppercase;
    letter-spacing: 2px;
  }
}
/* XS 0px */
/* Max-height 1050 px */
@media (max-height: 1050px) {
  .sidebar .social {
    margin-left: initial !important;
  }
  .sidebar .social .social_position {
    position: initial !important;
    bottom: initial !important;
    width: initial !important;
  }
}
/********************************************************* STYLE DLA WYSZUKIWARKI I WYNIKÓW WYSZUKIWANIA ********************************************************/
.top-category-section .search-form {
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  position: relative;
}
.top-category-section .search-form .search-field {
  width: 100%;
  padding: 15px 60px 15px 30px;
  border-radius: 50px;
  border: 2px solid #FFF;
  background-color: rgba(121, 45, 71, 0.2);
  font-size: 1.25rem;
  color: #FFF;
  height: auto;
  box-sizing: border-box;
}
.top-category-section .search-form .search-field:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
  border-color: #FFF;
}
.top-category-section .search-form .search-field::placeholder {
  color: #FFF;
  opacity: 1;
}
.top-category-section .search-form .search-submit {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #FFF;
  font-size: 1.8rem;
  cursor: pointer;
  padding: 5px;
  z-index: 10;
}
.top-category-section .search-form .search-submit:hover {
  color: #e6e6e6;
}
.top-category-section .search-form .search-submit i {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .top-category-section .search-form {
    margin: 0 auto;
  }
}
.search-results-section,
.single-post-section {
  background-color: #C1CDC2;
  padding: 60px 0;
}
.search-results-section .blog-header,
.single-post-section .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .search-results-section .blog-header,
  .single-post-section .blog-header {
    flex-direction: column;
  }
}
.search-results-section .blog-header .blog-title,
.single-post-section .blog-header .blog-title {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #792D47;
  margin: 0;
  position: relative;
  padding-bottom: 15px;
}
@media (max-width: 767px) {
  .search-results-section .blog-header .blog-title,
  .single-post-section .blog-header .blog-title {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
  .search-results-section .blog-header .blog-title:after,
  .single-post-section .blog-header .blog-title:after {
    left: 50%;
    transform: translateX(-50%);
  }
}
.search-results-section .blog-header .search-container,
.single-post-section .blog-header .search-container {
  width: 40%;
  min-width: 300px;
}
@media (max-width: 767px) {
  .search-results-section .blog-header .search-container,
  .single-post-section .blog-header .search-container {
    width: 100%;
  }
}
.search-results-section .blog-header .search-container .search-form,
.single-post-section .blog-header .search-container .search-form {
  position: relative;
  display: flex;
}
.search-results-section .blog-header .search-container .search-input,
.single-post-section .blog-header .search-container .search-input {
  width: 100%;
  padding: 12px 50px 12px 20px;
  border-radius: 30px;
  border: 2px solid #792D47;
  background-color: #FFF;
  color: #182E34;
  font-size: 1rem;
}
.search-results-section .blog-header .search-container .search-input:focus,
.single-post-section .blog-header .search-container .search-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(121, 45, 71, 0.2);
}
.search-results-section .blog-header .search-container .search-button,
.single-post-section .blog-header .search-container .search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #792D47;
  color: #FFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-results-section .blog-header .search-container .search-button:hover,
.single-post-section .blog-header .search-container .search-button:hover {
  background-color: #541f31;
}
/**
 * Style dla paginacji
 * Plik zawiera wszystkie style związane z paginacją na stronie
 */
.pagination-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pagination-container .pagination-button,
.pagination-container a.pagination-button,
.pagination-container span.pagination-button {
  background-color: #213F47;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}
.pagination-container .pagination-button:hover,
.pagination-container a.pagination-button:hover,
.pagination-container span.pagination-button:hover {
  background-color: #417C8B;
  color: #FFF;
  text-decoration: none;
}
.pagination-container .pagination-button.active,
.pagination-container a.pagination-button.active,
.pagination-container span.pagination-button.active {
  background-color: #792D47;
  color: #FFF;
}
.pagination-container .pagination-button.active:hover,
.pagination-container a.pagination-button.active:hover,
.pagination-container span.pagination-button.active:hover {
  background-color: #562032;
}
.pagination-container .pagination-button.prev-button i,
.pagination-container a.pagination-button.prev-button i,
.pagination-container span.pagination-button.prev-button i {
  margin-right: 8px;
}
.pagination-container .pagination-button.next-button i,
.pagination-container a.pagination-button.next-button i,
.pagination-container span.pagination-button.next-button i {
  margin-left: 8px;
}
.pagination-container .page-numbers {
  background-color: #213F47;
  color: #FFF;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}
.pagination-container .page-numbers:hover {
  background-color: #417C8B;
  color: #FFF;
  text-decoration: none;
}
.pagination-container .page-numbers.current {
  background-color: #792D47;
  color: #FFF;
}
.pagination-container .page-numbers.current:hover {
  background-color: #562032;
}
.pagination-container .page-numbers.prev i {
  margin-right: 8px;
}
.pagination-container .page-numbers.next i {
  margin-left: 8px;
}
.single-post-navigation {
  margin-top: 40px;
}
.single-post-navigation .pagination-button.prev-post {
  float: left;
}
.single-post-navigation .pagination-button.next-post {
  float: right;
}
.single-post-navigation::after {
  content: "";
  display: table;
  clear: both;
}
/********************************************************* TEST ********************************************************/
/*

[class*="col-"]{
        border: 1px solid #80aa00;
  		background: grey;
      }


 div, li, section, img, ::before {border: 1px solid red;} 

*/
.f_grey {
  color: #999999;
}
.border_grey {
  border-top: 3px solid #292929;
}
.border_grey:last-of-type {
  border-bottom: 3px solid #292929;
}
/* .cky-consent-container {display: none;} */
/*# sourceMappingURL=style.css.map */