/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #FBF1EF;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
  cursor: pointer;
}

h1, h2, h3, h4, h5 {
  font-family: "Red Hat Display", sans-serif;
}

h1 {
  font-size: 76px;
  font-weight: 600;
  line-height: 76px;
  text-align: left;
  color: #F2DCD6;
}

h2 {
  font-size: 36px;
  font-weight: 300;
  line-height: 40px;
  text-align: left;
  margin-bottom: 20px;
}

h3 {
  font-size: 20px;
  font-weight: 500;
  line-height: 26.46px;
}

p, a, li {
  font-family: "Red Hat Display", sans-serif;
  font-size: 16px;
  line-height: 110%;
  font-weight: 400;
}

.subtitle {
  display: block;
  margin-bottom: 20px;
  border-radius: 32px;
  font-size: 16px;
  font-weight: 400;
  padding: 8px 36px;
  background-color: #F1B09F;
  color: #432C26;
  text-align: center;
}

span {
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

ul {
  list-style: none;
}

/* width */
::-webkit-scrollbar {
  width: 3px;
  overflow: hidden;
}

/* Track */
::-webkit-scrollbar-track {
  background: #FBF1EF;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #432C26;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #432C26;
}

/* loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgb(31, 31, 31);
  z-index: 99999;
  transition-duration: 1s;
  transition-delay: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div {
  width: 200px;
  height: auto;
  transition-duration: 1.5s;
  transform: scale(0.8);
}
#loading > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden div {
  transform: scale(1);
}

.error404 section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 40px;
}
.error404 section h3 {
  margin: 1em 0;
  font-size: 32px;
}
.error404 section #e404 {
  font-size: 3em;
}

.message {
  min-height: 100vh;
}
.message section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8%;
  text-align: center;
}
.message section h2 {
  margin-bottom: 40px;
}
.message section .icon-sent {
  width: 250px;
  margin: 30px auto;
}
.message section .icon-sent img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.numer-konta p {
  color: #FBF1EF;
}
.numer-konta p span {
  margin-left: 24px;
}

.docs {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #F2DCD6;
}
.docs * {
  color: #432C26;
  font-family: "Red Hat Display", sans-serif;
}
.docs h1 {
  font-size: 52px;
}
.docs h2 {
  margin-top: 40px;
}
.docs img {
  width: 300px;
  margin: 0 auto 30px auto;
}
.docs p {
  margin-bottom: 10px;
  margin-left: 20px;
}
.docs li {
  margin-bottom: 5px;
}
.docs ul {
  list-style: decimal;
  margin-left: 60px;
}

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  display: inline-block;
  font-family: "Red Hat Display", sans-serif;
  padding: 8px 26px;
  font-size: 16px;
  font-weight: 400;
  border: 1px solid #E5765A;
  color: #FBF1EF;
  background-color: #E5765A;
  text-transform: uppercase;
  border-radius: 32px;
  transition: all 0.6s ease-in;
  cursor: pointer;
}
.btn:hover {
  background-color: transparent;
  color: #E5765A;
}

.btn-transparent {
  border: 1px solid #FBF1EF;
  color: #FBF1EF;
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-transparent img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 10px;
  transition: all 0.6s ease-in;
}
.btn-transparent:hover {
  background-color: #FBF1EF;
  color: #432C26;
}
.btn-transparent:hover img {
  transform: rotate(90deg);
  filter: invert(1);
}

/***************************************************************/
/*** HEADER ***************************************************/
/***************************************************************/
header {
  max-width: 1920px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  padding: 40px 0;
  z-index: 44;
  transition: all 1.1s ease-out;
  background-color: transparent;
}
header .numer-konta-mobile {
  display: none;
}
header .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .width .btn {
  padding: 16px 32px;
}
header .width .logo {
  width: 183px;
  transition: all 0.8s ease-in-out;
}
header .width .logo a .active {
  display: none;
}
header.active {
  padding: 10px 0;
  transition: all 1.1s ease-out;
  background-color: #fbf1ef;
}
header.active .width .logo {
  width: 120px;
}
header.active .width .logo a img {
  display: none;
}
header.active .width .logo a img.active {
  display: inline-block;
}
header.active .width .wesprzyj-btn .btn {
  padding: 8px 36px;
  border: 1px solid #432C26;
}
header.active .width .wesprzyj-btn .btn img {
  filter: invert(1);
}
header.active * {
  color: #432C26;
}

/***************************************************************/
/*** STRUCTURE *************************************************/
/***************************************************************/
.width {
  padding-left: 5%;
  padding-right: 5%;
  margin: 0 auto;
}

/***************************************************************/
/*** HOME PAGE  ***************************************/
/***************************************************************/
#homePage {
  position: relative;
  background-position: top center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#homePage .width {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
}
#homePage .width h1 {
  max-width: 15ch;
}
#homePage .darowizna-box {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #FBF1EF;
  padding: 60px 40px;
  text-align: center;
}
#homePage .darowizna-box h3 {
  color: #432C26;
  max-width: 25ch;
  margin: auto auto 44px auto;
}
#homePage .darowizna-box .kwoty .box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#homePage .darowizna-box .kwoty .box > div {
  margin: 10px 5px;
  border: 1px solid #F1B09F;
  color: #F1B09F;
  border-radius: 32px;
  width: auto;
  padding: 18px 5px;
  width: 110px;
  cursor: pointer;
  transition: all 0.6s ease-in;
}
#homePage .darowizna-box .kwoty .box > div.active, #homePage .darowizna-box .kwoty .box > div:hover {
  border: 1px solid #432C26;
  color: #432C26;
}
#homePage .darowizna-box .kwoty .box .jednorazowo, #homePage .darowizna-box .kwoty .box .miesiecznie {
  width: 230px;
  padding: 18px 5px;
}
#homePage .darowizna-box .kwoty .submit {
  width: 200px;
  margin-top: 40px;
}

#problemy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #FBF1EF;
}
#problemy > div {
  width: 50%;
  height: 120vh;
}
#problemy > div.left {
  padding-left: 10%;
  padding-right: 5%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  position: relative;
}
#problemy > div.left:after, #problemy > div.left:before {
  content: "";
  position: absolute;
  background-image: url(imgs/icons/path-accent.svg);
  background-size: cover;
}
#problemy > div.left:after {
  bottom: -50px;
  left: -140px;
  width: 465px;
  height: 465px;
  transform: rotate(70deg);
}
#problemy > div.left:before {
  top: -50px;
  right: -140px;
  width: 400px;
  height: 400px;
  transform: rotate(0deg);
}
#problemy > div.left h2 {
  max-width: 20ch;
  position: relative;
  z-index: 1;
}
#problemy > div.left p:not(.subtitle) {
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
  max-width: 30ch;
}
#problemy > div.left .btn {
  position: relative;
  z-index: 1;
}
#problemy > div.right {
  position: relative;
  cursor: wait;
}
#problemy > div.right .content {
  background-position: center;
  background-size: cover;
  height: 120vh; /* Same height as the right container */
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  transition: opacity 0.5s ease-in-out; /* Smooth transition */
  opacity: 0; /* Start as invisible */
  position: absolute; /* Position to overlap */
  top: 0; /* Align to the top */
  left: 0; /* Align to the left */
  right: 0;
  bottom: 0;
  padding: 75px;
}
#problemy > div.right .content.active {
  opacity: 1; /* Make the active content visible */
}
#problemy > div.right .content .box {
  padding: 24px 16px;
  -webkit-backdrop-filter: blur(50px);
          backdrop-filter: blur(50px);
}
#problemy > div.right .content .box * {
  color: #FBF1EF;
}
#problemy > div.right .content .box .title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 30px;
}
#problemy > div.right .content .box .title img {
  width: 60px;
  height: 60px;
}
#problemy > div.right .content .box .title h3 {
  margin-left: 12px;
}
#problemy > div.right .content .box p {
  max-width: 50ch;
  margin-bottom: 20px;
}
#problemy > div.right .content .progres-bar {
  position: absolute;
  bottom: 75px;
  left: 75px;
  display: flex;
  align-self: flex-end;
  justify-self: flex-start;
  flex-direction: column;
}
#problemy > div.right .content .progres-bar > div {
  cursor: pointer;
  width: 5px;
  height: 86px;
  margin-top: 4px;
  background-color: #D1CDCC;
}
#problemy > div.right .content .progres-bar > div.active {
  background-color: #E5765A;
}

#skutki {
  background-color: #F1B09F;
  padding-top: 175px;
  padding-bottom: 150px;
}
#skutki .width {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  flex-direction: column;
}
#skutki .width:after {
  content: "";
  position: absolute;
  right: -5%;
  top: -65%;
  width: 400px;
  height: 400px;
  transform: rotate(-32deg);
  background-image: url(imgs/icons/path-accent2.svg);
  background-size: cover;
  opacity: 0.25;
}
#skutki .width * {
  color: #432C26;
}
#skutki .width .left {
  width: 100%;
}
#skutki .width .left .subtitle {
  background-color: #E5765A;
  color: #432C26;
  width: 280px;
}
#skutki .width .left h2 {
  max-width: 20ch;
}
#skutki .width .right {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
#skutki .width .right > div {
  width: 30%;
  margin: 30px 20px;
  text-align: center;
}
#skutki .width .right > div .img {
  display: block;
  width: 60px;
  height: 60px;
  background-color: #FBF1EF;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#skutki .width .right > div .img img {
  padding: 8px;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#skutki .width .right > div .img img.bigger-padding {
  padding: 13px;
}
#skutki .width .right > div h3 {
  margin: 26px 0 36px 0;
}
#skutki .width .right > div p {
  max-width: 40ch;
  margin: 0 auto;
}

#co-zmieni-darowizna {
  background-position: center;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
#co-zmieni-darowizna .box-container {
  padding-top: 160px;
  padding-bottom: 160px;
  padding-right: 5%;
  width: 58%;
}
#co-zmieni-darowizna .box-container .subtitle {
  width: 260px;
}
#co-zmieni-darowizna .box-container .boxes {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#co-zmieni-darowizna .box-container .boxes .box {
  margin: 8px 5px;
  width: 48%;
  height: 280px;
  background-color: #FBF1EF;
  padding: 15px;
}
#co-zmieni-darowizna .box-container .boxes .box .icon {
  width: 60px;
  height: 60px;
}
#co-zmieni-darowizna .box-container .boxes .box .data {
  padding: 20px 30px;
}
#co-zmieni-darowizna .box-container .boxes .box .data h3 {
  margin-bottom: 20px;
}
#co-zmieni-darowizna .box-container .extra {
  color: #E5765A;
  margin-top: 40px;
}

#darowizna {
  background-color: #FBF1EF;
}
#darowizna * {
  color: #432C26;
}
#darowizna .width {
  padding-top: 145px;
  padding-bottom: 145px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#darowizna .width > div {
  width: 50%;
}
#darowizna .width > div.left {
  position: relative;
}
#darowizna .width > div.left:after {
  z-index: 1;
  content: "";
  position: absolute;
  left: -5%;
  top: 10%;
  width: 500px;
  height: 500px;
  transform: rotate(64deg);
  background-image: url(imgs/icons/path-accent.svg);
  background-size: cover;
}
#darowizna .width > div.left h2 {
  max-width: 15ch;
  position: relative;
  z-index: 2;
}
#darowizna .width > div.left p {
  max-width: 55ch;
  position: relative;
  z-index: 2;
  font-size: 17px;
}
#darowizna .width > div.right {
  width: 45%;
  /* border: 1px solid #F1B09F; */
  padding: 30px 50px;
}
#darowizna .width > div.right .form {
  margin-top: 50px;
}
#darowizna .width > div.right .form img {
  width: 80%;
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
footer {
  background-color: #432C26;
}
footer .width {
  padding-top: 30px;
  padding-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .width * {
  color: #FBF1EF;
}
footer .width .logo {
  width: 150px;
}
footer .width .pliki {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  flex-direction: column;
}
footer .width .pliki a {
  border-bottom: 1px solid #FBF1EF;
  transition: all 0.6s ease-in;
  font-size: 14px;
  margin-bottom: 5px;
}
footer .width .pliki a:hover {
  color: #F1B09F;
  border-bottom: 1px solid #F1B09F;
}

/**************************************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 64px;
    line-height: 110%;
  }
  #homePage .darowizna-box {
    padding: 40px 20px;
  }
  #homePage .darowizna-box h3 {
    margin: auto auto 20px auto;
  }
  #homePage .darowizna-box .kwoty .box > div {
    padding: 10px 5px;
    flex: 1;
  }
  #homePage .darowizna-box .kwoty .box .jednorazowo, #homePage .darowizna-box .kwoty .box .miesiecznie {
    flex: 1;
    padding: 10px 5px;
  }
  #problemy > div {
    height: 850px;
  }
  #problemy > div.left {
    padding-left: 5%;
  }
  #problemy > div.right .content {
    height: auto;
    padding: 40px;
  }
  #problemy > div.right .content .progres-bar {
    bottom: 40px;
    left: 40px;
  }
  #co-zmieni-darowizna h2 {
    font-size: 24px;
    line-height: 110%;
  }
}
@media only screen and (max-width: 1335px) {
  #skutki .width .right > div {
    width: 28%;
    margin: 20px;
    text-align: center;
  }
}
@media only screen and (max-width: 1260px) {
  .docs img {
    width: 220px;
    margin: 0 auto 30px auto;
  }
  .docs h1 {
    font-size: 42px;
  }
  .docs h2 {
    font-size: 32px;
  }
  h1 {
    font-size: 52px;
    line-height: 110%;
  }
  #problemy > div.right .content .progres-bar > div {
    width: 5px;
    height: 40px;
  }
  #skutki {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  #skutki .width {
    align-items: center;
  }
  #co-zmieni-darowizna .box-container {
    padding-top: 100px;
    padding-bottom: 100px;
    padding-right: 5%;
    width: 60%;
  }
  #co-zmieni-darowizna .box-container .boxes .box {
    height: 300px;
  }
  #co-zmieni-darowizna .box-container .boxes .box .data {
    padding: 25px 5px 5px 5px;
  }
  #darowizna .width {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1020px) {
  header {
    padding: 25px 0;
  }
  header .width .logo {
    width: 150px;
  }
  .numer-konta p span {
    margin-left: 10px;
  }
  .btn {
    text-align: center;
  }
  h1 {
    font-size: 58px;
    line-height: 110%;
  }
  #homePage {
    margin-bottom: 150px;
  }
  #homePage .width h1 {
    max-width: 20ch;
  }
  #homePage .darowizna-box {
    padding: 40px 20px;
    width: 100%;
    bottom: -150px;
  }
  #problemy > div.left {
    padding-left: 5%;
    padding-right: 5%;
  }
  #skutki {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #co-zmieni-darowizna {
    background-position: 40%;
  }
  #co-zmieni-darowizna .box-container {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #co-zmieni-darowizna .box-container .boxes .box {
    margin: 8px 5px;
    width: 100%;
    height: auto;
    padding: 15px;
  }
  footer .width .logo {
    width: 150px;
  }
}
@media only screen and (max-width: 850px) {
  header {
    padding: 0;
  }
  header.active {
    padding: 0 0 10px 0;
  }
  header .width .numer-konta {
    display: none;
  }
  header .numer-konta-mobile {
    display: block;
    width: 100%;
    background-color: #E5765A;
    padding: 10px;
    margin-bottom: 20px;
  }
  header .numer-konta-mobile p {
    text-align: center;
    font-size: 14px;
  }
  #problemy > div {
    height: 650px;
  }
  .numer-konta p {
    font-size: 13px;
  }
  #skutki .width .right > div {
    width: 40%;
    margin: 20px;
    text-align: center;
  }
  #skutki .width .right > div h3 {
    margin: 20px 0 20px 0;
  }
  #darowizna .width {
    padding-top: 80px;
    padding-bottom: 80px;
    flex-direction: column;
  }
  #darowizna .width > div.left, #darowizna .width > div.right {
    width: 100%;
  }
  #darowizna .width > div.left {
    margin-bottom: 50px;
  }
  #darowizna .width > div.left:after {
    left: 65%;
    top: -30%;
    width: 300px;
    height: 300px;
  }
  #darowizna .width > div.left h2 {
    max-width: initial;
  }
  #darowizna .width > div.left p {
    max-width: 60ch;
  }
  #darowizna .width > div.right {
    position: relative;
    z-index: 2;
  }
  #darowizna .width > div.right .form img {
    width: 100%;
  }
  footer .width {
    padding-top: 25px;
    padding-bottom: 25px;
  }
  footer .width .logo {
    width: 120px;
  }
}
@media only screen and (max-width: 653px) {
  h1 {
    font-size: 48px;
  }
  h2 {
    font-size: 28px;
    line-height: 110%;
  }
  .docs {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .docs img {
    width: 200px;
    margin: 0 auto 30px auto;
  }
  .docs h1 {
    font-size: 32px;
  }
  .docs h2 {
    font-size: 24px;
  }
  h3 {
    font-size: 18px;
    line-height: 110%;
  }
  #problemy {
    flex-wrap: wrap;
  }
  #problemy > div.left {
    width: 100%;
    height: auto;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #problemy > div.right {
    width: 100%;
    height: 700px;
  }
  #problemy > div.right .content {
    padding: 40px 5%;
  }
  #skutki {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  #skutki .width {
    flex-wrap: wrap;
  }
  #skutki .width:after {
    display: none;
  }
  #skutki .width .left {
    width: 100%;
  }
  #skutki .width .right {
    width: 100%;
  }
  #skutki .width .right > div {
    width: 100%;
  }
  #co-zmieni-darowizna .box-container {
    width: 75%;
  }
  #co-zmieni-darowizna h2 {
    font-size: 18px;
  }
  #co-zmieni-darowizna h2:last-child {
    font-weight: 500;
    font-size: 20px;
  }
  #co-zmieni-darowizna #darowizna .width {
    padding-top: 60px;
    padding-bottom: 60px;
    flex-wrap: wrap;
  }
  #co-zmieni-darowizna #darowizna .width > div {
    width: 100%;
  }
  #co-zmieni-darowizna #darowizna .width > div.left:after {
    left: 45%;
    top: 10%;
    width: 300px;
    height: 300px;
  }
  footer .width .numer-konta {
    display: none;
  }
}
@media only screen and (max-width: 430px) {
  header .width .logo {
    width: 120px;
  }
  header .width .btn {
    padding: 12px 15px;
    font-size: 15px;
  }
  h1 {
    font-size: 42px;
    line-height: 110%;
  }
  .btn {
    padding: 8px 10px;
    font-size: 15px;
  }
  #homePage {
    margin-bottom: 200px;
  }
  #homePage .darowizna-box {
    bottom: -200px;
    padding: 20px;
  }
  #homePage .darowizna-box .kwoty .submit {
    margin-top: 20px;
  }
  #homePage .darowizna-box .kwoty .box:nth-child(2) {
    flex-wrap: wrap;
  }
  #homePage .darowizna-box .kwoty .box:nth-child(2) > div {
    width: 45%;
    flex: initial;
  }
  #co-zmieni-darowizna .box-container {
    width: 80%;
  }
  #problemy > div.right {
    width: 100%;
    height: 650px;
  }
  #problemy > div.right .content .progres-bar {
    bottom: 20px;
    left: 5%;
  }
}/*# sourceMappingURL=style.css.map */