
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  background: #fff;
  color: #242424;
  font-family: 'Open Sans', sans-serif;
  font-size:16px;
 
}

a {
  color: #c12a21;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #c12a21;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #c12a21;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #c12a21;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  right: 70px;
  bottom: 10px;
  max-width: 375px;
  background-color: white;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 6px 6px rgba(0,0,0,0.25);
  margin-left: 30px;
  font-family: system-ui;
  z-index:9999;
}
#gdpr-cookie-message h4 {
  color: #c10d0f;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
#gdpr-cookie-message p, #gdpr-cookie-message ul {
  color: #242424;
  font-size: 15px;
  line-height: 1.2em;
  margin-bottom:10px;
}
#gdpr-cookie-message p:last-child {
  margin-bottom: 0;
  text-align: right;
}
#gdpr-cookie-message li {
  width: 49%;
  display: inline-block;
}
#gdpr-cookie-message a {
  color: #c10d0f;
  text-decoration: none;
  font-size: 15px;
  padding-bottom: 2px;
  border-bottom: 1px dotted rgba(255,255,255,0.75);
  transition: all 0.3s ease-in;
  cursor:pointer;
}
#gdpr-cookie-message a:hover {
  color: #c10d0f;
  border-bottom-color: var(--red);
  transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
  border: none;
  background:#c10d0f;
  color: #fff;
  font-size: 15px;
  padding: 7px 15px;
  border-radius: 0px;
  margin-left: 15px;
  font-weight:bold;
  cursor: pointer;
  transition: all 0.3s ease-in;
}
#gdpr-cookie-message button:hover {
  color: #fff;
  transition: all 0.3s ease-in;
  background:#c10d0f;
}
button#gdpr-cookie-advanced {
  color: #fff;
}
#gdpr-cookie-message button:disabled {
  opacity: 0.3;
}
#gdpr-cookie-message input[type="checkbox"] {
  float: none;
  margin-top: 0;
  margin-right: 5px;
}
button#ihavecookiesBtn {
  position: fixed;
  right: 70px;
  bottom: 10px;
  background:rgba(156, 13, 13, 0.342);
  z-index:999;
}

/* Prelaoder */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #f2f2f2;
  border-top: 6px solid #c12a21;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  height: 100px;
}
#header.header-transparent {
  background:none;
}
#header.header-scrolled {
  background: #fff;
  height: 60px;
  padding:5px 0px;
}
#header .logo {

  margin: 0;
  padding:0px;
  width:300px;
  margin-top:-5px;
  
}
#header .logo a {
  color: #fff;

}
#header .logo img {
  max-height: 100px;
  padding:10px;
  background:white;
  display:table;
  -webkit-box-shadow: 3px 3px 6px -2px rgba(0, 0, 0, 0.8);
-moz-box-shadow: 3px 3px 6px -2px rgba(0, 0, 0, 0.8);
box-shadow: 3px 3px 6px -2px rgba(0, 0, 0, 0.8);
}
#header.header-scrolled .logo img{
  max-height:50px; transition: 0.3s;
  box-shadow:none;
-webkit-box-shadow:none;
-moz-box-shadow:none;
}
#header.header-scrolled .logo
{
background:none;

}

@media (max-width: 992px) {
  #header.header-scrolled .logo {
    max-height:40px; transition: 0.3s;
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-family: 'Raleway', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}
#header.header-scrolled .navbar a{
  color: #0a0a0a;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #c12a21;
}



/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  background:#9b0201;
  padding:10px;
  border-radius:20px; 
  font-size: 40px;
  cursor: pointer;
  display: none;
  line-height: 0;
  font-weight:bold;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}
.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(78, 117, 121, 0.7);
  transition: 0.3s;
  z-index: 999;
}
.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}
.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 18px;
  color: #0b2240;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #c12a21;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}
.navbar-mobile .dropdown ul li {
  min-width: 200px;
}
.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #18d26e;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#293d40+0,5f8589+61,ffffff+100 */
background: #293d40; /* Old browsers */
background: -moz-linear-gradient(top,  #293d40 0%, #5f8589 61%, #ffffff 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #293d40 0%,#5f8589 61%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #293d40 0%,#5f8589 61%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#293d40', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
 overflow: hidden;

}
@media (max-height: 500px) {
  #hero {
    height: 150vh;
  }
}
#hero .carousel, #hero .carousel-inner, #hero .carousel-item, #hero .carousel-item::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
#hero .carousel-item {
  background-size:cover;
  background-position: top;
  background-repeat: no-repeat;
}
#hero .carousel-item::before {
  content: "";
}
#hero .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  bottom: 0;
  top:20%;

}
#hero .container {
  position:relative;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 60px;
  line-height:80px;
  font-weight: 600;
  position:absolute;
  left:0px;
  max-width:50%;
  font-family: 'Raleway', sans-serif;
}

#hero p
{
position:absolute;
left:0px;
top:170px;  max-width:50%;
font-size:24px; 
}
#hero ul 
{
position:absolute;
margin:0px;
padding:0px;
left:0px;
top:240px;  max-width:50%;
font-size:26px; 
color:#1d1d1d;
font-family: 'Raleway', sans-serif;
font-weight:600;
margin-top:20px;
}
#hero ul li{
list-style-type:none;
background:url(../img/point.svg) top left no-repeat;
background-size:46px;
padding-left:50px;
line-height:25px;
margin:15px 0px;
color:#fff;
}
#hero .slider-photo
{
  position:absolute;
  right:0px;
  top:0px;
  max-width:58%;
}
.see-more
{
  background:rgba(255,255,255,0.2);
  border:3px solid #9b0201;
  position:absolute;
left:0px;
top:370px;  max-width:50%;
font-size:20px; 
color: #9b0201;
font-family: 'Raleway', sans-serif;
font-weight:600;
padding:20px 40px;
}
.see-more:hover{
  color:#fff;
  background:#9b0201;
}
.see-more.v2
{
top:400px;
padding-left:20px;
padding-bottom:10px;
padding-top:15px;
transform: scale(1);
    animation: pulse 2s infinite;
}
keyframes pulse {
	0% {
		transform: scale(0.95);
	}

	70% {
		transform: scale(1);
	}

	100% {
		transform: scale(0.95);
	}
}
.st0-see-more
{
max-width:20px;
float:left;
fill:#9b0201;
color:#9b0201;
}
.see-more.v2:hover .st0-see-more
{
fill:#fff;
}
.see-more-top
{
  background:#9b0201;
  border:2px solid #9b0201;
margin-left:10px !important;
font-size:13px !important;
color: #fff !important;
font-family: 'Raleway', sans-serif;
font-weight:600;
float:left;
padding:10px !important;
cursor:pointer !important;
}
.see-more-top .st0-see-more
{
fill:#fff;
}
@media (max-width: 768px) {
  #hero h2 {
    font-size: 28px;
  }
}
#hero p {
  width: 80%;
  margin: 0 auto 30px auto;
  color: #fff;
  font-weight:300;
  margin-top:40px;
}
@media (min-width: 1024px) {
  #hero p {
    width: 60%;
  }
}
#hero .carousel-fade {
  overflow: hidden;
}
#hero .carousel-fade .carousel-inner .carousel-item {
  transition-property: opacity;
}
#hero .carousel-fade .carousel-inner .carousel-item,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  opacity: 0;
}
#hero .carousel-fade .carousel-inner .active,
#hero .carousel-fade .carousel-inner .carousel-item-next.carousel-item-start,
#hero .carousel-fade .carousel-inner .carousel-item-prev.carousel-item-end {
  opacity: 1;
  transition: 0.5s;
}
#hero .carousel-fade .carousel-inner .carousel-item-next,
#hero .carousel-fade .carousel-inner .carousel-item-prev,
#hero .carousel-fade .carousel-inner .active.carousel-item-start,
#hero .carousel-fade .carousel-inner .active.carousel-item-end {
  left: 0;
  transform: translate3d(0, 0, 0);
}
#hero .carousel-control-prev, #hero .carousel-control-next {
  width: 10%;
}
@media (min-width: 1024px) {
  #hero .carousel-control-prev, #hero .carousel-control-next {
    width: 5%;
  }
}
#hero .carousel-control-next-icon, #hero .carousel-control-prev-icon {
  background: none;
  font-size: 32px;
  line-height: 1;
}
#hero .carousel-indicators li {
  cursor: pointer;
}
#hero .btn-get-started {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 32px;
  transition: 0.5s;
  margin: 10px;

  background: #c12a21;
}
#hero .btn-get-started:hover {
  background: #fff;
  color: #c12a21;
}


:root {
  --big-font: 24px;
  --medium-font:17px;
  --small-font:13px;
}

.carousel-indicators [data-bs-target]
{
  background-color:#c12a21;
  bottom:50px;
}

.slider-title
{
  position:absolute;
  top:200px;
  right:0%;

  width:95%;
  height:220px;
}
.bez-recepty
{
opacity:0.5;
border:1px solid #bed5d7;
position:fixed;
right:80px;
bottom:10px;
z-index:100;
}
.bez-recepty span{
  border:3px solid #bed5d7; 
  display:table;
font-weight:bold;
padding:10px 30px;
color: #bed5d7;
font-family: 'Raleway', sans-serif;
margin:2px;
}
.slider-proc
{
width:50%;
}
.slider-proc img
{
display:table; 
margin-left:-25px; 
}
.slider-proc span{
color:white;
font-size:30px;
}

#parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  background-image: url(../img/paralax-01b.png), url(../img/paralax-02b.png),
  url(../img/paralax-03b.png), url(../img/paralax-04b.png);
  background-repeat: no-repeat;
  background-position: fixed;
  background-position: 50% 50%;
  z-index:0;
}


#hero h2.slider-title-big::after {
  content: '';
  border-left: 20px solid #e2211c;
  border-right: 160px solid #fff;
  height: 4px;
  width: 185px;
display:table;
margin-top:20px;
}
.legend
{
font-size:11px;
display:table;
}
/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/
section {
  overflow: hidden;
}
/*--------------------------------------------------------------
# Dlaczego
--------------------------------------------------------------*/
h4.title
{
font-size:60px;
color:#000;
font-weight:600;
position:relative;
margin-top:0px;
margin-bottom:60px;
}
h4.title::after
{
  content:'';
  border-left:20px solid #e2211c;
  border-right:160px solid #0b2240;
  height:4px;
  width:185px;
  display:table;
  position:absolute;
  bottom:-30px;
}
#dlaczego img{
  max-width:100%;
}
.zoxin-cele{
  text-align:center;
}
#dlaczego .description{
  font-size:var(--big-font);
  line-height:27px;
  color:#000;
  font-weight:300;
  margin-top:50px;
  margin-bottom:0px;  
}
.zoxin-cele img{
  width:65%;
  display:table;
  margin:0 auto;
  margin-top:10px;
  margin-bottom:-5px;
  text-align:center;
}
.zoxin-cele span{
  font-size:var(--medium-font);
  color:#242424;
  text-align:center;
}
.cel-main
{
background:#9b0201;
font-size:24px;
color:white;
font-weight:500;
padding:20px;
width:100%;
margin:20px 0px;
margin-bottom:120px;  text-align:center;
display:none !important;
}
#dlaczego
{
  margin-top:50px;
}




/* Lek Section
--------------------------------*/
#lek {
  background: url("../img/bg-02.webp") right center no-repeat fixed;
  padding: 0px 0 0px 0;
  position: relative;
  margin:0px 0px;
  padding-bottom:50px;
}
.lek-cols
{
width:70%;
}
.table-lek
{
background:#0b2240;
color:white;
margin:10px 0px;
text-align:center;
padding:4px;
-webkit-box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
-moz-box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
margin-left:-20px;
margin-top:40px;
font-size:17px;
}

.table-lek tr td{
  padding:25px;
}
.table-lek tr:nth-child(odd) td, .table-lek tr th 
{
background:#183152;
padding:15px;
}
.table-lek strong
{
width:100%;
font-size:var(--big-font);display:table;
}

.table-lek tr th
{
  font-size:60px;
  padding-top:35px;
}
.table-lek tr th div{
  background:url("../img/lek.svg") top center no-repeat;
  padding-top:70px;
  background-size:70px;
  -webkit-transition: all 0.2s 0s ease, all 0.2s 0s ease;
-moz-transition: all 0.2s 0s ease, all 0.2s 0s ease;
-o-transition: all 0.2s 0s ease, all 0.2s 0s ease;
transition: all 0.2s 0s ease, all 0.2s 0s ease;
}
.table-lek:hover tr th div{
  background:url("../img/lek-vb.svg") top center no-repeat;  background-size:80px;
}

.table-kosmetyk
{
background:#fff;
margin-top:10px;
margin-bottom:40px;
text-align:center;
padding:4px;


-webkit-box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
-moz-box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
box-shadow: 0px 10px 24px -17px rgba(145, 145, 152, 1);
}
.table-kosmetyk tr td{
  padding:25px;
}
.table-kosmetyk tr:nth-child(odd) td, .table-kosmetyk tr th 
{
background:#f1f4f7;
padding:15px;
}
.table-kosmetyk strong
{
width:100%;
font-size:var(--big-font);display:table;
}
.table-kosmetyk tr th
{
  font-size:50px;
  padding-top:35px;
}
.table-kosmetyk tr th div{
  background:url("../img/kosmetyk.svg") top center no-repeat;
  padding-top:70px;
  background-size:90px;
  -webkit-transition: all 0.2s 0s ease, all 0.2s 0s ease;
-moz-transition: all 0.2s 0s ease, all 0.2s 0s ease;
-o-transition: all 0.2s 0s ease, all 0.2s 0s ease;
transition: all 0.2s 0s ease, all 0.2s 0s ease;
}
.table-kosmetyk:hover tr th div{
  background:url("../img/kosmetyk-vb.svg") top center no-repeat;  background-size:100px;
}

.ok-icon
{
max-width:16%;
display:block;
margin:0 auto;
margin-top:20px;
margin-bottom:-70px;
}




/* Zoxin lek section
--------------------------------*/
#zoxin-lek {
  background:url(../img/bg-03b.webp) left bottom no-repeat scroll;
  background-size:100%;
  clear:both;
  margin-top:00px;
  padding-bottom:150px;

}

.zoxin-lek-03
{
  margin-bottom:65px;
  max-width:120%;
}
#zoxin-lek h4.title {
  margin-top: 30px;
  margin-bottom: 50px;
}
#zoxin-lek .col-md-4
{
  background:url(../img/3kroki-arrow.png) right 90px no-repeat;
}
#zoxin-lek .col-md-4:last-child{
  background:none;
}
#zoxin-lek img{
  max-width:90%;
}
#zoxin-lek .col-md-4 div{
  margin:20px 0px;
}
#zoxin-lek  ul
{
  margin:0px;
  padding:0px;
}
#zoxin-lek  ul li
{
 list-style-type:none;
 background:url(../img/point.svg) top left no-repeat; 
 padding-left:30px;
 background-size:30px;
 margin:0px;
}

/* sklad produktu section
--------------------------------*/
#sklad
{
padding:50px 0px;
}
.sklad-icon img
{
max-width:120px;
margin-right:20px;
float:left;
width:20%;
}
.sklad-icon 
{
font-size:22px;
display:table;width:100%;
font-family: "Montserrat", sans-serif;
}
.sklad-icon div
{
padding-top:20px;
float:left;
font-weight:600;
width:70%;
}
#sklad .col-md-6:first-child
{
  padding-top:30px;
}

/* sposob uzycia section
--------------------------------*/
#sposob-uzycia {
  background: background-color: rgba(223, 229, 236, 1);
  background-image: linear-gradient(0deg, rgba(223, 229, 236, 1) 76%, rgba(255, 255, 255, 1) 100%);
margin-top:50px;
}
#sposob-uzycia-in
{
background:  url(../img/bg-05.png) left bottom no-repeat fixed;
background-size:50%;
padding:0px 0px;
padding-bottom:100px;
}
.sposob
{
  margin:50px 0px;
}
.sposob strong{
  font-size:var(--big-font);
  font-family: "Montserrat", sans-serif;
}
.sposob ul{
  margin:20px 0px;
  padding:0px;
}
.sposob ul li
{
 list-style-type:none;
 background:url(../img/point.svg) top left no-repeat; 
 background-size:30px;
 padding-left:40px;
 font-size:var(--medium-font);
}
.sposob-uzycia-top
{
  background: rgb(255,255,255);
  background: linear-gradient(0deg, rgba(255,255,255,0) 10%, rgba(255,255,255,1) 100%);
  width:100%;
  height:150px;
  margin-top:0px;
}
#sposob-uzycia h4.title
{
  margin-top:-110px;
}

/* Twoj lek na lupiez Section
--------------------------------*/

#twoj-lek-top{
  background: url(../img/bg-06.webp)  bottom center no-repeat scroll;
  background-size:100%;
  min-height:450px;
  margin-top:-420px;
}
#twoj-lek
{
  background:#1b2842;
  color:white;
  padding-bottom:150px;
  margin-top:-2px;
}
#twoj-lek .title{
  color:white; 
 }
 #twoj-lek .title span{
  color:#c12a21; 
 }
 #twoj-lek .title::after {
  border-right: 160px solid #fff;
}
.stat
{
font-size:18px;
font-weight:300;
display:table;
width:100%;
margin:20px 0px; 
}
.stat span{
  font-size:60px;
  font-weight:600;
  float:left;
}
.stat strong{
  float:left;
  width:80%;
  padding-left:20px;
  line-height:26px;
  padding-top:28px;
}
.stat-03 
{
background:url(../img/line-01.svg) bottom left no-repeat;
background-size:130px;
}
.stat-04 
{
background:url(../img/line-02.svg) bottom left no-repeat;
background-size:130px;
}
.slider-mini img{
  width:100%;
}
.opinions
{
  margin-top:100px;
}
.testimonials-slider
{
  margin-top:50px;
}
.testimonials-slider p
{
background:white;
color:#1f1f1f;
font-size:22px;
padding:60px  40px;
font-weight:500;
text-align:center;
}
.testimonials-slider p
{
position:relative;
}
.quote-sign-left
{
position:absolute;
top:10px;
left:10px; 
z-index:0;
}
.quote-sign-right
{
  position:absolute;
  bottom:10px;
  right:10px; 

z-index:0;
  }
  .testimonials-slider span{
    z-index:1;
    position:relative;
  }
.slider-mini .carousel-item
{
  transition: ease 1.5s !important;
}
.swiper-pagination-bullet
{
border-radius:0px;
background:#c8d2df;
width:60px;
height:10px;
}
.swiper-pagination-bullet-active{
background:#c12a21;
}
.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{
bottom:-10px;
}




/* Blog
--------------------------------*/
#blog
{
  margin:100px 0px;
}
.blog-link img
{
  max-width:100%;
}
.blog-link 
{
color:#000;
background:white;
display:table;
padding:10px;
}
.blog-link h4
{
font-size:30px;
font-family: 'Raleway', sans-serif;
margin:20px 0px;
font-weight:bold;
}
.blog-link p{
  color:#4c4c4c;
  font-weight:300;
  font-size:18px;
}
.blog-link span{
  font-size:20px;
  color:#e2211c;
  font-family: 'Raleway', sans-serif;
  padding:15px 20px;
  font-weight:bold;
  border:2px solid #e2211c;
  margin-top:10px;
  display:table;

  transition: 0.3s;
}
.blog-link:hover span
{
background: #e2211c;
color:white;
}
#blog .title{
  text-align:center;
}
#blog .title::after {
  content: '';
  border-left: 20px solid #e2211c;
  border-right: 160px solid #0b2240;
  height: 4px;
  width: 185px;
  display: table;
  position: absolute;
  bottom: -30px;
  left:43%;
}
.blog-link:hover
{
  -webkit-box-shadow: 0px 5px 29px -21px rgba(68, 68, 68, 1);
  -moz-box-shadow: 0px 5px 29px -21px rgba(68, 68, 68, 1);
  box-shadow: 0px 5px 29px -21px rgba(68, 68, 68, 1);
}


#cookies
{
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5f8589+0,ffffff+97 */
background: #5f8589; /* Old browsers */
background: -moz-linear-gradient(top,  #5f8589 0%, #ffffff 50%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #5f8589 0%,#ffffff 50%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #5f8589 0%,#ffffff 50%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f8589', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
background-position:top;
  padding-top:150px; 
}
#cookies h5
{
font-weight:600;
font-size:30px;
}
#cookies h4{
  margin-top:0px;
}
.contact-phone
{
  font-size:26px;
  display:table;
  margin:10px 0px;
}
.contact-mail
{
  font-size:22px;
  display:table;
  margin:10px 0px;
}
.contact-www
{
  font-size:18px;
}
#blog-bg
{
/* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#5f8589+0,fcfcfc+58 */
background: #5f8589; /* Old browsers */
background: -moz-linear-gradient(top,  #5f8589 0%, #fcfcfc 58%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  #5f8589 0%,#fcfcfc 58%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  #5f8589 0%,#fcfcfc 58%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#5f8589', endColorstr='#fcfcfc',GradientType=0 ); /* IE6-9 */
margin:0px;
background-size:100% 100vh;
position:absolute;
top:0px;
width:100%;
height:100vh;
left:0px;
z-index:-1;
}
#blog-main
{
  margin:0px; 
}
#blog-main .container{
padding-top:150px;

}

.blog-sidebar img
{
width:100%;
max-width:100%;
}
.blog-sidebar-box
{
background:#0b2240;
color:white;
margin-bottom:30px;
}
.blog-sidebar-box h3{
  font-size:30px;
  padding:15px 20px;
  font-weight:600;
  border-bottom:2px solid #263d6a;
  margin:0px;
}
.blog-sidebar-box a{
  display:table;
  font-size:18px;
  color:white;
  border-bottom:1px solid #263d6a;
  width:100%;
  padding:10px 20px;
}
.blog-sidebar-box a:hover, .blog-sidebar-box a.active
{
background:#9b0201;
}


.blog-content h2
{
font-size:50px;
color:#000;
font-weight:600;
position:relative;
margin-top:20px;
margin-bottom:60px;
}
.blog-content h2::after
{
  content:'';
  border-left:20px solid #e2211c;
  border-right:160px solid #0b2240;
  height:4px;
  width:185px;
  display:table;
  position:absolute;
  bottom:-30px;
}
.blog-content em.cyt
{
background:rgba(255,255,255,0.4);
padding:20px;
display:table;
font-size:18px;
}
.blog-content h3
{
color:#9b0201;
font-weight:500;  
}
.blog-content strong{
 font-size:20px; 
}
.blog-content ul li
{
  list-style-type:none;
  background:url(../img/point.svg) top left no-repeat;
  background-size:33px;
  padding-left:50px;
  line-height:28px;
}
.blog-content p
{
  margin: 0 0 22px 0;
}
.blog-content ul{
  margin:0px;
  padding:0px 10px;
  margin-bottom:20px;
}
.blog-content table.red
{
  width:100%;
  margin:10px 0px;
}
.blog-content table.red tr th{
background:rgba(193, 42, 43, 0.8);
color:white;
padding:10px;
}
.blog-content table.red tr td
{
  padding:10px;
}
.blog-content table.red tr:nth-child(odd) td{
  background:rgba(173, 198, 200, 0.3);
}
.accordion h2::after{
  display:none;
}
.blog-content .accordion h2
{

  margin-top: 0px;
  margin-bottom: 0px;  
}
.accordion-button {
  font-weight:bold;
  font-size:19px;
  padding:20px 15px;
}
.accordion-item
{
margin:3px 0px; 
border-radius:0px;
border:1px solid #cce0e2;
border-top:1px solid #cce0e2;
}
.accordion-button:not(.collapsed) {
  color: #9b0201;
  background-color: #f1d9d9;
  box-shadow: inset 0 -1px 0 rgb(0 0 0 / 13%);
}

#cookies img{
  width:100%;
  max-width:100%;
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer-info {
  padding:30px 0px;
  color: #5a5a5a;
  font-size: 14px;
text-align:left;
}
.footer-top
{
background:url(../img/bg-06b.png) bottom center no-repeat;
background-size:100%; 
width:100%;
min-height:450px;
margin-top:-300px;
}
.footer-center
{
background:#1b2842;
color:#8a99ad;
font-size:14px;
text-align:left;
padding-bottom:50px;
margin-top:-2px;
}
.aflofarm
{
margin-top:-50px;
margin-bottom:20px;
}
.footer-center a{
  display:inline;
  color:#8a99ad;
}
.footer-center p{
  margin:0px;
}
.footer-center p span
{
margin:0px 10px;
}

#twoj-lek img, #sklad img
{
  max-width:100%;
}


.three-steps img
{
width:auto;
max-width:100%;  
}
.legal
{
border:1px solid #4c4c4c;
padding:10px;
font-size:24px;
margin:20px 20px;
text-align:center;
}





@media (min-width: 1930px)
{
#hero .carousel-item
{
background-position:0px -80px !important;
margin-top:130px;
}
}

@media (max-width: 1440px)
{
#hero .carousel-item
{
background-position:60% 30% !important;
}
#hero h2
{
  font-size:55px;
  line-height:65px;
  left:50px;
}
#hero p
{
top:140px;
left:50px;
width:45%;
}
#hero ul{
top:240px;
left:50px;
}
.see-more
{
left:50px;
}
.stat strong{font-size:18px;width:70%;}
.slider-title
{
  top: 170px;
  height:200px;
}
.slider-title::before
{
height:200px;
}
.slider-proc span
{
font-size:24px;
margin-left:10px;
display:table;
}
}
@media (max-width: 1199px)
{
#hero h2
{
  font-size:40px;
  line-height:50px;
}
#hero p
{
  top:100px;
font-size:18px;
}
#hero ul{
  top:160px;
  font-size:22px;
  }
  .see-more 
  {
  top:270px;
  padding:13px 30px;   font-size:18px;
  }

.slider-title
{
  height:150px;
  width:98%;
}
.slider-title::before
{
height:150px;
}
.slider-proc img {
width:70%;
}
.slider-proc span
{
margin-left:0px;
}
#lek h4.title{
  background:rgba(255, 255, 255, 0.7);
display:table;
padding:20px;
}
#sposob-uzycia .col-md-5
{
  width: 58.33333333%;
}
#sposob-uzycia .col-md-7
{
  width: 41.66666667%;
}
#sposob-uzycia-in {
    background-size: 40%;
}
.stat strong
{
width:65%;
}
}
@media (max-width: 989px)
{
  #sposob-uzycia {
  margin-top:-100px;
  }
  #hero h2
  {
    font-size:28px;
    line-height:45px;
    left:30px;
  }
  #hero p
{
  top:90px;
font-size:18px;
left:30px;
}
.see-more
{
top:210px;max-width:100%;
font-size:16px; 
padding:15px 30px;
}
.bez-recepty
{
  display:none;
}
.lek-cols{
  width:100%;
}
#sklad img{
max-width:100%;
}
.sposob ul li
{
background-size:40px;
}
.stat strong
{
width:55%;
font-size:16px;
}
#twoj-lek-top {
  margin-top: -440px;
}
.aflofarm {
  margin-top: -10px;
  margin-bottom: 20px;
}
#hero .slider-photo
{
top:300px;
width:50%;
max-width:50%;
right:20%;
}
#blog .title::after
{
display:none;  
}
.stat-04, .stat-03{
  background:none;
}
.see-more-top
{
margin-left:10px !important;
font-size:17px !important;
font-family: 'Raleway', sans-serif;
font-weight:600;
float:left;
padding:10px 30px !important;
}
}
@media (max-width: 770px)
{
#hero h2
{
  font-size:34px;
  line-height:38px;
  top:60px;
  width:100%;
  max-width:100%;
}
#hero p, #hero ul, .see-more{
  display:none;
}

#hero .slider-photo
{
top:180px;
width:80%;
max-width:80%;
right:10%;
}
  #hero .carousel-container
  {
    margin-top:0px;
  }
  .slider-title
  {
  top:100px;
  height:130px;
  }
  .slider-title:before{height:130px;}

  #sposob-uzycia-in
  {
   background:none; 
  }
.table-kosmetyk{
  margin-left:0px;
}
#sposob-uzycia .col-md-5
{
  width: 100%;
}
#sposob-uzycia .col-md-7
{
  width: 100%;
}
.stat strong
{
width:70%;
}
#parallax
{
  display:none;
}
#header .logo img
{
  float:left;
}
}



.popup-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9997 !important;
}

.popup {
font-family: Arial, sans-serif;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  padding: 40px;
  border-radius: 0px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.popup h3{
 font-weight:600; 
}
.popup-content {
  text-align: center;
}

.popup .close {
s
  font-size: 20px;
  cursor: pointer;
  color: #333;
}

.popup #emailInput {
  width: 80%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.popup button {
  background-color: #4caf50;
  color: #fff;
  padding: 10px 20px;
  border: none;
 border-radius: 4px;
  cursor: pointer;
  font-size: 16px;
}

.psf-text
{

}
.psf-text-img img
{
width:auto;
max-width:100%;
}
#closePopup
{
background:#9b0201;
font-weight:bold;
color:white;
padding:15px 30px;
margin:5px;
}

.closeP
{
background:#c9d5d8;
font-weight:bold;
color:#373d3e;
padding:15px 30px;margin:5px;
}