body {
  font-weight: 400;
  font-family: "Lato", sans-serif;
  color: #fff;
  background: #1e1e1e;
}
body.mobile-menu-on {
  overflow: hidden;
}
.accordion-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

a {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  text-decoration: underline;
  color: #f6ba00;
}
a:hover {
  background: #f6ba00;
  color: #1e1e1e;
}
li:has(a)::marker {
  color: #f6ba00;
}
.yellow-link {
  display: inline-block;
  padding: 1rem 1rem 1rem 3.5rem;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background-color: #f6ba00;
  border-radius: 2rem;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: 1rem center;
  background-size: 2rem;
}
@media screen and (min-width: 992px) {
  .yellow-link {
    font-size: 1.25rem;
  }
}
.yellow-link:hover,
.projectmore-link:hover {
  background-color: #fff;
}
.back-link {
  display: inline-block;
  padding: 0 3.5rem 0 0;
  text-align: center;
  font-weight: 600;
  color: #111;
  text-decoration: none;
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-position: calc(100% - 1rem) center;
  background-size: 2rem;
}
@media screen and (min-width: 992px) {
  .back-link {
    font-size: 1.5rem;
  }
}
strong,
.bold {
  font-weight: 600;
}
em {
  font-style: italic;
}
img {
  max-width: 100%;
  display: block;
}
p {
  padding: 0.5rem 0;
  line-height: 1.4;
}
.container-custom {
  width: 95%;
  margin: auto;
}
@media screen and (min-width: 992px) {
  .container-custom {
    width: 85%;
    max-width: 1920px;
  }
}
.center {
  text-align: center;
}
.hide {
  display: none;
}
.overflowhidden {
  overflow: hidden;
}
@media screen and (min-width: 992px) {
  .biggerlh {
    line-height: 1.2;
  }
}
.relative {
  position: relative;
}
#skipLinks a {
  display: inline-block;
  left: -9000rem;
  padding: 2rem;
  position: absolute;
  text-align: center;
  text-decoration: none;
  z-index: 200;
}
#skipLinks a:focus {
  background: #4a4a49;
  color: #fff;
  left: 0;
  position: absolute;
  top: 0;
}
.blue {
  color: #0032bd;
}
.navy {
  color: #0c4361;
}
@media screen and (min-width: 992px) {
  .small {
    font-size: 1.375rem;
  }
}
.error404 {
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.error404 main {
  padding-top: 5%;
}
.error404 .animated {
  -webkit-animation: glitch 1s linear infinite;
  animation: glitch 1s linear infinite;
  font-size: 6rem;
  font-weight: 900;
  color: #f6ba00;
  position: relative;
}
.error404 .animated::before,
.error404 .animated::after {
  content: attr(title);
  position: absolute;
  left: 0;
}
.error404 .animated::before {
  -webkit-animation: glitchTop 1s linear infinite;
  animation: glitchTop 1s linear infinite;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}
.error404 .animated::after {
  -webkit-animation: glitchBotom 1.5s linear infinite;
  animation: glitchBotom 1.5s linear infinite;
  -webkit-clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
  clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}
.error404 .errorblock .errorcode {
  font-size: 4rem;
  color: #0032bd;
  font-weight: 600;
}
.error404 .errorblock .errortext {
  text-align: center;
}
.error404 .errorblock .errortext a {
  display: inline-block;
  padding: 1rem;
  text-decoration: none;
  border: 1px solid #3a3a3a;
  color: inherit;
  text-transform: uppercase;
}
.error404 .errorblock .errortext a:hover {
  color: #f6ba00;
  background: #3a3a3a;
}
section {
  padding: 3rem 0;
}
@media screen and (min-width: 992px) {
  section {
    padding: 5rem 0;
  }
}
ul[role="tablist"] {
  width: 100%;
}
ul[role="tablist"] li {
  width: 33.3%;
}
@media screen and (min-width: 992px) {
  ul[role="tablist"] li {
    width: auto;
  }
}
ul[role="tablist"] li:last-child button {
  border: 1px solid #c8c8c8;
}
ul[role="tablist"] li:nth-child(3) button {
  border: 1px solid #c8c8c8;
}
@media screen and (min-width: 992px) {
  ul[role="tablist"] li:nth-child(3) button {
    border-right: 0;
  }
}
ul[role="tablist"] button {
  padding: 1rem;
  background: rgba(0, 0, 0, 0);
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  color: inherit;
  cursor: pointer;
  border: 1px solid #c8c8c8;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border-right: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: background 0.5s ease;
  transition: background 0.5s ease;
}
ul[role="tablist"] button[aria-selected="true"],
ul[role="tablist"] button:hover {
  background: #f6ba00;
}
div[role="tabpanel"] {
  background: #eee;
  border-bottom-right-radius: 15px;
  border-bottom-left-radius: 15px;
  min-height: 20rem;
}
.type-page {
  padding: 3rem 0;
}
.type-page h1 {
  font-size: 2rem;
  font-weight: 200;
  padding-bottom: 3rem;
  color: #0c4361;
}
@media screen and (min-width: 992px) {
  .type-page h1 {
    font-size: 3rem;
  }
}
.type-page h2 {
  padding: 1.5rem 0;
  font-weight: 500;
  color: #0c4361;
}
@media screen and (min-width: 992px) {
  .type-page h2 {
    padding: 3rem 0;
  }
}
.type-page p {
  padding: 1rem 0;
}
.type-page strong {
  font-weight: 500;
}
.type-page ol {
  padding-left: 3rem;
}
.type-page ol li {
  line-height: 1.4;
}
footer {
  background: #111;
  color: #fff;
  text-transform: uppercase;
}
@media screen and (min-width: 992px) {
  footer {
    font-size: 1.25rem;
  }
}

.section-bg-image {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* youtube */

.youtube {
  background-color: var(--bg-grey);
  padding: 40px 0;
}
.video {
  margin-bottom: 30px;
  position: relative;
  padding-top: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.video img,
.video iframe,
.video .play-button,
.video .play-button:before {
  position: absolute;
}
.video img,
.video .play-button {
  cursor: pointer;
}
.video iframe {
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
.video img {
  width: 100%;
  top: -16.84%;
  left: 0;
  opacity: 0.7;
}
.video .play-button,
.video .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}
.video .play-button {
  width: 68px;
  height: 90px;
  z-index: 1;
  border: none;
  background-color: transparent;
  padding: 0;
  font-size: 100%;
}
.video .play-button,
.video .play-button:before {
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
}

/* end of youtube */

/* menu */
.container.menu {
  position: sticky;
  background: #ffffff;
  top: 0;
  margin-bottom: 25px;
  z-index: 99;
}

.navbar-expand-lg li.menu-item.active a.nav-link,
.navbar-expand-lg li.menu-item:hover a.nav-link {
  background-color: #fab800;
  color: #1e1e1e;
}
.navbar-expand-lg li.menu-item a.nav-link {
  padding-bottom: 6px;
  font-weight: 500;
  font-size: 1.125rem;
  color: #fff;
  padding-left: 10px;
  padding-right: 10px;
}
.navbar .container-fluid {
  padding: 0;
}
button.navbar-toggler {
  border-color: #fab800;
  margin: 10px;
  padding: 21px 10px;
  position: relative;
}
button.navbar-toggler .nav-icon {
  position: relative;
  display: block;
  transition: 0.3s;
  width: 30px;
  height: 2px;
  background: #fab800;
}
button.navbar-toggler::before {
  content: "";
  position: absolute;
  transition: 0.3s;
  width: 30px;
  height: 2px;
  background: #fab800;
  transform: rotate(45deg);
  top: 21px;
  left: 10px;
}
.navbar-toggler:focus {
  box-shadow: none;
}
button.navbar-toggler::after {
  content: "";
  position: absolute;
  transition: 0.3s;
  width: 30px;
  height: 2px;
  background: #fab800;
  transform: rotate(-45deg);
  bottom: 21px;
  left: 10px;
}
button.navbar-toggler .nav-icon {
  opacity: 0;
}
button.navbar-toggler.collapsed .nav-icon {
  opacity: 1;
}
button.navbar-toggler.collapsed::before {
  top: 13px;
  left: 10px;
  transform: rotate(0);
}
button.navbar-toggler.collapsed::after {
  bottom: 13px;
  left: 10px;
  transform: rotate(0);
}
/* Mobile offcanvas menu */
.offcanvas {
  background: #1e1e1e;
  padding-top: 2rem;
}
.offcanvas .nav-link {
  color: #fff;
  font-size: 18px;
  padding: 12px 0;
}
.offcanvas .nav-link.active {
  font-weight: bold;
}
.offcanvas .nav-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.offcanvas .btn-close {
  border: 2px solid #fab800;
  margin: 0;
  font-size: 2rem;
  opacity: 1;
  padding: 7px;
  position: relative;
  width: 30px;
  height: 30px;
  background: none;
}
.offcanvas .btn-close::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fab800;
  transform: rotate(45deg);
  top: 21px;
  left: 10px;
}
.offcanvas .btn-close::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 2px;
  background: #fab800;
  transform: rotate(-45deg);
  bottom: 21px;
  left: 10px;
}
/* Ukrycie offcanvas na desktop */
@media (min-width: 992px) {
  .offcanvas {
    position: static;
    transform: none !important;
    visibility: visible !important;
    background: transparent;
    width: auto;
  }
  .offcanvas,
  .offcanvas-body {
    padding: 0;
  }
}
/* end of menu */

/* header */

.page-header .main-navigation-wrapper {
  background-color: #1e1e1e;
}

/* end of header */

/* sections styles */
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
section.hero {
  min-height: calc(85dvh - 99px);
  display: flex;
  align-items: center;
}
.text-apla {
  border: 1px solid #f6ba00;
  border-radius: 20px;
}
.icon-text p {
  margin: 0;
  font-size: 1.25rem;
}
.icon-box {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-bottom: 28px;
}
.icon-box img {
  min-width: 48px;
}

/* accordion */
.accordion-item {
  border-color: #f6ba00;
}
.custom-accordion .accordion-button::after {
  display: none;
}
.accordion-header-content {
  width: 100%;
}
.accordion-title-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.accordion-title-row .title {
  font-size: 1.5rem;
}
.accordion-button .icon {
  color: #f6ba00;
}
.icon-wrapper {
  border: 2px solid #f6ba00;
  border-radius: 50px;
  padding: 8px 15px;
}
.accordion-button {
  background: #1e1e1e;
  color: #fff;
  padding: 1rem 2rem;
}
.accordion-button:not(.collapsed) {
  color: #fff;
  background-color: #1e1e1e;
  box-shadow: none;
  padding-left: 40px;
}
.accordion-button .icon::before {
  content: "+";
  font-size: 24px;
  font-weight: bold;
}
.accordion-button:not(.collapsed) .icon::before {
  content: "−";
}
.accordion-button:not(.collapsed) .accordion-short {
  display: none;
}
.accordion-body {
  padding: 0;
  background-color: #1e1e1e;
  color: #fff;
}
.accordion-text {
  padding: 20px 40px;
}
.accordion-text strong,
.city .text-wrapper strong {
  font-size: 1.25rem;
}
.accordion-collapse.show .accordion-image {
  opacity: 1;
  transition-delay: 0s;
}
.accordion-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  background-size: cover;
  background-position: center;
  padding-right: 2px;
  z-index: 4;
  position: relative;
  border-radius: 0.25rem;
  opacity: 0;
  transition: 0.2s ease-in-out;
  transition-delay: 0.1s;
}
.icon {
  transition: transform 0.3s;
}
.accordion-button:not(.collapsed) .icon {
  transform: rotate(180deg);
}

/* end of accordion */
.rank-group {
  gap: 20px;
}
.rank-group .text {
  font-size: 1.5rem;
}
.rank-group .text p {
  max-width: 600px;
}
.yellow {
  color: #f6ba00;
  font-weight: 300;
}
.f-96 {
  font-size: 2rem;
}
.f-144 {
  font-size: 3rem;
}
section.learn.section-bg-image {
  text-align: center;
}
p.f-40 {
  font-size: 2.5rem;
  margin: 0;
}
section.form {
  font-size: 1.25rem;
}
span.wpcf7-form-control-wrap {
  padding-top: 15px;
  display: block;
}
section.form form {
  text-align: center;
}
input.wpcf7-form-control {
  background: #1e1e1e;
  color: #fff;
  border: 2px solid #fff;
  padding: 15px 10px;
  font-size: 1.25rem;
  width: 100%;
}
input.wpcf7-form-control.wpcf7-submit {
  color: #1e1e1e;
  background: #f6ba00;
  border: 2px solid #f6ba00;
  width: 100%;
  max-width: 250px;
  font-weight: bold;
  transition: 0.3s;
}
input.wpcf7-form-control.wpcf7-submit:hover {
  color: #fff;
  background: transparent;
}
input.wpcf7-form-control:focus-visible {
  border: 2px solid #f6ba00;
  outline: 0;
}
@media (min-width: 576px) {
  .f-96 {
    font-size: 3rem;
  }
  .f-144 {
    font-size: 5.5rem;
  }
}
@media (min-width: 992px) {
  .desktop-break-line {
    word-spacing: 9999px;
  }
  h1 {
    font-size: 4.5rem;
  }
  h2 {
    font-size: 3rem;
  }
  .accordion-image {
    height: calc(100% + 96px);
    margin-top: -96px;
    border-radius: 0;
    border-top-right-radius: 0.25rem;
    border-bottom-right-radius: 0.25rem;
  }
  .f-96 {
    font-size: 6rem;
  }
  .f-144 {
    font-size: 9rem;
  }
  .rank-group {
    gap: 60px;
  }
}

/* end of section styles */

/**** popup 19 01 26*******************/
#krakwar-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 200, 200, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#krakwar-popup {
  background: #222;
  padding: 25px 30px;
  max-width: 680px;
  width: 90%;
  border-radius: 20px;
  position: relative;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  font-size: 0.85rem;
  border: 2px solid #f6ba00;
}

#krakwar-popup img {
  max-width: 200px;
  display: none;
  margin: 1rem auto 2rem;
}

#krakwar-popup h2 {
  margin-top: 0;
  font-weight: 600;
  font-size: 1rem;
}

#krakwar-popup a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

#krakwar-popup a:hover {
  text-decoration: underline;
}

#krakwar-popup-close {
  position: absolute;
  top: 8px;
  right: 12px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

@media screen and (min-width: 992px) {
  #krakwar-popup {
    font-size: 1.15rem;
  }
  #krakwar-popup img {
    display: block;
  }
  #krakwar-popup h2 {
    font-size: 1.5rem;
  }
}
/****end popup 19 01 26*******************/
