body {
  font-family: "Inter", "Arial", "Roboto", sans-serif !important;
}

.navi {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #03152e;
  height: 80px;
  color: white !important;
}

.navi-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1280px;
}

.container-menu a {
  color: white;
  text-decoration: none;
  padding: 0 20px;
  font-size: 14px;
}

.container-menu a button {
  background: #e67b21;
  border-radius: 6px;
  border: none;
  color: white;
  padding: 8px 12px;
  transition: 0.3s;
  font-weight: 600;
}

.container-menu a button:hover {
  background-color: white;
  color: #03152e;
}

.container-menu-mobile {
  display: none;
}

.menu-burger {
  display: block;
  width: 100%;
  height: 3px;
  background-color: white;
  position: absolute;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-burger:nth-child(1) {
  top: 0;
}

.menu-burger:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.menu-burger:nth-child(3) {
  bottom: 0;
}

.container-menu-mobile.open .menu-burger:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}

.container-menu-mobile.open .menu-burger:nth-child(2) {
  opacity: 0;
}

.container-menu-mobile.open .menu-burger:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-navi-list {
  display: none;
}

.mobile-navi-list a {
  text-decoration: none;
  color: black;
  width: 100%;
  padding: 10px 0;
  text-align: center;
  transition: 0.2s;
}

.mobile-navi-list a:hover {
  background-color: #0b2d5d;
  color: white;
}

.mobile-navi-list a:nth-last-child(1) {
  background: #e67b21;
}

.mobile-navi-list a button {
  background: #e67b21;
  border: none;
  color: white;
  transition: 0.3s;
  font-weight: 600;
}

.mobile-navi-list a:nth-last-child(1):hover {
  filter: hue-rotate(60deg);
  transition: 0.1s;
}

@media (max-width: 870px) {
  .container-menu {
    display: none;
  }

  .mobile-navi-list.show {
    display: flex;
  }

  .container-menu-mobile {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
  }

  .mobile-navi-list {
    display: none;
    flex-direction: column;
    align-items: end;
    background-color: white;
  }

  .footer-middle__info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-sitemap-title {
    margin: 0 !important;
    margin-top: 30px !important;
  }
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #03152e;
  color: white !important;
}

.footer-container {
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  max-width: 1280px;
}

.footer-empties {
  display: block;
  width: 50%;
}

@media (max-width: 870px) {
  .footer-empties {
    display: none;
  }
}

footer {
  background-color: #03152e;
  color: white;
  font-size: 14px;
  padding-top: 100px;
}

.footer-middle {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 50px 0;
}

.footer-middle__info {
  display: flex;
}

.footer-middle__info__data {
  display: flex;
  flex-direction: column;
  flex: 5;
}

.footer-middle__info__data span {
  margin: 10px 0;
}

.footer-middle__info__sitemap {
  flex: 5;
}

.footer-sitemap-title {
  display: block;
  font-weight: 500;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a8b0b9;
  text-transform: uppercase;
  margin: 10px 0;
  margin-bottom: 30px;
}

.footer-separator {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

.footer-separator__line {
  background-color: #3d3d3d;
  height: 1px;
}

.footer-social {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 0;
}

#tagger-footer {
  padding: 10px;
}

.hero-bg {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: 80vh;
  margin: 0 auto;
  width: 100%;
  overflow: hidden;
}

.hero__front {
  max-width: 1040px;
  margin: 0 auto;
  padding-top: 100px;
}

@media (max-width: 870px) {
  .hero__front {
    padding-top: 30px;
  }
  .hero-bg {
    height: 100vh;
  }
}

.hero__front__headline {
  font-weight: 600;
}

.hero__front__button {
  background: none;
  border: 1.5px solid #e67b21;
  border-radius: 6px;

  font-weight: 600;
  font-size: 16px;
  line-height: 19px;
  display: flex;
  align-items: center;

  color: #e67b21;

  padding: 10px 16px;

  transition: 0.3s;
}

.hero__front__button:hover {
  background-color: white;
  color: #03152e;
  border: 1.5px solid #03152e;
}

.front__features {
  max-width: 670px;
  margin: 0 auto;
  margin-bottom: 200px;
}

@media (max-width: 887px) {
  .front__features {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .front__features__box {
    margin: 20px 0;
  }
}

.front__features__box {
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  flex-direction: column;
  border-radius: 6px;
  height: 130px;
  width: 200px;
}

.front__features__box__1 {
  background-color: #007bce !important;
}

.front__features__box__2 {
  background-color: #03152e !important;
}

.front__features__box__3 {
  background-color: #e67b21 !important;
}

.container-1080px {
  max-width: 1080px;
  margin: 0 auto;
  width: 100%;
}

.container-1240px {
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

h2 {
  color: #303030;
}

.check-blog-link {
  color: #e67b21;
  font-weight: 600;
}

.last-article-img {
  border-radius: 4px;
}

.article-title-front-page {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #007bce;
  margin: 20px 0;
}

.article-descr-front-page {
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;

  color: #303030;
}

.article-btn-front-page {
  border: 1.5px solid #007bce;
  border-radius: 6px;
  background-color: white;
  padding: 8px 16px;
  font-weight: 600;
  font-size: 14px;
  line-height: 14px;
  color: #007bce;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.article-btn-front-page:hover {
  background-color: #03152e;
}

.hero-bglightgrey {
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
  margin-top: 200px;
  padding-bottom: 50px;
}

.container-1440px {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

.course-image {
  border-radius: 10px;
}

.course-details__headline {
  font-size: 18px;
  color: #e67b21;
  margin-bottom: 20px !important;
}

.course-details__text {
  font-size: 14px;
  color: #303030;
  margin-bottom: 30px !important;
}

.course-details__cta {
  background: #e67b21;
  border-radius: 6px;
  color: #ffffff;
  padding: 6px 14px;
  border: none;
  transition: 0.3s;
}

.course-details__cta:hover {
  background-color: #303030;
  color: white;
}

@media (max-width: 1000px) {
  .course-coming-card__img {
    margin-left: 10px;
  }

  .course-coming-card {
    display: block !important; /* Pokazuje tylko pierwsze trzy karty */
    flex: 0 0 100% !important; /* Każda karta zajmuje całą szerokość kontenera */
    margin: 30px 0; /* Dodaje marginesy wertykalne */
    padding: 30px;
  }

  .course-coming-card__img {
    padding: 0 10px;
  }
}

.coming-courses {
  display: flex;
  justify-content: center;
  align-items: center;
}

.course-coming-card__container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  overflow-x: hidden;
}

.course-coming-card {
  margin: 10px;
}

@media (max-width: 1000px) {
  .course-coming-card__container {
    flex-wrap: wrap;
  }
}

.course-coming-card__container {
  flex-wrap: wrap;
}

.course-coming-card {
  flex: 0 0 30%;
  margin: 10px;
}

.course-slider-btn {
  background-color: white;
  border-radius: 50px;
  border: 10px solid white;
  transition: 0.3s;
}

.course-slider-btn:hover {
  filter: invert(1);
}

.fw600 {
  font-weight: 600;
}

.course-coming-card {
  background: #ffffff;
  border-radius: 10px;
  min-height: 200px;
  display: flex;
  margin: 10px;
  padding-right: 20px;
}

.course-coming-card__img {
  width: 30% !important;
  height: auto !important;
  object-fit: cover;
  border-radius: 10.6862px 0px 0px 10.6862px;
}

@media (max-width: 1000px) {
  .course-coming-card__img {
    width: 100% !important;
    margin: 0 auto;
  }
}

.course-coming-card__details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 12px;
  font-size: 14px;
}

.course-coming-card__details__date {
  position: relative;
  font-weight: 600;
  font-size: 14px;
}

.course-coming-card__details__date::before {
  position: absolute;
  bottom: -3px;
  background-color: #e67b21;
  height: 2px;
  width: 100%;
  content: "";
}

.course-coming-card__details__place {
  font-weight: 600;
  font-size: 14px;
  margin-top: 10px;
}

.course-coming-card__details__addres {
  font-size: 13px;
}

@media (max-width: 1200px) {
  .course-slider-btn {
    display: none;
  }

  .coming-courses {
    flex-direction: column;
  }

  .course-coming-card {
    padding: 8px;
  }
}

.benefit-card-container {
  margin-top: -35px;
}

.benefit-card {
  background-color: white;
  padding: 18px;
  margin: 8px;
  border-radius: 10px;
}

#masonry-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  grid-gap: 20px;
}

.offer-bg {
  background-color: #f6f6f6;
  padding: 100px 0;
}

.offer-course-dark {
  background-color: #303030;
  border-radius: 16px;
  color: #ffffff;
  padding: 50px;
}

.offer-course-light {
  background-color: #ffffff;
  border-radius: 16px;
  color: #303030;
  padding: 50px;
}

.offer-course-grey {
  background-color: #8e8e8e;
  border-radius: 16px;
  color: #303030;
  padding: 50px;
}

.offer-course-headline {
  text-transform: uppercase;
  font-size: 20px;
}

.offer-course-price {
  font-size: 40px;
  font-weight: 600;
}

.offer-course-price__currency {
  font-size: 20px;
}

.offer-container {
  width: 600px;
}

@media (max-width: 827px) {
  .offer-container {
    border-radius: 3px;
  }

  .offer-container {
    width: none;
  }
}

.offer-signup-btn {
  background-color: #e67b21;
  border-radius: 6px;
  padding: 8px 12px;
  border: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.offer-signup-btn:hover {
  background-color: #0f0f0f;
}

.offer-signup-btn-advanced {
  background-color: transparent;
  border: 1px solid #ddd !important;
  border-radius: 6px;
  padding: 8px 12px;
  border: none;
  color: white;
  font-weight: 600;
  transition: 0.3s;
}

.offer-signup-btn-advanced:hover {
  background-color: #ddd;
  color: #e67b21;
}

.additional-options {
  display: block;
}

.additional-options-switch-hide {
  display: none;
}

.review__arrows {
  background-color: #ffffff;
  border-radius: 50px;
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
  cursor: pointer;
  user-select: none;
}

.review__arrows:hover {
  filter: invert(1);
}

.review__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.review__card {
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  padding: 20px;
  margin: 10px;
  max-height: 325px;
  height: 285px;
  max-width: 33.3333%;
  flex: 0 0 33.3333%;
}

@media (max-width: 1000px) {
  .review__card {
    height: 355px;
  }
}

.review__all_cards {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin: 0 10px;
  padding: 0 20px;
  transition: transform 0.3s ease-in-out; /* Dodaje animację */
  display: flex;
  overflow: hidden;
}

.review__card__info {
  display: flex;
}

.review__card__info__img img {
  border-radius: 100px;
}

.review__card__info__name {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}

.review__card__content {
  margin-top: 20px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
}

.review__card__info__name__name {
  font-size: 18px;
  font-weight: 600;
}

.review__card__info__name__course {
  font-size: 14px;
  color: #303030;
}

@media screen and (max-width: 1000px) {
  .review__all_cards {
    flex-wrap: wrap;
  }

  .review__card {
    flex: 0 0 100%; /* Na mniejszych ekranach każda karta zajmuje całą szerokość */
    max-width: 100%;
    display: none;
  }

  .review__card:first-child {
    display: block;
  }
}

.container__contact {
  display: flex;
}

.container__contact__details {
  background-color: #e67b21;
  border-radius: 10px;
  color: white;
  padding: 50px;
  flex: 0 0 35%;
}

.container__contact__details__section {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

@media (max-width: 1000px) {
  .container__contact__details {
    flex: 1;
    border-radius: 0;
  }
}

.wp-forms-email-and-phone p {
  display: flex;
  justify-content: space-between;
}

#form-homepage-control {
  margin: 0 50px;
}

@media (max-width: 1000px) {
  #form-homepage-control {
    margin: 0 auto;
  }

  #homepage-phone,
  #homepage-email,
  #homepage-name,
  #homepage-select,
  #homepage-textarea,
  .homepage-consent-wrapper {
    min-width: 300px;
    width: 300px;
    max-width: 300px;
  }
}

#homepage-signup {
  border: 1px solid #e67b21;
  background-color: transparent;
  color: #e67b21;
  border-radius: 6px;
  padding: 8px 12px;
  font-weight: 600;
  transition: 0.3s;
}

#homepage-signup:hover {
  background-color: #e67b21;
  color: white;
}

#homepage-phone,
#homepage-email,
#homepage-name,
#homepage-select,
#homepage-textarea {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: rgb(30, 30, 30);
}

#homepage-textarea,
#homepage-select {
  width: 100%;
}

#homepage-phone {
  width: 90%;
}

.mobile-view-homepage {
  display: none;
}

.homepage-consent-wrapper {
  font-size: 14px;
}

.home-page-private-policy {
  color: #e67b21;
}

@media (max-width: 1000px) {
  .mobile-view-homepage {
    display: block;
  }

  .container__contact {
    flex-wrap: wrap;
  }

  .wp-forms-email-and-phone p {
    display: flex;
    flex-direction: column;
  }

  #form-homepage-control {
    margin-top: 35px;
  }

  #homepage-phone {
    width: 100%;
  }
}

.contact__box__2 {
  border: 1px solid #ffffff65;
  border-radius: 6px;
  padding: 8px 12px;
  background-color: #03152e;
  transition: 0.5s;
}

.contact__box__2:hover {
  background-color: #e67b21;
}

#form-homepage-control__contact {
  margin: 0 50px;
  background-color: white;
  border-radius: 20px;
  padding: 40px;
}

#homepage-phone_2,
#homepage-email_2,
#homepage-name_2 {
  border: 1px solid #ddd;
  padding: 8px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  color: rgb(30, 30, 30);
}

#homepage-phone_2 {
  width: 90%;
}

#homepage-email_2 {
  width: 100%;
}

#homepage-name_2 {
  width: 100%;
}

@media (max-width: 1000px) {
  #form-homepage-control__contact {
    margin-top: 100px;
    margin-bottom: 5vh;
  }
}

@media (max-width: 1000px) {
  .container__contact__details__2 {
    padding: 18px;
  }

  .page-title {
    padding: 18px;
    text-align: center;
  }
}

.coming-courses-contact-page-bg {
  background-color: #f6f6f6;
}

.hero-bg-contact {
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1000px) {
  #form-homepage-control__contact {
    margin: 15px;
  }
}

.container-menu-item {
  transition: 0.3s;
  padding: 10px;
}

.container-menu-item:hover {
  color: #e67b21;
}

.footer-link-item {
  transition: 0.3s;
}

.footer-link-item:hover {
  color: #e67b21 !important;
}

.footer-sitemap-title {
  user-select: none;
}

.blog-bg-grey {
  background-color: #f6f6f6;
}

.blog-box-from-all-cards {
  padding: 14px;
  background-color: #ffffff;
  border-radius: 10px;
}

.on-blog-article-img {
  max-height: 250px;
  object-fit: cover;
}

.go-back-courses-btn {
  color: #e67b21;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.3s;
}

.go-back-courses-btn:hover {
  filter: invert(1);
}

.course-category-h1 {
  font-size: 32px;
  color: #303030;
}

.course-category-btn {
  border-radius: 6px;
  background-color: #e67b21 !important;
  border: 1px solid #e67b21;
  color: white;
  transition: 0.3s;
}

.course-category-btn:hover {
  background-color: white !important;
  color: #e67b21;
}

.elka-bullet-points {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  padding: 0;
}

.elka-bullet-points li {
  margin-bottom: 8px;
}

#whole-single-blog-page {
  background-color: #f6f6f6;
}

#blog-page {
  max-width: 1020px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 60px;
}

.img-b-radius-20 img {
  border-radius: 20px;
}

.img-b-radius-20 {
  border-radius: 20px;
}

#blog-page h1 {
  text-align: center;
  font-weight: 600;
  font-size: 32px;
  color: #303030;
}

#blog-page h2 {
  font-size: 20px;
  font-weight: bold;
  color: #303030;
}

.post-date-publication {
  display: inline;
  color: #303030;
  border: 1px solid #30303075;
  border-radius: 4px;
  padding: 4px 8px;
  margin-bottom: 20px;
}

.publication-article {
  margin: 20px 0;
}

.publication-article h3 {
  font-size: 18px;
  color: #2f2f2f;
}

.publication-article a {
  color:#e67b21;
}

.contact-elka-callbtn__container {
    position: fixed;
    bottom: 35px;
    left: 50%;
    transform: translate(-50%);
}

.contact-elka-callbtn__container__btn {
    background-color: #007bce;
    border-radius: 6px;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 8px 16px;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
	text-align:center;
}

@media (max-width: 500px) {
	#blog-page {
		padding: 10px;
	}
	
}

.contact-elka-callbtn__container__btn:hover {
    transition: .2s;
    background-color: #e67b21;
}