:root {
  --bs-body-font-size: 1rem;
  --font-family: 'Raleway', sans-serif;
  --heading-font-family: "Prompt", serif;
  --text-color: #000;
  --link-color: #000;
  --link-hover-color: #000;
  --cta-background-color: #B88650;
  --cta-text-color: #fff;
  --footer-background-color: #116566;
  --footer-text-color: #fff;
}
html,
body {
  font-family: var(--font-family);
  color: var(--text-color);
  font-weight: 400;
  scroll-behavior: smooth;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}
.btn_cta {
  font-weight: 400;
  text-align: center;
  color: var(--cta-text-color);
  background-color: var(--cta-background-color);
  transition: all .5s;
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px 10px 20px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
}
.btn_cta:hover {
  background: #3a3a3a;
  color: #fff;
}
a {
  text-decoration: none;
  color: var(--link-color);
  transition: color .3s;
}
a:hover {
  color: var(--link-hover-color);
}
p {
  margin-bottom: 0;
}
img {
  max-width: 100%;
}
img.full_width {
  width: 100%;
}
.bold,
.strong {
  font-weight: 800;
}
.bolder,
.stronger {
  font-weight: 600;
}
.text-justify {
  text-align: justify;
}
h1,
h2,
h3,
h4,
h5,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--heading-font-family);
  margin-bottom: 0;
}
h1,
.h1 {
  font-weight: 700;
}
h2,
.h2 {
  font-weight: 700;
}
h3,
.h3 {
  font-weight: 600;
}
main a {
  font-weight: 600;
}
/* scroll bar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: lightgrey;
}
::-webkit-scrollbar-thumb {
  background: var(--cta-background-color);
}
::-webkit-scrollbar-thumb:hover {
  background: #3a3a3a;
}
/* selection */
::selection {
  background: var(--cta-background-color);
  color: var(--cta-text-color);
}
/* header start */
header {
  position: relative;
  top: 0;
  right: 0;
  left: 0;
  z-index: 99;
  transition: background 0.5s, box-shadow 0.5s;
}
header.sticky {
  position: fixed;
  margin-top: 0;
  background-color: #fff;
  box-shadow: 0 0 5px #3f3f3f;
}
@media (max-width: 320px) {
  header {
    padding-left: 8px;
    padding-right: 8px;
  }
}
nav {
  position: relative;
}
/* Hamburger menu */
.navigation-toggler {
  display: flex;
  align-items: center;
  column-gap: 15px;
  border: 1px solid #000;
  padding: 10px 15px;
  position: relative;
  z-index: 100;
  background-color: transparent;
}
@media (min-width: 992px) {
  .navigation-toggler {
    display: none;
  }
}
span.menu-btn {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
span.menu-btn::before,
span.menu-btn::after {
  display: block;
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #000;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}
span.menu-btn::before {
  transform: translateY(-8px);
}
span.menu-btn::after {
  transform: translateY(8px);
}
/* Animation */
.navigation-toggler.open span.menu-btn {
  transform: translateX(-40px);
  background: transparent;
}
.navigation-toggler.open span.menu-btn::before {
  transform: rotate(45deg) translate(28px, -29px);
}
.navigation-toggler.open span.menu-btn::after {
  transform: rotate(-45deg) translate(29px, 28px);
}
.navbar-nav .nav-item .nav-link {
  color: #000;
}
.navbar-nav .nav-item .nav-link:hover,
.navbar-nav .nav-item .nav-link:active,
.navbar-nav .nav-item .nav-link:focus {
  color: var(--dark-green);
}
.navbar-logo {
  height: 70px;
}
header.sticky .navbar-logo {
  height: 50px;
}
@media (min-width: 992px) {
  .navbar-nav .nav-item {
    margin-right: 25px;
  }
  .navbar-nav .nav-item:last-of-type {
    margin-right: 0;
  }
  .dropdown-item {
    transition: all .3s;
  }
  .dropdown-item:focus,
  .dropdown-item:hover {
    margin-left: 10px;
    color: var(--dark-green);
    background-color: transparent;
  }
}
@media (max-width: 991px) {
  .navigation-box {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 99;
    top: 0;
    left: 100%;
    padding: 4.55rem 0;
    background-color: #fff;
    transition: all .5s;
    overflow-y: auto;
  }
  .navigation-box.open {
    left: 0;
  }
  .navigation-box li.nav-item {
    padding: .5rem 1.5rem;
    border-bottom: 1px solid #D3DFE7;
  }
}
.nav-item .dropdown-menu.show {
  border: 0;
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
}
@media (min-width: 992px) {
  .nav-item .dropdown-menu.show {
    min-width: 230px;
  }
}
@media (max-width: 991px) {
  .nav-item .dropdown-menu.show {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background-color: transparent;
  }
  .nav-item .dropdown-menu.show > li {
    padding-top: .3rem;
    padding-bottom: .3rem;
  }
  .nav-link.dropdown-toggle {
    position: relative;
  }
  .nav-link.dropdown-toggle::after {
    position: absolute;
    right: 5px;
    top: 40%;
  }
}
@media (max-width: 360px) {
  .navbar-logo {
    height: 50px;
  }
}
@media (min-width: 480px) {
  .navbar-logo {
    height: 90px;
  }
}
@media (min-width: 992px) {
  .navbar-logo {
    height: 120px;
  }
}
/* header end */
section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (min-width: 768px) {
  section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media (min-width: 992px) {
  section {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
footer {
  background-color: var(--footer-background-color);
  color: var(--footer-text-color);
}
footer .footer_top .container {
  background: url(/img/Isolation_Mode.png) no-repeat;
  background-position: right bottom;
  padding: 80px 0 20px;
  background-size: 200px;
}
@media (min-width: 460px) {
  footer .footer_top .container {
    background-size: auto;
  }
}
@media (min-width: 767px) {
  footer .footer_top .container {
    background-size: auto 60%;
  }
}
@media (min-width: 992px) {
  footer .footer_top .container {
    background-size: auto 70%;
  }
}
footer .footer_top ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}
footer a {
  color: var(--footer-text-color);
}
footer .footer_logo {
  filter: brightness(0) invert(1);
  max-width: 200px;
}
footer .footer_logo.malopolska {
  filter: brightness(0) invert(1);
  max-height: 100px;
}
@media (min-width: 576px) {
  footer .footer_logo {
    max-width: 300px;
  }
}
/* theme */
@media (max-width: 1399px) {
  .container {
    max-width: calc(100% - 30px);
  }
}
.paper_box {
  background-image: url(/img/paper.jpg?v2);
  padding: 40px;
  background-size: 100% 100%;
}
.paper_box .paper_content .h3 {
  color: #B7864F;
}
.route_box .route_item {
  background: url(/img/trasa_lewa.jpg) no-repeat;
  background-position: left;
  padding: 50px 0;
  background-size: 50% 100%;
  display: flex;
  align-items: center;
  justify-content: end;
}
@media (min-width: 768px) {
  .route_box .route_item {
    padding: 100px 0;
  }
}
@media (min-width: 992px) {
  .route_box .route_item {
    padding: 150px 0;
  }
}
.route_box .route_item .route_item_details {
  width: 100%;
  text-align: center;
}
.route_box .route_item .route_item_details .img_box img {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .route_box .route_item .route_item_details {
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: start;
  }
  .route_box .route_item .route_item_details .img_box {
    width: 30%;
  }
  .route_box .route_item .route_item_details .img_box img {
    aspect-ratio: 1;
    margin-bottom: 0;
  }
  .route_box .route_item .route_item_details .description {
    width: 65%;
  }
}
@media (min-width: 992px) {
  .route_box .route_item .route_item_details {
    width: 70%;
  }
}
.route_box .route_item .route_item_details .btn_cta {
  background-color: #106466;
}
.route_box .route_item:nth-of-type(2n) {
  background: url(/img/trasa_prawa.jpg) no-repeat;
  background-position: 77% 0;
  background-size: 40% 100%;
  justify-content: start;
}
section.point_description .single_field img {
  width: 50px;
}
section.point_description .single_field .desc {
  padding: 25px;
  border-left: 3px solid #106466;
  margin-left: 20px;
}
.quiz_box .quiz-start-btn {
  font-weight: 400;
  text-align: center;
  color: var(--cta-text-color);
  background-color: var(--cta-background-color);
  transition: all .5s;
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px 10px 20px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  border: none;
  margin-top: 20px;
}
.quiz_box .quiz-start-btn:hover {
  background: #3a3a3a;
  color: #fff;
}
.quiz_box .quiz-text {
  margin-bottom: 10px;
}
.quiz_box .quiz-answers {
  margin-bottom: 20px;
}
.quiz_box .quiz-answers label {
  display: block;
}
.quiz_box .quiz-next-btn {
  font-weight: 400;
  text-align: center;
  color: var(--cta-text-color);
  background-color: var(--cta-background-color);
  transition: all .5s;
  text-decoration: none;
  display: inline-block;
  padding: 10px 30px 10px 20px;
  clip-path: polygon(0 0, 90% 0, 100% 50%, 90% 100%, 0 100%);
  border: none;
}
.quiz_box .quiz-next-btn:hover {
  background: #3a3a3a;
  color: #fff;
}
.quiz_box .quiz-summary h3,
.quiz_box .quiz-already-done h3 {
  margin-bottom: 10px;
}
.quiz_box .quiz-intro .user_data_info {
  margin: 20px 0 10px;
}
@media (min-width: 600px) {
  .quiz_box .quiz-intro .quiz-form {
    max-width: 400px;
  }
}
#ranking_render_box #userDetails {
  text-align: center;
  margin-bottom: 40px;
}
#ranking_render_box table thead tr th {
  background: #116566;
  color: #fff;
}
#ranking_render_box table tr.current-user-row td {
  background-color: #b88650;
  color: #fff;
}
