:root {
  --d: 700ms;
  --e: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  box-sizing: border-box;
  height: 100%;
  width: 100%;
}

ol,
ul,
li {
  list-style-type: none;
}

a {
  color: #f896f0;
  display: inline-block;
  /*   text-decoration: none; */
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  transition: 0.4s;
}

a:hover,
a:focus {
  color: #16a085;
  text-decoration: underline;
}

p {
  font-size: 14px;
  line-height: 24px;
}

header {
  background-color: rgba(255, 255, 255, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 65px;
  /* display: flex;
  justify-content: center;
  align-items: center; */
  z-index: 111;
  border-bottom: 2px solid rgba(0, 0, 0, 0.6);
}
.logo {
  height: 45px;
  transform: scale(1);
  padding-left: 10px;
  /* padding-bottom: 20px; */
}

.logo h6 {
  font-size: 10px;
  font-weight: bold;
  margin: 0;
}

.logo:hover {
  transform: scale(0.92);
  text-decoration: none;
}
.logo img {
  max-height: 100%;
  width: auto;
  max-width: auto;
}

.navbar-toggler {
  margin-right: 10px;
}
/* header .navbar .navbar-nav .nav-link {
  text-transform: capitalize;
  font-weight: 600;
  color: #000000;
  padding: 0 20px;
} */

.navbar-nav .nav-link.active {
  font-weight: bold;
}

section h2.display-4 {
  position: relative;
}

section h2.display-4::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 0.25em;
  background-color: #008cff;
}

#winter img {
  padding-top: 3em;
}

#winter .fa-snowflake {
  position: absolute;
  right: 10%;
  top: 12%;
  font-size: 5vw;
  opacity: 0.1;
}

.summerMask {
  width: 100px;
  height: auto;
  position: absolute;
  right: 10%;
  top: 10%;
  /* font-size: 5vw; */
  opacity: 0.8;
}

.summerSun {
  width: 150px;
  height: auto;
  position: absolute;
  left: 5%;
  top: 15%;
  transform: rotate(-25deg);
  opacity: 0.5;
  z-index: 1;
}

#winter .fa-snowman {
  position: absolute;
  left: 5%;
  top: 20%;
  font-size: 9vw;
  transform: rotate(-3deg);
  opacity: 0.07;
  z-index: 1;
}

section h2.winterH2::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 270px;
  height: 0.25em;
  background-color: #008cff;
}

.banner {
  /* height: 100vh; */
  background-image: url("../graph/annie-spratt-qyAka7W5uMY-unsplash.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
  /* min-height: 380px; */
  min-height: 100vh
}

.banner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

/* .banner .container {
  height: 100%;
} */



/* ---------------CARD------------------- */

.card {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 1rem;
  width: 100%;
  text-align: center;
  color: whitesmoke;
  background-color: whitesmoke;
  background-size: cover;
  background-position: 0 0;
  border: 2px solid #0063b4;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1), 0 2px 2px rgba(0, 0, 0, 0.1), 0 4px 4px rgba(0, 0, 0, 0.1), 0 8px 8px rgba(0, 0, 0, 0.1), 0 16px 16px rgba(0, 0, 0, 0.1);
}
@media (min-width: 600px) {
  .card {
    height: 350px;
  }
}
.card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background-size: cover;
  background-position: 0 0;
  transition: transform calc(var(--d) * 1.5) var(--e);
  pointer-events: none;
}
.card:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  pointer-events: none;
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.009) 11.7%, rgba(0, 0, 0, 0.034) 22.1%, rgba(0, 0, 0, 0.072) 31.2%, rgba(0, 0, 0, 0.123) 39.4%, rgba(0, 0, 0, 0.182) 46.6%, rgba(0, 0, 0, 0.249) 53.1%, rgba(0, 0, 0, 0.32) 58.9%, rgba(0, 0, 0, 0.394) 64.3%, rgba(0, 0, 0, 0.468) 69.3%, rgba(0, 0, 0, 0.54) 74.1%, rgba(0, 0, 0, 0.607) 78.8%, rgba(0, 0, 0, 0.668) 83.6%, rgba(0, 0, 0, 0.721) 88.7%, rgba(0, 0, 0, 0.762) 94.1%, rgba(0, 0, 0, 0.79) 100%);
  transform: translateY(-50%);
  transition: transform calc(var(--d) * 2) var(--e);
}


.content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 1rem;
  transition: transform var(--d) var(--e);
  z-index: 1;
}
.content > * + * {
  margin-top: 1rem;
}

.title {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.2;
  text-shadow: 0 0 5px #000000;
}

.copy {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.35;
}

.btn {
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.65rem;
  font-weight: bold;
  letter-spacing: 0.025rem;
  text-transform: uppercase;
  color: white;
  background-color: black;
  border: none;
  transition: 0.7s;
}
.btn:hover {
  background-color: #1b1b1b;
}
.btn:focus {
  outline: 1px dashed yellow;
  outline-offset: 3px;
}

@media (hover: hover) and (min-width: 600px) {
  .card:after {
    transform: translateY(0);
  }

  .content {
    transform: translateY(calc(100% - 4.5rem));
  }
  .content > *:not(.title) {
    opacity: 0;
    transform: translateY(1rem);
    transition: transform var(--d) var(--e), opacity var(--d) var(--e);
  }

  .card:hover,
.card:focus-within {
    align-items: center;
  }
  .card:hover:before,
.card:focus-within:before {
    transform: translateY(-4%);
  }
  .card:hover:after,
.card:focus-within:after {
    transform: translateY(-50%);
  }
  .card:hover .content,
.card:focus-within .content {
    transform: translateY(0);
  }
  .card:hover .content > *:not(.title),
.card:focus-within .content > *:not(.title) {
    opacity: 1;
    transform: translateY(0);
    transition-delay: calc(var(--d) / 8);
  }

  .card:focus-within:before, .card:focus-within:after,
.card:focus-within .content,
.card:focus-within .content > *:not(.title) {
    transition-duration: 0s;
  }
}
/* --------------------------------- */


.banner .banner h2#cancelled {
  text-align: center;
  width: 98%;
  margin: 0 auto;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 3px;
}

.banner h2#cancelled::before, .banner h2#cancelled::after {
  content: '❗';
}

.banner .bannerText {
  max-width: 700px;
  color: #fff;
  padding: 100px;
  border: 1px solid rgb(238, 255, 0);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}
.banner h1 {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10vw;
  /* transform: rotate(45deg); */
  color: #dddddd;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: 0.11em;
  text-shadow: 4px 4px 4px rgba(0, 0, 0, 0.678);
  opacity: .999;
  z-index: 22;
}
.banner .bannerText a {
  border: 1px solid #2896f0;
  padding: 10px 25px;
  border-radius: 3px;
  color: #fff;
  /*       text-transform: capitalize; */
  position: relative;
  background-color: #2896f0;
  font-weight: 500;
  text-decoration: none;
}
.banner .bannerText a::after {
  position: absolute;
  /* content: "\f00c"; */
  top: 10px;
  /* right: -10px; */
  font-family: "FontAwesome";
  font-weight: normal;
  font-size: 16px;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  opacity: 0;
}
/* .banner .bannerText a:hover {
  padding: 10px 35px 10px 15px;
} */
.banner .bannerText a:hover::after {
  /* right: 15px; */
  opacity: 1;
}

.banner .bannerHoliday {
  max-width: 700px;
  margin-top: 3em;
  color: #fff;
  padding: 40px;
  border: 1px solid rgb(0, 162, 255);
  border-radius: 12px;
  backdrop-filter: blur(2px);
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.9);
}

.banner .bannerHoliday .fa-snowflake {
  font-size: 20px;
  padding: 10px;
}

.banner .bannerHoliday .fa-snowflake:nth-child(1) {
  color: #88c3f3;
}

.banner .bannerHoliday .fa-snowflake:nth-child(2) {
  color: #5aabee;
}

.banner .bannerHoliday .fa-snowflake:nth-child(3) {
  color: #2896f0;
}

.banner .bannerHoliday .btn-secondary {
  background-color: #ffffff;
  color: #008cff;
  letter-spacing: 1px;
  transition: 0.5s;
}

.banner .bannerHoliday .btn-secondary:hover {
  text-decoration: none;
  background-color: #2896f0;
  color: #ffffff;
}

.demos {
  padding: 100px 0 0 0;
  background-color: #ffffff;
}

/* .demos .demoOne {
  border: 1px solid black;
} */

.demos .box {
  display: flex;
  flex-direction: column;
  height: 61vh;
  background-color: #ffffff;
  padding: 10px;
  /* box-shadow: 0px 0px 10px 0px #cecece; */
  margin: 15px 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
  border-radius: 5px;
}
/* .box:hover {
  margin: 10px 0px 20px;
} */

.demos .box p {
  /* padding: 20px; */
  font-size: 18px;
  text-align: justify;
}

.demos .preview {
  overflow: hidden;
  height: 170px;
  position: relative;
  /* border: 1px solid #e9e9e9; */
}
.demos .preview img {
  width: 100%;
  height: auto;
  transform: scale(1);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  transition: 0.7s ease-in-out;
}

.demos .preview img:hover {
  transform: scale(1.1);
}

.demos .preview .viewDemo {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -ms-transition: all 0.4s ease;
  transition: all 0.4s ease;
}
.demos .preview .viewDemo a {
  padding: 5px 15px;
  background-color: #2896f0;
  color: #fff;
  border-radius: 3px;
  font-weight: 600;
  border: 1px solid rgba(0, 0, 0, 0.185);
}
.demos .preview .viewDemo a:hover {
  color: #2896f0;
  background-color: #fff;
}
.demos .preview:hover .viewDemo {
  opacity: 1;
}

.demos .preview:hover img {
  transform: scale(1.1);
}
.demos h4 {
  text-align: center;
  margin: 5px 0;
}

.carousel-control-next, .carousel-control-prev {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #000000 !important;
  text-align: center;
  background: 0 0;
  border: 0;
  opacity: .5;
  transition: opacity .15s ease;
}

#main {
  padding-top: 6em;
}

#main .ofertaLato {
  padding-left: 0;
}

#main .ofertaLato li {
  padding: 0.5em;
  font-size: 20px;
}

#main .bottomSpace {
  padding-bottom: 0.5em;
}

#main #detailz::after {
  content: "";
  /* right: 0; */
}

#main #detailz:hover::after {
  right: 0;
}

.about {
  position: relative;
  padding: 100px 0;
  width: 100%;
}

.about .onas {
  margin-top: 0;
  padding-top: 0;
  text-align: justify;
  font-size: 22px;
  line-height: 2;
}

.about .onas .boldSpan {
  font-weight: bold;
}

.about .onas a.wiecej {
  font-size: 14px;
  color: #2896f0;
  text-decoration: none;
}

.about .onas a.wiecej:hover {
  color: #1b83d8;
  text-decoration: underline;
}

.about img.onasimg {
  /* margin-left: 100px; */
  width: 200px;
  height: 200px;
}

.about .onasbox {
  margin-top: 3em;
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  align-items: center;
}

.about .onasbox h2 {
  text-align: center;
}

span.more {
  display: inline-block;
  margin-left: 0.5em;
  color: #0063b4;
  font-size: 0.8em;
  text-decoration: none;
  transition: 0.1s ease-in-out;
}

span.more:hover {
  font-weight: bold;
}

.gallery {
  min-height: 100vh;
  width: 100%;
  padding: 100px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}

.gallery_grid {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-auto-rows: 150px;
  grid-auto-flow: row dense;
  padding-left: 0;
}

ul.gallery_grid li {
  border-radius: 15%;
}

ul.gallery_grid li a {
  display: block;
  width: 100%;
  height: 100%;
  list-style-type: none;
  padding: 5px;
  background-color: #fff;
  border-radius: 15%;
  box-shadow: 0.3px 0.5px 0.7px hsl(0deg 0% 0% / 0.36),
    0.8px 1.6px 2px -0.8px hsl(0deg 0% 0% / 0.36), 2.1px 4.1px 5.2px -1.7px hsl(0deg 0% 0% / 0.36),
    5px 10px 12.6px -2.5px hsl(0deg 0% 0% / 0.36);
  overflow: hidden;
}

.gallery_grid li:nth-child(2),
.gallery_grid li:nth-child(4),
.gallery_grid li:nth-child(6) {
  grid-column: span 2;
  grid-row: span 2;
  border-radius: 15%;
}

.gallery_grid li a img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15%;
  transform: scale(1);
  transition: 0.7s;
}

.gallery_grid li img:hover {
  transform: scale(1.1);
}

#contact {
  padding: 50px;
  background-color: #303030;
  color: #cecece;
}

#contact h2 {
  color: #cecece;
}

.fa-envelope,
.fa-facebook-square {
  color: #008cff;
  margin-right: 10px;
  font-size: 20px;
}

.fa-file-word {
  font-size: 30px;
  padding-right: 15px;
}

.address_data {
  font-size: 20px;
}

.address_data a {
  text-decoration: none;
  color: #cecece;
}

.address_data a:hover {
  color: #008cff;
}

.documents {
  margin-top: 0;
}

.documents li {
  padding: 10px 0;
  font-size: 22px;
}

.documents li:hover i.far {
  color: #f89696;
}

.documents li a,
.documents li a:visited {
  color: #008cff;
}

/* integration.html styles */
#integration ul {
  padding-left: 1rem;
  text-align: center;
  font-size: 16px;
}

/* summer.html styles */
#summer {
  padding: 100px;
}

#summer p {
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
}

.zeroMargin {
  padding: 0;
  margin: 0;
  font-size: 16px;
}

/* winter.html */
#winter {
  padding: 100px;
}

#winter #winterLeft {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 300px;
  height: auto;
  transform: rotate(-5deg);
  z-index: 5;
}

#winter #winterLeft img {
  width: 100%;
  height: auto;
  z-index: 3;
  position: relative;
}

#winter #winterLeft img:nth-child(2) {
  width: 140%;
  height: auto;
  z-index: 2;
  top: -15rem;
  left: 0;
  transform: rotate(4deg);
  opacity: 0.7;
}

#winter #winterRight {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  position: absolute;
  top: 30%;
  right: 10%;
  width: 400px;
  height: 400px;
  transform: rotate(5deg);
  padding-bottom: 2em;
  box-shadow: 0 0 6px black;
}

#winter #winterRight img {
  width: 100%;
  height: 100%;
  z-index: 3;
  object-fit: cover;
  position: relative;
}

#winter #winterRight h5 {
  /* padding-top: 1em; */
  color: #2c2c2c;
}

/* onas.html styles */
#onas {
  padding: 100px;
}

#onas p {
  font-size: 18px;
  text-align: justify;
  line-height: 1.7;
}

#integration {
  padding: 100px;
}

/* partners html */

section#partners {
  position: relative;
  height: calc(100vh - 28px) !important;
}

#partners .container {
  padding-top: 63px;
  height: 100%;
}

section#partners .thumbnail {
  width: 250px;
  height: 150px;
  padding: 0 0 15px 0;
  border: none;
  border-radius: 0;
}
section#partners .thumbnail img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
  margin-bottom: 10px;
}

section#partners .partnerCard {
  height: 400px;
  width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  color: #303030;
  padding: 1em;
  /* box-shadow: rgba(255, 255, 255, 0.1) 0px 1px 1px 0px inset, rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px; */
  /* border: 1px solid black; */
}

section#partners .partnerCard a {
  color: #0063b4;
  text-decoration: none;
  font-weight: 600;
  padding-bottom: 1em;
}

section#partners .partnerCard a:hover {
  text-decoration: underline;
}

/* section#partners footer {
  position: absolute;
  left: 0;
  bottom: -28px;
  width: 100%;
} */

footer {
  text-align: center;
  background-color: #000000;
  color: #cecece;
  padding: 2px 0;
}

footer i {
  color: red;
}

footer a {
  text-decoration: none;
  color: orangered;
}

footer a:hover {
  text-decoration: none;
}

.carousel-item p {
  font-size: calc(1rem + .1vw) !important;
  margin-bottom: 0;
}

.carousel_font {
 font-size: calc(1.3rem + .6vw) !important;
 margin-bottom: 0;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

@media (min-width: 768px) and (max-width: 991px) {
  .demos .preview img {
    height: 100%;
    width: auto;
  }

  section h2.winterH2::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 0.25em;
    background-color: #008cff;
    display: none;
  }
}

/* @media (max-width:990px) {
  section#partners {
    min-height: 130% !important;
  }
} */

@media (max-width: 600px) {
  section {
    padding: 5px;
  }

  .logo h6 {
    display: none;
  }

  .container {
    padding-left: 0;
    padding-right: 0;
  }

  .demos {
    padding: 100px 0;
    background-color: #ffffff;
  }

  .demos .box {
    height: 100%;
  }

/* Carousel */
#demo .carousel {
  padding-bottom: 1em;
}

.carousel_font {
  font-size: calc(1rem + .6vw) !important;
 }

 .carousel-item p {
  font-size: calc(1rem + .1vw) !important;
  margin-bottom: 0;
}

 .carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: .25rem;
  padding-bottom: 1rem;
  color: #fff;
  text-align: center;
}

  #navbarSupportedContent {
    padding: 0;
    margin: 0;
    margin-top: 10px;
    background-color: #000000;
    text-align: center;
  }

  #navbarSupportedContent .nav-link {
    color: #008cff;
    padding: 15px 0;
    text-transform: uppercase;
  }

  #navbarSupportedContent .nav-link:hover {
    color: #58b4ff;
  }

  .row {
    margin-left: 0px;
    margin-right: 0px;
  }

  .banner {
    min-height: 100%;
  }

  .banner .container {
    margin-top: 65px;
    height: 100%;
  }

  .banner .bannerText {
    padding: 10px;
  }

  .banner h1 {
    display: none;
    font-size: 12vw;
  }

  .banner .bannerHoliday {
    padding: 15px;
  }

  .banner .bannerHoliday h3 {
    font-size: 14px;
  }

  .banner .bannerHoliday .fa-snowflake {
    font-size: 20px;
    padding: 5px;
  }

  section h2.winterH2::before {
    content: "";
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    width: 270px;
    height: 0.25em;
    background-color: #008cff;
    display: none;
  }

  .summerMask {
    width: 50px;
    height: auto;
    position: absolute;
    right: 5%;
    top: 5%;
    /* font-size: 5vw; */
    opacity: 0.8;
  }
  
  .summerSun {
    width: 50px;
    height: auto;
    position: absolute;
    left: 5%;
    top: 5%;
    transform: rotate(-25deg);
    opacity: 0.5;
    z-index: 1;
  }

  #main .ofertaLato li {
    padding: 0.5em;
    font-size: 18px;
  }

  .about .onas {
    text-align: justify;
    font-size: 16px;
    line-height: 1.5;
  }

  /* .gallery {
    padding: 0;
  } */

  .gallery_grid {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    grid-auto-rows: 150px;
    grid-auto-flow: row dense;
    padding-left: 0;
  }

  #contact {
    padding: 50px 0;
  }

  #contact ul {
    padding-left: 0;
  }

  #contact .documents {
    margin-top: 2em;
  }

  #summer,
  #integration,
  #onas {
    padding: 100px 0 0 0;
  }

  #summer .col-md-6 {
    border-bottom: none !important;
  }

  #winter {
    min-height: calc(100vh - 28px);
    padding: 100px 0 0 0;
  }

  #winter #winterLeft {
    display: none;
  }

  #winter #winterRight {
    display: none;
  }

  #winter .fa-snowman {
    display: none;
  }

  #integration ul {
    padding-left: 0;
  }

  /* .gallery {
    display: grid;
    grid-template-columns: repeat(4, 18vw);
    grid-template-rows: repeat(8, 18vw);
    gap: 1rem;
    margin: 0;
    padding: 0;
  } */
  /* section#partners {
    min-height: 180% !important;
  } */

  section#partners .partnerCard {
    height: 350px;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #303030;
    border-bottom: 1px solid black;

    /* border: 1px solid black; */
  }
}

@media (max-width: 321px) {
  /* .banner {
    height: 100%;
  } */
  #main {
    /* height: 100vh; */
    padding-top: 4em;
  }

  #main .ofertaLato li {
    padding: 0.3em;
    font-size: 16px;
  }
}

#dokumenty {
  display: flex;
  justify-content: center;
  align-items: center;
  /* background: #aa4b6b; 
background: -webkit-linear-gradient(to right, #3b8d99, #6b6b83, #aa4b6b);
background: linear-gradient(to right, #3b8d99, #6b6b83, #aa4b6b); 
background: #8360c3;
background: -webkit-linear-gradient(to right, #2ebf91, #8360c3);
background: linear-gradient(to right, #2ebf91, #8360c3); 
background: #00B4DB;
background: -webkit-linear-gradient(to right, #0083B0, #00B4DB);
background: linear-gradient(to right, #0083B0, #00B4DB);  
 */
}

#dokumenty .dokuRound {
  border-radius: 5px;
}

@media (max-width: 500px) {
  #dokumenty {
    margin-top: 80px;
  }

  #dokumenty ul.documents {
    padding-left: 0;
  }

  #dokumenty .dokuRound {
  border-radius: 0;
}
}

#dokumenty img {
  max-width: 100%;
  padding: 1rem;
}

  span#dokuLink {
    color: #0085f1;
    transition: 0.4s;
  }

    span#dokuLink:hover {
      color: #000000;
    }