*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: black;
  background-color: white;
}

h1,
h2,
h3,
h4,
h5,
p {
  margin: 0;
}

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

.text__green {
  color: #47eb6d;
}

.text__red {
  color: #ea5d5d;
  text-decoration: line-through;
}

.text-padding {
  padding: 0 0.5rem;
}

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

.line-through {
  text-decoration: line-through;
}

.image-wrapper {
  margin: 2.5rem 0;
  display: flex;
  justify-content: center;
}

img {
  display: block;
  max-width: 100%;
}

ul li {
  list-style: none;
}

a {
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

.btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 2px solid #184bac;
  background-color: white;
  text-align: center;
  display: block;
  color: #184bac;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 1.5rem;
  padding: 1.5rem 5.4rem;
  margin: 0 auto;
  cursor: pointer;
  transition: all 0.35s ease-in-out;
}
.btn:hover {
  background-color: #184bac;
  border: 2px solid white;
  color: white;
}

.container {
  width: 100%;
  max-width: 114rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 22px;
}
@media (min-width: 1280px) {
  .container {
    padding: 0;
  }
}

.page__header {
  font-size: 3rem;
  line-height: 4rem;
  color: black;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding-bottom: 1.5rem;
}
.page__header--blue {
  color: #13429b;
}
.page__header--noAfter::after {
  display: none;
}
.page__header::after {
  position: absolute;
  content: "";
  width: 8rem;
  height: 0.3rem;
  background-color: #13429b;
  translate: -50% -50%;
  bottom: 0;
  left: 50%;
}

.header {
  padding: 3rem 0 5rem;
  background-image: url("../images/background_main.jpg");
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  position: relative;
}
.header::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(19, 66, 155, 0.66);
  top: 0;
}
.header__container {
  display: flex;
  flex-direction: column;
}
.header__rowTop {
  z-index: 1;
}
.header__rowBottom {
  z-index: 1;
}
.header__image {
  margin: 0 auto;
  margin-bottom: 2.5rem;
}
.header__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.1rem;
  margin-bottom: 4rem;
}
.header__list li {
  text-align: center;
}
.header__listItem a {
  font-size: 1.8rem;
  line-height: 3.1rem;
  color: black;
  text-decoration: underline;
  text-align: center;
}
.header__title {
  font-size: 3.5rem;
  line-height: 3.5rem;
  text-align: left;
  margin-bottom: 1.5rem;
  font-weight: bold;
  color: white;
}
.header__content {
  font-size: 2.2rem;
  line-height: 3.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
  color: white;
}
.header__listSecondary {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.3rem;
}
.header__listSecondaryItem {
  color: #fff;
  padding-left: 2rem;
  position: relative;
  font-size: 2.2rem;
  line-height: 2.8rem;
  font-weight: bold;
}
.header__listSecondaryItem::after {
  position: absolute;
  content: "";
  translate: -50% -50%;
  left: 5px;
  top: 50%;
  height: 1rem;
  width: 1rem;
  background-color: #fff;
  border-radius: 3rem;
}
.header__signIn {
  background-color: #98c9fa;
  padding: 3.5rem 2.2rem 2.6rem;
  margin: 0 -2.2rem;
}
.header__signInImg {
  margin-bottom: 1.6rem;
}
.header__signInContent {
  color: #13429b;
  font-size: 2.2rem;
  font-weight: 2.8rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .header {
    padding: 2.2rem 0 16rem;
    background-size: cover;
    background-position: center bottom;
    z-index: -1;
  }
  .header::after {
    display: none;
  }
  .header__rowTop {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }
  .header__rowTop {
    z-index: unset;
  }
  .header__rowBottom {
    z-index: unset;
  }
  .header__image {
    margin: 0;
    margin-bottom: 1.7rem;
  }
  .header__list {
    flex-direction: row;
    margin-bottom: 5.3rem;
  }
  .header__listSecondary {
    display: grid;
    max-width: 65rem;
  }
  .header__title {
    max-width: 62rem;
    margin-bottom: 1.8rem;
    font-size: 6rem;
    line-height: 7.4rem;
  }
  .header__content {
    max-width: 53rem;
    margin-bottom: 3.3rem;
  }
  .header__signIn {
    background-color: #98c9fa;
    padding: 3.5rem 2.2rem 2.6rem 0;
    margin: 0 -2.2rem;
    max-width: 65rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
  }
  .header__signIn::after {
    position: absolute;
    content: "";
    width: 100vw;
    height: 100%;
    background-color: #98c9fa;
    right: 100%;
    top: 0;
  }
}

.formTop {
  padding: 4.1rem 0 6rem;
}
.formTop .form__label {
  color: #646464;
}
.formTop .form__form {
  margin-bottom: 0;
}
.formTop .form__content {
  margin: 0;
}
.formTop__title {
  margin-bottom: 2.4rem;
}
.formTop__container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .formTop {
    background-image: url("../images/background_formularz.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .formTop__container {
    margin-top: -11rem;
    background-color: white;
    max-width: 83rem;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.36);
    padding: 4rem 0 5.2rem;
  }
}

.products {
  padding: 5.1rem 0 7rem;
  background-image: url("../images/background_Nasi_klienci.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.products__container {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.products__title {
  color: white;
}
.products__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 -2.2rem;
  gap: 5rem;
  height: 100%;
}
.products__product {
  background-color: white;
  padding: 3rem 1.1rem 0;
  max-width: 37rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.products__productImg {
  margin: 0 auto;
  height: 19rem;
}
.products__productName {
  color: #13429b;
  font-size: 2.4rem;
  line-height: 3.5rem;
  margin-bottom: 1.4rem;
  font-weight: bold;
}
.products__productDescription {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #646464;
  margin-bottom: 7.6rem;
}
.products__productPrice {
  background-color: #184bac;
  color: white;
  margin-bottom: 7px;
  padding: 2rem 4rem;
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 3.5rem;
  margin-top: auto;
}
@media (min-width: 768px) {
  .products {
    padding: 6rem 0 11rem;
  }
  .products__wrapper {
    flex-direction: row;
    justify-content: center;
    align-items: stretch;
    margin: 0;
  }
  .products__product {
    max-width: none;
  }
  .products__title {
    margin-bottom: 5rem;
  }
  .products__productName {
    max-width: 27rem;
  }
  .products__productDescription {
    margin-bottom: 11rem;
  }
}

.testimonials {
  padding: 5rem 0;
}
.testimonials__heading {
  color: #13429b;
  text-align: center;
  margin-bottom: 6rem;
  position: relative;
}
.testimonials__row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 992px) {
  .testimonials__row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.testimonials__col {
  width: 100%;
  max-width: 15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  text-align: center;
}
.testimonials__text {
  font-size: 1.8rem;
  line-height: 2.4rem;
  color: #646464;
}

.form {
  background: url("../images/background_footer.jpg") no-repeat center;
  background-size: cover;
  padding: 4.4rem 0 1rem;
}
.form__heading {
  color: white;
  max-width: 88rem;
  margin: 0 auto;
}
.form__content {
  width: 100%;
  max-width: 47.4rem;
  margin: 4rem auto;
}
@media (min-width: 992px) {
  .form__content {
    margin: 4rem auto 1rem;
  }
}
.form__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  justify-items: center;
  grid-gap: 1rem;
  margin-bottom: 1rem;
}
@media (min-width: 992px) {
  .form__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.form__form {
  margin-bottom: 3rem;
}
.form__input {
  width: 100%;
  background-color: white;
  font-size: 1.6rem;
  border-radius: 1.5rem;
  color: #646464;
  border: 1px solid #7a7a7a;
  padding: 1.5rem 2.2rem;
  outline: 0;
}
.form__input--checkbox {
  width: 2rem;
  height: 2rem;
}
.form__input::-moz-placeholder {
  color: #646464;
}
.form__input:-ms-input-placeholder {
  color: #646464;
}
.form__input::placeholder {
  color: #646464;
}
.form__label {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2.1rem;
  color: white;
}
.form__button {
  margin-top: 2rem;
}
.form__title {
  font-size: 2.4rem;
  text-align: center;
  line-height: 4rem;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  margin: 4rem 0;
}
.form__navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media (min-width: 768px) {
  .form__navi {
    flex-direction: row;
    justify-content: flex-start;
  }
}
.form__link {
  font-size: 1.8rem;
  line-height: 2.2rem;
  color: #7a7a7a;
  font-weight: 500;
}
.form__alert, .form__alert2 {
  visibility: hidden;
  font-size: 1.6rem;
  color: #24ea24;
  font-weight: 500;
  text-align: center;
  margin: 1rem 0;
}

.footer {
  padding: 3.3rem 0 5rem;
  border-top: 1px solid white;
}
@media (min-width: 992px) {
  .footer {
    padding: 2.5rem 0 3rem;
  }
}
.footer__row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
}
@media (min-width: 992px) {
  .footer__row {
    flex-direction: row;
    justify-content: space-between;
  }
}
.footer__text {
  font-size: 1.4rem;
  line-height: 2rem;
  color: white;
  text-align: left;
}
.footer__text a {
  color: white;
}

.cookie-bar {
  background-color: rgb(35, 35, 35);
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.cookie-bar .container {
  padding: 2rem;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(1, 1fr);
}

.cookie-bar-content {
  color: white;
  font-size: 1.6rem;
  padding-right: 1.5rem;
}

.cookie-bar-buttons-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

.cookie-bar-buttons-wrapper .btn {
  margin: 0;
  padding: 0.5rem 1rem;
  border-radius: 0;
  font-size: 18px;
}

@media (min-width: 768px) {
  .cookie-bar .container {
    grid-template-columns: minmax(auto, 80rem) auto;
  }
  .cookie-bar-buttons-wrapper {
    justify-content: center;
  }
}/*# sourceMappingURL=styles.css.map */