@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  scroll-behavior: smooth;
  font-family: "Lato", sans-serif;
}

/* img {
	transition: transform 0.3s ease;

	&:hover {
		transform: scale(1.03);
	}
} */
a.text-white {
  text-decoration: none;
}

ul.list-unstyled li::before {
  content: "✔";
  color: #00a1a3;
  margin-right: 12px;
}

header img {
  max-width: 250px;
}

header,
section.contact-footer {
  background-color: #00a1a3;
}
header .container,
section.contact-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .container h1,
section.contact-footer .container h1 {
  font-size: 38px;
  font-weight: 600;
}

section.contact-footer .container {
  justify-content: center;
}

.mainInfoHeader {
  font-weight: 600;
  text-align: center;
}

.header-text {
  color: #ffffff;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 600;
  color: #00a1a3;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 32px;
}

li {
  font-size: 21px;
  list-style: none;
}

section {
  transition: all 0.3s ease-in-out;
}

.bg-light-gray {
  background-color: #f0f0f0;
}

.bg-custom-gray {
  background-color: #edebed;
}

.bg-dark-gray {
  background-color: #f0eef1;
}

a,
button {
  transition: all 0.3s ease;
}
a:hover,
button:hover {
  opacity: 0.85;
}

.boxWithStar {
  justify-content: space-between;
}

.badge-starburst {
  /*   background: #ff3333; */
  background-image: url(../img/star.png);
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-weight: bold;
  padding: 3px;
  font-size: 53px;
  text-align: center;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  animation: pulse 2s infinite;
}
.badge-starburst span {
  transform: rotate(-9deg);
}

/* Efekt pulsowania */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.line-background {
  background-image: url(../img/line-element.png);
  background-repeat: repeat-x;
  background-position: center;
}

.schemat {
  min-height: 220px;
}
.schemat > div {
  height: 100% !important;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.schemat > div p {
  font-size: 20px;
  line-height: 1.2;
  font-weight: 600;
  color: #005c9f;
}
.schemat > div img.arrows {
  max-width: 20px;
  padding-bottom: 18px;
}
.schemat > div img.bus {
  min-width: 200px;
  max-width: 220px;
}
.schemat > div img.bus2 {
  min-width: 100px;
  max-width: 143px;
}

.col-small {
  max-width: 320px;
}

.steps-list {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  gap: 10px;
}
.steps-list .step {
  max-width: 700px;
  margin-bottom: 20px;
  position: relative;
  background-color: #eee;
  padding: 1rem 5rem 1rem 1rem;
  border-radius: 0.5rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
}
.steps-list .step .text {
  flex-grow: 1;
  text-align: left;
  font-weight: 900;
  font-size: 24px;
}
.steps-list .step .number {
  position: absolute;
  right: -90px;
  top: 50%;
  transform: translateY(-50%);
  background-color: #005c9f;
  color: #ffffff;
  width: 121px;
  height: 121px;
  border-radius: 50%;
  font-weight: 700;
  font-size: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: #fff solid 5px;
  line-height: 0;
}
.steps-list .step-1 {
  background-color: #004f9e;
}
.steps-list .step-1 .number {
  background-color: #004f9e;
  right: -90px;
}
.steps-list .step-2 {
  background-color: #00a9a2;
}
.steps-list .step-2 .number {
  background-color: #00a9a2;
  right: -60px;
}
.steps-list .step-3 {
  background-color: #bdc3c7;
  color: #333;
}
.steps-list .step-3 .number {
  background-color: #bdc3c7;
  right: -60px;
}
.steps-list .step-4 {
  background-color: #00a9e0;
}
.steps-list .step-4 .number {
  background-color: #00a9e0;
  right: -90px;
}

.info-list .info-list-left img,
.info-list .info-list-mobile img {
  max-width: 310px;
}
.info-list .info-list-left .number,
.info-list .info-list-mobile .number {
  right: -90px;
}
.info-list .info-list-left .steps-list,
.info-list .info-list-mobile .steps-list {
  text-align: left;
}
.info-list .info-list-left .step-1 .number,
.info-list .info-list-mobile .step-1 .number {
  right: -90px;
}
.info-list .info-list-left .step-2 .number,
.info-list .info-list-mobile .step-2 .number {
  right: -60px;
}
.info-list .info-list-left .step-3 .number,
.info-list .info-list-mobile .step-3 .number {
  right: -60px;
}
.info-list .info-list-left .step-4 .number,
.info-list .info-list-mobile .step-4 .number {
  right: -90px;
}
.info-list .info-list-right .steps-list {
  align-items: end;
}
.info-list .info-list-right .steps-list .step {
  max-width: 700px;
  min-width: 690px;
  padding-right: 15px;
}
.info-list .info-list-right img {
  max-width: 310px;
}
.info-list .info-list-right .text {
  text-align: right;
}
.info-list .info-list-right .number {
  left: -90px;
}
.info-list .info-list-right .step-1 .number {
  left: -90px;
}
.info-list .info-list-right .step-2 .number {
  left: -60px;
}
.info-list .info-list-right .step-3 .number {
  left: -60px;
}
.info-list .info-list-right .step-4 .number {
  left: -90px;
}

.highlight-section {
  /* background-color: #f9f9f9; */
}
.highlight-section .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.highlight-section .highlight-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.highlight-section .highlight-list img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}
.highlight-section .highlight-list h5 {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  color: #00a9a2;
}

.contact-info h4 {
  line-height: 1.8;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  .col-12.main-info {
    width: 100% !important;
  }
}
@media (max-width: 1399px) {
  .mainInfoHeader {
    margin-top: 30px !important;
  }
  .image-on-desktop {
    display: none;
  }
}
@media (max-width: 1199px) {
  .howItWorksBox {
    max-width: 400px;
    margin: 0 auto;
  }
  .line-background {
    display: block;
    height: 100%;
    width: 10px;
    background-image: url(../img/line-element-pion.png);
    background-repeat: repeat-y;
  }
  .flag-pl-box {
    padding-top: 70px;
  }
  .flag-de-box {
    padding-bottom: 70px;
  }
  .schemat > div {
    height: 100% !important;
    min-height: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
  }
  .schemat > div p {
    font-size: 20px;
    line-height: 1.2;
    font-weight: 600;
    color: #005c9f;
  }
  .schemat > div img.arrows {
    max-width: 20px;
    padding-bottom: 18px;
  }
  .schemat > div img.bus {
    min-width: 200px;
    max-width: 220px;
  }
  .schemat > div img.bus2 {
    min-width: 100px;
    max-width: 143px;
  }
  .schemat img.arrows {
    transform: rotate(90deg);
  }
  .info-list-mobile {
    display: flex;
    justify-content: center;
  }
}
@media (max-width: 991px) {
  header img {
    max-width: 346px;
  }
  header .container h1.header-text {
    font-size: 35px;
  }
  header .container h1.header-text small {
    display: block;
    font-size: 29px;
    padding-top: 25px;
  }
}
@media (max-width: 767px) {
  header .container h1.header-text {
    padding-top: 35px;
  }
  header .container h1.header-text small {
    padding-top: 25px;
  }
}
@media (max-width: 450px) {
  h1,
  h2,
  h3,
  h4 {
    text-align: center;
  }
  h2 {
    font-size: 29px;
  }
  ul.list-unstyled li::before {
    content: "";
    margin-right: 0;
  }
  ul.list-unstyled li {
    text-align: center;
    margin-bottom: 20px;
    padding: 15px;
  }
  .highlight-section .highlight-list {
    padding-top: 20px;
  }
  .steps-list .step {
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 3px;
  }
  .steps-list .step .text {
    text-align: center;
  }
}

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