@keyframes slide {
  from {
    height: 0;
  }

  to {
    height: 250px;
  }
}

@media all and (max-width: 500px) {
  @keyframes slide {
    from {
      height: 0;
    }

    to {
      height: 300px;
    }
  }
}

@keyframes slidePriceTable1 {
  from {
    height: 0;
  }

  to {
    height: 315px;
  }
}

@keyframes slidePriceTable2 {
  from {
    height: 0;
  }

  to {
    height: 245px;
  }
}

@keyframes slidePriceTable3 {
  from {
    height: 0;
  }

  to {
    height: 175px;
  }
}

@media all and (max-width: 700px) {
  @keyframes slidePriceTable1 {
    from {
      height: 0;
    }

    to {
      height: 230px;
    }
  }

  @keyframes slidePriceTable2 {
    from {
      height: 0;
    }

    to {
      height: 180px;
    }
  }

  @keyframes slidePriceTable3 {
    from {
      height: 0;
    }

    to {
      height: 130px;
    }
  }

}

@media all and (max-width: 700px) {
  @keyframes slidePriceTable1 {
    from {
      height: 0;
    }

    to {
      height: 260px;
    }
  }

  @keyframes slidePriceTable2 {
    from {
      height: 0;
    }

    to {
      height: 210px;
    }
  }

  @keyframes slidePriceTable3 {
    from {
      height: 0;
    }

    to {
      height: 160px;
    }
  }

}

a,
:hover,
:before,
:after {
  -webkit-transition: all 200ms linear;
  -moz-transition: all 200ms linear;
  -ms-transition: all 200ms linear;
  -o-transition: all 200ms linear;
  transition: all 200ms linear;
}

.center {
  max-width: 1400px;
  width: 96%;
  padding: 0 2%;
  margin: 0 auto;
}

.left {
  float: left;
}

.right {
  float: right;
}

.verticalAlign {
  display: flex;
  flex-direction: column;
}

body,
ul,
li,
a,
p,
h1,
h2,
h3,
h4,
h5,
h6,
button {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  line-height: 1.4;
  list-style: none;
  text-decoration: none;
}

button {
  outline: none;
  background: none;
  border: none;
  cursor: pointer;
}

.button {
  background: #fff;
  width: 150px;
  margin: 0 auto;
  text-transform: uppercase;
  height: 40px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
  transition: 0.5s;
  background-size: 200% auto;
  background-image: linear-gradient(to right, #d735bc, #7841d0);
}

.button:hover {
  background-position: right center;
}

.header-container {
  padding: 60px 0 35px 0;
}

h1.section-header {
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Red Hat Display', sans-serif;
}

h1.section-header:before {
  content: "";
  position: absolute;
  left: -35px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 4px;
  background: #d735bc;
}

.header {
  background: #ededed;
  height: 60px;
  width: 100%;
  position: fixed;
  z-index: 3;
}

.header .center {
  display: flex;
  justify-content: space-between;
  height: 100%;
}

.header .center .logo {
  z-index: 6;
  width: 158px;
}

.header .center .logo .logo__img {
  background: url("../images/logo.png") no-repeat center;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-size: cover;
}

.header .center .menu {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  max-width: 530px;
  width: 100%;
}

@media all and (max-width: 992px) {
  .header .center .menu {
    display: none;
  }
}

.header .center .menu .menu__ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.header .center .menu .menu__ul .item__text {
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  position: relative;
  font-family: 'Red Hat Display', sans-serif;
}

.header .center .menu .menu__ul .item__text:before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 2px;
}

.header .center .menu .menu__ul .item__text:hover:before {
  width: 100%;
}

.header .center .menu .menu__ul .item__text.item__text--first {
  color: #d736b8;
}

.header .center .menu .menu__ul .item__text.item__text--first:before {
  background: #d736b8;
}

.header .center .menu .menu__ul .item__text.item__text--second {
  color: #c739c1;
}

.header .center .menu .menu__ul .item__text.item__text--second:before {
  background: #c739c1;
}

.header .center .menu .menu__ul .item__text.item__text--third {
  color: #b039c7;
}

.header .center .menu .menu__ul .item__text.item__text--third:before {
  background: #b039c7;
}

.header .center .menu .menu__ul .item__text.item__text--fourth {
  color: #9d3cc7;
}

.header .center .menu .menu__ul .item__text.item__text--fourth:before {
  background: #9d3cc7;
}

.header .center .menu .menu__ul .item__text.item__text--fifth {
  color: #8242cc;
}

.header .center .menu .menu__ul .item__text.item__text--fifth:before {
  background: #8242cc;
}

.header .center .hamburger {
  display: none;
  z-index: 5;
}

@media all and (max-width: 992px) {
  .header .center .hamburger {
    display: block;
  }
}

.header .center .hamburger input {
  display: none;
}

.header .center .hamburger label {
  position: fixed;
  top: 18px;
  right: 30px;
  height: 25px;
  width: 36px;
  z-index: 5;
}

.header .center .hamburger label span {
  position: absolute;
  width: 100%;
  height: 3px;
  border: 1px solid #7841d0;
  border-right: none;
  border-left: none;
  left: 0;
  display: block;
  background: #7841d0;
  transition: .5s;
}

.header .center .hamburger label span:first-child {
  top: 0;
}

.header .center .hamburger label span:nth-child(2) {
  top: 10px;
}

.header .center .hamburger label span:last-child {
  top: 20px;
}

.header .center .hamburger label:hover {
  cursor: pointer;
}

.header .center .hamburger input:checked+label span {
  opacity: 0;
  top: 50%;
  background: #d735bc;
  border: 1px solid #d735bc;
}

.header .center .hamburger input:checked+label span:first-child {
  opacity: 1;
  transform: rotate(405deg);
}

.header .center .hamburger input:checked+label span:last-child {
  opacity: 1;
  transform: rotate(-405deg);
}

.header .center .hamburger input~nav {
  background: #ededed;
  opacity: .9;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  z-index: 3;
  transition: .5s;
  transition-delay: .5s;
  overflow: hidden;
}

.header .center .hamburger input~nav>ul {
  display: none;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 15%;
  right: 15%;
  transform: translateY(-50%);
}

.header .center .hamburger input~nav>ul>li {
  opacity: 0;
  transition: .5s;
  transition-delay: 0s;
}

.header .center .hamburger input~nav>ul>li>a {
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  padding: 27px 10px;
  cursor: pointer;
}

@media all and (max-width: 992px) {
  .header .center .hamburger input~nav>ul>li>a {
    padding: 23px 10px;
  }
}

.header .center .hamburger input~nav>ul>li>a:before {
  content: "";
  width: 0;
  position: absolute;
  bottom: 20px;
  left: 0;
  background-image: linear-gradient(to right, #d735bc, #7841d0);
  height: 2px;
}

.header .center .hamburger input~nav>ul>li>a:hover:before {
  width: 100%;
}

.header .center .hamburger input:checked~nav {
  height: 100%;
  transition-delay: 0s;
}

.header .center .hamburger input:checked~nav>ul {
  display: block;
}

.header .center .hamburger input:checked~nav>ul>li {
  opacity: 1;
  transition-delay: .5s;
}

.first-screen {
  height: calc(100vh - 60px);
  display: inline-block;
  width: 100%;
  position: relative;
  padding-top: 60px;
}

.first-screen .main-view {
  height: 100%;
  position: relative;
  background-image: linear-gradient(to right, #d735bc, #7841d0);
}

.first-screen .main-view:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background: url("../images/sss.png") no-repeat center;
  background-size: cover;
  opacity: 0.4;
}

.first-screen .main-view .center {
  text-align: center;
  position: relative;
  z-index: 2;
}

.first-screen .main-view .center .kwadrat {
  background: url("../images/czapka.png") no-repeat center;
  background-size: cover;
  width: 124px;
  height: 139px;
  display: inline-block;
  margin: 5% auto 2% auto;
}

@media all and (max-width: 992px) {
  .first-screen .main-view .center .kwadrat {
    margin: 4% auto 2% auto;
  }
}

@media all and (max-width: 700px) {
  .first-screen .main-view .center .kwadrat {
    margin: 3% auto 1.5% auto;
  }
}

.first-screen .main-view .center .main-text .main-text__h1 {
  margin: 0;
  color: #fff;
  font-size: 43px;
  font-weight: 700;
  font-family: 'Red Hat Display', sans-serif;
}

@media all and (max-width: 992px) {
  .first-screen .main-view .center .main-text .main-text__h1 {
    font-size: 30px;
  }
}

@media all and (max-width: 700px) {
  .first-screen .main-view .center .main-text .main-text__h1 {
    font-size: 23px;
  }
}

.first-screen .main-view .center .main-text .main-text__h2 {
  margin: 60px 0 25px 0;
  color: #fff;
  font-size: 30px;
  font-weight: 600;
  font-family: 'Red Hat Display', sans-serif;
}

@media all and (max-width: 992px) {
  .first-screen .main-view .center .main-text .main-text__h2 {
    font-size: 19px;
    margin: 50px 0 20px 0;
  }
}

@media all and (max-width: 700px) {
  .first-screen .main-view .center .main-text .main-text__h2 {
    font-size: 15px;
  }
}

.first-screen .main-view .center .main-text .main-text__h3 {
  margin: 150px 0 25px 0;
  font-size: 22px;
  font-style: italic;
  font-family: 'Roboto', sans-serif;
}

@media all and (max-width: 992px) {
  .first-screen .main-view .center .main-text .main-text__h3 {
    font-size: 15px;
    margin: 80px 0 25px 0;
  }
}

@media all and (max-width: 700px) {
  .first-screen .main-view .center .main-text .main-text__h3 {
    font-size: 12px;
    margin: 40px 0 25px 0;
  }
}

.first-screen .main-view .arrow-down {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  height: 42px;
  width: 42px;
  z-index: 2;
  background-image: linear-gradient(to right, #d735bc, #7841d0);
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  background-size: 200% auto;
  border-radius: 50%;
  display: inline-block;
}

@media all and (max-width: 992px) {
  .first-screen .main-view .arrow-down {
    bottom: 10%;
  }
}

.first-screen .main-view .arrow-down .btn__arrow {
  border: solid #fff;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 5px;
  margin-bottom: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.first-screen .main-view .arrow-down:hover {
  background-position: right center;
}

.oferta {
  padding-bottom: 350px;
  width: 100%;
  background: url("../images/paralaksa.jpg") no-repeat center fixed;
  background-size: cover;
}

.oferta .oferta-top {
  width: 100%;
  background: #fff;
}

.oferta .oferta-top .center .oferta-text {
  max-width: 1150px;
  margin: 0 auto;
  padding-bottom: 150px;
  font-size: 15px;
  font-weight: 400;
  color: #4d4d4d;
  font-family: 'Roboto', sans-serif;
}

.oferta .oferta-top .center .oferta-text.oferta-text-top {
  padding: 0;
}
.oferta .oferta-top .center .oferta-text.oferta-text-top.oferta-info {
  text-align: center;
  font-family: "Roboto", Sans-Serif;
  margin-bottom: 16px;
}
.oferta .oferta-top .center .oferta-text.oferta-text-bottom {
  position: relative;
}

.oferta .oferta-top .center .oferta-text.oferta-text-bottom .oferta-img {
  content: "";
  position: absolute;
  background: url("../images/hat.png") no-repeat center;
  width: 118px;
  height: 110px;
  bottom: 17px;
  left: 50%;
  transform: translate(-50%, 0);
}
.kursy-subheader {
  text-align: center;
  font-size: 22px;
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  font-family: "Red Hat Display", Sans-Serif;
}
.kursy-text {
  text-align: center;
  color: #4d4d4d;
  margin: 0 max(20px, 10%);
}
.kursy-subcont {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.about-us .center {
  max-width: 1360px;
}

.about-us .center .about-us__text {
  font-size: 15px;
  font-weight: 400;
  color: #4d4d4d;
  max-width: 800px;
  margin: 0 auto 50px auto;
}

.about-us .center .about-us__text.about-us__text--top {
  margin: 0 auto 10px auto;
  font-family: 'Roboto', sans-serif;
}

.about-us .center .people-boxes {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.about-us .center .people-boxes .people-person {
  cursor: pointer;
  width: 24%;
  padding-bottom: 24%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-person {
    width: 34%;
    padding-bottom: 34%;
    margin: 1% 0;
  }
}

.about-us .center .people-boxes .people-person:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.25);
}

.about-us .center .people-boxes .people-person:hover:before {
  background: rgba(0, 0, 0, 0);
}

.about-us .center .people-boxes .people-person:first-child {
  background: url("../images/agnieszka.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-person:first-child {
    order: 1;
  }
}

.about-us .center .people-boxes .people-person:nth-child(2) {
  background: url("../images/mateusz.jpg") no-repeat center;
  background-size: cover;
  transition: all 4s;
}

.about-us .center .people-boxes .people-person:nth-child(2):active {
  background: url("../images/mateusz2.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-person:nth-child(2) {
    order: 2;
  }
}

.about-us .center .people-boxes .people-person:nth-child(3) {
  background: url("../images/zosia.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-person:nth-child(3) {
    order: 5;
  }
}

.about-us .center .people-boxes .people-person:nth-child(4) {
  background: url("../images/wiktoria.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-person:nth-child(4) {
    order: 6;
  }
}

.about-us .center .people-boxes .people-person .verticalAlign .person__name {
  position: absolute;
  top: 80%;
  color: #fff;
  width: 100%;
  text-align: center;
}

.about-us .center .people-boxes .people-person .verticalAlign .person__button {
  margin: 20px auto;
  position: absolute;
}

.about-us .center .people-boxes .people-more-info {
  overflow: hidden;
  -moz-animation: slide 0.7s forwards;
  -webkit-animation: slide 0.7s forwards;
  -o-animation: slide 0.7s forwards;
  -ms-animation: slide 0.7s forwards;
  animation: slide 0.7s forwards;
  width: 100%;
  display: none;
  justify-content: space-around;
  margin: 30px 0 0 0;
  position: relative;
  height: 250px;
}

@media all and (max-width: 500px) {
  .about-us .center .people-boxes .people-more-info {
    height: 300px;
  }
}

.about-us .center .people-boxes .people-more-info.active {
  display: flex;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info.firstPersonInfo {
    order: 3;
  }
}

.about-us .center .people-boxes .people-more-info.firstPersonInfo .info-photo {
  background: url("../images/agnieszka.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info.secondPersonInfo {
    order: 4;
  }
}

.about-us .center .people-boxes .people-more-info.secondPersonInfo .info-photo {
  background: url("../images/mateusz.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info.thirdPersonInfo {
    order: 7;
  }
}

.about-us .center .people-boxes .people-more-info.thirdPersonInfo .info-photo {
  background: url("../images/zosia.jpg") no-repeat center;
  background-size: cover;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info.fourthPersonInfo {
    order: 8;
  }
}

.about-us .center .people-boxes .people-more-info.fourthPersonInfo .info-photo {
  background: url("../images/wiktoria.jpg") no-repeat center;
  background-size: cover;
}

.about-us .center .people-boxes .people-more-info .info-photo {
  width: 250px;
  height: 250px;
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info .info-photo {
    display: none;
  }
}

.about-us .center .people-boxes .people-more-info .info-description {
  position: relative;
  max-width: 800px;
  width: 80%;
  margin: 0 20px;
}

@media all and (min-width: 1250px) {
  .about-us .center .people-boxes .people-more-info .info-description {
    margin: 0 60px 0 -30px;
  }
}

.about-us .center .people-boxes .people-more-info .info-description .description-name {
  display: inline-block;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 700;
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-us .center .people-boxes .people-more-info .info-description .description-text {
  font-size: 14px;
  font-weight: 400;
  color: #4d4d4d;
}

@media all and (min-width: 1250px) {
  .about-us .center .people-boxes .people-more-info .info-description .description-text {
    margin: 30px 0 0 0;
  }
}

@media all and (min-width: 993px) and (max-width: 1249px) {
  .about-us .center .people-boxes .people-more-info .info-description .description-text {
    margin: 20px 0 0 0;
  }
}

@media all and (max-width: 992px) {
  .about-us .center .people-boxes .people-more-info .info-description .description-text {
    font-size: 13px;
  }
}

.about-us .center .people-boxes .people-more-info .info-description .close-button {
  position: absolute;
  width: 32px;
  height: 32px;
  right: 0;
  top: 0;
  cursor: pointer;
}

.about-us .center .people-boxes .people-more-info .info-description .close-button:hover:before,
.about-us .center .people-boxes .people-more-info .info-description .close-button:hover:after {
  background-color: #7841d0;
  width: 3px;
}

.about-us .center .people-boxes .people-more-info .info-description .close-button:before,
.about-us .center .people-boxes .people-more-info .info-description .close-button:after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 33px;
  width: 2px;
  background-color: #d735bc;
}

.about-us .center .people-boxes .people-more-info .info-description .close-button:before {
  transform: rotate(45deg);
}

.about-us .center .people-boxes .people-more-info .info-description .close-button:after {
  transform: rotate(-45deg);
}

.price .center .price-p {
  font-size: 15px;
  font-weight: 400;
  font-family: 'Roboto', sans-serif;
  color: #4d4d4d;
  max-width: 800px;
  margin: 0 auto;
}

.price .center .price-table.active {
  display: flex;
}

.price .center .price-table .column {
  width: 33.333333%;
}

@media all and (max-width: 550px) {
  .price .center .price-table .column {
    width: 33.333333%;
  }

  .price .center .price-table .column.first-column {
    /* display: none; */
  }
}

.price .center .price-table .column .cell {
  height: 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  text-align: center;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell {
    height: 50px;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell {
    height: 60px;
  }
}

.price .center .price-table .column .cell .cell__text--mobile {
  display: none;
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell .cell__text--mobile {
    /* display: block; */
  }
}
.cell__text{
  font-family: 'Red Hat Display', sans-serif;
}
.price .center .price-table .column .cell .cell__text {
  font-size: 20px;
  font-weight: 600;
  color: #656565;
  padding: 10px;
}

@media all and (max-width: 1100px) {
  .price .center .price-table .column .cell .cell__text {
    font-size: 16px;
  }
}

@media all and (max-width: 900px) {
  .price .center .price-table .column .cell .cell__text {
    font-size: 15px;
    padding: 8px;
  }
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell .cell__text {
    font-size: 13px;
    padding: 7px;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell .cell__text {
    /* padding: 9px 7px 0 7px; */
  }

  .price .center .price-table .column .cell .cell__text.cell--padding {
    /* padding: 0 7px 5px 7px; */
  }
}

@media all and (max-width: 400px) {
  .price .center .price-table .column .cell .cell__text {
    font-size: 12px;
    padding: 6px;
  }
}

/* .price .center .price-table .column .cell .cell__text.textColor-first {
  color: #d834bb;
  font-weight: 900;
}

.price .center .price-table .column .cell .cell__text.textColor-second {
  color: #af39c3;
  font-weight: 900;
}

.price .center .price-table .column .cell .cell__text.textColor-third {
  color: #843dcb;
  font-weight: 900;
} */

.price .center .price-table .column .cell.topCell {
  height: 105px;
  position: relative;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell {
    height: 80px;
  }
}

/* .price .center .price-table .column .cell.topCell .cell__text {
  color: #fff;
  font-size: 19px;
}

@media all and (max-width: 1100px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 16px;
  }
}

@media all and (max-width: 900px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 14px;
    padding: 8px;
  }
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 12px;
    padding: 7px;
  }
}

@media all and (max-width: 400px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 10.5px;
    padding: 5px;
  }
} */

.price .center .price-table .column .cell.topCell.row-first {
  background: #7841d0;
}



/* dodane aby kolorować na jednolity kolor */



.price .center .price-buttons {
  max-width: 800px;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
}

.price .center .price-buttons .price-button {
  color: #fff;
  font-weight: 600;
  width: 25%;
  padding: 25px;
  font-size: 19px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

@media all and (max-width: 500px) {
  .price .center .price-buttons .price-button {
    padding: 22px 15px;
    width: 28%;
  }
}

@media all and (max-width: 400px) {
  .price .center .price-buttons .price-button {
    padding: 20px 5px;
    width: 30%;
  }
}

.price .center .price-buttons .price-button.active:before {
  left: 50%;
}

.price .center .price-buttons .price-button.active span {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.price .center .price-buttons .price-button:active {
  top: 5px;
}

.price .center .price-buttons .price-button:hover span {
  -webkit-transform: translateX(200%);
  -moz-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%);
}

.price .center .price-buttons .price-button:hover:before {
  left: 50%;
}

.price-button_text {
  display: inline-block;
  font-family: 'Red Hat Display', sans-serif;
  height: 100%;
  width: 100%;
  transition: all 0.3s;
}

@media all and (max-width: 1100px) {
  .price .center .price-buttons .price-button {
    font-size: 16px;
  }
}

@media all and (max-width: 900px) {
  .price .center .price-buttons .price-button {
    font-size: 14px;
  }
}

@media all and (max-width: 700px) {
  .price .center .price-buttons .price-button {
    font-size: 12px;
  }
}

@media all and (max-width: 400px) {
  .price .center .price-buttons .price-button {
    font-size: 10.5px;
  }
}

.price .center .price-button:before {
  position: absolute;
  top: 50%;
  left: -50%;
  transform: translate(-50%, -50%);
}

.price .center .price-buttons .price-button.price-button_first {
  background-color: #7841d0;
}

.price .center .price-buttons .price-button.price-button_first {
  background-color: #7841d0;
}

.price .center .price-buttons .price-button.price-button_second {
  background-color: #983dc9;
}

.price .center .price-buttons .price-button.price-button_third {
  background-color: #cc35be;
}

.price .center .price-buttons .price-button.price-button_first:before {
  content: url('../images/user1.png');
}

.price .center .price-buttons .price-button.price-button_second:before {
  content: url('../images/user2.png');
}

.price .center .price-buttons .price-button.price-button_third:before {
  content: url('../images/user3.png');
}

.price .center .price-table {
  overflow: hidden;
  display: none;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
}

.price-table__container {
  display: flex;
}

.price .center .price-table.price-table_first {
  -moz-animation: slidePriceTable1 0.7s forwards;
  -webkit-animation: slidePriceTable1 0.7s forwards;
  -o-animation: slidePriceTable1 0.7s forwards;
  -ms-animation: slidePriceTable1 0.7s forwards;
  animation: slidePriceTable1 0.7s forwards;
}

.price .center .price-table.price-table_second {
  -moz-animation: slidePriceTable2 0.7s forwards;
  -webkit-animation: slidePriceTable2 0.7s forwards;
  -o-animation: slidePriceTable1 0.7s forwards;
  -ms-animation: slidePriceTable2 0.7s forwards;
  animation: slidePriceTable2 0.7s forwards;
}

.price .center .price-table.price-table_third {
  -moz-animation: slidePriceTable3 0.7s forwards;
  -webkit-animation: slidePriceTable3 0.7s forwards;
  -o-animation: slidePriceTable3 0.7s forwards;
  -ms-animation: slidePriceTable3 0.7s forwards;
  animation: slidePriceTable3 0.7s forwards;
}

.price .center .price-table.price-table_first .column .cell.topCell.row-first.bg-color {
  background: #7841d0;
}

.price .center .price-table.price-table_first .column .cell.topCell.row-second.bg-color {
  background: #7841d0;
}

.price .center .price-table.price-table_second .column .cell.topCell.row-first.bg-color {
  background: #983dc9;
}

.price .center .price-table.price-table_second .column .cell.topCell.row-second.bg-color {
  background: #983dc9;
}

.price .center .price-table.price-table_third .column .cell.topCell.row-first.bg-color {
  background: #cc35be;
}

.price .center .price-table.price-table_third .column .cell.topCell.row-second.bg-color {
  background: #cc35be;
}


.cell__text {
  color: #fff !important;
}
.cell__text.cell--padding {
  color: #656565 !important;
}

.price .center .price-table .column .cell.topCell .cell__text {
  font-size: 19px;
}

@media all and (max-width: 1100px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 16px;
  }
}

@media all and (max-width: 900px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 14px;
    padding: 8px;
  }
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 12px;
    padding: 7px;
  }
}

@media all and (max-width: 400px) {
  .price .center .price-table .column .cell.topCell .cell__text {
    font-size: 10.5px;
    padding: 5px;
  }
}


.price .center .price-table.price-table_first .column .cell.topCell.row-first:before {
  border-top: 10px solid #7841d0;
}

.price .center .price-table.price-table_first .column .cell.topCell.row-second:before {
  border-top: 10px solid #7841d0;
}


.price .center .price-table.price-table_second .column .cell.topCell.row-first:before {
  border-top: 10px solid #983dc9;
}

.price .center .price-table.price-table_second .column .cell.topCell.row-second:before {
  border-top: 10px solid #983dc9;
}


.price .center .price-table.price-table_third .column .cell.topCell.row-first:before {
  border-top: 10px solid #cc35be;
}

.price .center .price-table.price-table_third .column .cell.topCell.row-second:before {
  border-top: 10px solid #cc35be;
}



.price .center .price-table.price-table_first .column .cell.brighter.bg-color {
  background: #7841d0;
}

.price .center .price-table.price-table_second .column .cell.brighter.bg-color {
  background: #983dc9;
}

.price .center .price-table.price-table_third .column .cell.brighter.bg-color {
  background: #cc35be;
}



/* dodane aby kolorować na jednolity kolor */




.price .center .price-table .column .cell.topCell.row-first:before {
  border-top: 10px solid #7841d0;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell.row-first:before {
    border-top: 8px solid #7841d0;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell.topCell.row-first:before {
    border-top: 6px solid #7841d0;
  }
}

.price .center .price-table .column .cell.topCell.row-second {
  background: #983dc9;
}

.price .center .price-table .column .cell.topCell.row-second:before {
  border-top: 10px solid #983dc9;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell.row-second:before {
    border-top: 8px solid #983dc9;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell.topCell.row-second:before {
    border-top: 6px solid #983dc9;
  }
}

.price .center .price-table .column .cell.topCell.row-third {
  background: #cc35be;
}

.price .center .price-table .column .cell.topCell.row-third:before {
  border-top: 10px solid #cc35be;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell.row-third:before {
    border-top: 8px solid #cc35be;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell.topCell.row-third:before {
    border-top: 6px solid #cc35be;
  }
}

.price .center .price-table .column .cell.topCell:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
}

@media all and (max-width: 700px) {
  .price .center .price-table .column .cell.topCell:before {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
  }
}

@media all and (max-width: 550px) {
  .price .center .price-table .column .cell.topCell:before {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
  }
}

.price .center .price-table .column .cell.empty {
  background: transparent;
}

.price .center .price-table .column .cell.empty:before {
  display: none;
}

.price .center .price-table .column .cell.brighter {
  background: #f2f2f2;
}

.price .center .price-table .column .cell.darker {
  background: #e6e6e6;
}

.price .center .price-table .column .cell.cell-border {
  border-left: 1px solid #e8e8e8;
}

.price .center .price-table .column .cell.cell-border.cell-border-middle {
  border-left: 1px solid #dfdfdf;
}

.price .center .price-table .column.second-column .cell-border {
  border-left: 0 solid #e8e8e8;
}

.price .center .price-table .column.second-column .cell-border.cell-border-middle {
  border-left: 0px solid #dfdfdf;
}

.price .center .price-p {
  display: none;
}

.price .center .price-p.active {
  display: block;
}

.price .center .price-regulamin {
  display: block;
  text-align: center;
}

.price .center .price-regulamin .regulamin {
  display: inline-block;
  font-size: 22px;
  font-family: 'Red Hat Display', sans-serif;
  font-weight: 700;
  margin: 20px auto 30px auto;
  color: #843dcb;
}

.price .center .price-regulamin .regulamin-info {
  font-size: 15px;
  font-weight: 400;
  color: #4d4d4d;
  max-width: 800px;
  margin: 0 auto 20px auto;
  font-family: 'Roboto', sans-serif;
}

.price .center .price-regulamin .regulamin-download {
  width: 295px;
  height: 54px;
  border-radius: 24px;
  background: #f331b6;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
}

.price .center .price-regulamin .regulamin-download_container {
  display: inline-block;
}

.price .center .price-regulamin .regulamin-download_container .regulamin-download_text {
  width: 295px;
  height: 54px;
  margin: 10px;
  cursor: unset;
}
.price .center .price-regulamin .regulamin-ul {
  display: block;
}
.regulamin-ul li button {
  margin: 10px;
}
.price .center .price-regulamin .regulamin-download_first {
  background: #7841d0;
}

.price .center .price-regulamin .regulamin-download_second {
  background: #983dc9;
}

.price .center .price-regulamin .regulamin-download_third {
  background: #cc35be;
}

.price .center .price-regulamin .regulamin-download:hover {
  background: #c739c1;
}

.price .center .price-regulamin .regulamin-moreInfo {
  font-size: 15px;
  font-weight: 400;
  color: #4d4d4d;
  max-width: 800px;
  font-family: 'Roboto', sans-serif;
  margin: 20px auto 0 auto;
}

.opinions {
  margin-bottom: -25px;
}

.opinions .opinions-main {
  background: #f5f5f5;
  padding: 0 38px 0 40px;
}

.opinions .opinions-main .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-height: 765px;
  height: 350px;
  margin: 0 auto;
}

@media all and (max-width: 700px) {
  .opinions .opinions-main .slider {
    height: 400px;
  }
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider {
    height: 500px;
  }
}

.opinions .opinions-main .slider .slider__slideWrap {
  position: relative;
  height: 100%;
  width: 1000%;
  padding: 0;
  margin: 0;
  transition: all 750ms ease;
  left: 0;
}

.opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide {
  position: relative;
  height: 100%;
  width: 10%;
  float: left;
  text-align: center;
}

.opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__name {
  margin-top: 30px;
  font-size: 26px;
  letter-spacing: 1.5px;
  font-weight: 500;
  display: inline-block;
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media all and (max-width: 992px) {
  .opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__name {
    margin-top: 40px;
  }
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__name {
    margin-top: 25px;
  }
}

.opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__link {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 900px;
  width: 80%;
  transform: translate(-50%, -50%);
  font-size: 16px;
  letter-spacing: 1.5px;
  font-weight: 500;
  opacity: 0.8;
  text-decoration: none;
}

@media all and (max-width: 992px) {
  .opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__link {
    font-size: 15px;
    top: 45%;
    width: 90%;
  }
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__link {
    width: 96%;
    top: 47%;
  }
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider .slider__slideWrap .slideWrap__slide .info__link {
    width: 96%;
    font-size: 14px;
  }
}

.opinions .opinions-main .slider .buttons {
  position: absolute;
  max-width: 1170px;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 24px;
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 992px) {
  .opinions .opinions-main .slider .buttons {
    display: none;
  }
}

.opinions .opinions-main .slider .buttons .prev,
.opinions .opinions-main .slider .buttons .next {
  position: absolute;
  width: 24px;
  height: 24px;
}

.opinions .opinions-main .slider .buttons .prev:hover,
.opinions .opinions-main .slider .buttons .next:hover {
  cursor: pointer;
}

.opinions .opinions-main .slider .buttons .prev {
  background: url("../images/sliderArrowLeft.png") no-repeat center;
  left: -1px;
}

.opinions .opinions-main .slider .buttons .next {
  background: url("../images/sliderArrowRight.png") no-repeat center;
  right: 1px;
}

.opinions .opinions-main .slider .buttonsResponsive {
  position: absolute;
  z-index: 1;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 176px;
  display: flex;
  justify-content: space-between;
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider .buttonsResponsive {
    bottom: 20px;
  }
}

.opinions .opinions-main .slider .buttonsResponsive .sliderButtonResponsive {
  margin: 0;
  padding: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #f5f5f5;
  border: 3px solid #e5e5e5;
}

.opinions .opinions-main .slider .buttonsResponsive .sliderButtonResponsive:hover {
  background: #e5e5e5 !important;
  cursor: pointer;
}

.opinions .opinions-main .slider .slide__number {
  position: absolute;
  max-width: 1170px;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: right;
  font-size: 18px;
  letter-spacing: 1.5px;
  background: -webkit-linear-gradient(45deg, #d735bc, #4a2389);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  z-index: 1;
}

@media all and (max-width: 550px) {
  .opinions .opinions-main .slider .slide__number {
    bottom: 10%;
  }
}

.map {
  z-index: 67;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.map .map-container {
  background-color: #2a6496;
  width: min(90%, 1000px);
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.map .map-container img {
  object-fit: contain;
  position: relative;
  width: 100%;
}

.map .map-container .map--iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.footer {
  z-index: 100;
  height: 240px;
  background-image: linear-gradient(to right, #d735bc, #7841d0);
}

@media all and (max-width: 992px) {
  .footer {
    height: unset;
  }
}

.footer .center {
  display: flex;
  height: 100%;
}

@media all and (max-width: 992px) {
  .footer .center {
    flex-direction: column;
    margin: 0 auto;
  }
}

.footer .center .footer__logo {
  width: 40%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  position: relative;
}

@media all and (max-width: 992px) {
  .footer .center .footer__logo {
    order: 2;
    margin: 30px auto;
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .footer .center .footer__logo {
    margin: 0 auto 30px auto;
    width: 70%;
  }
}

.footer .center .footer__logo:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  background: #c06bd3;
  height: 185px;
}

@media all and (max-width: 992px) {
  .footer .center .footer__logo:before {
    display: none;
  }
}

.footer .center .footer__logo .logo__img {
  max-width: 343px;
  width: 100%;
  height: 109px;
  background: url("../images/logo-white.png") no-repeat center;
  display: inline-block;
  background-size: cover;
  margin: 0 auto;
}

.footer .center .footer__info {
  width: 60%;
  display: flex;
  margin: 20px auto;
}

@media all and (max-width: 992px) {
  .footer .center .footer__info {
    width: 100%;
  }
}

@media all and (max-width: 600px) {
  .footer .center .footer__info {
    flex-direction: column;
  }
}

.footer .center .footer__info .footer__middle {
  width: 33.333333%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media all and (max-width: 992px) {
  .footer .center .footer__info .footer__middle {
    width: 50%;
  }
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__middle {
    width: 100%;
  }
}

.footer .center .footer__info .footer__middle .middle__content {
  height: 130px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__middle .middle__content {
    text-align: center;
  }
}

.footer .center .footer__info .footer__middle .middle__content .footer-p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__middle .middle__content .telephone {
    display: flex;
    justify-content: space-around;
  }
}

.footer .center .footer__info .footer__middle .middle__content .telephone .center-phone {
  display: flex;
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__middle .middle__content .telephone .center-phone {
    margin-left: -10px;
  }
}

.footer .center .footer__info .footer__middle .middle__content .telephone .center-phone .phone__img {
  background: url("../images/phone-footer.png") no-repeat center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.footer .center .footer__info .footer__middle .middle__content .telephone .center-phone .phone {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.footer .center .footer__info .footer__middle .middle__content .email {
  display: flex;
}

.footer .center .footer__info .footer__middle .middle__content .email .mail__img {
  background: url("../images/mail.png") no-repeat center;
  width: 16px;
  height: 16px;
  margin-right: 10px;
}

.footer .center .footer__info .footer__middle .middle__content .email .mail {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.footer .center .footer__info .footer__right {
  width: 66.666666%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

@media all and (max-width: 992px) {
  .footer .center .footer__info .footer__right {
    width: 50%;
  }
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__right {
    width: 100%;
  }
}

.footer .center .footer__info .footer__right .right__content {
  height: 130px;
  margin: 0 auto;
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__right .right__content {
    height: 60px;
    margin: 10px auto;
  }
}

.footer .center .footer__info .footer__right .right__content .footer-p {
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}

@media all and (max-width: 600px) {
  .footer .center .footer__info .footer__right .right__content .footer-p.footer-p-hide {
    display: none;
  }
}

.footer .center .footer__info .footer__right .right__content .social {
  display: flex;
  margin-top: 20px;
}

.footer .center .footer__info .footer__right .right__content .social .footer-p {
  display: flex;
  align-items: center;
}

.footer .center .footer__info .footer__right .right__content .social .item {
  width: 16px;
  height: 16px;
  padding: 4px;
  display: inline-block;
}

.footer .center .footer__info .footer__right .right__content .social .facebook {
  display: flex;
  align-items: center;
}

.footer .center .footer__info .footer__right .right__content .social .facebook .item {
  background: url("../images/fb.png") no-repeat center;
  margin: 0 10px;
}

.footer .center .footer__info .footer__right .right__content .social .instagram .item {
  background: url("../images/instagram.png") no-repeat center;
}

/*# sourceMappingURL=style.css.map */
