
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
background:white;
  color: #242424;
  font-family: 'Raleway', sans-serif;
  font-family: 'Roboto Condensed', sans-serif;
  font-size:16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
 
}

a {
  color: #242424;
  transition: 0.5s;
  text-decoration: none;
}

a:hover, a:active, a:focus {
  color: #242424;
  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;
}
img{
  width:auto;
  max-width:100%;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffc600;
  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: #ffc600;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/* 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:0px 0px;
  -webkit-box-shadow: 3px 3px 6px -2px rgba(131, 131, 131, 0.6);
  -moz-box-shadow: 3px 3px 6px -2px rgba(131, 131, 131, 0.6);
  box-shadow: 3px 3px 6px -2px rgba(131, 131, 131, 0.6);
}
#header .logo {

  margin: 0;
  padding:0px;
  width:300px;
  margin-top:-13px;
  
}
#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(133, 42, 0, 0.6);
-moz-box-shadow: 3px 3px 6px -2px rgba(133, 42, 0, 0.6);
box-shadow: 3px 3px 6px -2px rgba(133, 42, 0, 0.6);
-webkit-border-radius: 0 0 15px 15px;
border-radius: 0 0 15px 15px;
}
#header.header-scrolled .logo img{
  max-height:60px; transition: 0.3s;
  box-shadow:none;
-webkit-box-shadow:none;
-moz-box-shadow:none;
margin-top:10px;
}
#header.header-scrolled .logo
{
background:none;

}


/*--------------------------------------------------------------
# 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 40px;
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform:uppercase;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  text-shadow: 1px 1px 1px #d65100;
}
#header.header-scrolled .navbar a{
  color: #0a0a0a;
  text-shadow:none;
}
.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: #191919;
  text-shadow:none;
}
.dropdown-menu
{
width:200px;  display:none !important;
left:20px;
top:40px;
background:white;
-webkit-box-shadow: 0px 0px 2px 2px #c5c8cc6b;
    box-shadow: 0px 0px 2px 2px #c5c8cc6b;
    
border:none;
padding:10px 0px !important;
}
.dropdown:hover .dropdown-menu
{
display:table !important;
}
.dropdown-menu li{
  display:table;
}
.dropdown-menu li a, .dropdown-menu li a:hover, .dropdown-menu li a:focus{
  margin:0px;
  padding:0px;
  padding:10px 20px !important;
  color:black;
  text-shadow:none;
  cursor:pointer !important;
  border-bottom:1px solid #e2e2e2;
}
.dropdown-menu li a:hover
{
  background:rgba(185, 12, 0, 1);
color:white !important;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  background:#ffc600;
  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(77, 8, 8, 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: #191919;
  text-shadow:none;border-bottom: 1px solid #e2e2e2;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #c12a21;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}
.dropdown-menu li{width:100%}
.navbar-mobile .dropdown ul {
  position: static;
  display:table !important;
  margin: 0px 0px;
  padding: 0px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow:none;
  width:100% !important;
}

.navbar-mobile .dropdown ul a {
  padding: 15px 20px;
  width:100%;
}
.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;
}



/**
* Main page
*/
#home
{
background:url(../img/main-bg.jpg) bottom center no-repeat;
background-size:cover;
width:100%;
height:100vh;
overflow:hidden;
}

.product_box
{
  display:table;
  width:100%;
}
.main_product_left
{
width:40%;
padding-left:12%;
display:table-cell;
}
.main_product_left img{
position:relative;
z-index:99;
}
#main_products
{
position:absolute;
width:100%;
bottom:240px;
}
.main_product_right
{
  width:58.9%;
vertical-align:bottom;
 display:table-cell;
 position:relative;
  }
.nowosc
{
position:absolute;
right:-14px;
top:-14px;
}
  .main_product_left img
  {
margin-bottom:-30px;
margin-top:20px;
  }

.product_name
{
  transform: rotate(270deg) ; 
font-size:33px;
font-family: 'Raleway', sans-serif;
font-weight:300;
line-height:47px;
display:table;
margin-left:-30px;
margin-bottom:70px;
}
.product_name strong
{
  font-family: 'Roboto Condensed', sans-serif;
  font-weight:600;
  font-size:50px;
}
.product_hydrooptima_senior, .product_hydrooptima_senior_d
{
  border:7px solid rgba(255, 213, 41, 0.0);
}
.product_hydrooptima_cardio
{
 border:7px solid rgba(204 178, 130, 0.4);
 border-radius:10px;
 display:table;
 width:100%; 
}
.button_sprawdz
{
background:#ff7800;
color:white;
font-size:22px;
font-weight:500;
padding:15px 40px;
letter-spacing:1px;
z-index:5;
font-family: 'Roboto Condensed', sans-serif;
border-top-right-radius:8px;
border-bottom-right-radius:8px;
margin-left:-11px;
margin-bottom:40px;
display:table;
background-size: 300% 100%;
background-image: linear-gradient(to right, #e45600, #ff7800, #fcb90e, #f89d0a);
moz-transition: all .4s ease-in-out;
-o-transition: all .4s ease-in-out;
-webkit-transition: all .4s ease-in-out;
transition: all .4s ease-in-out;
cursor: pointer;
}
.button_sprawdz i{
margin-left:3px;
}
.button_sprawdz:hover {
  background-position: 100% 0;
  moz-transition: all .4s ease-in-out;
  -o-transition: all .4s ease-in-out;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
  color:white;
}
.product_hydrooptima_senior_d .button_sprawdz
{
  background-image: linear-gradient(to right, #481348, #68316f, #a057a9, #793781);
}
.product_hydrooptima_junior .button_sprawdz
{
  background-image: linear-gradient(to right, #f9b305, #ffc600, #ffe15d, #ffc90e);
  color:#323232;
}
.product_hydrooptima_cardio .button_sprawdz
{
  background-image: linear-gradient(to right, #915a26, #daab63, #915a26, #daab63);
  color:#fff;
}





.hydrooptima_logo
{
width:220px;
margin-top:30px;
margin:0 auto;  
}
.slogan_main
{
  position:absolute;
 bottom:50px;
font-size:60px;
color:white;
font-weight:300;
  width:100%; 
  font-family: 'Raleway', sans-serif;
  text-align:center;
  line-height:60px;
  z-index:999;
  text-shadow: 0px 0px 10px #d05300;

}
.slogan_main strong{
  font-weight:bold;
}

.aflofarm_cop
{
  position:absolute;
  bottom:5px;
  color:#f1eae3;
  font-size:12px;
  text-align:center;   width:100%; 
}
.product_hydrooptima_cardio img.nowosc{
  transform: scale(1);
	animation: pulse 2s infinite; 
}

/**
* End Main page
*/

img{
  width:auto;
  max-width:100%;
}



@keyframes pulse {
	0% {
		transform: scale(0.95);

	}

	70% {
		transform: scale(1);

	}

	100% {
		transform: scale(0.95);

	}
}
.footer_mobile
{
display:none;
}




/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  right: 10px;
  bottom: 10px;
  max-width: 375px;
  background-color: white;
  padding: 20px;
  border-radius: 5px;
  box-shadow: 0 6px 6px rgba(0,0,0,0.25);
  margin-left: 30px;
  font-family: system-ui;
  z-index:99999999999;
}
#gdpr-cookie-message h4 {
  color: #ea5611;
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
#gdpr-cookie-message h5 {
  color: ##ea5611;
  font-family: 'Quicksand', sans-serif;
  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: #ea5611;
  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;
}
#gdpr-cookie-message a:hover {
  color: #ea5611;
  border-bottom-color: var(--red);
  transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
  border: none;
  background:#ea5611;
  color: #fff;
  font-size: 15px;
  padding: 7px 15px;
  border-radius: 3px;
  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:#ea7711;
}
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: 15px;
  bottom: 15px;
  background:#ea56117a;
  z-index:9999;
}

#gdpr-cookie-message button.btn-hydro
{
  color:#ea5611 !important;
  text-decoration: underline !important;
  background:none!important;
  cursor:pointer!important;
  padding:0px;
}



.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  color: #000;
  text-decoration: none;
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
  -webkit-appearance: none;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050000000000;
  display: none;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -25%);
          transform: translate(0, -25%);
}

@media screen and (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - (0.5rem * 2));
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (0.5rem * 2));
  content: "";
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.modal-header .close {
  padding: 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-weight:bold;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef;
}

.modal-footer > :not(:first-child) {
  margin-left: .25rem;
}

.modal-footer > :not(:last-child) {
  margin-right: .25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1000px) {
  .modal-dialog {
    max-width: 900px !important;
    margin: 1.75rem auto;
  }
  }
@media (min-width: 992px) {
  .modal-lg {
    max-width: 800px;
  }
}





@media (max-width: 1680px)
{
  .main_product_left
  {
  width:40%;
  padding-left:13%;
  }

  .main_product_right
{
width:49%;
}
}




@media (max-width: 1540px)
{
  .hydrooptima_logo
  {
  width:160px;
  margin-top:10px;
  margin:0 auto;  
  } 
  #home
{
background:url(../img/main-bg.jpg) bottom center no-repeat;
background-size:100%;
}
.bg_bottom
{
background:url(../img/bg-bottom.jpg) bottom center no-repeat;
position:absolute;
bottom:0px;
width:100%;
min-height:200px;
z-index:0;
}
.slogan_main
{
bottom:40px;
}
#main_products
{
position:absolute;
width:100%;
bottom:150px;
z-index:99;
} 
.main_product_left
{

padding-left:16%;
}
.button_sprawdz
{

margin-left:-10px;
margin-bottom:43px;
}

@media (max-width: 1399px)
{
  .slogan_main
  {
  font-size:50px;
  line-height:50px;
  } 
  .button_sprawdz {
    font-size: 20px;
    padding: 15px 30px;
  }
  #home{background:none;}
  .tip__holder p
  {
  font-size:90%;
  }
}
@media (max-width: 1199px)
{
  .main_product_left
  { 
  padding-left:5%;
  }
  #home{background:none;}

}
@media (max-width: 991px)
{

  .button_sprawdz 
  {
font-size:14px;
  } 
  .button_sprawdz i
   {
     display:none;
   }
  .main_product_left
  { 
width:70%;
  }
  .product_name
{
font-size:25px;
}
.product_name strong
{

  font-size:30px;
  line-height:10px !important;
}
.product_name
{
  line-height:30px !important;
}
}
@media (max-width: 768px)
{
  .back-to-top
  {
   display:none !important; 
  }
#main_products .container .row 
{
  display:flex;
justify-content: space-between;
}


#home
{
 height:auto; 
}
#main_products
{
position:static;
width:100%;
}
.bg_bottom, .slogan_main, .aflofarm_cop
{

display:none;

}
#home
{
background:none;
}
body
{
overflow-x:hidden;
}
.hydrooptima_logo
{
width:220px;
} 
#main_products .container .row .col-md-4
{
margin-left:5%;
margin-right:4%;
width:90%;
margin-top:20px;
}
.product_hydrooptima_senior, .product_hydrooptima_senior_d {
  border: 7px solid rgba(255, 155, 41, 0.4);
  border-radius: 8px;
}
.button_sprawdz {
    font-size: 28px;
    padding: 15px 30px;
    border-radius: 10px;
  margin-right:25px;
}
.product_name
{
font-size:40px;
margin-bottom:90px;
line-height:49px !important;
}
.product_name strong
{
  font-size:45px;
}
.footer_mobile
{
background:url(../img/bg-bottom.jpg) bottom center no-repeat;
display:table;
width:100%;
padding:20px 20px;
text-align:center;
margin-top:20px;
}

.footer_mobile_cop
{
  color:#f1eae3;
  font-size:14px;
  margin-top:20px;

}

.footer_mobile_slogan
{
font-size:35px;
color:white;
font-weight:300;
  font-family: 'Raleway', sans-serif;
  line-height:40px;
  text-shadow: 0px 0px 10px #d05300;

}
.footer_mobile_slogan strong
{
  font-weight:700;
}
}

@media (max-width: 500px)
{
.main_product_left
{
  width: 55%; 
}
.main_product_right
{
  width: 44.9%;
}
.button_sprawdz {
  font-size: 24px;
  padding: 10px 20px;
  margin-right:10px;
}
.product_name
{
font-size:35px;
margin-bottom:90px;
}
.product_name strong
{
font-size:35px;
}
}
@media (max-width: 340px)
{
  .button_sprawdz {
    font-size: 18px;
    padding: 10px 10px;
    margin-right:10px;
  }
  .product_name
  {
  font-size:25px;
  margin-bottom:90px;
  }
  .product_name strong
  {
  font-size:25px;
  }
  .main_product_left
  {
    width:50%; 
  }
  .main_product_right
  {
    width: 49.9%;
  }

}


@media  (min-width: 1366px), and (max-width:1366px), and (min-width:768px), and (max-width:768px)
       {
#home
        {
overflow:hidden;
       }
       .slogan_main {
        font-size: 35px;

    }
    .slogan_main strong{
    margin-top:-10px !important;
    display:table;
    width:50%;
    margin-left:25%;
    }
    .slogan_main {
      bottom: 40px;
  }
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 980px;
}
.product_hydrooptima_cardio img.nowosc {
  width:50%;
  animation: pulse 2s infinite;
}
.product_name, .product_name strong{font-size:30px;}
.product_name{margin-bottom:55px;}
  }