
/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {

  color: #242424;
  font-size:16px;font-family: 'Jost', sans-serif;
  -webkit-font-smoothing: antialiased;
}

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;
}

h1, h2, h3, h4, h5, h6 {  
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
}
img{
  width:auto;
  max-width:100%;
}
sup{
font-size:50%;
top:-0.8em;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 5px;
  bottom: 5px;
  z-index: 996;
  background: #7c150a;
  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: #7c150a;
  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: 80px;
  background:white;
}
#header.header-transparent {
  background:none;  background:white;
}
#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:320px;
  margin-top:-7px;
  
}
#header .logo a {
  color: #fff;

}
#header .logo img {
  max-height: 150px;

  display:table;
}
#header.header-scrolled .logo img{
  max-height:90px; 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;
  padding: 10px 10px 10px 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #323232;
  white-space: nowrap;
  transition: 0.3s;
  border-bottom:2px solid white;
}
#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;
  border-bottom:2px solid #b5530d;
}
.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: #1a171b;
  background:none;
  padding:10px;
  border-radius:20px; 
  font-size: 56px;
  cursor: pointer;
  display: none;
  line-height: 0;
  font-weight:800;
  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: 20px;
  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;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  max-height:891px;
  min-height:891px;
background-size:cover; 
background-position:bottom;
background:url('../img/tlotop.jpg') bottom center no-repeat;
}
#contact-top
{
  width: 100%;
  height: 230px;
  max-height:230px;
background-size:cover; 
background-position:bottom;
background:url('../img/contact-top.png') bottom center no-repeat;
}
#hero .container {
  position:relative;
}

#hero h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 50px;
  line-height:66px;
  font-weight: 600;
  position:absolute;
  left:0px;
  max-width:590px;
  top:170px;
  font-family: 'Nunito', sans-serif;
  text-shadow: 0px 0px 6px #490906;
}

#hero h4 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 24px;
  line-height:34px;
  font-weight: 500;
  position:absolute;
  left:0px;
  max-width:590px;
  top:320px;
  font-family: 'Jost', sans-serif;
  text-shadow: 0px 0px 6px #490906;
}


#hero img
{
position:absolute;
top:520px;
left:-80px;
max-width:70%;
z-index:996;
}
#main
{
background:none;
width:100%;
z-index:100;
}

.add-basket-big, .add-basket-big:hover
{
font-weight:700 !important;
padding:23px 45px !important;
border-radius:40px;
padding-left:36px !important;
margin-left:30px;
background:url(../img/basket.png) top center;
color:#31150f !important;
text-shadow: 1px 1px 1px rgba(225, 181, 48, 0.6);
font-size:25px !important;
position:absolute;
top:680px;
left:450px;
font-family: 'Nunito', sans-serif;
text-transform:uppercase;
line-height:25px;
cursor:pointer;

}
.add-basket-big:hover
{
  -webkit-box-shadow: 3px 3px 22px -6px rgba(223, 168, 37, 1);
  -moz-box-shadow: 3px 3px 22px -6px rgba(223, 168, 37, 1);
  box-shadow: 3px 3px 22px -6px rgba(223, 168, 37, 1);
}
.add-basket-big i{
 margin-right:45px; 
 font-size:25px !important;
}
.hero-hero
{
position:absolute;
top:550px !important;
left:720px !important;
}

.clear{clear:both;}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Section-1
--------------------------------------------------------------*/
#section-1 h2
{
text-align:center;
font-size:36px;
line-height:46px;
background:url(../img/line.png) bottom center no-repeat;
padding-bottom:15px;
}
#section-1 h2 strong
{
display:block;
font-size:46px;
}
.section-1-desc
{
text-align:center;
font-family: 'Jost', sans-serif;
font-size:17px;
color:#2d2d2d;
line-height:24x;
}
.section-1-desc strong
{
 font-size:24px;
 color:#be7c1d;
 font-weight:700;
 display:block; 
 font-family: 'Nunito', sans-serif;
}
.section-1-icon img
{
width:40%;
float:left;

}
.section-1-icon-desc
{
width:60%;
float:left;
padding-left:20px;
}
.section-1-icon
{
margin-top:40px;
position:relative;
}
.section-1-icon h3
{
font-size:27px;
font-weight:700;
line-height:30px;
margin-top:40px;
margin-bottom:10px;
}
.section-1-icon h4
{
font-size:27px;
font-weight:700;
line-height:30px;
margin-top:30px;
margin-bottom:10px;
}
.section-1-icon.v1::after
{
content:'+';
font-size:100px;
color:#ebebeb;
position:absolute;
right:0px;
font-family: 'Nunito', sans-serif;
font-weight:800;
top:60px;
}


/*--------------------------------------------------------------
# Section 2
--------------------------------------------------------------*/

#section-2
{
background:url(../img/sect03_bg.jpg) top center;
padding-top:190px;
padding-bottom:100px;
}
.section-2-center
{
  position:relative;
}
#section-2 h2
{
text-align:center;
font-size:36px;
line-height:46px;
background:url(../img/line.png) bottom center no-repeat;
padding-bottom:15px;
}
#section-2 h2 strong
{
display:block;
font-size:46px;
}
.section-2-pack
{
text-align:center;
margin:0 auto;
margin-top:190px;
}
.section2-icon
{
text-align:center;
position:absolute;
font-size:21px;
line-height:26px;
}
.section2-icon img{display:block;margin:0 auto;text-align:center;margin-bottom:5px;}
.section2-icon.ico1
{
width:35%;
top:-180px;
left:0px;
}
.section2-icon.ico2
{
width:35%;
top:-180px;
right:0px;
}
.section2-icon.ico3
{
width:20%;
top:50px;
left:0px;
}
.section2-icon.ico4
{
width:20%;
top:50px;
right:0px;
}
.section2-icon.ico5
{
width:20%;
top:250px;
left:90px;
}
.section2-icon.ico6
{
width:20%;
top:250px;
right:90px;
}
.section-2-gold
{
background:url(../img/gold_bg.jpg) top center;
padding-top:35px;
padding-bottom:30px; 
text-align:center;
}
.section-2-gold h2
{
color:#291b08;
font-size:33px;
margin-bottom:0px;
font-weight:600;
text-shadow: 0px 0px 4px rgba(220, 183, 91, 1);
}


/*--------------------------------------------------------------
# Section 3
--------------------------------------------------------------*/
#section-3-1
{
padding:100px 0px;
}
#section-3-1 h2, #section-3-2 h2
{
text-align:left;
font-size:36px;
line-height:46px;
background:url(../img/line.png) bottom left no-repeat;
padding-bottom:15px;
}
#section-3-1 h2 strong, #section-3-2 h2 strong
{
display:block;
font-size:46px;
}
#section-3-1 .col-md-7
{
padding-right:40px;
}
#section-3-2
{
padding-top:20px;
}
.section-3-bulb
{
font-size:16px;
text-transform:uppercase;
font-style:italic;
background:#efefef;
padding:8px 30px;
border-radius:20px;
display:table;
margin-top:40px;
}
.section-3-bulb img
{
margin-left:-20px;
margin-top:-10px;  
}
.section-3-percent
{
margin-top:10px;
}
.section-3-percent h3
{
font-size:72px;
font-weight:700;
float:left;
color:#dc9a31;
margin-right:10px;
}
.section-3-percent h5
{
font-size:30px;
line-height:34px;
font-weight:700;
float:left;
width:70%;
margin-top:10px;
}
.section-3-gif
{
border-radius:40px;
}


/*--------------------------------------------------------------
# Section 4
--------------------------------------------------------------*/
#section-4
{
background:url(../img/sect05_bg.jpg) top center;
padding-top:190px;
padding-bottom:15px;
}
#section-4 table
{
background:rgba(255,255,255,0.5);
border-spacing: 0;
border-collapse: separate;
border-radius: 10px;
border:2px solid #ceab94;
}
#section-4 table tr th
{
background:#9a1c1f;
color:white;
font-size:18px;
font-weight:bold;
text-transform:uppercase;
padding:12px 20px;
}
#section-4 table tr th:first-child
{
border-top-left-radius:10px
}
#section-4 table tr th:last-child
{
border-top-right-radius:10px
}
#section-4 table tr td
{
  font-size:18px;
padding:8px 20px;
border-bottom:1px solid #e1d4cc;
}
#section-4 table tr:last-child td{border-bottom:none;}
#section-4 .przyp
{
font-size:14px; 
color:#706d6e;
margin-top:20px;
}

#section-4 h2
{
text-align:center;
font-size: 44px;
line-height:46px;
background:url(../img/line2.png) bottom center no-repeat;
padding-bottom:15px;
font-weight:700;
margin-bottom:50px;
}
#section-4 img
{
float:right;
}

.section-4-przyp
{
font-size: 13px;
    color: #706d6e;
     margin-top: 30px;
line-height:16px;
}

/*--------------------------------------------------------------
# Section 5
--------------------------------------------------------------*/
#section-5
{
display:none;
}
#section-5 h2
{
text-align:center;
font-size: 44px;
line-height:46px;
padding-bottom:15px;
font-weight:700;
margin-top:60px;
margin-bottom:30px;
}
#section-5 .blog-mini-photo {
  border-radius: 5% 5% 5% 5%;
}
.blog-mini
{
border:1px solid #efefef;
border-radius:20px;
padding:15px;
display:table;
margin-bottom:40px;
text-align:center;
padding-bottom:25px;
cursor:pointer !important;
}
.blog-mini h4
{
color:#212121;
font-size:24px;
font-weight:800;
margin-top:15px;
margin-bottom:15px;
}
.blog-mini p
{
color:#444444;
font-size:16px;
margin-bottom:20px;
}
.blog-mini span
{
font-weight:700 !important;
padding:10px 28px !important;
border-radius:40px;
margin-bottom:10px;
background: rgb(135,74,30);
background: linear-gradient(0deg, rgba(135,74,30,1) 0%, rgba(223,175,46,1) 100%);
color:#31150f !important;
text-shadow: 1px 1px 1px rgba(225, 181, 48, 0.6);
font-size:17px !important;
}



/*--------------------------------------------------------------
# CTA
--------------------------------------------------------------*/

#section-cta {
  width: 100%;
  height: 100vh;
  max-height:644px;
  min-height:644px;
background-size:cover; 
background-position:bottom;
background:url('../img/tlofooter.jpg') bottom center no-repeat;
}

#section-cta .container {
  position:relative;
}

#section-cta h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 50px;
  line-height:66px;
  font-weight: 700;
  position:absolute;
  left:0px;
  max-width:700px;
  top:170px;
  font-family: 'Nunito', sans-serif;
  text-shadow: 0px 0px 6px #490906;
}
#section-cta .logo-white
{
  position:absolute;
top:80px;
left:0px;
}


#section-cta .cta-product
{
position:absolute;
top:360px;
left:-80px;
max-width:70%;
z-index:996;
}
#section-cta .hero-hero
{
position:absolute;
top:360px !important;
left:720px !important;
}
#section-cta .add-basket-big
{
  position:absolute;
  top:500px;
  left:450px;
}

.h2-mobile{display:none;}



.clear 
{
clear:both;
}
#supl-diety
{
position:fixed;
left:10px;
bottom:10px;
color:#cfb8ab;
border:2px solid #cfb8ab;
padding:7px 20px;
font-size:18px;
border-radius:30px;
z-index:999999;
font-size:14px;
background:rgba(255,255,255,0.4);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer
{
font-size:14px;
text-align:right;
padding-top:15px;
}
#footer a{
color:#76130a;
margin:0px 10px;  
}
.contact-info
{
  font-size: 14px;
  color: #575757;
  margin-top:50px;
}
#cookies .title{
    text-align: left;
    font-weight: bold;
    font-size: 35px;

}
#cookies h5 {
  font-weight: 600;
  font-size: 26px;
}
.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;
}

.add-basket-mobile
{
display:none;
}

/*--------------------------------------------------------------
# podstrony
--------------------------------------------------------------*/
#nagl
{
    width: 100%;

padding-top:150px;
padding-bottom:50px;
  background-size:cover; 
  background-position:bottom;
  background:url('../img/nagl.jpg') bottom center no-repeat; 
}
#nagl h1{
color:white;
}
#cookies
{
padding-top:50px;
}
#footer.footer-2
{
  width:100%;
  background:url(../img/sect05_bg.jpg) bottom center;  
  padding:30px 0px;
  margin-top:20px;
}







@media (max-width: 1399px)
{
  #hero h2, #hero h4
  {
  max-width:540px;
  }
  #section-cta h2 
  {
    max-width: 600px; font-size:44px;   
  }
  #hero h2
  {font-size:44px;}
}
@media (max-width: 1199px)
{
  #hero h2, #hero h4
  {
  max-width:500px;
  }
  #hero{background-position-x:45%;
  }
  .navbar a, .navbar a:focus
  {
  max-width:180px;
  white-space:normal;
  padding:10px 10px;
  font-size:14px;
  }
  .navbar a.add-basket,   .navbar a.add-basket:hover {
    font-weight: 700 !important;
    padding: 10px 18px !important;
    max-width:300px;
    white-space:nowrap;
  }
  .section2-icon {
    font-size: 18px;
    line-height: 21px;
  }
  #section-cta h2 {
    max-width: 500px;
    font-size: 40px;
    line-height:40px;
}
.footer-cop
{
width:50%;
float:right;
}
.section-3-percent h5 {
  font-size:26px;
  line-height: 28px;
  width: 60%;
  margin-top: 10px;
}
}
@media (max-width: 989px)
{
 #header .logo
{
max-width:60% !important;
}
#header, #home{width:100vw;
overflow:hidden;
}
body {
  overflow-x:hidden;
  margin:0px !important;
  padding:0px !important;
    }
    #gdpr-cookie-message
    {
    max-width:200px;
    }

}
@media (max-width: 770px)
{
  body {
overflow-x:hidden;
margin:0px !important;
padding:0px !important;
  }

}


/* Cookie Dialog */
#gdpr-cookie-message {
  position: fixed;
  right:50px;
  bottom:5px;
  max-width: 375px;
  background-color: white;
  padding: 13px;
  border-radius: 10px;
  box-shadow: 0 6px 6px rgba(0,0,0,0.25);
  margin-left: 30px;
  font-family: system-ui;
  z-index:997;
  font-family: 'Jost', sans-serif;
}
#gdpr-cookie-message h4 {
  color: ##b90c00;
  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:#7c150a;
  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: #7c150a;
  border-bottom-color: var(--red);
  transition: all 0.3s ease-in;
}
#gdpr-cookie-message button,
button#ihavecookiesBtn {
  border: none;
  background:#7c150a;
  color: #fff;
  font-size: 15px;
  padding: 7px 15px;
  border-radius: 30px;
  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:#7c150a;
}
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: 50px;
  bottom: 5px;
  background:rgba(177, 0, 0, 0.342);
}
.add-basket, .add-basket:hover
{
font-weight:700 !important;
padding:10px 28px !important;
border-radius:40px;
margin-left:30px;
background: rgb(135,74,30);
background: linear-gradient(0deg, rgba(135,74,30,1) 0%, rgba(223,175,46,1) 100%);
color:#31150f !important;
text-shadow: 1px 1px 1px rgba(225, 181, 48, 0.6);
font-size:17px !important;
border:none !important;
}
.add-basket:hover
{
  background: linear-gradient(0deg, rgba(135,74,30,1) 0%, rgba(240,200,80,1) 100%);  
  border:none !important;
}
.add-basket i{
 margin-right:10px; 
 font-size:17px !important;
}


@media (max-width: 989px)
{
.add-basket, 
.add-basket:hover
  {
    background-color: rgba(180, 1, 6, 1);
    background-image: linear-gradient(
  180deg, rgba(180, 1, 6, 1) 0%, rgba(66, 2, 0, 1) 100%);
  border:none;
  float:left;
  padding:13px 30px !important;
  margin-left:5px;
  margin-top:5px;
  }
  .navbar a, .navbar a:focus {
    max-width:100%;
    white-space: normal;
    padding: 10px 10px;
    font-size: 18px;
}
.add-basket-mobile
{
display:table;
color:#b87f46;
font-size:20px;
border:2px solid #b87f46;
border-radius:50px;
padding:10px 15px;
}
.hero-hero, .add-basket-big
{
display:none;
}
#hero img{max-width:100%;margin-top:20%;}
#hero, #section-cta{
  width: 100% !important;
  height:100vh !important;
background-size:cover !important; 
background:url('../img/tlotop-mobile.jpg') top center;
padding:20px;
min-height:auto;
max-height:auto;
}
#hero .container {
  position:static;
}
#hero h2, #hero h4
{
position:static;
}
#hero h2{display:none;}
#hero h2.h2-mobile
{
display:block;
width:100%;
padding:10px;
margin-top:80px;
font-size:36px;
line-height:35px;
}
#hero h4
{
width:100%;
padding:10px;
margin-top:0px;
font-size:16px;
line-height:20px;
}
#hero img
{
position:static;
margin-top:10px;
margin-left:-20px;
max-width:100%;
z-index:996;
}
#section-1 h2 strong, #section-1 h2 , #section-2 h2 strong, #section-2 h2 , #section-3-1 h2 strong, #section-3-1 h2 ,
#section-3-2 h2 strong, #section-3-2 h2, #section-4 h2, #section-5 h2
{
  font-size: 32px;  
  line-height:34px;
}
#section-1{padding-top:30px;}
.section-2-center
{
position:static;
}
.section-2-pack
{
margin-top:10px;
}
.section2-icon
{
text-align:center;
position:static;
font-size:18px;
line-height:24px !important;
width:100% !important;
margin-bottom:20px;
}
#section-2 {
  background: url(../img/sect03_bg.jpg) bottom center no-repeat;
  padding-top: 50px;
  padding-bottom: 20px;
}
.section-2-gold h2 {
  font-size: 26px;
}
.section-2-gold {
  padding-top: 20px;
  padding-bottom: 20px;
}
.section-1-icon img, .section-1-icon-desc
{
width:100%;
}
.section-1-icon img
{
width:80%;
}
.section-1-icon.v1::after {
  content: '';
}
#section-cta .logo-white {
  position:static;
margin-top:10px;
}
#section-cta .cta-product {
  position: static;
  margin-top:10%;
  margin-left: 0px;
 width:100%;
 max-width:100%;
}
#section-cta h2 {
  position: static;
  margin-top:30px;
  font-size: 34px;
    line-height: 38px;
}
.back-to-top, .back-to-top.active
{
display:none !important;
}
#gdpr-cookie-message
{
right:5px;

}
#supl-diety {
  padding: 5px 20px;
  font-size: 14px;
}
.navbar-mobile{z-index:99999 !important;}
#gdpr-cookie-message{z-index:99;}
button#ihavecookiesBtn
{
right:5px;
}
.navbar a.add-basket, .navbar a.add-basket:hover{display:none}
.navbar-mobile ul
{
padding-top:50px;
}
#section-cta h2{max-width:100%}
#section-3-1 .col-md-7
{
padding-right:15px;
}
#section-3-1, #section-3-2 .col-md-7
{
padding-top:30px;
}
#section-4{padding-top:60px;}
.section-3-percent h5
{width:100%;}
.section-3-percent h3{margin:0px;}
.footer-cop{width:100%;}
}


