.header {
  flex-direction: column;
  padding-top: 110px;
  padding-bottom: 0;
}
.adjust-nav-background {
  margin-top: -420px;
}
.header-description .heading {
  color: #fff;
  font-size: 14px;
  line-height: 19px;
}
.header-description .heading.lead {
  font-size: 18px;
  line-height: 23px;
  font-weight: 400;
  padding-right: 0;
  margin: 30px 0 30px 0;
  padding: 0 10px 0 20px;
  border-left: 4px solid #5f7932;
  flex: 0 1 920px;
}
.header-description__paragraph {
  font-size: 16px;
  line-height: 22px;
  color: #fff;
}
.header-description {
  display: flex;
  flex-wrap: wrap;
  max-width: 1170px;
  justify-content: space-between;
  padding: 10px 0 30px;
}
.header-description__column {
  flex: 1 1 350px;
  margin-right: 20px;
}
.white {
  color: #ffffff!important;
}
.cta-container {
  margin-left: auto;
  margin-right: auto;
}
.header-cta__column {
  width: 90%;
  margin: auto;
  padding: 30px 0;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.vh-100 {
  min-height: 100vh;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  padding-top: 30px;
}
.button-jak-pomoc {
  min-height: 125px;
  padding-bottom: 50px;
}
.badania-container {
  margin: auto;
  max-width: 840px;
}
.badania-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.badania-flex > * {
  flex: 1 1 320px; 
  margin: 5px;
  max-width: 100%;
  overflow-wrap: anywhere;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@property --num {
  syntax: "<integer>";
  initial-value: 0;
  inherits: false;
}

.stat-counter1.active {
  animation: 1.8s count-to-450 ease-in-out;
  counter-reset: num var(--num);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.stat-counter2.active {
  animation: 1.4s count-to-2 ease-in-out;
  counter-reset: num var(--num);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.stat-counter2decimal.active {
  animation: 1.3s count-to-2decimal ease-in-out;
  counter-reset: num var(--num);
  animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
}
.stat-counter::after {
  content: counter(num);
}

@keyframes count-to-450 {
  from {
    --num: 0;
  }
  to {
    --num: 450;
  }
}
@keyframes count-to-2 {
  from {
    --num: 0;
  }
  to {
    --num: 2;
  }
}
@keyframes count-to-2decimal {
  from {
    --num: 0;
  }
  to {
    --num: 17;
  }
}



.people-icons {
  margin: 20px 0 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.people-icons img {
  padding: 5px;
}
.w-100 {
  width: 100%;
}


/* Bar Graph Horizontal */
.bar-graph .year {
  -webkit-animation: fade-in-text 2.2s 0.1s forwards;
  -moz-animation: fade-in-text 2.2s 0.1s forwards;
  animation: fade-in-text 2.2s 0.1s forwards;
  opacity: 0;
}

.bar-graph-horizontal {
  max-width: 380px;
}

.bar-graph-horizontal > div {
  float: left;
  margin-bottom: 8px;
  width: 100%;
}

.bar-graph-horizontal .year {
  float: left;
  margin-top: 18px;
  width: 50px;
}

.bar-graph-horizontal .bar {
  border-radius: 3px;
  height: 55px;
  float: left;
  overflow: hidden;
  position: relative;
  width: 0;
}

.bar-graph-one.active .bar::after {
  -webkit-animation: fade-in-text 2.2s 0.1s forwards;
  -moz-animation: fade-in-text 2.2s 0.1s forwards;
  animation: fade-in-text 2.2s 0.1s forwards;
  color: #fff;
  content: attr(data-percentage);
  font-weight: 700;
  position: absolute;
  right: 16px;
  top: 17px;
}

.bar-graph-one.active .bar-one .bar {
  background-color: #5f7932;
  -webkit-animation: show-bar-one 1.2s 0.1s forwards;
  -moz-animation: show-bar-one 1.2s 0.1s forwards;
  animation: show-bar-one 1.2s 0.1s forwards;
}

.bar-graph-one.active .bar-two .bar {
  background-color: #e49f26;
  -webkit-animation: show-bar-two 1.2s 0.2s forwards;
  -moz-animation: show-bar-two 1.2s 0.2s forwards;
  animation: show-bar-two 1.2s 0.2s forwards;
}

.bar-graph-one.active .bar-three .bar {
  background-color: #78324e;
  -webkit-animation: show-bar-three 1.2s 0.3s forwards;
  -moz-animation: show-bar-three 1.2s 0.3s forwards;
  animation: show-bar-three 1.2s 0.3s forwards;
}

/* Bar Graph Horizontal Animations */
@-webkit-keyframes show-bar-one {
  0% {
    width: 0;
  }
  100% {
    width: 69.6%;
  }
}

@-webkit-keyframes show-bar-two {
  0% {
    width: 0;
  }
  100% {
    width: 71%;
  }
}

@-webkit-keyframes show-bar-three {
  0% {
    width: 0;
  }
  100% {
    width: 74.7%;
  }
}

@-webkit-keyframes fade-in-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.badanie.flex {
  display: flex;
  flex-direction: row;
  flex: 0 1 650px;
  padding-top: 40px;
}
.wykres {
  flex: 1 0 50%;
}
.opis  {
  flex: 1 0 50%;
}
.r-d-o-badania {
  padding-left: 20px;
  position: relative;
}
.r-d-o-badania:before {
  position: absolute;
  content: "";
  width: 20px;
  left: -5px;
  top: 0;
  bottom: 0;
  margin: 0;
  border-radius: 4px;
  height: 20px;
}
.r-d-o-badania.opt1:before {
  background-color:#5f7932;
}
.r-d-o-badania.opt2:before {
  background-color:#e49f26;
}
.r-d-o-badania.opt3:before {
  background-color:#78324e;
}
.co-otrzymasz {
  margin-bottom: 0px;
  padding-bottom: 20px;
  background-color: #fafafa;
}
.heading-6--center {
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.czego-si-dowiesz__video-container {
  max-width:720px;
  margin: auto;
}
.heading-autorka {
  color: #000000;
  font-weight: 300;
  margin-top: 80px;
}
@media (max-width:767px) {
  .flex-sm-end {
    display:flex;
    align-items:flex-end;
  }
}
.autorka {
  background-color: #ddd;
}
.opinie__img-container {
  flex: 1 0 220px;
}
.paragraph-8--light {
  color:#F4F4F4;
}
.opinia__autor {
  text-align: left;
  padding: 10px 10px 10px 10px;
  font-family: 'Libre Franklin', sans-serif;
  font-size:22px;
  border-bottom: 2px solid #e49f26;
  display: inline-block;
  margin: 0 auto 0 20px;
  color: #fff;
}
.block-quote-copy {
  color: #fff;
}
.container-quote {
  text-align: left;
}
.opinie__container {
  align-items: flex-start!important;
  display:flex;
  flex-direction: column; 
  justify-content: center;
  align-items: center;
}
.opinie--bg {
  background-color: #78324e;
  padding-top:100px;
}
.link--light {
  color: #f4f4f4;
  display: inline;
  font-family: "Libre Franklin";
  text-decoration: underline;
  padding: 0;
  margin: 0;
}
.image-10-copy {
  margin-bottom: 100px;
}
.divider {
  width:30%;
  max-width: 300px;
  height:4px;
  background: #ddd;
  margin: auto auto 60px;
}
.divider--white {
  background:#fff;
  height: 3px;
}

.price-box {
  font-family: 'Libre Franklin', sans-serif;
  text-align: center;
}
.price--standard {
  font-size: 18px;
  line-height: 24px;
  text-decoration: line-through;
  color: #313131;
  margin-bottom:10px;
  font-weight: 300;
}
.price--promo {
  font-size: 24px;
  line-height: 32px;
  color: #000;
  margin-bottom:10px;
  font-weight:600;
}
.price-box__features {
  font-family: 'Libre Franklin', sans-serif;
  display: flex;
  flex-wrap:wrap;
  justify-content: center;
}
.feature {
  margin: 10px;
  display: flex;
  flex-wrap: nowrap;
}
.feature--check {
  width: 21px;
  height: 21px;
  margin: 0 10px 0 0;
}
.price-box__button {
  max-width: 350px;
  margin: 30px auto;
}
.navigation-button:hover {
    color: #000!important;
}
@media (max-width:540px) {
  .price-box__features {
    justify-content: flex-start;
  }
}
@media (max-width: 400px) {
  .feature {
    flex: 1 0 100%;
  }
}
.faq__item {
  background-color: #fff;
  margin: 20px auto;
}

.faq__question {
  font-size: 18px;
  line-height: 32px;
  margin-right: 30px;
  position: relative;
  padding: 20px;
  cursor: pointer;
}
.faq__answer {
  color: #afafaf;
  font-size: 15px;
  display: none;
  padding: 0 20px 20px;
}

.faq__button {
  position: absolute;
  right: -10px;
  top: 20px;
  font-weight: 700;
  font-size: 28px;
  color: #afafaf;
}
.faq__heading {
  text-align: center;
  margin: auto auto 40px;
}
.faq__container {
  width:100%;
}
.koszt__h2 {
  margin: auto auto 20px;
  color: #000;
  font-weight: 600;
  font-size: 24px;
}
.koszt__h2--span {
  font-size: 32px;
}
.czego-si-dowiesz {
  background-color: #270264;
}
.czego__heading {
  font-weight: 800;
}

.czego__paragraph {
  margin-bottom:20px;
}

.opinie__heading {
  text-align: center;
  margin-bottom: 20px;
}
.nag-wek-badania {
  color:#37048A;
}
.button {
  background-color: #FF4900;
  border: 1px solid #FF4900;
  padding: 10px 15px;
}
.button:hover {
  background-color: rgba(255,118,63,1.00);
  border-color: rgba(255,118,63, 0.37);
}
h6.question.heading-16 {
    color: rgb(228 159 38 / 58%);
}
.button-jak-pomoc, .div-block-3.button-jak-pomoc {
  background: none;
  box-shadow: none;
  width: 100%;
}
.question {
    color: #78324e;
}
.question-block, .div-block-8.question-block {
    background-color: #fedead;
}

.autorka {
  background-color: #eee;
  padding-bottom: 60px;
}
.program-kursu {
  background: #fff;
}
.opinie__img {
  width: 250px;
  max-width:90%;
  padding-top: 40px;
}
.opinie {
  padding-top: 20px;
  padding-bottom: 60px;
}
@media (max-width:767px) {
  .opinie__img-container {
    margin: auto;
  }
  .opinie__img {
    padding: 0 0 40px;
  }
}


.korzysci__icon {
  margin: 10px auto 20px;
  height: 130px;
  width: auto;
}

.korzy-ci-grid-block {
  display: flex;
  flex-wrap: wrap;
}
.hero__row {
  display: flex;
}
.heero-img {
  background-image: url("../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png");
  background-position: bottom center;
  background-size: auto 100%;
  background-repeat: no-repeat;
}

.header {
  flex-direction: column;
  padding-top: 110px;
  padding-bottom: 0;
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(87,0,53,0.80),rgba(116,0,70,0.80),rgba(160,0,97,0.80)), url(../images/top-bg.jpg);
  background-position: 115% 100%, center, center;
  background-size: auto 85%, 100%, cover;
  background-repeat: no-repeat, no-repeat, no-repeat;
}
.header--v1 {
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(29, 1, 75,0.80),rgba(39,2,100,0.80),rgba(160,0,97,0.80)), url(../images/top-bg.jpg);
}
.header--v1a {
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), -webkit-linear-gradient(rgba(78, 39, 159,0.80), rgba(102, 65, 177,0.8), rgba(230, 128, 199, 0.8)), url(../images/top-bg.jpg);
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), -o-linear-gradient(rgba(78, 39, 159,0.80), rgba(102, 65, 177,0.8), rgba(230, 128, 199, 0.8)), url(../images/top-bg.jpg);
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(78, 39, 159,0.80), rgba(104,46,167,0.80), rgba(194, 58, 153, 0.8)), url(../images/top-bg.jpg);
}
.header--v1b {
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(29, 1, 75,0.80), rgba(29, 1, 75,0.80)), url(../images/top-bg.jpg);
}
.header--v2 {
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(92, 11, 224,0.80),rgba(74, 6, 185,0.80),rgba(225, 45, 248,0.80)), url(../images/top-bg.jpg);
}

.header--v3 {
  background-image: url(../images/82924067_10219533446419356_909135621832835072_n-removebg-preview.png), linear-gradient(rgba(234, 0, 142,0.80),rgba(234, 0, 142,0.80),rgba(234, 0, 142,0.80)), url(../images/top-bg.jpg);
}
@media (min-width:1600px) {
  .hero__col {
    width:100%;
  }
  .header-description__paragraph {
    font-size: 20px;
    line-height: 28px;
  }
}
@media (min-width:992px) and (max-width:1199px) {
  .header {
    background-position: 370px 100%, 100%, center;
    background-size: auto 80%, 100%, cover;
  }
}
@media (min-width:992px) and (max-width:1199px) and (min-height:1000px) {
  .header {
    background-size: auto 80%, 100%, cover;
    background-position: 370px 100%, 100%, center;
  }
}
@media (max-width:991px) {
  .header {
    background-image: linear-gradient(rgba(29, 1, 75,0.80), rgba(29, 1, 75,0.80)), url(../images/top-bg.jpg);
    background-size: 100%, cover;
    background-position: 100%, center;
  }
  .hero-img {
    display: none;
  }
  .header-description__paragraph {
    font-size: 20px;
    line-height: 28px;
  }
}
.button--header {
  background-color: #8bc34a;
  border: 1px solid #8bc34a  ;
}
  .button--header:hover {
  background-color: #abdf70;
  border-color: rgba(171,223,112,0.53);
}
.button-outline {
  padding: 2px;
  border-radius: 5px;
  background-color: #FF4900;
}
.button-outline:hover {
  background-color: rgba(255,118,63,1);
}
.button-outline--header {
  background-color: #9ad754;
}
.button-outline--header:hover {
  background-color: #8bc34a;
}
.partner-img {
  max-height: 32px;
  margin: 0px;
}
.h2--cta {
  font-size: 22px;
  line-height: 32px;
}
.patronaty {
  padding: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.patronaty__header {
  font-family: Montserrat, sans-serif;
  color: rgb(31 31 31);
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  display: inline-block;
  margin: auto auto 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid #ddd;
}
.patronaty__flexbox {
    margin: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}
.patronaty__link {
  margin: 10px 20px;;
}
.case__row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.case__col--img1 {
  background-image: url("../images/case1.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 20vw;
}
.case__col--img2 {
  background-image: url("../images/case2.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 66% top ;
  min-height: 20vw;
}

.przypadek-1 {
  background: #f4f4f4; 
  padding-top: 40px;
}
.przypadek-2 {
  padding-top: 0px;
  padding-bottom: 40px;
  background: #f4f4f4; 
}
.button--case {
    padding: 5px 10px;
    margin: 10px auto!important;
}
.case--text {
  font-size: 14px;
  margin-bottom: 10px;
  padding-right: 0;
}

.program__title {
  font-size: 20px;
  line-height: 26px;
}

.opinie__details {
  font-size: 14px;
  line-height: 20px;
  font-family: "Libre Franklin";
  text-align: center;
}

.opinie__author {
  text-align: center;
  margin-bottom: 5px;
}

.opinie__quote {
  margin: 0 0 0 30px!important;
  padding: 0;
  font-family: "Libre Franklin";
  font-size: 13px;
  line-height:18px;
  font-style: italic;
}

@media (max-width:991px) {
  .film {
    width: 100%!important;
    padding-top: 40px;
  }
}

.gratisy__span {
  color: #fff;
}
.gratisy__img {
  border: 1px solid #fff;
  box-shadow: 1px 1px 5px 0 rgb(0 0 0 / 20%);
  max-width: 100%;
  width: 340px;
}
@media (min-width:992px) {
  .gratisy-container--left {
    padding-right: 50px;
  }
  .gratisy-container--right {
    padding-left: 50px;
  }
}
.o-autorze {
  color: #000000;
}
.autorka__desc {
  color: #000000;
  font-size: 14px;
  line-height: 20px;
}
.autorka__desc--featured {
  font-size: 18px;
  line-height:24px;
}
.autorka__row {
  display: flex;
  align-items: center;
}
.autorka__img {
  padding:40px 4px 4px;
  border-radius:8px;
}
.autorka__img--outline {
  border: 2px solid #fff;
  border-radius: 8px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
}
.autorka__col {
  padding: 0 20px;
}

.sources {
  padding-top: 50px;
}

.source {
  color: #444;
  line-height: 18px;
  margin-bottom:3px;
  font-size:12px;
}

.speakers__container {
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.speaker {
  margin: 15px 15px 40px;
  flex: 0 0 220px;
  position: relative;
}

.speaker__img {
  border-radius: 8px;
  padding: 4px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5)
}

.speakers {
  background-color: #eee;
  padding: 60px 0;
}

.speaker__name {
  background-color: rgba(255, 255, 255, 0.94);
  background-image: linear-gradient(7deg, #e9e9e9, transparent);
  color: #000;
  display:inline-block;
  padding:4px 8px;
  border-radius: 4px;
  border:1px solid #F1F7E9;
  width:90%;
  position: absolute;
  bottom: -20px;
  left:0px;
  right:0;
  margin: auto;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.2);
  text-align: center;
  font-family: "Libre Franklin";
  font-size: 16px;
  line-height:22px;
}

.opinie__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: auto;
  padding-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.opinie__author--img {
  width:140px; 
  height: 140px;
  border-radius:50%;
  margin: 0 auto 20px;
  border-radius: 100%;
  padding:4px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
}

.testimonial__img {
  width: 30px;
  line-height: 30px;
  object-fit: cover;
  border-radius: 50%;
  padding: 4px;
  box-shadow: 1px 1px 5px 0 rgba(0, 0, 0, 0.5);
  margin: 0;
}

.testimonial {
  display: flex;
  flex-direction: column;
  flex: 0 0 320px;
  padding: 10px;
  margin: 10px 25px 20px;
}

.testimonials__container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.testimonial__name {
  font-family: "Libre Franklin";
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 26px;
  margin: auto auto auto 10px;
}

.testimonial__text {
  position: relative;
  font-family: "libre Franklin";
  font-size: 16px;
  line-height: 24px;
  font-style: italic;
  flex: 1 0 100%;
  margin: 0 0 auto;
}
.testimonial__text:before {
  content: "";
  background: url(../images/qu.png) top left no-repeat;
  width: 23px;
  height: 16px;
  top: -5px;
  left: -35px;
  position: absolute;
}

.testimonials {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 60px;
  background-color: #fafafa;
}

.case__container {
  margin-right: 0; 
  max-width:640px;
  padding-left: 30px;
  padding-right: 30px;
}
.case__container.case2 {
  margin-right: auto;
  margin-left: 0;
}
@media (max-width:991px) {
  .case__container {
    max-width:92%;
    margin-right: auto;
    margin-left: auto;
    padding-left:0;
    padding-right: 0;
  }
  .case__col--img1 {
    min-height: 50vw;
    order: 1;  
  }
  .case__col--img2 {
    min-height: 50vw;
  }
  .case__col--text1 {
    order: 2;
  }
}

.popup__button {
  font-size: 1em;
  cursor: pointer;
  transition: all 0.3s ease-out;
}

.popup__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  overflow: scroll;
}
.popup__overlay.active {
  visibility: visible;
  opacity: 1;
  z-index:9999;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 96%;
  max-width: 720px;
  position: relative;
  transition: all 2s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup__close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup__close:hover {
  color: #06D85F;
}
.popup__content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .popup__box{
    width: 100%;
  }
  .popup{
    width: 92%;
  }
}
.przypadek-header {
  padding-top: 30px;
  text-align: center;
}
.staty {
  position: relative;
  background-color: #f8f8f8;
}
.staty:before {
    content: ' ';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: .2;
    background: url(../images/3bckg.jpg) center center no-repeat fixed;
    background-size: cover;
    z-index: 0;
}


.h2--smaller {
  text-align: center;
}

.donutchart {
  display: flex;
  justify-content: center;
  padding: 0 0 20px;
}
.donutchart__background-icon{
  background-image:url(../images/l2a.png); 
  background-position: center; 
  background-repeat: no-repeat;
  width: 200px;
  line-height: 200px;
  height: 100%;
}



.opinie__row {
  display: flex;
  flex-wrap: wrap;
}

.opinie__col {
  display: flex;
  align-items: center;
}

.opinie__film {
  margin: auto;
}

.gratisy__container {
  max-width: 820px;
}

.program__col--module {
  order: 1!important;
}

.program__col--content {
  order: 2!important;
}

.testimonial__header {
  display: flex;
  margin: 0 auto 15px 25px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.opinie__author--left {
  text-align: left;
}

.opinie__details--left {
  text-align: left;
}


.text-center {
	text-align:center;
}

.bilety {
	font-family:'Libre Franklin', sans-serif;
	font-size:16px;
	line-height:28px;
	font-weight:400;
}
.bilet {
	padding:20px;
}
.pakiet-height{margin-bottom:40px}.pakiet{background-color:#fff;text-align:center;padding:30px 20px;margin:0;-webkit-border-bottom-right-radius:9px;-webkit-border-bottom-left-radius:9px;-moz-border-radius-bottomright:9px;-moz-border-radius-bottomleft:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;-webkit-box-shadow:-2px 2px 24px -2px rgba(0,0,0,.58);-moz-box-shadow:-2px 2px 24px -2px rgba(0,0,0,.58);box-shadow:-2px 2px 24px -2px rgba(0,0,0,.58)}.total{font-size:13px;margin-top:15px}.nazwa-c{padding:25px 25px 20px;background-color:#f0f0f0;letter-spacing:2px;-webkit-border-top-left-radius:9px;-webkit-border-top-right-radius:9px;-moz-border-radius-topleft:9px;-moz-border-radius-topright:9px;border-top-left-radius:9px;border-top-right-radius:9px;-webkit-box-shadow:-2px 2px 24px -2px rgba(0,0,0,.58);-moz-box-shadow:-2px 2px 24px -2px rgba(0,0,0,.58);box-shadow:-2px 2px 2px -2px rgba(0,0,0,.58);z-index:3;position:relative}.pakiet .nazwa{color:#3263AC;text-transform:uppercase}.pakiet .cena {color:#dc1d38;font-size:50px;line-height:50px;font-weight:900}.pakiet .ncena span{color:#ddd;font-size:50px;line-height:50px;font-weight:700}.pakiet .cena,.pakiet .ncena{margin-top:10px;padding:0 8px}.pakiet p{margin-top:30px}
.nazwa-c {
	font-size:18px;
}
.pricing:link,.pricing:visited{background-color:#dc1d38;color:#fff;padding:15px 30px;font-weight:700;display:inline-block;text-decoration:none;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.pricing:hover{background-color:#ba1a31;color:#fff;text-decoration:none}