/*
  Zmienne
*/
:root {
  --color-primary: #10069f;
  --color-primary--light: #accdf2;
  --color-primary--lightest: #edf1f7;
  --color-accent: #0054ff;
  --color-secondary: #fef17f;
  --color-light: #edf1f7;
}



h1,
h2,
h3,
h4 {
  text-align: left;
}

/*
  Listy
*/
ul.lista-ptaszki {
  position: relative;
  padding-left: 1.8rem;
  text-align: left;
  list-style: none;
}

@media screen and (min-width: 992px) {
  ul.lista-ptaszki {
    padding-left: 0;
  } 
}

ul.lista-ptaszki li {
  line-height: 1.3;
  position: relative;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 991px) {
  ul.lista-ptaszki li {
    font-size: 0.8rem;
  }
}

@media screen and (min-width: 1600px) {
  ul.lista-ptaszki li {
    margin-bottom: 1.4rem;
  }
}
ul.lista-ptaszki li::before {
  content: "";
  position: absolute;
  background-image: url("https://mielewczyk.pl/images/praca/check.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 25px;
  height: 25px;
  left: -30px;
}
@media screen and (min-width: 992px) {
  ul.lista-ptaszki li::before {

  }
}
@media screen and (min-width: 1200px) {
  ul.lista-ptaszki li::before {
    width: 29px;
    height: 39px;
    left: -44px;
  }
}

@media screen and (min-width: 1600px) {
  ul.lista-ptaszki li::before {
    width: 40px;
    height: 40px;
    left: -56px;
  }
}

/*
  Przyciski
*/
.button-accent {
  margin-top: 1rem;
  padding: 8px 0;
  text-transform: uppercase;
  background: var(--color-accent);
  color: white;
}

.button-accent:hover {
  background: var(--color-primary);
  cursor: pointer;
}

.button-secondary {
  margin: 5px 0;
  padding: 1px 2.1rem 0;
  height: 39px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
  background-color: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 35px;
  line-height: 1;
  font-family:  sans-serif;
  align-items: center;
  display: flex;
  box-sizing: border-box;

}

@media screen and (min-width: 992px) {
  .button-secondary {
    padding: 1rem 4rem;
    height: 56px;
    margin: 0;
    font-size: 1.2rem;
  }
}

@media screen and (min-width: 1200px) {
  .button-secondary {
    padding: 0.7rem 5.1rem;
    height: 76px;
    font-size: 2rem;
    border-radius: 55px;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1600px) {
  .button-secondary {
    margin-top: 4px;
    line-height: 1.5;
    padding: 1.1rem 6.5rem;
    height: 103px;
    font-size: 2.6rem;
    border-radius: 55px;
  }
}

.button-secondary:hover {
  background-color: var(--color-accent);
  color: var(--color-secondary);
  cursor: pointer;
}

body {
  background-color: var(--color-light);
}

/*
  Sekcja Header/Hero
*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0.7rem 1rem 0.4rem;
}

@media screen and (min-width: 992px) {
  header {
    margin: 2rem 4rem;
  }
}
@media screen and (min-width: 1200px) {
  header {
    margin: 1.5rem 7.5rem;
  }
}

@media screen and (min-width: 1600px) {
  header {
    margin: 1.3rem 5.9rem;
  }
}

@media screen and (min-width: 992px) {
  .logo {
    width: 241px;
    height: auto;
  }
}

@media screen and (min-width: 1600px) {
  .logo {
    width: 310px;
  }
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #edf1f7;

}

@media screen and (min-width: 992px) {
  .hero {
    background-position: center;
    background-position-x: 40rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero {
    background-position-x: 53rem;
  }
}

@media screen and (min-width: 1200px) {
  .hero .tekst h2 {
    margin-bottom: 27px;
    font-size: 2.5rem;
  }
}


@media screen and (min-width: 1600px) {
  .hero .tekst h2 {
    margin-bottom: 27px;
    font-size: 3.3rem;
  }
}

.hero .tekst {
  margin: 0 auto;
  padding: 20.6vh 2.1rem 11.7vh;
  margin-top: -5vh;
  width: 100%;
  background-image: url("https://mielewczyk.pl/images/praca/asystent-czesc.svg");
  background-repeat: no-repeat;
  background-position-y: bottom;
  background-size: contain;
  background-position-x: 98.4%;
  letter-spacing: 0.018em;
}

@media screen and (min-width: 992px) {
  .hero .tekst {
    padding: 25.6vh 6.1rem 20.7vh;
    margin-top: -12vh;
  }
}

@media screen and (min-width: 1200px) {
  .hero .tekst {
    padding: 0px 3.4rem;
    margin-top: -16.1vh;
    padding-top: 29.2vh;
    background-position-x: 93.1%;
    padding-bottom: 19.7vh;
    max-width: 952px;
    font-size: 1.9rem;
    background-size: contain;
  }
}
@media screen and (min-width: 1600px) {
  .hero .tekst {
    margin-top: -17vh;
    max-width: 1200px;
    padding-top: 33vh;
    background-position-x: 96.1%;
    padding-bottom: 21.4vh;
    font-size: 2.6rem;

  }
}

.hero .tekst p {
  line-height: 1.1;
}
 
.hero .button-secondary {
  top: 6px;
  right: 4%;
  position: fixed;
  z-index: 99999;
}

@media screen and (min-width: 992px) {
  .hero .button-secondary {
    top: 12px;
  }
}

/*
  Sekcja O Nas
*/
.o-nas {
  padding-bottom: 1.5rem;
  text-align: center;
  background: var(--color-primary--light);
}
@media screen and (min-width: 992px) {
  .o-nas {
    padding-bottom: 3.5rem;
  }
}

@media screen and (min-width: 1600px) {
  .o-nas {
    padding-bottom: 4.6rem;
  }
} 

.o-nas .container {
  max-width: 500px;
  display: flex;
  align-items: flex-end;
  gap: 2.1rem;
  text-align: left;
  margin: auto;
}

@media screen and (min-width: 992px) {
  .o-nas .container {
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 100%;
    gap: 9rem;
  }
}

@media screen and (min-width: 992px) {
  .o-nas img.asystent {
    margin: 0 0 -70px;
    width: 200px;
    height: auto;

  }
}
@media screen and (min-width: 1200px) {
  .o-nas img.asystent {
    margin: 63px 0 -245px;
    width: 244px;
  }
}
@media screen and (min-width: 1600px) {
  .o-nas img.asystent {
    margin: 85px 0 -310px;
    width: 310px;
  }
}

.o-nas .tekst {
  margin-bottom: -0.3rem;
  text-align: left;
}

@media screen and (min-width: 992px) {
  .o-nas .tekst {
    flex-basis: 35%;
  }
}
@media screen and (min-width: 1200px) {
  .o-nas .tekst {
    max-width: 536px;
    flex-basis: 50%;
    padding-bottom: 0.6rem;
  }
}
@media screen and (min-width: 1600px) {
  .o-nas .tekst {
    padding-bottom: 4.6rem;
    max-width: 640px;
  }
}

.o-nas .tekst h2 {
  text-align: left;
}
@media screen and (max-width: 991px) {

  .o-nas .tekst h2 {
    font-size: 1.5rem;
    margin-bottom: 1.1rem;
  }
}
.o-nas .tekst p {
  line-height: 1.13;
}

@media screen and (max-width: 991px) {
  .o-nas .tekst p {
    line-height: 1.33;
  }
}
@media screen and (min-width: 1200px) {
  .o-nas .tekst p {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1600px) {
  .o-nas .tekst p {
    font-size: 1.5rem;
  }
}

.o-nas .tekst p strong {
  display: block;
  max-width: 90%;
  font-weight: 600;
}

.o-nas>video {
  margin: 0 auto;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  max-width: 500px;
  height: 230px;
}

@media screen and (min-width: 992px) {
  .o-nas>video {
    position: relative;
    z-index: 50;
    max-width: 1110px;
    height: auto;
    border-radius: 20px;
    height: 65vh;
  }
}
@media screen and (min-width: 1600px) {
  .o-nas>video {
    max-width: 1440px;
    height: 65vh;
  }
}

/*
  Sekcja Benefity
*/
.benefity {
  background-color: white;
  padding-top: 2rem;
  padding-bottom: 0;
  text-align: center;
}

.benefity .container{
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 992px) {
  .benefity .container{
    max-width: 100%;
  }
}

@media screen and (min-width: 1600px) {
  .benefity {
    padding-top: 4.8rem;
  }
}

.benefity .container >ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  list-style-type: none;
}

@media screen and (min-width: 992px) {
  .benefity .container >ul {
    flex-wrap: nowrap;
    margin: 0 auto;
    justify-content: space-between;
  }
}
@media screen and (min-width: 1200px) {
  .benefity .container  >ul {

  max-width: 1060px;
  }
}
@media screen and (min-width: 1600px) {
  .benefity .container >ul {
    max-width: 1440px;
  }
}

.benefity h2 {
  text-align: center;

    margin-bottom: 2rem;
    font-size: 1.4rem;
  }
@media screen and (min-width: 1200px) {
  .benefity h2 {
    font-size: 2.2rem;
    margin-top: 1.7rem;
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .benefity h2 {
    margin-bottom: 4.8rem;
    font-size: 2.8rem;
  }
}

.benefity .container >ul h3 {
  line-height: 1.1;
  min-height: 26px;
  text-align: center;
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .benefity .container >ul h3 {
    width: 60%;
    margin: 1rem auto;
  }
}

@media screen and (min-width: 1600px) {
  .benefity .container >ul h3 {
    height: 49px;
    margin: 1.5rem auto 3.4rem;
    font-size: 1.7rem;
  }
}

.benefity .container >ul li {
  padding: 20px 5px;
  max-width: calc(50% - 10px);
  background: var(--color-primary--lightest);
  border-radius: 15px;
  line-height: 1.3;
}

@media screen and (min-width: 992px) {
  .benefity .container >ul li {
    max-width: calc(25% - 10px);
    padding: 2rem 0.7rem;
    font-size: 1rem;
  } 
}

@media screen and (min-width: 1600px) {
  .benefity .container >ul li {
    padding: 2.6rem 1.5rem 3rem;
    border-radius: 25px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 992px) {
  .benefity .container >ul li p {
    font-size: 0.7rem;
  }
}

.benefity .ikonka {
  height: 43px;
  width: auto;
  max-width: 52px;
  margin-bottom: 12px;
}

@media screen and (min-width: 1200px) {
  .benefity .ikonka {
    height: 76px;
    max-width: 88px;
  }
}
@media screen and (min-width: 1600px) {
  .benefity .ikonka {
    height: 92px;
    max-width: 122px;
  }
}

.dodatki {
  margin-top: 3rem;
  background-image: url("https://mielewczyk.pl/images/praca/asystent-wskazuje.svg");
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100px;
  padding-bottom: 7rem;
}


@media screen and (min-width: 992px) {
  .dodatki {
    display: flex;
    align-items: flex-end;
    gap: 5rem;
    margin: 3rem auto 0;
    padding: 2rem 5rem 0;
    max-width: 1440px;
    height: auto;
    background-image: none;
    text-align: left;
    font-size: 1.2rem;

  }
}

@media screen and (min-width: 1200px) {
  .dodatki {
    margin: 4.1rem auto 0;
    padding: 2.7rem 4.4rem 0;
    max-width: 1060px;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 1600px) {
  .dodatki {
    max-width: 1440px;
    margin: 4.1rem auto 0;
    padding: 2rem 7.7rem 0;
  }
}

@media screen and (min-width: 992px) {
  .dodatki .tekst {
    margin-bottom: 4rem;
    flex-basis: 40%;
  }
}

@media screen and (min-width: 1200px) {
  .dodatki .tekst {
    margin-bottom: 4rem;
    flex-basis: 52%;
  }
}
@media screen and (min-width: 1600px) {
  .dodatki .tekst {
    margin-bottom: 7.1rem;
    flex-basis: 52%;
  }
}
.dodatki img.asystent {
  display: none;
}

@media screen and (min-width: 992px) {
  .dodatki img.asystent {
    display: block;
    width: 350px;
    height: auto;
  }
}

@media screen and (min-width: 1200px) {
  .dodatki img.asystent {
    width: 41%;
    transform: translateX(100px);
  }
}
@media screen and (min-width: 1600px) {
  .dodatki img.asystent {

    width: 515px;
    transform: translateX(135px);
  }
}

.dodatki h2 {
  text-align: center;
}

@media screen and (min-width: 992px) {
  .dodatki h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-top: 1.4rem;
    margin-bottom: 1.6rem;
  }
}

@media screen and (min-width: 1600px) {
  .dodatki h2 {
    font-size: 3.4rem;
    margin-bottom: 2.3rem;
  }
}


.dodatki p {
  margin: 1rem 0 1.8rem;
}

@media screen and (min-width: 1200px) {
  .dodatki p {
    margin: 1rem 0 2rem;
  }
}@media screen and (min-width: 1600px) {
  .dodatki p {
    margin: 1rem 0 2.8rem;
  }
}

.dodatki p strong {
  font-size: 1.1rem;
}

@media screen and (min-width: 1200px) {
  .dodatki p strong {
    font-size: 1.3rem;
  }
}
@media screen and (min-width: 1600px) {
  .dodatki p strong {
    font-size: 1.5rem;
  }
}

.dodatki .lista-ptaszki li:last-child {
  width: 70%;


}

@media screen and (min-width: 992px) {
  .dodatki .lista-ptaszki li:last-child {

    width: initial;
  }
}

/*
  Sekcja Wymagania
*/
.wymagania {
  padding: 3rem;
  background: var(--color-primary);
  color: white;
}
@media screen and (min-width: 992px) {
  .wymagania {
    padding: 2rem;
  }
}
.wymagania .container {
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .wymagania .container {
    max-width: 500px;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 992px) {
  .wymagania .container {
    max-width: 1440px;
  }
}

.wymagania img {
  margin-bottom: 1rem;
  border-radius: 15px;
  margin-top: 0;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .wymagania img {
    width: 100%;
    height: auto;
    margin-bottom: 35px;
    margin-top: 29px;
  }
}

@media screen and (min-width: 992px) {
  .wymagania img {
    margin-top: 3.8em;
    margin-bottom: 7.1rem;
    float: left;
    margin-right: 4rem;
    position: relative;
  }
}

@media screen and (min-width: 1200px) {
  .wymagania img {
    margin-right: 5.7rem;
    margin-top: 3.8rem;
    margin-left: -13rem;
    height: 342px;
    width: auto;
  }
}
@media screen and (min-width: 1600px) {
  .wymagania img {
    height: 440px;
    margin-left: 0rem;
    margin-right: 7rem;

  }
}

.wymagania h2 {
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 991px) {
  .wymagania h2 {
    left: 0;
    top: -18px;
    position: absolute;
    display: inline-block;
    text-align: left;
    right: 0;
    margin: auto -2.5rem;
    text-align: center;
  }
}


@media screen and (min-width: 992px) {
  .wymagania h2 {
    margin-top: 6rem;
    font-size: 2.0rem;
  }
}

@media screen and (min-width: 1200px) {
  .wymagania h2 {
    font-size: 2.3rem;
    margin-top: 5.2rem;
    margin-bottom: 1.8rem;
    margin-left: 0;
  }
}

@media screen and (min-width: 1600px) {
  .wymagania h2 {
    margin-top: 7.6rem;
    margin-left: 0;
    margin-bottom: 2rem;
    font-size: 2.8rem;
  }
}

.wymagania .lista-ptaszki li{
  font-size: 1.2rem;
}

@media screen and (max-width: 991px) {
  .wymagania .lista-ptaszki li{
    margin: 0 0 0.4rem;
  }
}

@media screen and (min-width: 1200px) {
  .wymagania .lista-ptaszki li:before{
    top: 7px;
  }
}


@media screen and (min-width: 992px) {
  .wymagania .lista-ptaszki {
    display: flex;
    flex-direction: column;
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 992px) {
  .wymagania .lista-ptaszki li {
    margin-bottom: 0.8rem;
  }
}

@media screen and (min-width: 1200px) {
  .wymagania .lista-ptaszki li {
    font-size: 2rem;
    letter-spacing: 1px;
    margin-bottom: 0.7rem;
  }
}

@media screen and (min-width: 1600px) {
  .wymagania .lista-ptaszki li {
    font-size: 2.5rem;
    letter-spacing: 1px;
    margin-bottom: 1.1rem;
  }
}
/*
  Sekcja Kontakt
*/
  .kontakt {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  @media screen and (max-width: 991px) {
    .kontakt {
      max-width: 500px;
    }
  }
@media screen and (min-width: 992px) {
  .kontakt {
    padding: 8rem 6rem 6rem 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .kontakt {
    max-width: 1150px;
    padding: 3.4rem 0 6rem 7.5rem;
  }
}
@media screen and (min-width: 1600px) {
  .kontakt {
    max-width: 1440px;
    padding: 8rem 0 6rem 7.7rem;
  }
}

.kontakt .tekst {
  max-width: 100%;
}

@media screen and (min-width: 1200px) {
  .kontakt .tekst {
    max-width: 330px;
  }
}

@media screen and (min-width: 992px) {
  .kontakt h2 {
    text-align: left;
  }
}

.kontakt .tekst>p {
  margin-bottom: 38px;
  margin-right: 10%;
}

@media screen and (min-width: 1200px) {
  .kontakt .tekst>p {
    margin: auto 0;
  }
}

  .kontakt .obrazy {
    display: flex;
    align-items: flex-start;
    height: 70%;
  }

@media screen and (min-width: 992px) {
  .kontakt .obrazy {
    position: relative;
    transform: scale(.7);
  }
}

@media screen and (min-width: 992px) {
  .kontakt .obrazy {
    transform: scale(.7);
  }
}

@media screen and (min-width: 1600px) {
  .kontakt .obrazy {
    transform: scale(1);
  }
}

@media screen and (min-width: 992px) {
  .kontakt img.asystent {
    width: auto;
    align-self: flex-end;
    height: 470px;
    width: auto;
    align-self: flex-end;
    transform: translate(-210px, 20px);
  }
}

@media screen and (min-width: 992px) {
  .kontakt .strzalka-do-gory {
    width: auto;
    align-self: flex-end;
    height: 260px;
    width: auto;
    align-self: flex-end;
    transform: translate(-170px, -160px);
  }
}

@media screen and (min-width: 1200px) {
  .kontakt .strzalka-do-gory {
    display: none;
  }
}

.kontakt .strzalka-prawo {
  display: none;
}

@media screen and (min-width: 1200px) {
  .kontakt .strzalka-prawo {
    position: absolute;
    width: 250px;
    top: -10px;
    left: 305px;

    display: block;
    height: auto;
  }
}

.formularz {
  padding: 2.6rem 2.7rem;
  background: var(--color-primary--light);
  border-radius: 15px;
}



@media screen and (min-width: 1200px) {
  .formularz {
    max-width: 53.7%;
    padding: 3.6rem 2.8rem 4rem;
  }
}
@media screen and (min-width: 1600px) {
  .formularz {
    max-width: 700px;
    padding: 4rem 2.8rem 4rem;
  }
}
.formularz fieldset.imie-nazwisko {
  border: none;
}

@media screen and (min-width: 1200px) {
  .formularz fieldset.imie-nazwisko {
    display: flex;
    align-items: baseline;
    gap: 2rem;
  }
}

.formularz input[type="text"],
.formularz input[type="submit"] {
  padding-left: 10px;
}

@media screen and (max-width: 1199px) {

  .formularz input[type="text"],
  .formularz input[type="submit"] {
    width: 100%;
  }
}
.formularz input[type="submit"] {
  height: 35px;
  font-size: 1rem;
}

@media screen and (min-width: 1200px) {

  .formularz input[type="text"],
  .formularz input[type="submit"] {
    height: 39px;
    }
}

@media screen and (min-width: 1600px) {

  .formularz input[type="text"],
  .formularz input[type="submit"] {
    height: 55px;
  }
}


@media screen and (min-width: 992px) {

  .imie>input,
  .nazwisko>input {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {

  .email,
  .phone,
  input[type="submit"] {
    width: 100%;
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  input[type="checkbox"i] {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1600px) {
  input[type="checkbox"i] {
    width: 25px;
    height: 25px;
  }
}

.formularz input:not([type="checkbox"]) {
  font-size: 12px;
  padding: 6px 14px;
  margin: 0.3rem 0 0.7rem 0;
  border: none;
  border-radius: 55px;
}

@media screen and (min-width: 1200px) {
  .formularz input:not([type="checkbox"]) {
    margin: 0.6rem 0 0.7rem 0;
    font-size: 18px;
  }
}

@media screen and (min-width: 1600px) {
  .formularz input:not([type="checkbox"]) {
    margin: 0.6rem 0 1.3rem 0;
  }
}

#kontakt  h2 {
  text-align: left;

}
@media screen and (max-width: 991px) {
  #kontakt  h2 {
    margin-bottom: 13px;
    font-size: 1.5rem;
  
  }

}
@media screen and (min-width: 1200px) {
  #kontakt  h2 {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}

@media screen and (min-width: 1600px) {
  #kontakt  h2 {
    font-size: 2.8rem;
  }
}
.formularz .klauzula {
  padding-left: 20px;
  position: relative;
}

@media screen and (min-width: 992px) {
  .formularz .klauzula+.klauzula {
    margin-top: 1rem;
  }
}

.formularz .klauzula:nth-of-type(1) {
  margin-top: 18px;
  margin-bottom: 10px;
}

@media screen and (min-width: 1200px) {
  .formularz .klauzula:nth-of-type(1) {
    margin-bottom: 20px;
    margin-top: 13px;
  }
}

.formularz .klauzula input {
  position: absolute;
  left: 0;
}

@media screen and (min-width: 992px) {
  .formularz .klauzula input {
    top: 5px;
  }
}

.formularz .klauzula label {
  display: inline-block;
  padding-left: 0;
  line-height: 10px;
  font-size: 8px;
  font-weight: normal;
  text-align: justify;
}


@media screen and (min-width: 992px) {
  .formularz .klauzula label {
    padding-left: 12px;
    font-size: 12px;
    line-height: 15px;
  }
}

.formularz .klauzula label[for="requiredagreement"] {
  top: -25px;
  position: relative;
}

.formularz form label {
  font-weight: 600;
  font-size: 0.8rem;
}

@media screen and (min-width: 1200px) {
  .formularz form label {
    font-size: 0.9rem;
  }
}

@media screen and (min-width: 1600px) {
  .formularz form label {
    font-size: 1.2rem;
  }
}
.formularz .gwiazda {
  position: relative;
  top: -8px;
  left: -10px;
  font-size: 1.2rem;
}

@media screen and (min-width: 992px) {
  .formularz .gwiazda {
    top: -7px;
    left: 2px;
    font-size: 1.6rem;
  }
}

.formularz input[type="submit"] {
  margin-top: 1rem;
  height: 31px;
  font-size: 0.9rem;
}

@media screen and (min-width: 1200px) {
  .formularz input[type="submit"] {
    margin-top: 2rem;
    height: 46px;
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 1600px) {
  .formularz input[type="submit"] {
    margin-top: 2rem;
    height: 55px;
    font-size: 1.6rem;
  }
}

/*
  Sekcja Opinie
*/
.opinie {
  position: relative;
  overflow: hidden;
  padding-left: 0;
  padding-right: 0;
  background: var(--color-primary);
  color: white;
}

@media screen and (min-width: 992px) {
  .opinie {
    padding: 4rem 0 5.2rem;
  }
}

@media screen and (min-width: 992px) {
  .opinie h2 {
    margin-bottom: 3rem;
  }
}

@media screen and (min-width: 992px) {
  .slick-track {
    display: flex;
    gap: 1.4rem;
  }
}

.slick-slider.karuzela::before {
  content: "";
  z-index: 100;
  position: absolute;
  width: 40px;
  height: 100%;
  background: linear-gradient(0.25turn,
      var(--color-primary),
      #10069fc8,
      #ffffff00);
}

@media screen and (min-width: 992px) {
  .slick-slider.karuzela::before {
    width: 100px;
  }
}

.slick-slider.karuzela::after {
  content: "";
  z-index: 100;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%;
  background: linear-gradient(-0.25turn, #10069fc8, #10069f75, #ffffff00);
}

@media screen and (min-width: 992px) {
  .slick-slider.karuzela::after {
    width: 100px;
  }
}

.slick-slide {
  margin: 1rem 0.5rem;
}

.opinia {
  padding: 1rem;
  max-width: 150px;
  text-align: center;
  background: white;
  color: var(--color-primary);
  border-radius: 10px;
}

@media screen and (min-width: 992px) {
  .opinia {
    min-width: 470px;
    height: 488px;
    padding: 2rem;
    border-radius: 35px;
  }
}

.opinia .avatar {
  margin: auto;
  border-radius: 50%;
}

@media screen and (min-width: 992px) {
  .opinia .avatar {
    width: 90px;
    height: 90px;
  }
}

.opinia .imie {
  margin: 1rem 0;
  font-size: 1rem;
  font-weight: 600;
}

@media screen and (min-width: 992px) {
  .opinia .imie {
    margin: 1.6rem 0 1rem;
    font-size: 1.4rem;
  }
}

.opinia .komentarz {
  margin-bottom: 1rem;
}

@media screen and (min-width: 992px) {
  .opinia .komentarz {
    margin-top: 3rem;
    margin-bottom: 3rem;
  }
}

.opinia .komentarz,
.opinia .stanowisko {
  font-size: 0.7rem;
}



@media screen and (min-width: 992px) {

  .opinia .komentarz,
  .opinia .stanowisko {
    font-size: 1.4rem;
  }
}

.opinia .stanowisko {
  font-weight: 600;
}

.komentarz {
  width: 100%;
  background-position: center bottom;
  background-size: center;
  background-repeat: no-repeat;
  border-radius: 10px;
}

footer {
  position: relative;
  float: left;
  width: 100%;
  font-size: 14px;
  line-height: 150%;
}
@media (min-width: 992px) {
  footer {
    font-size: 16px;
  }
}
@media (max-width: 991px) {
  footer p {
    line-height: 150%;
  }
}

footer section {
  background: #f6f6f6;
  color: #10069f;
  padding: 0;
}

footer nav {
  padding-top: 63px;
}

footer ul {
  text-align: center;
}

footer ul li {
  display: block;
  padding: 17px 20px;
}

footer ul li:after {
  position: relative;
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #10069f;
  top: -2px;
  right: -19px;
}

footer ul li:last-child:after {
  display: none;
}

@media (max-width: 767px) {
  footer ul li:after {
    display: none;
  }
}
@media (min-width: 768px) {
  footer ul li {
    display: inline;
    padding: 0px 20px;
  }
  #trigger-overlay {
    margin: 51px 0 0 0;
  }
  #overlay-close {
    top: 54px;
  }
}
footer ul li a {
  text-decoration: none;
  color: #10069f;
  letter-spacing: 1px;
  text-transform: lowercase;
  font-family: "BrandonTextWeb-Bold";
  position: relative;
  /* text-align: center; */
}

.footer-text {
  padding-top: 50px;
  padding-bottom: 50px;
}

.footer-extra,
footer p {
  text-align: center;
  letter-spacing: 1px;
  font-family: "BrandonTextWeb-Regular";
}

.footer-extra {
  padding-bottom: 50px;
}
footer h4 {
  font-size: 20px;
  font-family: brandongrotesqueweb-bold;
}
footer h4 a{
  color: #10069f;
  text-decoration: none;
}

body {
  padding: 0 !important;
}

#content {
  margin-top: 0;
  padding-top: 0;
}

body p {
  font-family: inherit;
}

html .cc-revoke,
html .cc-window {
  font-family: brandontextweb-regular;
  letter-spacing: 0 !important;
}

html a.cc-btn {
  border-radius: 0 !important;
}

html .cc-close {
  display: block;
  position: absolute;
  top: 1.3em;
  right: 0.9em;
  font-size: 0.9em;
  opacity: 0.9;
  line-height: 0.75;
  outline: none;
}

html div.cc-center-xtd div.cc-checkboxes-container {
  overflow-y: scroll;
  display: block;
  height: 32vh;
  overflow-x: hidden;
}

html .cc-grower>div {
  position: fixed;
}

html .cc-header {
  text-align: left;
}

html span.cc-header+span.cc-message span.cc-message-text {
  line-height: 1.5;
  margin-right: 5px;
}

html a.cc-link.cc-privacy::before,
html div.cc-settings-label::before,
html span.cc-message-text::before {
  display: none !important;
}

html div.cc-window.cc-center.cc-center-xtd.cc-window-settings-toggle-xtd {
  border-radius: 0;
  margin-top: 0 !important;
}

html div.cc-window.cc-floating div.cc-settings-label {
  margin-bottom: 20px;
  margin-top: 19px;
  text-align: left;
  font-size: 17px;
  font-weight: 700;
  opacity: 1 !important;
}

html div.cc-checkboxes-container input[type=checkbox] {
  margin-right: -16px !important;
  display: block !important;
}

html div.cc-center-xtd div.cc-checkbox-description {
  flex-basis: 100%;
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
}

html div.cc-center-xtd div.cc-checkbox-container {
  margin-bottom: 20px;
  padding: 14px;
  border: 1px solid #ccc;
  background: #f2f2f2;
  color: #000;
  border-radius: 0;
}

html div.cc-checkbox-category-readmore {
  margin-top: 15px !important;
  flex-basis: 100%;
  text-align: left;
  font-size: 13px;
  text-decoration: underline;
  margin-top: 5px;
  cursor: pointer;
  display: none;
}

html div.cc-checkboxes-container input.cc-cookie-checkbox+span {
  width: 34px;
}

html div.cc-checkboxes-container input.cc-cookie-checkbox+span::before {
  left: 2px;
}

html div.cc-checkboxes-container input.cc-cookie-checkbox:checked+span::before {
  left: 1px;
}

html a.cc-btn {
  padding: 15px !important;
  font-size: 14px;
  background: #0f069f !important;
}

html a.cc-btn:hover {
  background: #adcef0 !important;
  color: #fff !important;
  text-decoration: none !important;
}

html span.cc-close {
  text-shadow: #0f069f 0 0 0 !important;
}

html div.cc-center a.cc-link,
html div.cc-checkbox-category-readmore {
  font-size: 14px !important;
  text-decoration: underline !important;
  color: #0f069f !important;
  margin-bottom: 16px !important;
  opacity: 1;
}

html div.cc-checkboxes-container input.cc-cookie-checkbox:checked+span,
html fieldset.cc-cookie-list-title .gdpr_onoffswitch-inner::before {
  background-color: #0f069f !important;
}

html div.cc-center-xtd span.cc-cookie-settings-toggle {
  font-size: 16px;
}

html div.cc-center-xtd div.cc-checkboxes-container a.cc-btn.cc-allow {
  border: 0;
  padding: 0.7em 1.4em !important;
  float: left;
  margin-right: 6px;
}

html div.cc-center-xtd span.cc-cookie-settings-toggle {
  margin-top: 28px !important;
  font-size: 16px;
  text-decoration: underline;
  color: #0f069f !important;
}

html .cc-cookie-settings-toggler {
  display: none !important;
}

html div.cc-center-xtd div.cc-checkbox-container a:not(.cc-btn) {
  padding: 0;
  margin: 0 0 0 10px !important;
}

html .cc-revoke.cc-center.cc-revoke-bottom-left {
  padding: 5px 16px 5px 8px;
  left: 6em;
  right: auto;
  bottom: 0;
  top: auto;
  margin: auto;
  border-radius: 0.5em 0.5em 0 0;
  transform: translateY(0) !important;
}

body.ddddd div.cc-window.cc-floating {
  max-width: 35em;
  border: 2px solid rgb(16, 6, 159);
}

body.ddddd .cc-header {
  font-size: 16px;
  font-weight: normal;
  max-width: 420px;
  margin-top: 0;
  font-weight: 700;
  font-family: brandontextweb-regular;
}

body.ddddd .cc-header span {
  font-size: 14px;
  font-weight: normal;
  margin-top: 10px;
  display: block;
}

body.ddddd .cc-header span,
body.ddddd .cc-header p {
  letter-spacing: 0;
}

body.ddddd .cc-cookie-settings-toggler {
  display: none !important;
}

body.ddddd .cc-link.cc-cookie,
body.ddddd .cc-link.cc-privacy {
  display: block;
}

body.ddddd .cc-close {
  transform: scale(0.6);
  right: 4px;
  top: 12px;
  text-shadow: rgb(16, 6, 159) 0px 0px 0px !important;
  transition: all 0.4s;
}

body.ddddd .cc-close:hover {
  text-shadow: #10069f 0px 0px 0px !important;
  background: none !important;
}

body.ddddd div.cc-compliance>a.cc-btn,
body.ddddd span.cc-message span.cc-cookie-settings-toggle {
  height: 40px;
  line-height: 1.3;
  outline: 0;
  background: none !important;
  border-color: rgb(16, 6, 159) !important;
  color: rgb(16, 6, 159) !important;
  display: inline-block;
  font-size: 13px;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
  padding: 10px 18px 11px;
  transition: all 0.4s;
  margin: 0 9px 0 0;
}

@media (max-width: 575px) {

  body.ddddd div.cc-compliance>a.cc-btn,
  body.ddddd span.cc-message span.cc-cookie-settings-toggle {
    width: 100%;
  }
}

@media (max-width: 575px) {

  body.ddddd div.cc-compliance>a.cc-btn:last-child,
  body.ddddd span.cc-message span.cc-cookie-settings-toggle:last-child {
    margin-bottom: 0 !important;
  }
}

body.ddddd div.cc-compliance>a.cc-btn:hover,
body.ddddd span.cc-message span.cc-cookie-settings-toggle:hover {
  background: #0f069f !important;
  color: #fff !important;
  text-decoration: none !important;
}

body.ddddd div.cc-compliance>a.cc-btn.cc-allowall {
  background: #0f069f !important;
  color: white !important;
}

body.ddddd div.cc-compliance>a.cc-btn.cc-allowall:hover {
  background: #0f069f !important;
  color: #fff !important;
}

body.ddddd span.cc-message span.cc-cookie-settings-toggle {
  left: 0;
  bottom: -80px;
  position: absolute;
  font-weight: 700;
  margin-top: 0;
}

body.ddddd .cc-floating .cc-message {
  position: relative;
}

body.ddddd .cc-compliance {
  display: block;
}

body.ddddd a.cc-link label {
  font-size: 14px;
  transition: all 0.4s;
}

body.ddddd a.cc-link label:hover {
  text-decoration: underline !important;
}

body.ddddd div.cc-checkboxes-container input[type=checkbox] {
  position: absolute;
}

body.ddddd div.cc-checkbox-container input+span {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

body.ddddd div.cc-checkbox-container input:checked+span::before {
  transform: translateX(18px);
}

body.ddddd div.cc-checkbox-container>span::before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 3px;
  bottom: 3px;
  background-color: #fff !important;
  transition: all 0.4s !important;
  border-color: #FFF !important;
  border: none;
  border-radius: 50%;
}

body.ddddd a.cc-link label {
  opacity: 1;
  top: -4px;
  position: relative;
  font-weight: 600;
  margin: 5px 0 0 5px;
  font-family: brandontextweb-regular;
}

body.ddddd div.cc-checkbox-container {
  width: 100%;
}

body.ddddd div.cc-settings-label,
body.ddddd span.cc-cookie-settings-toggle {
  font-size: 15px;
}

body.ddddd div.cc-checkboxes-container a.cc-btn.cc-allow {
  margin-top: 20px;
  height: auto;
  padding: 2px 15px;
  font-size: 13px;
  font-family: brandontextweb-regular;
}

body.ddddd div.cc-checkboxes-container a.cc-btn.cc-allow:hover {
  background: white !important;
  color: #0f069f !important;
  text-decoration: none;
}

body.ddddd div.cc-floating div.cc-checkboxes-container {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid;
}

body.ddddd .cc-compliance {
  margin-left: 125px;
}

@media (max-width: 575px) {
  body.ddddd .cc-compliance {
    margin-left: 0;
  }
}

body.ddddd .cc-settings-label {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 15px !important;
  font-family: brandontextweb-regular;
  opacity: 1;
}

body.ddddd span.cc-header+span.cc-message span.cc-message-text {
  letter-spacing: 0;
  font-family: "brandontextweb-regular";
  margin-right: 5px;
  line-height: 1.4;
}

body.ddddd .div.cc-window,
body.ddddd span.cc-cookie-settings-toggler {
  font-size: 14px;
}

body.ddddd div.cc-cookie-category-description {
  font-size: 14px;
  line-height: 1.4;
  padding: 10px 0;
}

body.ddddd .cc-floating>.cc-link {
  margin-top: -8px;
  font-family: "brandontextweb-regular";
  font-size: 14px;
  color: #10069f !important;
}

@media (max-width: 575px) {
  body.ddddd .cc-floating>.cc-link {
    margin-bottom: 60px;
  }
}

body.ddddd .cc-floating>.cc-link:hover {
  text-decoration: underline !important;
}

/*# sourceMappingURL=template.css.map */
.alert {
  position: fixed;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 999999;
  text-align: center;
  color: black;
  padding: 45px 0;
  font-family: "BrandonGrotesqueWeb-Bold";
  font-size: 20px;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  align-content: center;
  justify-content: center;
}

.alert-success,
.alert-info {
  background: #a3d859;
}

.alert-error,
.alert-danger {
  background: #ff665e;
}

.alert h4.alert-heading {
  display: none;
}

a.close {
  cursor: pointer;
  display: block;
  margin-top: 10px;
  font-family: "BrandonGrotesqueWeb-Bold";
  color: black;
  letter-spacing: 1px;
  width: 100%;
  text-decoration: underline;
}

a.close:hover {
  color: #10069f;
}

.alert p {
  letter-spacing: 1px;
  font-family: brandontextweb-bold;
}

@media screen and (max-width: 450px) {
  .g-recaptcha{
    margin: 0 -27px;
    transform: scale(0.8);
  }
  
}
