@charset "UTF-8";
.btn.added {
  animation: addedToCart 0.5s ease-in-out;
}

@keyframes addedToCart {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.courses-list .course-item {
  opacity: 0;
  transform: translateY(30px);
  transition: transform 0.8s ease-out, opacity 0.8s ease-out;
}

.courses-list .course-item.loaded {
  opacity: 1;
  transform: translateY(0);
}

.courses-list .course-item.loaded {
  animation: slideInUp 0.8s ease-out forwards;
}

@keyframes slideInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.blog__post {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.blog__post.visible {
  opacity: 1;
  transform: translateY(0);
}

.section__hero {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.section__hero.visible {
  opacity: 1;
}

.section__about--content {
  opacity: 0;
  transition: opacity 0.6s ease-out;
}

.section__hero.visible .section__hero-content, .section__hero.visible {
  opacity: 1;
}

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}

html {
  font-size: 62.5%;
  /*
  @include respond(tab-land) { 
    font-size: 59.38%; //1rem = 9.5px, 9.5/16 = 59.38%
  }

  @include respond(big-desktop) {
    font-size: 75%; //1rem = 12, 12/16 = 75%
  }
  */
}

body {
  box-sizing: border-box;
}

::selection {
  background-color: #0269b3;
  color: #ffffff;
}

body.no-scroll {
  overflow: hidden;
  position: fixed; /* Zablokowanie przewijania na całej stronie */
  top: 0;
  width: 100%; /* Zapewnia, że szerokość strony jest również zablokowana */
  height: 100%; /* Zablokowanie wysokości, aby uniknąć przewijania w pionie */
}

body {
  font-size: 1.6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: #1b2631;
}

a {
  text-decoration: none;
  color: #1b2631;
}
a:hover {
  color: #C51B2A;
}

ul {
  list-style-type: none;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
}

h1, h2, h3 {
  letter-spacing: 0.05em;
}

h4 {
  letter-spacing: 0.04em;
}

h5 {
  letter-spacing: 0.02em;
}

h6 {
  letter-spacing: 0.01em;
}

h1 {
  font-size: 5.5rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h1 {
    font-size: 5rem;
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  h1 {
    font-size: 4.4rem;
    line-height: 1.25;
  }
}
@media (max-width: 600px) {
  h1 {
    font-size: 3.6rem;
    line-height: 1.2;
  }
}

h2 {
  font-size: 3.9rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h2 {
    font-size: 3.4rem;
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  h2 {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 600px) {
  h2 {
    font-size: 2.8rem;
    line-height: 1.25;
  }
}

h3 {
  font-size: 3.3rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h3 {
    font-size: 2.8rem;
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  h3 {
    font-size: 2.4rem;
    line-height: 1.25;
  }
}
@media (max-width: 600px) {
  h3 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

h4 {
  font-size: 2.8rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h4 {
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
@media (max-width: 1024px) {
  h4 {
    font-size: 2.2rem;
    line-height: 1.25;
  }
}
@media (max-width: 600px) {
  h4 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}

h5 {
  font-size: 2rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h5 {
    font-size: 1.8rem;
    line-height: 1.25;
  }
}
@media (max-width: 1024px) {
  h5 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media (max-width: 600px) {
  h5 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

h6 {
  font-size: 1.8rem;
  line-height: 1.3;
}
@media (max-width: 1440px) {
  h6 {
    font-size: 1.6rem;
    line-height: 1.25;
  }
}
@media (max-width: 1024px) {
  h6 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
}
@media (max-width: 600px) {
  h6 {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.color-primary {
  color: #0269b3;
}

.color-primary-light {
  color: rgb(20.4209944751, 155.4022099448, 252.3790055249);
}

.color-secondary {
  color: #C51B2A;
}

.font-bold {
  font-weight: 600;
}

.font-bold-extra {
  font-weight: 800;
}

.gradient-text {
  display: block;
  background-image: linear-gradient(to right, #0269b3, rgb(1.7182320442, 90.2071823204, 153.7817679558));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}

.text-center {
  text-align: center;
}

.mr-5 {
  margin-right: 0.5rem;
}

.pr-10 {
  padding-right: 1rem;
}

.mb-10 {
  margin-bottom: 1rem;
}

.mt-10 {
  margin-top: 1rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.mt-30 {
  margin-top: 3rem;
}

.font-regular {
  font-weight: 300;
}

.only-mobile {
  display: none !important;
}
@media (max-width: 1024px) {
  .only-mobile {
    display: flex !important;
  }
}

.special-link {
  padding: 0.5rem 1rem;
  background-color: #C51B2A;
  color: #ffffff;
  font-weight: 600;
  border-radius: 2.5rem;
  transition: all 0.25s ease;
}
.special-link:hover {
  color: #ffffff;
  background-color: rgb(230.3625, 75.2375, 88.925);
}

.contact-form {
  width: 30%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .contact-form {
    width: 70%;
  }
}
@media (max-width: 600px) {
  .contact-form {
    width: 100%;
  }
}

.wpcf7-list-item input {
  width: auto !important;
}

.wpcf7-submit {
  width: 30% !important;
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  .wpcf7-submit {
    width: 100% !important;
  }
}

.wpcf7-response-output {
  background: #009640;
  border: none !important;
  padding: 2rem !important;
  border-radius: 25px;
  color: white;
  font-weight: 700;
  text-align: center;
}

.wpcf7-acceptance {
  font-size: 14px;
  line-height: 1.4;
}

.wpcf7-acceptance a {
  color: #0269b3;
  text-decoration: underline;
}
.wpcf7-acceptance a:hover {
  color: #C51B2A;
}

.wpcf7 {
  display: flex;
  justify-content: center;
}

@media (max-width: 600px) {
  div#n2-ss-3 .n-uc-10b4708c169f4 {
    order: 2 !important;
  }
}

input[type=text], .woocommerce form .form-row input[type=text].input-text,
.woocommerce form .form-row textarea[type=text],
input[type=email],
.woocommerce form .form-row input[type=email].input-text,
.woocommerce form .form-row textarea[type=email],
input[type=password],
.woocommerce form .form-row input[type=password].input-text,
.woocommerce form .form-row textarea[type=password],
input[type=tel],
.woocommerce form .form-row input[type=tel].input-text,
.woocommerce form .form-row textarea[type=tel],
input[type=number],
.woocommerce form .form-row input[type=number].input-text,
.woocommerce form .form-row textarea[type=number],
input[type=search],
.woocommerce form .form-row input[type=search].input-text,
.woocommerce form .form-row textarea[type=search],
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
input[type=text]:focus, .woocommerce form .form-row input[type=text].input-text:focus,
.woocommerce form .form-row textarea[type=text]:focus,
input[type=email]:focus,
.woocommerce form .form-row input[type=email].input-text:focus,
.woocommerce form .form-row textarea[type=email]:focus,
input[type=password]:focus,
.woocommerce form .form-row input[type=password].input-text:focus,
.woocommerce form .form-row textarea[type=password]:focus,
input[type=tel]:focus,
.woocommerce form .form-row input[type=tel].input-text:focus,
.woocommerce form .form-row textarea[type=tel]:focus,
input[type=number]:focus,
.woocommerce form .form-row input[type=number].input-text:focus,
.woocommerce form .form-row textarea[type=number]:focus,
input[type=search]:focus,
.woocommerce form .form-row input[type=search].input-text:focus,
.woocommerce form .form-row textarea[type=search]:focus,
textarea:focus {
  border-color: #0073aa;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
  outline: none;
}
input[type=text]::placeholder, .woocommerce form .form-row input[type=text].input-text::placeholder,
.woocommerce form .form-row textarea[type=text]::placeholder,
input[type=email]::placeholder,
.woocommerce form .form-row input[type=email].input-text::placeholder,
.woocommerce form .form-row textarea[type=email]::placeholder,
input[type=password]::placeholder,
.woocommerce form .form-row input[type=password].input-text::placeholder,
.woocommerce form .form-row textarea[type=password]::placeholder,
input[type=tel]::placeholder,
.woocommerce form .form-row input[type=tel].input-text::placeholder,
.woocommerce form .form-row textarea[type=tel]::placeholder,
input[type=number]::placeholder,
.woocommerce form .form-row input[type=number].input-text::placeholder,
.woocommerce form .form-row textarea[type=number]::placeholder,
input[type=search]::placeholder,
.woocommerce form .form-row input[type=search].input-text::placeholder,
.woocommerce form .form-row textarea[type=search]::placeholder,
textarea::placeholder {
  color: #aaa;
}

.woocommerce-checkout .woocommerce-billing-fields input, .woocommerce-checkout .woocommerce-billing-fields .woocommerce form .form-row input.input-text, .woocommerce form .form-row .woocommerce-checkout .woocommerce-billing-fields input.input-text,
.woocommerce-checkout .woocommerce-billing-fields .woocommerce form .form-row textarea,
.woocommerce form .form-row .woocommerce-checkout .woocommerce-billing-fields textarea,
.woocommerce-checkout .woocommerce-billing-fields textarea {
  border-color: #ccc;
}
.woocommerce-checkout .woocommerce-billing-fields input:focus, .woocommerce-checkout .woocommerce-billing-fields .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row .woocommerce-checkout .woocommerce-billing-fields input.input-text:focus,
.woocommerce-checkout .woocommerce-billing-fields textarea:focus {
  border-color: #28a745;
  box-shadow: 0 0 5px rgba(40, 167, 69, 0.5);
}

input[type=submit], .woocommerce form .form-row input[type=submit].input-text,
.woocommerce form .form-row textarea[type=submit] {
  background-color: #0073aa !important;
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}
input[type=submit]:hover, .woocommerce form .form-row input[type=submit].input-text:hover,
.woocommerce form .form-row textarea[type=submit]:hover {
  background-color: #005f8d;
}

.wpcf7-form input, .wpcf7-form .woocommerce form .form-row input.input-text, .woocommerce form .form-row .wpcf7-form input.input-text,
.wpcf7-form .woocommerce form .form-row textarea,
.woocommerce form .form-row .wpcf7-form textarea {
  margin-bottom: 1.5rem;
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  background-color: #f9f9f9;
  transition: all 0.3s ease-in-out;
}
.wpcf7-form input:focus, .wpcf7-form .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row .wpcf7-form input.input-text:focus,
.wpcf7-form .woocommerce form .form-row textarea:focus,
.woocommerce form .form-row .wpcf7-form textarea:focus {
  border-color: #0073aa;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 115, 170, 0.5);
  outline: none;
}
.wpcf7-form input::placeholder, .wpcf7-form .woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row .wpcf7-form input.input-text::placeholder,
.wpcf7-form .woocommerce form .form-row textarea::placeholder,
.woocommerce form .form-row .wpcf7-form textarea::placeholder {
  color: #aaa;
}

.btn {
  display: inline-block;
  padding: 1rem 4rem;
  font-size: 1.6rem;
  font-weight: 600;
  transition: all 0.3s ease;
  text-align: center;
  text-decoration: none;
  border-radius: 2.5rem;
  cursor: pointer;
}
@media (max-width: 600px) {
  .btn {
    width: 100%;
  }
}

.btn-white {
  background: #fff;
  color: #1b2631;
  border: 2px solid #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
}

.btn-primary {
  background-color: #0269b3;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid #0269b3;
}
.btn-primary:hover {
  background-color: rgb(1.7182320442, 90.2071823204, 153.7817679558);
  border: 2px solid rgb(1.7182320442, 90.2071823204, 153.7817679558);
}

.btn-secondary {
  background-color: #C51B2A;
  color: white;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 2px solid #C51B2A;
}
.btn-secondary:hover {
  background-color: rgb(230.3625, 75.2375, 88.925);
  border: 2px solid rgb(230.3625, 75.2375, 88.925);
}

.btn-move {
  transform: translateY(50px);
  opacity: 0;
  transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.btn-upcoming {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 4rem 0;
  padding: 1rem 2rem;
  background-color: #C51B2A;
  color: #ffffff;
  border-radius: 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-upcoming:hover {
  background-color: rgb(230.3625, 75.2375, 88.925);
}

.hamburger__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 100%;
  width: 100%;
}
.hamburger__menu.active {
  background-color: #0269b3;
}
.hamburger__menu--icon {
  position: relative;
}
.hamburger__menu--icon, .hamburger__menu--icon::before, .hamburger__menu--icon::after {
  width: 2rem;
  height: 0.2rem;
  background-color: #1b2631;
  display: inline-block;
}
.hamburger__menu--icon::before, .hamburger__menu--icon::after {
  content: "";
  position: absolute;
  left: 0;
  transition: all 0.3s;
}
.hamburger__menu--icon::before {
  top: -0.7rem;
}
.hamburger__menu--icon::after {
  top: 0.7rem;
}
.hamburger__menu--icon.active {
  background-color: transparent;
  height: 0;
}
.hamburger__menu--icon.active::before {
  top: 0;
  transform: rotate(135deg);
  background-color: #0269b3;
  height: 0.2rem;
}
.hamburger__menu--icon.active::after {
  top: 0;
  transform: rotate(-135deg);
  background-color: #0269b3;
  height: 0.2rem;
}

.logo {
  fill: #1b2631;
  color: #1b2631;
}

.arrow-icon-big {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

.arrow-icon-big::after {
  content: "";
  border: solid currentColor;
  border-width: 0 1.3px 1.3px 0;
  padding: 5px;
  transform: translateY(-3px) rotate(45deg);
  -webkit-transform: translateY(-3px) rotate(45deg);
}

.rotate {
  transform: rotate(180deg); /* Obróć ikonę o 180 stopni */
}

.rotate-90 {
  transform: rotate(-90deg);
}

.icon {
  padding-right: 1rem;
}

.underline-container {
  position: relative;
  display: inline-block;
}

.underline-container .underline-icon {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.underline-5 {
  bottom: -0.5em;
}

.underline-2 {
  bottom: -0.2em;
}

.icon-container {
  width: 23px; /* Szerokość kontenera na ikonę, aby dopasować się do ikony */
  height: 23px; /* Wysokość kontenera na ikonę, aby dopasować się do ikony */
  display: flex; /* Ustawiamy kontener na flex, aby łatwiej zarządzać jego zawartością */
  justify-content: center; /* Wyśrodkowanie zawartości w pionie */
  align-items: center; /* Wyśrodkowanie zawartości w poziomie */
}

.rotate-svg {
  transition: transform 2s ease; /* Zmieniamy czas trwania animacji na 2 sekundy */
}

.rotate-animation {
  transform: rotate(360deg); /* Obracamy ikonę o 360 stopni */
}

.arrow-icon-small {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: transform 0.4s ease;
}

.arrow-icon-small::after {
  content: "";
  border: solid currentColor;
  border-width: 0 1.3px 1.3px 0;
  padding: 4px;
  transform: translateY(-3px) rotate(45deg);
  -webkit-transform: translateY(-3px) rotate(45deg);
}

.dropdown {
  border: none;
  display: block;
  cursor: pointer;
  color: #ffffff;
}
.dropdown-container {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.dropdown-container.active {
  max-height: 1000rem;
}
.dropdown-container.active .arrow-icon-big {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.dropdown-item {
  padding: 1.5rem 0;
}

.header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2.4rem 4.8rem;
  background-color: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  z-index: 10;
  /* Desktopowa nawigacja */
  /* Przyciski dla wersji mobilnej */
  /* Mobilne menu */
  /* Mobilna nawigacja - linki w kolumnie */
  /* Overlay dla mobilnego menu */
  /* Desktopowa lista nawigacji */
}
@media (max-width: 600px) {
  .header {
    padding: 2.4rem;
  }
}
.header__box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
}
.header__logo {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  font-weight: bold;
}
.header__logo a {
  height: 8rem;
  width: 100%;
}
@media (max-width: 600px) {
  .header__logo a {
    height: 6rem;
    max-width: 16.5rem;
  }
}
.header__logo a img {
  height: 100%;
  width: 100%;
}
.header__container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.header__icons {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .header__icons {
    display: none;
  }
}
.header .header__login {
  background-color: #0269b3;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 5.5rem;
  transition: all 0.3s ease-in-out;
}
.header .header__login:hover {
  color: #ffffff;
  background-color: rgb(1.7182320442, 90.2071823204, 153.7817679558);
}
.header__icon {
  display: flex;
  color: #1b2631;
  cursor: pointer;
}
.header__icon i {
  font-size: 2rem;
}
.header__icon:hover {
  color: #C51B2A;
}
@media (max-width: 1024px) {
  .header__icon {
    margin-right: 1.2rem;
  }
}
.header__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__nav-header {
    padding-bottom: 2rem;
  }
}
.header__nav-item {
  list-style: none;
}
@media (max-width: 1024px) {
  .header__nav-item {
    padding: 1rem 0;
  }
  .header__nav-item:not(:last-child) {
    border-bottom: 1px solid #ababab;
  }
}
.header__nav-link {
  text-decoration: none;
  color: #1b2631;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
.header__nav-link:hover {
  color: #C51B2A;
}
.header__menu-toggle {
  display: none;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #1b2631;
}
@media (max-width: 1024px) {
  .header__menu-toggle {
    display: block;
  }
}
.header__mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 75%;
  height: 100%;
  background: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 20px;
  transition: right 0.3s ease-in-out;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Ustawienie pozycji linków */
  gap: 20px;
}
.header__mobile-menu.active {
  right: 0;
}
.header__menu-close {
  align-self: flex-end;
  font-size: 2rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #1b2631;
}
.header__menu-close:hover {
  color: #C51B2A;
}
.header__mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.header__mobile-dash {
  margin-top: 4rem;
}
.header__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 15;
}
.header__overlay.active {
  display: block;
}
.header__nav ul {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Wersja mobilna - menu */
@media (max-width: 1024px) {
  .header__icon-mobile {
    margin-right: 1.2rem;
  }
  .header__login {
    display: none;
  }
}
.footer {
  padding: 6rem 0;
  text-align: center;
  clear: both;
}
.footer__bottom {
  border-bottom: 1px solid #f5f5f5;
}
.footer__logo {
  display: flex;
  justify-content: flex-start;
  justify-content: center;
  padding: 6rem;
}
.footer__logo a img {
  height: 10rem;
}
@media (max-width: 600px) {
  .footer__logo {
    padding: 4rem;
    padding-bottom: 0;
    justify-content: center;
  }
}
.footer__social-media-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.footer .icon__social-media {
  height: 3rem;
  width: 3rem;
  margin-right: 1.2rem;
}
.footer__navigation {
  padding: 6rem 4.8rem;
}
@media (max-width: 600px) {
  .footer__navigation {
    flex-direction: column;
    align-items: center;
    padding: 4rem 2.4rem;
  }
}
.footer__navigation--header {
  padding-bottom: 2rem;
  font-weight: 600;
}
.footer__navigation--item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer__navigation--item {
    padding: 1rem 2.4rem;
  }
}
@media (max-width: 600px) {
  .footer__navigation--item {
    align-items: center;
  }
}
.footer__navigation--link, .footer__navigation li {
  padding-bottom: 1rem;
  justify-content: center;
}
.footer__navigation--link a:hover, .footer__navigation li a:hover {
  color: #C51B2A;
}
.footer__info {
  padding: 0;
  padding-top: 6rem;
}
@media (max-width: 600px) {
  .footer__info {
    padding: 0;
    padding-top: 4rem;
  }
}
.footer__info--header {
  padding-bottom: 4rem;
  font-weight: 600;
}
.footer__info--container {
  padding-bottom: 6rem;
}
@media (max-width: 600px) {
  .footer__info--container {
    padding-bottom: 4rem;
  }
}
.footer__info--options {
  align-items: flex-start;
}
@media (max-width: 1024px) {
  .footer__info--options {
    align-items: center;
  }
}
.footer__info--item {
  display: flex;
  align-items: center;
}
.footer__info--item:not(:last-child) {
  padding-right: 4.8rem;
}
@media (max-width: 600px) {
  .footer__info--item:not(:last-child) {
    padding-right: 2.4rem;
  }
}
@media (max-width: 600px) {
  .footer__info--item {
    padding: 1rem 0;
  }
}
.footer__copyright {
  display: flex;
  padding: 6rem;
}
@media (max-width: 600px) {
  .footer__copyright {
    padding: 4rem 0;
    justify-content: center;
  }
}

.container {
  padding: 4.8rem 0;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .container {
    padding: 4.8rem;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .container {
    padding: 2.4rem;
  }
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
}
.flex-inline {
  display: inline-flex;
}
.flex-item {
  box-sizing: border-box;
  flex: 0 0 100%;
}
@media (min-width: 576px) {
  .flex-item.col-1 {
    flex: 0 0 calc(8.3333% - 1.2rem);
  }
  .flex-item.col-2 {
    flex: 0 0 calc(16.6667% - 1.2rem);
  }
  .flex-item.col-3 {
    flex: 0 0 calc(25% - 1.2rem);
  }
  .flex-item.col-4 {
    flex: 0 0 calc(33.3333% - 1.2rem);
  }
  .flex-item.col-5 {
    flex: 0 0 calc(41.6667% - 1.2rem);
  }
  .flex-item.col-6 {
    flex: 0 0 calc(50% - 1.2rem);
  }
  .flex-item.col-7 {
    flex: 0 0 calc(58.3333% - 1.2rem);
  }
  .flex-item.col-8 {
    flex: 0 0 calc(66.6667% - 1.2rem);
  }
  .flex-item.col-9 {
    flex: 0 0 calc(75% - 1.2rem);
  }
  .flex-item.col-10 {
    flex: 0 0 calc(83.3333% - 1.2rem);
  }
  .flex-item.col-11 {
    flex: 0 0 calc(91.6667% - 1.2rem);
  }
  .flex-item.col-12 {
    flex: 0 0 calc(100% - 1.2rem);
  }
}
@media (min-width: 768px) {
  .flex-item.col-1, .flex-item.col-2, .flex-item.col-3, .flex-item.col-4, .flex-item.col-5, .flex-item.col-6, .flex-item.col-7, .flex-item.col-8, .flex-item.col-9, .flex-item.col-10, .flex-item.col-11, .flex-item.col-12 {
    flex: 0 0 calc(50% - 1.2rem);
  }
}
@media (min-width: 992px) {
  .flex-item.col-1 {
    flex: 0 0 calc(8.3333% - 1.2rem);
  }
  .flex-item.col-2 {
    flex: 0 0 calc(16.6667% - 1.2rem);
  }
  .flex-item.col-3 {
    flex: 0 0 calc(25% - 1.2rem);
  }
  .flex-item.col-4 {
    flex: 0 0 calc(33.3333% - 1.2rem);
  }
  .flex-item.col-5 {
    flex: 0 0 calc(41.6667% - 1.2rem);
  }
  .flex-item.col-6 {
    flex: 0 0 calc(50% - 1.2rem);
  }
  .flex-item.col-7 {
    flex: 0 0 calc(58.3333% - 1.2rem);
  }
  .flex-item.col-8 {
    flex: 0 0 calc(66.6667% - 1.2rem);
  }
  .flex-item.col-9 {
    flex: 0 0 calc(75% - 1.2rem);
  }
  .flex-item.col-10 {
    flex: 0 0 calc(83.3333% - 1.2rem);
  }
  .flex-item.col-11 {
    flex: 0 0 calc(91.6667% - 1.2rem);
  }
  .flex-item.col-12 {
    flex: 0 0 calc(100% - 1.2rem);
  }
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-space-between {
  justify-content: space-between;
}
.flex-space-around {
  justify-content: space-around;
}
.flex-space-evenly {
  justify-content: space-evenly;
}
.flex-start {
  justify-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
}
.flex-center {
  justify-content: center;
}
.flex-column {
  flex-direction: column;
}
.flex-a-center {
  align-items: center;
}
.flex-a-start {
  align-items: flex-start;
}

.section-container {
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .section-container {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .section-container {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.section-main-header {
  padding-bottom: 2rem;
}
.section-title {
  padding-bottom: 2rem;
}
.section-title-big {
  padding-bottom: 4rem;
}
.section-subtitle {
  padding-bottom: 2rem;
  font-weight: 400;
}
.section-header {
  color: #0269b3;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  padding-bottom: 1.5rem;
  font-weight: 400;
}
.section-description {
  padding: 2rem 0;
}
@media (max-width: 600px) {
  .section-description {
    padding-top: 0;
  }
}
.section__hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4.8rem;
  color: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}
@media (max-width: 600px) {
  .section__hero {
    padding: 2.4rem;
  }
}
.section__hero-box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 2rem 0;
  max-width: 600px;
}
@media (max-width: 600px) {
  .section__hero-box {
    grid-template-columns: repeat(1, 1fr);
  }
}
.section__hero-adv {
  display: flex;
  align-items: center;
  font-weight: 400;
  max-width: 250px;
  padding: 0.5rem 0;
}
.section__hero-adv i {
  margin-right: 1rem;
}
.section__hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section__hero-overlay::before, .section__hero-overlay::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.section__hero-overlay::before {
  background: linear-gradient(130deg, rgba(2, 55, 94, 0.8) 55%, rgba(197, 27, 42, 0.5) 100%);
}
.section__hero-overlay::after {
  background: linear-gradient(120deg, rgba(2, 55, 94, 0), rgba(197, 27, 42, 0));
  mix-blend-mode: overlay;
}
.section__hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  text-align: left;
}
.section__hero-content a {
  margin-top: 2rem;
}
.section__about {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 8rem;
  padding-top: 8rem;
  padding-bottom: 8rem;
  width: 100%;
  overflow: hidden;
}
.section__about-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.section__about-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 6rem;
  text-align: center;
}
.section__about .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__about .icon-box i {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(230.3625, 75.2375, 88.925);
  height: 80px;
  width: 80px;
  border-radius: 50%;
  font-size: 24px;
  color: #ffffff;
  margin-bottom: 1rem;
  box-shadow: 0px 15px 30px 0px rgba(197, 27, 42, 0.2);
}
.section__about .icon-box p {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
@media (max-width: 1024px) {
  .section__about .section__about-icons {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section__about-text {
  position: relative;
}
.section__about-text p {
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .section__about-text p {
    margin-bottom: 0;
    margin-top: 2rem;
  }
}
.section__about-icon {
  position: absolute;
  z-index: -1;
  opacity: 0.5;
}
.section__about-title {
  color: #0269b3;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .section__about {
    flex-direction: column;
    padding: 4rem 2.4rem;
  }
  .section__about-text, .section__about-img {
    flex: 0 0 100%;
    margin-bottom: 2rem;
  }
  .section__about-img {
    max-height: 300px;
  }
  .section__about .section__about-card {
    display: none;
  }
}
@media (max-width: 1024px) {
  .section__about-img {
    max-height: 350px;
  }
  .section__about .section__about-card {
    width: 80%;
  }
}
@media (max-width: 1440px) {
  .section__about-img {
    max-height: 400px;
  }
  .section__about .section__about-card {
    width: 400px;
  }
}
.section__team {
  padding: 8rem 0;
}
@media (max-width: 600px) {
  .section__team {
    padding: 4rem 0;
  }
}
.section__team-header {
  text-align: center;
}
.section__team-img {
  height: 250px;
  width: 250px;
  object-fit: cover;
  border-radius: 50%;
}
@media (max-width: 600px) {
  .section__team-img {
    width: 200px;
    height: 200px;
  }
}
.section__team-title {
  padding: 1.5rem 0;
}
.section__team-person {
  text-align: center;
  margin: 6rem 4.8rem 0;
}
@media (max-width: 600px) {
  .section__team-person {
    margin-left: 0;
    margin-right: 0;
    margin-top: 2rem;
  }
}
.section__upcoming {
  padding: 8rem 0;
}
@media (max-width: 600px) {
  .section__upcoming {
    padding: 4rem 0;
  }
}
.section__upcoming-subheader {
  text-align: center;
}
.section__upcoming-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section__upcoming-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .section__upcoming-grid {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
@media (max-width: 600px) {
  .section__upcoming-grid {
    grid-template-columns: repeat(1, 1fr);
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}
.section__upcoming-box {
  position: relative;
  border-radius: 2.5rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease;
  background-color: #ffffff;
}
.section__upcoming-img {
  width: 100%;
  max-height: 25rem;
  object-fit: cover;
  border-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
}
.section__upcoming-info {
  padding: 20px;
}
.section__upcoming-title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2.4rem;
  color: #ffffff;
}
.section__upcoming-details {
  margin-bottom: 2rem;
}
.section__upcoming-lecturer {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
.section__upcoming-lecturer-name {
  padding-bottom: 0.5rem;
}
.section__upcoming-lecturer-info {
  font-weight: 600;
}
.section__upcoming-lecturer-title {
  font-size: 1.2rem;
}
.section__upcoming-lecturer-img-container {
  position: absolute;
  top: 205px;
  width: 7rem;
  height: 7rem;
  border: 3px solid #ffffff;
  background: #ababab;
  border-radius: 50%;
  overflow: hidden;
}
@media (max-width: 600px) {
  .section__upcoming-lecturer-img-container {
    top: 190px;
  }
}
.section__upcoming-lecturer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section__upcoming-date, .section__upcoming-location, .section__upcoming-price {
  padding: 0.5rem 0;
}
.section__blog {
  padding-bottom: 8rem;
  padding-top: 8rem;
}
@media (max-width: 600px) {
  .section__blog {
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}
.section__blog-title {
  text-align: center;
  color: #0269b3;
  margin-bottom: 2rem;
}
.section__blog-posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}
@media (max-width: 1024px) {
  .section__blog-posts {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (max-width: 600px) {
  .section__blog-posts {
    grid-template-columns: 1fr;
  }
}
.section__blog-post {
  position: relative;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  transition: all 0.3s ease;
  border-radius: 2.5rem;
}
.section__blog-post:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}
.section__blog-post-image img {
  width: 100%;
  height: auto;
  max-height: 25rem;
  display: block;
  border-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
}
.section__blog-post-content {
  padding: 4rem 1.5rem;
}
.section__blog-post-content h4 {
  color: #ffffff;
  margin-bottom: 1rem;
}
.section__blog-post-content p {
  font-size: 1.8rem;
  color: #1b2631;
  margin-bottom: 2rem;
}
.section__blog-post-content .section__blog-post-readmore {
  display: inline-block;
  color: #C51B2A;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 5.5rem;
  transition: all 0.3s ease;
}
.section__blog-post-content .section__blog-post-readmore:hover {
  color: rgb(230.3625, 75.2375, 88.925);
}
.section__blog-post-category {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  font-size: 1.2rem;
}
.section__blog-post-header {
  position: absolute;
  top: 0;
  padding: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: left;
}

.about-us {
  background-color: #f9f9f9;
  padding: 8rem 0;
  margin: 8rem 0;
}

.about-us__container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  flex-wrap: wrap;
}
@media (max-width: 1336px) {
  .about-us__container {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
@media (max-width: 600px) {
  .about-us__container {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
  }
}

.about-us__content {
  flex: 1;
  max-width: 500px;
}

.about-us__title {
  margin-bottom: 2rem;
}

.about-us__text {
  font-size: 1.8rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.about-us__list {
  list-style: none;
  padding: 0;
}

.about-us__list li {
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.about-us__list i {
  color: #0269b3;
  margin-right: 10px;
}

.about-us__image {
  flex: 1;
}

.about-us__image img {
  object-fit: cover;
  height: 100%;
  max-width: 600px;
  border-radius: 3rem;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}
@media (max-width: 600px) {
  .about-us__image img {
    max-width: 100%;
    max-height: 450px;
  }
}

@media (max-width: 1024px) {
  .about-us__container {
    flex-direction: column;
  }
  .about-us__content {
    max-width: 100%;
  }
}
.team-section {
  margin: 8rem 0;
  padding: 8rem 4.8rem;
  background-color: #f9f9f9;
}
@media (max-width: 600px) {
  .team-section {
    margin: 4rem 0;
    padding: 8rem 2.4rem;
  }
}

.team-container {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 6rem auto;
}
@media (max-width: 600px) {
  .team-grid {
    grid-template-columns: repeat(1, 1fr);
    margin: 4rem auto;
  }
}

.team-member {
  position: relative;
  overflow: hidden;
  background-color: #fff;
  border-radius: 3rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem;
  max-width: 500px;
}

.team-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 2rem;
}

.team-info {
  padding: 0 1.2rem;
}
@media (max-width: 600px) {
  .team-info {
    padding: 0;
  }
}

.team-name {
  margin-bottom: 1.5rem;
}

.team-position {
  color: #0269b3;
  margin-bottom: 1.5rem;
}

.team-description {
  font-size: 1.8rem;
  color: #555;
}

/* Styl główny sekcji */
.section--course-in-clinic {
  padding-bottom: 8rem;
  padding-top: 8rem;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 1336px) {
  .section--course-in-clinic {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
    margin: 0;
  }
}
@media (max-width: 600px) {
  .section--course-in-clinic {
    padding-left: 2.4rem;
    padding-right: 2.4rem;
    padding-bottom: 4rem;
    padding-top: 4rem;
  }
}

/* Kontener główny */
.section--course-in-clinic .section__box {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1240px;
  margin: 0 auto;
  align-items: center;
}

/* Tekst */
.section--course-in-clinic .section__container--text {
  flex: 1 1 50%;
}

.section--course-in-clinic .section__title {
  margin-bottom: 2rem;
  color: #1b2631;
}

.section--course-in-clinic .section__text {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #555;
}

.section--course-in-clinic .section__list {
  list-style: none;
  padding: 0;
  margin-bottom: 4rem;
}

.section--course-in-clinic .section__list li {
  margin-bottom: 1.5rem;
  position: relative;
  color: #1b2631;
}

.section--course-in-clinic .section__list i {
  color: #0269b3;
  margin-right: 10px;
}

/* Obrazek */
.section--course-in-clinic .section__container--image {
  flex: 1 1 45%;
  text-align: center;
}

.section--course-in-clinic .section__image {
  max-width: 100%;
  border-radius: 3rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .section--course-in-clinic .section__box {
    flex-direction: column;
  }
  .section--course-in-clinic .section__button {
    display: block;
    margin: 0 auto;
  }
}
.single-post {
  width: 100%;
  padding: 1.5rem 0;
}
.single-post__container {
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 3rem;
}
.single-post__header {
  padding: 2.4rem;
  position: absolute;
  top: 0;
  z-index: 1;
}
.single-post__category a {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}
.single-post__title {
  margin-bottom: 1.5rem;
  color: #ffffff;
}
.single-post__image {
  position: relative;
  width: 100%;
  margin-bottom: 1.5rem;
}
.single-post__image img {
  width: 100%;
  height: auto;
  max-height: 45rem;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
  border-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.single-post__text {
  padding: 2.4rem;
  font-size: 1.6rem;
  line-height: 3.4rem;
  color: #1b2631;
}
@media (max-width: 600px) {
  .single-post__text {
    padding: 0;
  }
}
.single-post__meta {
  position: absolute;
  bottom: 0;
  padding: 2.4rem;
  margin: 1.5rem 0;
  color: #ffffff;
  text-align: center;
}
.single-post__navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  font-size: 1.8rem;
  padding: 2.4rem;
}
.single-post__navigation a {
  text-decoration: none;
  color: #0269b3;
  font-weight: 600;
}
.single-post__navigation a:hover {
  color: #C51B2A;
}
.single-post__error {
  text-align: center;
  color: #1b2631;
}
@media (max-width: 600px) {
  .single-post__container {
    padding: 1rem;
    max-width: 90%;
  }
  .single-post__navigation {
    flex-direction: column;
    text-align: center;
  }
  .single-post__navigation a {
    margin-bottom: 1rem;
  }
}
@media (max-width: 1024px) {
  .single-post__container {
    max-width: 90%;
  }
}

.blog {
  width: 100%;
  padding: 1.5rem 0;
}
.blog__container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 1.5rem;
}
.blog__title {
  text-align: center;
  margin-bottom: 1.5rem;
}
.blog__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.blog__post {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding-bottom: 4.8rem;
  border-radius: 2.5rem;
  transition: all 0.3s ease-in-out;
}
.blog__post:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}
.blog__post p, .blog__post .blog__read-more {
  padding-left: 2.4rem;
  padding-right: 2.4rem;
}
.blog__image {
  width: 100%;
  margin-bottom: 1rem;
}
.blog__image img {
  width: 100%;
  height: auto;
  max-height: 25rem;
  border-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
}
.blog__post-header {
  position: absolute;
  top: 0;
  padding: 2.4rem;
  margin-bottom: 1rem;
  color: #ffffff;
  text-align: left;
}
.blog__post-title {
  font-size: 2.4rem;
}
.blog__post-title a {
  color: #ffffff;
}
.blog__post-category {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  font-size: 1.2rem;
}
.blog__excerpt {
  margin-bottom: 1rem;
}
.blog__read-more {
  display: inline-block;
  padding: 1rem 4rem;
  margin-top: 1.5rem;
  text-decoration: none;
  background-color: #C51B2A;
  color: #ffffff;
  transition: 0.3s;
  border-radius: 2.5rem;
}
.blog__read-more:hover {
  background-color: rgb(230.3625, 75.2375, 88.925);
}
.blog__pagination {
  margin-top: 2rem;
  text-align: center;
}
.blog__no-posts {
  text-align: center;
}
@media (max-width: 1024px) {
  .blog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .blog__grid {
    grid-template-columns: 1fr;
  }
}

.page-main-contact__box {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 6rem;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .page-main-contact__box {
    text-align: center;
  }
}
.page-main-contact__container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.page-main-contact__person {
  padding-top: 1.5rem;
  padding-bottom: 4rem;
}
.page-main-contact__image {
  height: 12rem;
  width: 12rem;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  margin-right: 2.4rem;
}
@media (max-width: 600px) {
  .page-main-contact__image {
    margin-bottom: 2rem;
    margin-right: 0;
  }
}
.page-main-contact__form {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  margin-top: 6rem;
}
.page-main-contact__form--container {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem;
  border-radius: 2.5rem;
}
.page-main-contact .animation-delay {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page-main-contact .animation-delay.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.page__header--title {
  padding-bottom: 1rem;
}

.wp-page-container {
  max-width: 1000px;
  margin: 4.8rem auto;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 4.8rem;
  border-radius: 3rem;
}
@media (max-width: 600px) {
  .wp-page-container {
    margin: 2.4rem auto;
    box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
    padding: 2.4rem;
    border-radius: 2.5rem;
  }
}

.woocommerce-breadcrumb {
  padding: 0 !important;
  width: 100% !important;
  margin: 0 auto !important;
  position: relative;
  z-index: 1;
}
@media (min-width: 1800px) {
  .woocommerce-breadcrumb {
    max-width: 1800px !important;
  }
}

.custom-breadcrumbs-class {
  color: #ffffff !important;
}
.custom-breadcrumbs-class a {
  color: #ffffff !important;
}

.woocommerce-message {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 2rem;
  border-top: none;
  display: flex;
  align-items: center;
}
.woocommerce-message .button {
  margin-top: 0 !important;
}
.woocommerce-message::before {
  display: none !important;
}

.woocommerce ul.products li.product a img {
  border-radius: 2.5rem;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  max-height: 25rem;
  object-fit: cover;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
  padding: 0 !important;
  margin: 0 !important;
  margin-bottom: 1.5rem !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
  border-radius: 2.5rem;
}

.product div.summary .product_meta {
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
}
.product div.summary .price {
  color: #0269b3;
  display: flex;
  font-size: 2.4rem !important;
  padding-bottom: 1.5rem;
}
.product div.summary .product_title {
  padding-bottom: 1.5rem;
  font-size: 3.4rem;
  line-height: 4.94rem;
}
@media (max-width: 600px) {
  .product div.summary .product_title {
    font-size: 2.6rem;
    line-height: 3.6rem;
  }
}
.product div.summary .quantity {
  padding: 1.5rem 0 0;
}
.product div.summary .cart {
  margin-bottom: 1.5rem !important;
}
.product div.summary .posted_in {
  padding-top: 1.5rem;
}
.product div.summary .posted_in a {
  font-size: 1.4rem;
  font-weight: 600;
  color: #1b2631;
  text-transform: uppercase;
  margin-right: 0.6rem;
}

.product-price {
  margin: 2rem 0;
}

.woocommerce-Price-amount {
  color: #0269b3;
  font-weight: 600;
}

del {
  order: 2;
  color: #1b2631;
}
del .woocommerce-Price-amount {
  color: #0269b3;
}

ins {
  color: #0269b3;
  padding-right: 2.4rem;
  text-decoration: none;
}

.woocommerce-LoopProduct-link .price {
  color: #0269b3;
  display: flex !important;
  font-size: 1.8rem !important;
  margin-bottom: 0 !important;
}
.woocommerce-LoopProduct-link .price del {
  order: 2;
  color: #1b2631 !important;
}

.product img {
  transition: all 0.5s ease;
}
.product__dropdown {
  color: #1b2631;
  border-bottom: 1px solid #f2f4f5;
}
.product__dropdown--header {
  padding: 1.5rem 0;
}
.product .entry-summary {
  display: flex;
  flex-direction: column;
}
.product .entry-summary .variations {
  margin-bottom: 0 !important;
  padding-top: 1.5rem;
}
.product .entry-summary .custom-product-info {
  border-bottom: 1px solid #f2f4f5;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.product .entry-summary .custom-product-info-wrapper {
  padding: 1.5rem 0;
  margin-top: 1.5rem;
  font-size: 1.2rem;
  border-top: 1px solid #f2f4f5;
  border-bottom: 1px solid #f2f4f5;
}
@media (max-width: 600px) {
  .product .entry-summary .custom-product-info-wrapper .custom-product-info {
    flex-direction: column;
  }
}
.product .entry-summary .custom-product-info-wrapper .custom-product-info__item:last-child {
  padding-right: 0;
}
@media (max-width: 600px) {
  .product .entry-summary .custom-product-info-wrapper .custom-product-info__item:not(:last-child) {
    padding-bottom: 1rem;
  }
}

@media (max-width: 600px) {
  .woocommerce ul.products[class*=columns-] li.product, .woocommerce-page ul.products[class*=columns-] li.product {
    width: 100%;
  }
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product .stock {
  padding-top: 1.5rem;
  color: #0269b3;
}

.quantity {
  width: 100%;
}

.product-description {
  width: 50%;
}
@media (max-width: 600px) {
  .product-description {
    width: 100%;
    order: 2;
  }
}
.product-description-title {
  padding-bottom: 2rem;
  max-width: 400px;
}
.product-description-description {
  color: #555;
  font-size: 1.8rem;
}
.product-description-content li {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  padding-bottom: 1.5rem;
}
.product-description-content li i {
  color: #0269b3;
}

.about_lecturer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 900px;
}
.about_lecturer .about_lecturer-title {
  padding-bottom: 2rem;
}
.about_lecturer .about_lecturer-content {
  display: flex;
  align-items: flex-end;
  gap: 40px;
}
@media (max-width: 600px) {
  .about_lecturer .about_lecturer-content {
    flex-direction: column;
  }
}
.about_lecturer .about_lecturer-content img {
  height: 40rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 3rem;
}
@media (max-width: 600px) {
  .about_lecturer .about_lecturer-content img {
    order: 2;
    height: 30rem;
    margin: 0 auto;
  }
}
.about_lecturer .about_lecturer-content .about_lecturer-name {
  display: flex;
  align-items: center;
  width: 100%;
  font-weight: 600;
}
.about_lecturer .about_lecturer-content .about_lecturer-name .about_lecturer-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about_lecturer .about_lecturer-content .about_lecturer-description {
  text-align: justify;
  padding-top: 2rem;
}

.training-and-lecturer {
  display: flex;
  justify-content: space-between;
  margin: 4.8rem auto;
  max-width: 1240px;
  border-radius: 3rem;
}
@media (max-width: 600px) {
  .training-and-lecturer {
    flex-direction: column;
    margin: 0 auto;
  }
}

.training-process-section {
  text-align: center;
}
.training-process-section .training-process-title {
  padding-bottom: 6rem;
  max-width: 400px;
}
@media (max-width: 600px) {
  .training-process-section .training-process-title {
    padding-bottom: 4rem;
  }
}
.training-process-section .training-block-title {
  padding-bottom: 1.5rem;
  transition: all 0.3s ease-in-out;
}
.training-process-section .training-block-time {
  position: absolute;
  top: -1.7rem;
  right: 2.5rem;
  padding: 1rem 2.5rem;
  border-radius: 5.5rem;
  background: rgb(230.3625, 75.2375, 88.925);
  color: #ffffff;
  margin-left: 0.5rem;
  font-size: 1.4rem;
}
.training-process-section .training-content {
  display: flex;
  justify-content: flex-end;
  text-align: left;
  max-width: 1240px;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .training-process-section .training-content {
    flex-direction: column;
  }
}
.training-process-section .training-block-box {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 620px;
}
.training-process-section .training-block {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-right: 4.8rem;
  border-radius: 3rem;
  padding: 2.4rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}
.training-process-section .training-block:not(:last-child) {
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .training-process-section .training-block {
    margin-right: 0;
  }
}
.training-process-section .training-block:hover .training-block-title {
  transform: translateY(-3px);
}
.training-process-section .swiper-slide img {
  border-radius: 3rem;
}
.training-process-section .training-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.training-process-section .training-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 0.25rem 0;
  font-size: 1.8rem;
  color: #555;
}
.training-process-section .training-list li i {
  display: inline-block;
  color: #0269b3;
}

.training-adv {
  display: flex;
  align-items: flex-start;
  margin-top: 4.8rem;
  padding-top: 4.8rem;
}
@media (max-width: 600px) {
  .training-adv {
    flex-direction: column;
    margin-bottom: 4.8rem;
  }
}

.learning-points-section {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  margin: 0 auto;
  gap: 40px;
  background: #f2f4f5;
  box-shadow: 0px 0px 80px 0px rgba(19, 49, 94, 0.1);
}
@media (max-width: 600px) {
  .learning-points-section {
    flex-direction: column;
    margin: 4rem 0;
    margin-left: -2.4rem;
    margin-right: -2.4rem;
    padding-left: 2.4rem !important;
    padding-right: 2.4rem !important;
  }
}

.learning-image {
  height: 500px;
  flex: 1;
}
.learning-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: 3rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}
@media (max-width: 600px) {
  .learning-image img {
    height: 30rem;
  }
}

.learning-points-box {
  flex: 1;
}

.learning-points-title {
  max-width: 400px;
  margin-bottom: 2rem;
}

.learning-points-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
  padding-top: 2rem;
}

.learning-points-description {
  color: #555;
  font-size: 1.8rem;
}

.learning-points-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  font-size: 1.8rem;
}
.learning-points-list li i {
  color: #0269b3;
}

.product-section {
  padding: 8rem 0;
}
@media (max-width: 600px) {
  .product-section {
    padding: 4rem 0;
  }
}

.training-gallery {
  display: flex;
  flex: 1;
}
@media (max-width: 600px) {
  .training-gallery {
    margin-top: 2rem;
  }
}
.training-gallery .gallery-large {
  box-shadow: 0px 0px 80px 0px rgba(19, 49, 94, 0.2);
  border-radius: 2.5rem;
}
@media (max-width: 1024px) {
  .training-gallery .gallery-large {
    height: 30rem;
  }
}
.training-gallery .gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2.5rem;
}

.purchase-process-section {
  max-width: 1240px;
  margin: 0 auto;
  text-align: center;
}

.purchase-process-steps {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
}
@media (max-width: 600px) {
  .purchase-process-steps {
    flex-wrap: wrap;
  }
}

.purchase-process-title {
  text-align: center;
  padding-bottom: 2rem;
}

.purchase-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 25rem;
  background: #fafafa;
  padding: 2.4rem;
  border-radius: 3rem;
  text-align: center;
  width: 100%;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  transition: all 0.3s ease-in-out;
}
.purchase-step:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}

.purchase-step:nth-child(2) {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
}

.step-number {
  display: flex;
  font-weight: bold;
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.step-number::after {
  content: "|";
  font-weight: bold;
  display: block;
  font-size: 2.4rem;
  color: #C51B2A;
  line-height: 1;
  margin-top: 5px;
  letter-spacing: 3px;
  margin-left: 1.2rem;
}

.purchase-step:nth-child(2) .step-number::after {
  content: "||";
}

.purchase-step:nth-child(3) .step-number::after {
  content: "|||";
}

.step-icon {
  margin-bottom: 1.5rem;
  display: block;
  font-size: 32px;
}

#yith-wcwtl-output form {
  display: flex !important;
  flex-direction: column;
}

#yith-wcwtl-output {
  background-color: #ffffff;
  padding: 0;
  border-radius: 0;
}

.custom-product-title {
  padding-bottom: 2rem;
  max-width: 800px;
}

.custom-product-details-wrapper {
  position: relative;
}

.entry-summary {
  background-color: #ffffff;
  transition: top 0.5s ease-out;
}

.add_to_cart_button, .single_add_to_cart_button, .wc-forward, .button, .submit, .wc-block-components-checkout-place-order-button, .wc-block-cart__submit-button, .wp-block-woocommerce-mini-cart-cart-button-block, .wp-block-woocommerce-mini-cart-checkout-button-block, .wp-block-woocommerce-mini-cart-shopping-button-block, .wc-block-checkout__login-prompt {
  background-color: #C51B2A !important;
  color: #ffffff !important;
  padding: 1rem 4rem !important;
  text-align: center;
  display: flex !important;
  justify-content: center;
  align-items: center;
  white-space: nowrap;
  height: 4.8rem;
  margin-top: 2rem !important;
  border: 2px solid #C51B2A;
  border-radius: 2.5rem !important;
  transition: all 0.3s ease;
}
.add_to_cart_button:hover, .single_add_to_cart_button:hover, .wc-forward:hover, .button:hover, .submit:hover, .wc-block-components-checkout-place-order-button:hover, .wc-block-cart__submit-button:hover, .wp-block-woocommerce-mini-cart-cart-button-block:hover, .wp-block-woocommerce-mini-cart-checkout-button-block:hover, .wp-block-woocommerce-mini-cart-shopping-button-block:hover, .wc-block-checkout__login-prompt:hover {
  background-color: rgb(230.3625, 75.2375, 88.925) !important;
  border: 2px solid rgb(230.3625, 75.2375, 88.925);
}

.wc-block-checkout__login-prompt {
  margin-bottom: 2rem;
}

.single_add_to_cart_button {
  width: 100%;
  margin-top: 0 !important;
}

.wc-block-components-checkout-place-order-button {
  margin: 0 !important;
  height: 4.8rem !important;
}

.wc-block-components-checkout-place-order-button {
  max-width: 25rem;
}
@media (max-width: 600px) {
  .wc-block-components-checkout-place-order-button {
    max-width: 100%;
  }
}

.add_to_cart_inline {
  width: 100%;
}

.added_to_cart {
  display: none !important;
}

.wc-block-components-button {
  border: none;
}

.filter-button {
  padding: 1.6rem 1rem !important;
  justify-content: space-between;
  display: inline-flex;
}

.wc-block-mini-cart__footer-actions {
  flex-direction: row;
}
.wc-block-mini-cart__footer-actions .wp-element-button {
  width: 49%;
}
@media (max-width: 600px) {
  .wc-block-mini-cart__footer-actions .wp-element-button {
    width: 100%;
  }
}

.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button {
  background-color: #f2f4f5 !important;
  color: #1b2631 !important;
  font-weight: 600;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  transition: all 0.3s ease;
}
.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button:hover {
  background-color: #f2f4f5 !important;
}
.woocommerce ul.products[class*=columns-] li.product .add_to_cart_button:active {
  background-color: #f2f4f5 !important;
}

.wp-block-button__link {
  border-radius: 0;
}

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

.wc-block-components-button__text {
  font-size: 1.6rem;
}

.btn-more-info {
  display: flex;
  justify-content: center;
  margin: 1.5rem 2.4rem 4rem 2.4rem;
  padding: 1rem 2rem;
  background-color: #C51B2A;
  color: #ffffff;
  border-radius: 2.5rem;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.btn-more-info:hover {
  background-color: rgb(230.3625, 75.2375, 88.925);
}

.wc-block-mini-cart__badge {
  color: #ffffff;
}

.wc-block-mini-cart__drawer {
  font-size: 1.6rem !important;
}

.wc-block-mini-cart__items .wc-block-cart-items__row {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem !important;
  border-radius: 2.5rem;
}

.wc-block-mini-cart__footer {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
}

.header__cart-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}

.header__cart-link i {
  font-size: 18px;
}

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: #0269b3;
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 50%;
  line-height: 1;
}

.woocommerce-Address-title::before, .woocommerce-Address-title::after {
  display: none !important;
}
.woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
  margin: 1.5rem 0;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
    margin: 2.4rem 0;
  }
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation, .woocommerce-MyAccount-content {
    margin: 0;
    float: none !important;
    width: 100% !important;
  }
}
.woocommerce-MyAccount-navigation {
  border-right: 2px solid #f2f4f5;
  padding-right: 2.4rem;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation {
    border-right: none;
    margin: 2.4rem 0 0 0;
    padding-right: 0;
  }
}
.woocommerce-MyAccount-navigation ul {
  display: flex;
  flex-direction: column;
}
.woocommerce-MyAccount-navigation-link {
  margin: 0 !important;
  padding: 1rem 1.5rem;
  display: flex;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation-link {
    justify-content: center;
  }
}
.woocommerce-MyAccount-navigation-link--customer-logout {
  padding-top: 1.5rem;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation-link--customer-logout {
    padding: 1rem 1.5rem;
  }
}
.woocommerce-MyAccount-navigation-link.is-active {
  background-color: #0269b3;
}
.woocommerce-MyAccount-navigation-link.is-active a {
  color: #ffffff;
}
.woocommerce-MyAccount-navigation__dropdown {
  background-color: #0269b3;
  color: #ffffff;
  padding: 1rem 1.5rem;
}
.woocommerce-MyAccount-navigation__desktop {
  display: block;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation__desktop {
    display: none !important;
  }
}
.woocommerce-MyAccount-navigation__mobile {
  display: none;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation__mobile {
    display: block !important;
  }
}
.woocommerce-MyAccount-navigation__header {
  padding-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .woocommerce-MyAccount-navigation__header {
    text-align: center;
  }
}
.woocommerce-MyAccount-content {
  flex: 1;
  padding-left: 4.8rem;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-content {
    padding-left: 0;
    padding: 1.5rem 0;
    margin: 0;
  }
}
.woocommerce-MyAccount-content fieldset {
  border: none;
}
.woocommerce-MyAccount-content h3 {
  padding-bottom: 2rem;
}
.woocommerce-MyAccount-content p {
  padding-bottom: 1.5rem;
}
.woocommerce-MyAccount-content .woocommerce-info {
  background: none;
  color: #1b2631;
  border: none;
  display: flex;
  padding: 0;
  margin: 0;
  justify-content: space-between;
  align-items: center;
}
.woocommerce-MyAccount-content .woocommerce-info::before, .woocommerce-MyAccount-content .woocommerce-info::after {
  display: none;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-content .woocommerce-info {
    flex-direction: column;
  }
}
.woocommerce-Addresses {
  display: flex;
  flex-direction: row;
}
@media (max-width: 1024px) {
  .woocommerce-Addresses {
    flex-direction: column;
  }
}
.woocommerce-Address {
  padding: 2.4rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 3rem;
  margin-right: 2.4rem;
}
@media (max-width: 1024px) {
  .woocommerce-Address {
    width: 100% !important;
    margin-right: 0;
    margin-bottom: 2.4rem;
  }
}
@media (max-width: 1024px) {
  .woocommerce-Address {
    padding: 1.5rem;
  }
}
@media (max-width: 1440px) {
  .woocommerce-Address:not(:last-child) {
    margin-right: 2.4rem;
  }
}
.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1rem;
}
.woocommerce-Address-title a, .woocommerce-Address-title a:link, .woocommerce-Address-title a:visited {
  text-decoration: underline;
}
.woocommerce-Address-title h3 {
  padding-bottom: 0;
}

.woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 4.8rem;
  border-radius: 3rem;
  border: none;
  height: 400px;
}
@media (max-width: 600px) {
  .woocommerce form.checkout_coupon, .woocommerce form.login, .woocommerce form.register {
    padding: 2.4rem;
  }
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: block;
}

.shop-page {
  max-width: 1240px;
  margin: 0 auto;
}

.courses-page {
  padding: 4.8rem 0;
  position: relative;
  overflow: hidden;
}
@media (max-width: 1336px) {
  .courses-page {
    padding-left: 4.8rem;
    padding-right: 4.8rem;
  }
}
@media (max-width: 600px) {
  .courses-page {
    padding: 2.4rem;
  }
}
.courses-page .section__title {
  margin-bottom: 4rem;
}
.courses-page .custom-product-image {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 50rem;
  width: 100%;
  z-index: -1;
}
.courses-page .custom-product-image img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  filter: brightness(0.4) sepia(1) hue-rotate(160deg);
}
.courses-page .courses-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .courses-page .courses-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .courses-page .courses-list {
    grid-template-columns: 1fr;
  }
}
.courses-page .courses-list .course-item {
  background-color: #ffffff;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  text-align: center;
  transition: all 0.3s ease;
}
.courses-page .courses-list .course-item:hover {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
  transform: translateY(-5px);
}
.courses-page .courses-list .course-item .course-image {
  margin-bottom: 1rem;
}
.courses-page .courses-list .course-item .course-image img {
  width: 100%;
  height: auto;
}
.courses-page .courses-list .course-item .course-title {
  color: #1b2631;
  margin-bottom: 1rem;
}
.courses-page .courses-list .course-item .course-description {
  color: #ababab;
  margin-bottom: 1.5rem;
  text-align: justify;
}
.courses-page .courses-list .course-item .course-price {
  color: #0269b3;
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
}
.courses-page .courses-list .course-item .course-actions {
  display: flex;
  justify-content: center;
  margin: 0 4.8rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .courses-page .courses-list .course-item .course-actions {
    margin: 0 2.4rem;
    margin-bottom: 1.5rem;
  }
}
.courses-page .courses-list .course-item .course-box {
  padding: 2.4rem;
}
.courses-page .courses-list .course-item .course-info {
  margin-bottom: 1.5rem;
  color: #ababab;
}
.courses-page .woocommerce ul.products li.product a.woocommerce-loop-product__link {
  position: relative;
}
.courses-page .woocommerce-loop-product__title {
  position: absolute;
  top: 0;
  padding: 2.4rem !important;
  color: #ffffff;
}
.courses-page .course-info {
  padding: 2.4rem;
  padding-bottom: 1.5rem;
}
.courses-page .course-info div {
  padding: 0.5rem 0;
}
.courses-page .course-info .course-lecturer-title {
  padding-bottom: 0;
  font-size: 1.2rem;
  font-weight: 600;
}
.courses-page .course-info .course-lecturer {
  padding-top: 0;
  font-weight: 600;
}
.courses-page .course-info .course-image img {
  position: absolute;
  filter: none !important;
  height: 7rem !important;
  width: 7rem !important;
  border: 3px solid white;
  border-radius: 50% !important;
  top: 21rem;
  background: #ababab;
}
.courses-page .product-info {
  position: absolute;
  top: 0;
  padding: 2.4rem !important;
  color: #ffffff;
}
.courses-page .product-info .product-title {
  font-size: 2.4rem;
  letter-spacing: 1px;
}
.courses-page .product-info .product-category {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  font-size: 1.2rem;
}

.custom-breadcrumbs-class, .single-product-info, .custom-product-details-wrapper {
  max-width: 1240px;
  margin: 0 auto;
}

.description-content {
  max-width: 600px;
}

.custom-product-details-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
  padding-bottom: 8rem;
}
@media (max-width: 600px) {
  .custom-product-details-wrapper {
    flex-direction: column;
    padding-bottom: 4rem;
  }
}
.custom-product-details-wrapper .entry-summary {
  height: 100%;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.2);
  padding: 4.8rem;
  border-radius: 3rem;
  min-width: 40rem;
  max-width: 55rem;
}
@media (max-width: 1024px) {
  .custom-product-details-wrapper .entry-summary {
    min-width: 30rem;
  }
}
@media (max-width: 600px) {
  .custom-product-details-wrapper .entry-summary {
    width: 100%;
    padding: 2.4rem;
    margin-bottom: 4.8rem;
  }
}
.custom-product-details-wrapper .entry-summary div {
  padding: 0.5rem 0;
}

.custom-related-products {
  max-width: 1240px;
  margin: 0 auto;
}
.custom-related-products h2 {
  margin-bottom: 4rem;
}

.single-product-container {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}

.single-product-box {
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #f2f4f5;
}
.single-product-box-header {
  font-size: 1.2rem;
  font-weight: 600;
}

.single-product-info {
  padding: 4rem 0;
  color: #ffffff;
}
.single-product-info .product-category {
  display: inline-block;
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid #ffffff;
  border-radius: 2.5rem;
  font-size: 1.2rem;
  color: #ffffff;
}
.single-product-info .course-image img {
  height: 7rem;
  width: 7rem;
  border-radius: 50%;
  background: #ffffff;
}
.single-product-info .course-lecturer-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.single-product-info .course-lecturer {
  font-weight: 600;
}

.course-info__item {
  font-size: 1.6rem;
  width: 100%;
}

.course-filters {
  display: flex;
  gap: 20px;
  margin-bottom: 4rem;
  justify-content: flex-start;
}
.course-filters .filter-btn {
  background-color: #ffffff;
  color: #1b2631;
  padding: 1rem 2rem;
  margin-right: 0.5rem;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  border: none;
  border-radius: 2.5rem;
}
.course-filters .filter-btn:hover {
  background-color: #0269b3;
  color: #ffffff;
}

.filter-btn.active {
  background-color: #0269b3;
  color: #ffffff;
}

.page-title {
  padding: 1.5rem 0 4rem 0;
}

.woocommerce div.product {
  padding: 0 !important;
}

.woocommerce div.product div.summary {
  margin-bottom: 0;
}

.wc-block-components-checkout-step, .wp-block-woocommerce-checkout-order-summary-block, .wc-block-cart .wc-block-cart-items, .wc-block-cart .wc-block-components-sidebar {
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  border-radius: 2.5rem !important;
  padding: 2.4rem !important;
}

.wp-block-woocommerce-checkout-order-summary-block {
  border: none !important;
}

.woocommerce-order-details__title, .woocommerce-column__title {
  padding-bottom: 2rem;
}

.woocommerce .woocommerce-customer-details address {
  border: none !important;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem !important;
  border-radius: 3rem;
}

.woocommerce table.shop_table {
  border: none !important;
  box-shadow: 0px 15px 30px 0px rgba(19, 49, 94, 0.1);
  padding: 2.4rem !important;
  border-radius: 3rem;
}

.wc-block-components-checkout-step__heading-content {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.wc-block-components-product-badge {
  display: none !important;
}

.checkout__info {
  font-weight: 600;
  padding: 2.4rem;
  color: #C51B2A;
}

/*# sourceMappingURL=index.css.map */
