/* RESET */
html,
body {
  overflow-x: hidden;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

/* COLOURS */
:root {
  --sea: rgb(89, 181, 170);
  --olive: rgb(192, 223, 163);
  --brown: rgb(78, 27, 24);
  --beige: rgb(250, 240, 225);
  --orange: rgb(242, 163, 70);
  --honey: rgb(254, 194, 69);
}

.white {
  background-color: white;
}

.sea {
  background-color: var(--sea);
}

.sea-text {
  color: var(--sea);
  text-decoration: underline;
}

.beige {
  background-color: var(--beige);
}

.olive {
  background-color: var(--olive);
}

.honey {
  background-color: var(--honey);
}

/* TEXT */

p,
select {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--brown);
  line-height: 150%;
}

a {
  text-decoration: none;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--orange);
}

.button,
.scroll {
  display: inline-block;
  color: white;
  background-color: var(--honey);
  padding: 8px 24px;
  margin-top: 20px;
  border-radius: 24px;
  transition: 0.25s;
}

.button:hover {
  background-color: var(--orange);
}

h1 {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--brown);
}

h2 {
  font-family: "Ubuntu", sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--brown);
}

h3 {
  font-family: "Roboto", sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: var(--brown);
}

h4 {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: var(--brown);
}

.light {
  font-weight: 300;
  font-size: 14px;
}

/* WRAPPER */

.wrapper {
  padding: 0 50px;
  height: 100%;
  width: 100%;
  position: relative;
}

.wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1280px;
  height: 100%;
  position: relative;
}

.p-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

@media (max-width: 1023px) {
  .p-100 {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .p-50 {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .wrapper {
    padding: 0 20px;
  }
}

/* UP */

.up {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  background-color: var(--honey);
  width: 32px;
  height: 32px;
  transition: 0.25s;
  z-index: 100;
}

.up i {
  display: block;
  line-height: 32px;
  text-align: center;
  color: white;
  font-size: 20px;
}

.up:hover {
  background-color: var(--orange);
}

@media (max-width: 767px) {
  .up {
    right: 20px;
    bottom: 20px;
  }
}

/* MENU */

body {
  padding-top: 80px;
  overflow-x: hidden;
}

menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  border-bottom: 1px solid var(--beige);
  /* overflow: hidden; */
}

menu li {
  list-style-type: none;
}

nav {
  display: grid;
  height: 100%;
  grid-auto-flow: column;
  margin-left: auto;
  margin-right: auto;
  max-width: 1380px;
  padding: 0 50px;
  gap: 16px;
}

.nav-logo {
  display: grid;
  align-items: center;
  justify-content: start;
}

.nav-logo a {
  display: grid;
}

.nav-logo img {
  height: 40px;
}

.nav-link {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: center;
}

.nav-link a {
  color: var(--brown);
  transition: 0.25s;
  margin: 0 5px;
}

.nav-link a:hover {
  color: var(--orange);
}

.nav-social {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  justify-content: end;
}

.nav-social a {
  border-radius: 50%;
  background-color: var(--honey);
  width: 32px;
  height: 32px;
  transition: 0.25s;
}

.nav-social a:hover {
  background-color: var(--orange);
}

.nav-social a i {
  display: block;
  line-height: 32px;
  text-align: center;
  color: white;
  font-size: 20px;
}

.nav-social a:nth-of-type(2) i {
  font-size: 14px;
}

.nav-social a:nth-of-type(2) {
  margin-left: 10px;
}

.nav-social a:nth-of-type(3) {
  margin-left: 10px;
}

.nav-social a:nth-of-type(4) {
  margin-left: 10px;
}

.plates {
  display: none;
}

.burger,
.x,
div.plate.plate1 {
  filter: none;
  width: 60px;
  margin-left: -2px;
  margin-right: -16px;
}

.line {
  stroke: var(--brown);
}

/* @media (max-width: 1023px) {
    nav {
        grid-template-columns: auto auto;
        grid-template-rows: auto auto;
        background-color: white;
        padding: 0 20px;
    }

    .nav-link {
        width: 100%;
        justify-content: start;
        padding-bottom: 5px;
    }
} */

@media (max-width: 1023px) {
  nav {
    grid-template-columns: auto auto;
    grid-template-rows: auto;
    background-color: white;
    padding: 0 20px;
  }

  .nav-logo {
    z-index: 50;
  }

  .nav-logo img {
    width: 100%;
    max-height: 45px;
  }

  .nav-link {
    position: absolute;
    bottom: 0;
    left: 0;
    grid-auto-flow: row;
    width: 100%;
    justify-content: stretch;
    z-index: -1;
    transition: 0.4s;
  }

  .nav-link.open {
    transform: translatey(100%);
  }

  .plates {
    display: block;
  }

  .nav-link li {
    margin: 0;
    text-align: center;
    border-top: 1px solid var(--beige);
    background-color: white;
  }

  .nav-link a {
    display: block;
    padding: 10px 20px;
    width: 100%;
    height: 100%;
  }

  .nav-link li:hover {
    background-color: var(--beige);
    color: var(--brown);
  }
}

@media (max-width: 400px) {
  .nav-social a {
    border-radius: 50%;
    background-color: var(--honey);
    width: 28px;
    height: 28px;
    transition: 0.25s;
  }

  .nav-social a i {
    display: block;
    line-height: 28px;
    text-align: center;
    color: white;
    font-size: 18px;
  }
}

/* SLIDER */

.sliders {
  overflow-x: hidden;
}

.swiper-container-slider {
  overflow: hidden;
}

.sliders .swiper-slide {
  height: 600px;
  width: 100%;
}

.slider-text {
  width: 400px;
  height: 400px;
  padding: 50px 100px 0 50px;
  display: grid;
  align-content: center;
  justify-items: start;
  background-color: rgba(250, 240, 225, 0.8);
  border-top-right-radius: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.slider-text p {
  color: var(--brown);
}

.slider-text h2 {
  color: var(--brown);
}

.swiper-container-slider .swiper-slide {
  overflow: hidden;
}

.swiper-container-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  object-fit: cover;
}

.swiper-pagination-bar-slider {
  width: 140px;
  height: 140px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  background-color: var(--sea);
  border-top-left-radius: 100%;
}

.swiper-pagination-slider.swiper-pagination-clickable.swiper-pagination-bullets {
  position: absolute;
  bottom: 36px;
  right: 18px;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 6px;
  display: inline-block;
  background-color: white;
  opacity: 1;
  transition: 0.25s;
}

.swiper-pagination-bullet:hover {
  background-color: var(--orange);
}

.swiper-pagination-bullet-active {
  background-color: var(--honey);
  opacity: 1;
}

@media (max-width: 767px) {
  .sliders .swiper-slide {
    height: 430px;
  }

  .swiper-container-slider .swiper-slide img {
    width: 100%;
    object-position: top;
  }

  .slider-text {
    width: 300px;
    height: 300px;
    padding: 20px 100px 0 15px;
  }

  .slider-text h2 {
    font-size: 28px;
  }

  .swiper-pagination-bar-slider {
    width: 120px;
    height: 120px;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: var(--sea);
    border-top-left-radius: 100%;
    transform: translateX(20px);
  }

  .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 4px;
  }

  .swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets {
    position: absolute;
    bottom: 30px;
  }
}

/* TESTIMONIALS */

.testimonials .wide,
.recomendations .wide {
  overflow-x: hidden;
}

.testimonials h2,
.recomendations h2 {
  text-align: center;
}

.cloud {
  height: auto;
  width: 100%;
  padding: 50px 50px 75px;
  display: grid;
  align-content: space-between;
  background-color: white;
  border-radius: 50px;
  position: relative;
}

.cloud-reverse {
  background-color: var(--beige);
}

.groups .cloud {
  padding: 30px 30px 50px;
}

.cloud li a {
  color: var(--brown);
  text-decoration: underline;
}

.testimonials .cloud,
.recomendations .cloud {
  padding-top: 75px;
}

@media (max-width: 1023px) {
  .testimonials .cloud,
  .recomendations .cloud {
    padding: 75px 30px;
  }
}

.swiper-pagination-testimonial,
.swiper-pagination-recomendation {
  padding-top: 50px;
  text-align: center;
}

.quote p {
  font-size: 16px;
  margin-bottom: 20px;
  font-style: italic;
  font-weight: 400;
}

.author {
  color: var(--honey);
  font-weight: 700;
}

.stanowisko {
  font-size: 14px;
  font-weight: 700;
  color: var(--brown);
}

.swiper-slide:nth-of-type(odd) .author {
  color: var(--sea);
}

.apostrophe {
  position: absolute;
  width: 25px;
  height: 25px;
  border-bottom-right-radius: 100%;
}

.apostrophe:nth-of-type(1) {
  bottom: 25px;
  left: 50px;
}

.apostrophe:nth-of-type(2) {
  bottom: 25px;
  left: 80px;
}

.apostrophe:nth-of-type(3) {
  right: 50px;
  top: 25px;
}

.apostrophe:nth-of-type(4) {
  right: 80px;
  top: 25px;
}

.swiper-slide:nth-of-type(even) .apostrophe:nth-of-type(1),
.swiper-slide:nth-of-type(even) .apostrophe:nth-of-type(2) {
  background-color: var(--honey);
}

.swiper-slide:nth-of-type(even) .apostrophe:nth-of-type(3),
.swiper-slide:nth-of-type(even) .apostrophe:nth-of-type(4) {
  background-color: var(--orange);
}

.swiper-slide:nth-of-type(odd) .apostrophe:nth-of-type(1),
.swiper-slide:nth-of-type(odd) .apostrophe:nth-of-type(2) {
  background-color: var(--sea);
}

.swiper-slide:nth-of-type(odd) .apostrophe:nth-of-type(3),
.swiper-slide:nth-of-type(odd) .apostrophe:nth-of-type(4) {
  background-color: var(--olive);
}

/* ABOUT  */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 50px;
  column-gap: 100px;
  grid-template-areas:
    "corner-top-left corner-top-right"
    "mission video"
    "corner-bottom-left corner-bottom-right";
  color: var(--brown);
}

.about h3 {
  color: var(--sea);
}

.mission {
  width: 100%;
  grid-area: mission;
}

.video {
  width: 100%;
  grid-area: video;
  height: auto;
  min-height: 300px;
  max-height: 400px;
  object-position: top;
  object-fit: cover;
}

.video {
  place-self: stretch stretch;
  overflow: hidden;
}

.corner {
  display: block;
  height: 50px;
  width: 50px;
  color: black;
  content: "";
}

.corner.top-left {
  background-color: var(--honey);
  border-bottom-right-radius: 100%;
}

.corner.bottom-left {
  background-color: var(--orange);
  border-top-left-radius: 100%;
  place-self: end;
}

.corner.top-right {
  background-color: var(--olive);
  border-bottom-right-radius: 100%;
}

.corner.bottom-right {
  background-color: var(--sea);
  border-top-left-radius: 100%;
  place-self: end;
}

@media (max-width: 1023px) {
  .about {
    column-gap: 50px;
  }
}

@media (max-width: 767px) {
  .about {
    display: grid;
    grid-template-columns: 100%;
    grid-auto-flow: row;
    row-gap: 50px;
    grid-template-areas:
      "corner-top-left"
      "mission"
      "video"
      "corner-bottom-left";
  }

  .video {
    height: 200px;
  }

  .corner.top-right,
  .corner.bottom-right {
    display: none;
  }
}

/* OFFER */

.offers {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  column-gap: 50px;
  row-gap: 100px;
  color: var(--brown);
}

.offer {
  align-content: space-between;
  display: grid;
  text-align: center;
}

.offer img {
  width: 100%;
  height: 250px;
  object-fit: contain;
}

.title-text i {
  color: var(--honey);
  width: 20px;
}

.title-text p a,
.contact .info a {
  color: var(--brown);
  text-decoration: underline;
  font-weight: normal;
}

@media (max-width: 1023px) {
  .offers {
    grid-template-columns: 1fr 1fr;
    column-gap: 100px;
  }
}

@media (max-width: 767px) {
  .offers {
    grid-template-columns: 1fr;
    row-gap: 50px;
  }

  .offer {
    justify-items: center;
    text-align: center;
  }
}

/* TEAM */

.team {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-flow: row;
  column-gap: 50px;
  row-gap: 100px;
  color: var(--brown);
}

.member:nth-child(1) {
  grid-column-start: 1;
  grid-column-end: 3;
}

.member:nth-child(2) {
  grid-column-start: 3;
  grid-column-end: 5;
}

.member .thumbnail {
  position: relative;
  width: 100%;
  height: 170px;
}

.member:nth-child(1) .thumbnail,
.member:nth-child(2) .thumbnail {
  height: 220px;
}

.member .thumbnail img {
  position: absolute;
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  overflow: hidden;
  top: 0;
  left: 50%;
  transform: translatex(-50%);
}

.member:nth-child(1) img,
.member:nth-child(2) img {
  width: 200px;
  height: 200px;
  filter: saturate(0) sepia(0.2) hue-rotate(-20deg) brightness(1.2)
    contrast(0.8);
}

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

.member h4 {
  color: var(--honey);
  margin-bottom: 10px;
}

.member .thumbnail .corner {
  position: absolute;
  height: 95px;
  width: 95px;
  transform: translate(-95px, -20px);
  border-top-left-radius: 100%;
  left: 50%;
}

.member:nth-of-type(1) .thumbnail .corner,
.member:nth-of-type(2) .thumbnail .corner {
  height: 120px;
  width: 120px;
  transform: translate(-120px, -20px);
}

.member:nth-of-type(odd) .thumbnail .corner {
  background-color: var(--sea);
}

.member:nth-of-type(even) .thumbnail .corner {
  background-color: var(--olive);
}

.member:nth-of-type(1) .thumbnail .corner {
  background-color: var(--honey);
}

.member:nth-of-type(2) .thumbnail .corner {
  background-color: var(--orange);
}

@media (max-width: 1023px) {
  .team {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }

  .member:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 3;
  }
}

@media (max-width: 767px) {
  .team {
    grid-template-columns: 1fr;
  }

  .member:nth-child(1),
  .member:nth-child(2) {
    grid-column-start: 1;
    grid-column-end: 2;
  }
}

/* TITLE */

.title-container {
  height: 550px;
}

.title-container-small {
  height: 460px;
}

.title-container h1 {
  color: var(--brown);
  font-size: 40px;
}

.title-container {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 50px;
  grid-template-rows: 100%;
}

.title-text {
  place-self: center;
}

.title-text {
  place-self: center start;
  margin: 50px 0;
}

.title-info {
  display: grid;
}

.title-image {
  width: 100%;
  height: 100%;
  text-align: right;
}

.title-image.yt {
  display: grid;
}

.title-image img {
  object-fit: contain;
  height: 100%;
}

.title-container p {
  color: var(--brown);
}

@media (max-width: 767px) {
  .title-container {
    height: unset;
    gap: 20px;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    grid-template-areas:
      "first"
      "second";
  }

  .title-image {
    grid-area: first;
    text-align: left;
  }

  .title-image img {
    width: 180px;
    height: 180px;
  }

  .title-info {
    grid-area: second;
  }

  .title-text {
    margin: 0;
  }

  .title-container h1 {
    font-size: 32px;
  }

  .title-image.yt {
    display: block;
  }
}

.advice {
  margin: 0 auto;
}

.advice {
  text-align: center;
}

.poradnik .groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 75px;
}

.kids .groups {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  column-gap: 50px;
  row-gap: 75px;
}

.parents .groups h2 {
  margin-bottom: 20px;
}

.parents .groups {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 50px;
  row-gap: 50px;
}

.group .group-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
}

.group .price {
  font-weight: 700;
  margin-top: 30px;
}

.group .button {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.group ul li {
  text-decoration: none;
  font-family: "Roboto";
  color: var(--brown);
  margin-bottom: 10px;
}

.group ul li::marker {
  width: 18px;
  height: 18px;
}

.group span {
  display: inline-block;
  background-color: var(--sea);
  width: 8px;
  height: 8px;
  border-radius: 100%;
  margin-right: 10px;
}

@media (max-width: 1023px) {
  .kids .groups {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .kids .groups,
  .parents .groups,
  .poradnik .groups {
    grid-template-columns: 100%;
    row-gap: 50px;
  }
}

/* FOOTER */

footer .info {
  padding-top: 50px;
}

.wrapper.sea {
  overflow: hidden;
  position: relative;
}

.wrapper.sea img.logo {
  height: 300px;
  position: absolute;
  top: 50%;
  right: 50px;
  transform: translatey(-50%);
}

footer h2 {
  color: white;
  padding-bottom: 10px;
}

footer .info a {
  color: white;
  text-decoration: underline;
  font-size: 14px;
  font-weight: 300;
}

footer i {
  color: var(--honey);
  width: 20px;
}

footer p {
  color: white;
  line-height: 150%;
}

footer p a {
  text-decoration: underline;
  color: white;
}

.pattern {
  height: 80px;
  position: relative;
  overflow: hidden;
}

.pattern img {
  display: block;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 1023px) {
  .wrapper.sea img.logo {
    height: 200px;
  }
}

@media (max-width: 767px) {
  .wrapper.sea img.logo {
    display: none;
  }
}

/* KONTAKT */

.contact {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}

.contact h2 {
  margin-bottom: 30px;
}

.hide {
  width: 100%;
  height: 480px;
  margin-bottom: 50px;
  border: 2px solid var(--honey);
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.hide iframe {
  position: absolute;
  top: -67px;
  left: 0;
  border: none;
  width: 100%;
  height: calc(100% + 67px);
  z-index: 1;
}

.contact i {
  color: var(--honey);
  width: 20px;
  line-height: 150%;
}

@media (max-width: 1023px) {
  .contact {
    grid-auto-flow: row;
    gap: 50px;
  }
}

@media (max-width: 767px) {
  .contact {
    grid-template-columns: 100%;
  }

  .hide {
    height: 320px;
  }

  .contact .info {
    order: -1;
  }
}

/* FORMULARZ */

label {
  font-size: 14px;
  margin-bottom: 14px;
  display: block;
  padding-left: 10px;
  font-weight: 500;
}

label input,
.wpcf7-select {
  width: 100%;
  height: 32px;
  border-radius: 100px;
  font-family: "roboto", arial, sans-serif;
  font-size: 16px;
  line-height: 32px;
  margin-top: 4px;
  border: none;
  padding-left: 10px;
  margin-left: -10px;
  appearance: none;
  -webkit-appearance: none;
  background-color: white;
}

.wpcf7-select {
  background-image: url(../img/down-arrow.svg);
  background-repeat: no-repeat;
  background-size: 12px 12px;
  background-position: calc(100% - 10px) center;
}

label textarea {
  width: 100%;
  height: 80px;
  max-height: 200px;
  min-height: 32px;
  border-radius: 100px;
  font-family: "roboto", arial, sans-serif;
  font-size: 16px;
  padding-top: 6px;
  padding-left: 10px;
  margin-top: 4px;
  margin-left: -10px;
  border: none;
  border-radius: 16px;
  resize: vertical;
}

input[type="submit"],
.wpcf7-submit {
  display: inline-block;
  color: white;
  background-color: var(--honey);
  padding: 8px 24px;
  margin-top: 20px;
  border-radius: 24px;
  transition: 0.25s;
  font-family: "roboto", arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
}

.wpcf7-submit:hover {
  background-color: var(--orange);
}

.wpcf7-submit:hover {
  background-color: var(--orange);
}

::-webkit-input-placeholder {
  color: #ccc !important;
  opacity: 1;
  font-weight: 300;
}

:-moz-placeholder {
  color: #ccc !important;
  opacity: 1;
  font-weight: 300;
}

::-moz-placeholder {
  color: #ccc !important;
  opacity: 1;
  font-weight: 300;
}

:-ms-input-placeholder {
  color: #ccc !important;
  opacity: 1;
  font-weight: 300;
}

form a {
  color: var(--brown);
  font-weight: 400;
  text-decoration: underline;
  font-size: 12px;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
input[type="submit"],
.input-checkbox {
  --webkit-appearance: none;
}

.wpcf7-response-output {
  font-family: "roboto", arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  border: none !important;
  border-radius: 20px !important;
  width: calc(100% - 30px) !important;
  margin: 20px 0 !important;
  padding: 0 !important;
  position: relative !important;
  margin-left: 24px !important;
}

.wpcf7-not-valid-tip {
  font-family: "roboto", arial, sans-serif !important;
  color: rgb(220, 50, 50) !important;
  font-size: 12px !important;
  margin-top: 4px !important;
  font-weight: 700 !important;
}

.wpcf7-not-valid {
  border: 1px solid rgb(220, 50, 50) !important;
}

form.invalid .wpcf7-response-output {
  color: rgb(220, 50, 50) !important;
}

form.sent .wpcf7-response-output {
  color: var(--brown) !important;
}

form.invalid .wpcf7-response-output::before,
form.sent .wpcf7-response-output::before {
  position: absolute;
  left: -24px;
  top: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  transform: translateY(-50%);
}

form.invalid .wpcf7-response-output::before {
  content: "\f00d";
}

form.sent .wpcf7-response-output::before {
  content: "\f00c";
}

::-webkit-calendar-picker-indicator {
  background-image: url(../img/down-arrow.svg);
  transform: scale(0.65);
  margin-right: 3px;
}

.wpcf7-list-item {
  margin: 0 !important;
}

.wpcf7-not-valid {
  border: none !important;
}

.small {
  font-size: 12px;
  font-weight: 400;
  margin-top: 5px;
}

/* PORADNIK */

.poradnik .group img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-top-right-radius: 50px;
  border-top-left-radius: 50px;
}

.camps .poradnik .group img {
  object-position: left center;
}

.poradnik .cloud {
  padding: 225px 30px 50px;
}

.single-poradnik h1 {
  margin-bottom: 30px;
}

.poradnik .cloud p {
  margin-top: 10px;
}

.single-poradnik img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
  filter: brightness(1.1) contrast(1.1);
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
}

.single-poradnik .grid {
  display: grid;
  grid-template-columns: auto 30%;
  column-gap: 100px;
  row-gap: 50px;
}

.single-poradnik .left p {
  text-align: justify;
}

.single-poradnik .right {
  border-left: solid var(--honey) 2px;
  padding-left: 100px;
}

.single-poradnik .right p {
  margin-top: 10px;
  font-weight: 500;
  transition: 0.25s;
}

.single-poradnik .right p:hover {
  color: var(--honey);
}

.single-poradnik h3 {
  margin-top: 10px;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .single-poradnik .wrapper:first-of-type {
    padding: 0;
  }

  .single-poradnik img {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .single-poradnik .grid {
    grid-template-columns: 100%;
  }

  .single-poradnik .right {
    padding-left: 50px;
  }
}

@media (max-width: 767px) {
  .single-poradnik img {
    height: 300px;
  }

  .single-poradnik .right {
    padding-left: 20px;
  }
}

/* POLITYKA */

.page ol li,
.page ul li,
.page .wide ul li,
.page .wide ul li {
  font-family: "Roboto", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: var(--brown);
  text-align: justify;
}

.wide ul li {
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--brown);
  line-height: 150%;
}

.page ol li {
  margin-left: 20px;
  margin-bottom: 10px;
}

.page ul li {
  margin-left: 10px;
  list-style-type: disc;
}

.page ul li:first-child {
  margin-top: 10px;
}

.page ul li a {
  font-weight: 400;
  color: var(--brown);
  text-decoration: underline;
}

/* COOKIES */

#simplecookienotification_v01 {
  position: fixed;
  width: 200px;
  height: 200px;
  border-top-right-radius: 200px;
  bottom: 0;
  left: 0;
  padding: 0 0 20px 20px;
  z-index: 3;
  background-color: var(--sea);
  display: grid;
  align-items: end;
  justify-content: start;
}

#simplecookienotification_v01 p {
  color: white;
  font-weight: 500;
  font-size: 14px;
}

#simplecookienotification_v01 .button {
  padding: 6px 20px;
  margin-top: 10px;
  border-radius: 20px;
  font-size: 14px;
}

#simplecookienotification_v01_polityka {
  color: white;
  text-decoration: underline;
  font-weight: 300;
  font-size: 12px;
}

#simplecookienotification_v01 i {
  color: white;
  margin-bottom: 10px;
  font-size: 20px;
}

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

.sponsor img {
  height: 50px;
  margin-top: 30px;
  display: inline-block;
}

.sponsor .p-100 {
  padding-top: 0;
}

/* GALLERY */

.gallery {
  text-align: center;
  margin: 0 auto;
}

.gallery h2 {
  color: white;
}

.gallery-background {
  background-image: url(../img/gallery.jpg);
  background-repeat: no-repeat;
  background-position: right, bottom;
  background-size: cover;
}

.swiper-pagination-bullet:focus,
.swiper-pagination-bullet:hover,
.swiper-pagination-bullet:active .swiper-pagination-bullet {
  outline: none !important;
  border: none !important;
}

/* KOLONIE */

.polkolonie-background {
  background-image: url(../img/kolonie.jpg);
  background-repeat: no-repeat;
  background-position: right, bottom;
  background-size: cover;
}

.polkolonie-background p {
  color: white;
  font-size: 18px;
  font-weight: 300;
  max-width: 600px;
  text-align: center;
  margin: 0 auto;
}

textarea:focus,
input:focus {
  outline: none;
}

*:focus {
  outline: none;
}

.cooperations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto;
  gap: 40px;
  padding-top: 50px;
}

.cooperations div {
  width: 100%;
}

.cooperator img {
  display: block;
  width: 100%;
  height: auto;
}

.cooperator p {
  text-align: center;
  padding-top: 10px;
  color: #c7c7c7;
}

@media (max-width: 1024px) {
  .cooperations {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (max-width: 767px) {
  .cooperations {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .cooperator p {
    text-align: center;
    padding-top: 4px;
    font-size: 12px;
  }
}

.header-new {
  padding: 0 50px;
  width: 100%;
  position: relative;
  height: 650px;
}

.header-new__wide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
  height: 100%;
  position: relative;
}

.header-new__bcg {
  position: absolute;
  background-image: url(https://tenisovki.pl/wp-content/themes/Tenisovki/img/new-header-bgc.webp);
  background-position: right;
  right: calc(50% - 150px);
  left: 0;
  top: 0;
  bottom: 0;
  clip-path: polygon(0% 0%, calc(100% - 150px) 0%, 100% 100%, 0% 100%);

  z-index: 1;
}

.header-new__photo {
  position: absolute;
  left: calc(50% - 150px);
  right: 0;
  top: 0;
  bottom: 0;
}

.header-new__photo img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.header-new__text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translatey(-50%) rotate(-5deg);
  width: 40%;
  z-index: 2;
}

.header-new__text img {
  position: absolute;
}

.header-new__text .arrow {
  right: calc(100% + 50px);
  top: 100px;
  transform: rotate(6deg);
}

.header-new__text .star {
  left: 100%;
  top: 200px;
}

.header-new__text .heart-1 {
  left: 50%;
  top: calc(100% + 20px);
  transform: rotate(30deg);
}

.header-new__text .heart-2 {
  left: 100px;
  bottom: calc(100% + 40px);
  transform: rotate(10deg);
}

.header-new__text h1 {
  display: block;
  font-size: 50px;
  width: fit-content;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: -24px;
}

.header-new__text h1:last-of-type {
  margin-bottom: 14px;
}

.header-new__text h2 {
  font-family: "Patrick Hand";
}

.header-new__text ul {
  margin-left: 16px;
}

.header-new--mobile {
  display: none;
  background-color: var(--beige);
}

.header-new--mobile-white {
  background-color: var(--white);
}

@media (max-width: 1023px) {
  .header-new {
    display: none;
  }

  .header-new--mobile {
    display: block;
  }

  .header-new--mobile__photo {
    width: 100%;
    height: 400px;
  }

  .header-new--mobile__photo img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  .header-new--mobile__wide {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    background-image: url(https://tenisovki.pl/wp-content/themes/Tenisovki/img/new-header-bgc.webp);
    clip-path: polygon(0% 0%, 100% 5%, 100% 100%, 0% 95%);
    transform: translatey(-5%);
  }

  .header-new--mobile .header-new__text {
    position: relative;
    padding: 100px 30px;
    transform: rotate(-3deg);
    width: 100%;
    z-index: 2;
  }

  .header-new--mobile .header-new__text .arrow {
    display: none;
  }

  .header-new__text .star {
    right: 30px;
    left: unset;
    top: calc(100% - 100px);
  }

  .header-new__text .heart-1 {
    display: none;
  }

  .header-new__text .heart-2 {
    left: 50px;
    bottom: unset;
    top: 20px;
    transform: rotate(10deg);
  }

  .header-new__text h1 {
    font-size: 40px;
    padding: 12px;
    border-radius: 12px;
  }

  .header-new__text h2 {
    font-family: "Patrick Hand";
    font-size: 24px;
  }
}

.header-new--mobile .button,
.header-new .button {
  background-color: var(--brown);
  color: white;
}

.header-new--mobile .button:hover,
.header-new .button:hover {
  color: var(--brown);
  background-color: white;
}

.swiper-clubs-mobile {
  display: none;
}

@media (max-width: 1023px) {
  .swiper-clubs-mobile {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .swiper-clubs-desktop {
    display: none;
  }
}

.swiper-pagination-clubs-desktop,
.swiper-pagination-clubs-mobile {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}

@media (max-width: 767px) {
  .title-container-small {
    height: unset;
  }
}

.post-password-form p:first-child {
  font-size: 20px;
  margin-bottom: 16px;
}

.wpcf7-spinner {
  display: none;
}

iframe {
  border: none;
}

.cky-btn-revisit-wrapper {
  display: none !important;
}

.camp-image {
  width: 300px;
  height: 300px;
}

.camp-container {
  display: flex;
  justify-content: space-between;
}

.camp-container img {
  display: flex;
  justify-content: space-between;
}

.camp-info {
  text-align: left;
  width: 50%;
}

@media (max-width: 767px) {
  .camp-container {
    flex-direction: column-reverse;
  }

  .camp-image {
    height: 150px;
    width: 150px;
    margin-bottom: 20px;
  }

  .camp-info {
    width: 100%;
  }
}

/* Newest */

.header-newest {
  height: calc(100dvh - 80px);
  width: 100%;
  position: relative;
  background-image: url(https://tenisovki.pl/wp-content/themes/Tenisovki/img/new-header-bgc.webp);
  background-size: cover;
}

.header-newest__photo {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 200px 100%);
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  object-fit: cover;
}

.header-newest__content {
  height: 100%;
  display: grid;
  align-content: center;
  align-items: center;
  justify-items: start;
  gap: 24px;
  z-index: 2;
  position: relative;
}

.header-newest__header {
  margin-bottom: 24px;
  position: relative;
}

.header-newest__content h1 {
  display: block;
  font-size: 64px;
  width: fit-content;
  padding: 16px;
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: -24px;
}

.header-newest__content .button {
  margin-top: 0;
  background-color: var(--brown);
}

.header-newest__content h2 {
  font-family: "Patrick Hand";
  line-height: 100%;
}

.header-newest__desc {
  display: grid;
  grid-auto-flow: row;
  gap: 8px;
}

.header-newest__header .arrow {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translate(-100px, 50px);
}

.header-newest__header .heart {
  position: absolute;
  right: 0;
  top: -100px;
}

.header-newest__header .star {
  position: absolute;
  right: -100px;
  bottom: 0;
}

.header-newest__parent {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 1024px) {
  .header-newest__header .arrow {
    display: none;
  }

  .header-newest__content {
    align-content: end;
    padding-bottom: 40px;
  }

  .header-newest__content h1 {
    font-size: 40px;
    padding: 8px;
    border-radius: 8px;
    margin-bottom: -12px;
  }

  .header-newest__photo {
    clip-path: polygon(0% 0%, 100% 0%, 100% calc(100% - 100px), 0 100%);
    top: 0;
    right: 0;
    width: 100%;
    height: 50%;
  }
  .header-newest__parent {
    height: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }

  .header-newest iframe {
    order: -1;
  }

  .header-newest__content {
    gap: 8px;
  }

  .header-newest__content h2 {
    font-size: 24px;
  }
}

/* Home header */

.new-header {
  height: calc(100dvh - 80px);
  width: 100%;
  position: relative;
}

.new-header video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-header video::after {
  width: 100%;
  height: %;
  object-fit: cover;
}

.new-header .cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.new-header::after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.home .new-header::after {
  display: none;
}

.new-header__bottom {
  display: grid;
  gap: 48px;
  grid-auto-flow: row;
  position: absolute;
  bottom: 0px;
  left: 50%;
  z-index: 2;
  transform: translatex(-50%);
  align-items: center;
  width: 100%;
  padding: 48px 24px 64px 24px;
  justify-content: center;
}

.home .new-header__bottom {
  background-color: rgba(0, 0, 0, 0.25);
}

.new-header__top {
  position: absolute;
  top: 64px;
  left: 50%;
  z-index: 2;
  transform: translatex(-50%);
  max-width: calc(100% - 48px);
}

.new-header__bottom h1 {
  font-family: Ubuntu, sans-serif;
  font-size: 72px;
  font-weight: 700;
  text-align: center;
  color: white;
  line-height: 100%;
  margin: 0;
}

.home .new-header__bottom h1 {
  font-size: 96px;
}

.new-header__bottom__buttons {
  display: grid;
  grid-auto-flow: column;
  gap: 32px;
  align-items: center;
  justify-items: center;
  justify-content: center;
}

.new-header__button,
.new-header__button--alt {
  display: block;
  color: white;
  background-color: var(--honey);
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.25s;
  font-size: 24px;
  width: max-content;
  text-align: center;
}

.new-header__button:hover {
  background-color: var(--orange);
}

.new-header__button--alt {
  background-color: var(--sea);
  color: white;
}

.new-header__button--alt:hover {
  background-color: #22998b;
}

.new-header__search {
  display: grid;
  grid-auto-flow: column;
  align-items: center;
  gap: 24px;
  color: white;
  padding: 12px 32px;
  border-radius: 50px;
  transition: 0.25s;
  font-size: 24px;
  width: max-content;
  text-align: center;
  border: white solid 2px;
}

.new-header__search img {
  display: block;
  height: 24px;
}

@media (max-width: 1024px) {
  .new-header__bottom__buttons {
    grid-auto-flow: row;
  }

  .new-header__bottom {
    gap: 32px;
    padding-bottom: 24px;
    padding-top: 24px;
  }
}

@media (max-width: 767px) {
  .new-header__bottom__buttons {
    gap: 16px;
  }

  .new-header__button,
  .new-header__button--alt {
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.25s;
    font-size: 16px;
  }

  .new-header__bottom h1 {
    font-size: 40px;
  }

  .home .new-header__bottom h1 {
    font-size: 48px;
  }

  .new-header__top {
    top: 40px;
  }

  .new-header__search {
    gap: 16px;
    padding: 8px 20px;
    border-radius: 50px;
    transition: 0.25s;
    font-size: 18px;
  }

  .new-header__search img {
    height: 18px;
  }
}

.search-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(20px);
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 2;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 24px;
  transition: opacity 0.5s ease, transform 0.5s ease;
  opacity: 0;
  transform: translateY(-100px);
}

.search-popup a {
  color: white;
  font-size: 24px;
  font-weight: 300;
  opacity: 0.8;
  transition: 0.2s;
  text-align: center;
  cursor: pointer;
}

.search-popup a:hover {
  opacity: 1;
  transition: 0.2s;
}

.search-popup b {
  color: white;
  font-size: 48px;
  padding-bottom: 16px;
}

.search-popup__top {
  position: absolute;
  top: 64px;
  left: 50%;
  z-index: 2;
  transform: translatex(-50%);
  max-width: calc(100% - 48px);
}

.search-popup__close {
  display: block;
  height: 56px;
  padding: 12px 12px;
  border-radius: 50px;
  transition: 0.25s;
  border: white solid 2px;
  cursor: pointer;
}

@media (max-width: 767px) {
  .search-popup {
    gap: 12px;
  }

  .search-popup a {
    font-size: 18px;
    opacity: 1;
  }

  .search-popup b {
    color: white;
    font-size: 24px;
    padding-bottom: 8px;
  }

  .search-popup__top {
    top: 40px;
  }

  .search-popup__close {
    height: 40px;
    padding: 8px 8px;
  }
}

.h1-box {
  display: grid;
  grid-auto-flow: row;
  gap: 16px;
}

@media (max-width: 767px) {
  .h1-box {
    gap: 8px;
  }
}

.section-double {
  display: grid;
  grid-auto-flow: column;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.section-double img,
.section-double iframe {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 32px;
  place-self: center;
}

@media (max-width: 767px) {
  .section-double img,
  .section-double iframe {
    order: -1;
  }

  .section-double {
    grid-auto-flow: row;
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.question {
  cursor: pointer;
}
