@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;400;800&display=swap");

*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  outline: none;
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}
:root{
  --bg-color: #080808;
  --second-bg-color: #131313;
  --third-bg-color: #00cc00;
  --text-color: white;
  --main-color: #2692fd;
  --main-color2:  #ffcc66;
  --main-color3: #006600;
  --font-h: "Fondamento", cursive;;
  --font-p: 'Times New Roman', Times, serif; 
  --font-size-h1: 2.5rem;
  --font-size-h2: 1.5rem;
  --font-size-p: 1.5rem;
  --font-cytat: 2.5rem;
  --font-normal: normal;
  --font-italic: italic;
}

html{
  font-size: 80%; 
  overflow-x: hidden;
}
body{
  background: var(--bg-color);
  color: var(--text-color);
}

.logo {
  width: 100px;
}

header {
  position: absolute;
  z-index: 9999;
  width: 100%;
  padding: 1rem 2rem;
  top: 0;
  left: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  position: fixed;
  background-color : black;/*rgba(184, 229, 250, 0.5);*/
  opacity: 1;  
}

header nav {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  opacity: 1;
}
.navbar a{
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  font-weight: 500;
  font-family: "Fondamento", cursive;
  transition: 0.3s ease;
  border-bottom: 3px solid transparent;
}
.navbar a:hover,
.navbar a.active{
  color: var(--main-color);
  border-bottom: 3px solid var(--main-color);
}
#menu-icon{
  font-size: 3.6rem;
  color: var(--main-color);
  display: none;
}


::selection {
  background-color: #0b372dbb;
}


/*
header ul {
  display: flex;
  list-style: none;
  align-items: center;
}

header ul a {
  text-decoration: none;
  color: #fff;
  padding: 0 1.5rem;
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1.8rem;
  font-family: "Fondamento", cursive;
}
*/

main {
  position: relative;
  height: 100vh;
  width: 100vw;
  overflow: hidden; 
}

.parallax {
  pointer-events: none;
  transition: none;
}

.bg-img {
  position: absolute;
  width: 144.44%; /*bylo 184*/
  top: 0%;
/*  left: 50.69%;*/
  z-index: 1;
}


.social-icons a{
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4.5rem;
  height: 4.5rem;
  background: transparent;
  border: 2px solid white;
  font-size: 2.5rem;
  border-radius: 50%;
  color: white;
  margin: 0.5rem 1.5rem 0.5rem 0;
  transition: 0.3s ease-in-out;
}
.social-icons a:hover{
  color: var(--text-color);
  transform: scale(1.3)translateY(-5px);
  /*box-shadow: 0 0 25px var(--main-color2);
  background-color: var(--main-color2);*/
}
.btn{
  display: inline-block;
  padding: 1rem 2.8rem;
  background: var(--main-color2);
  box-shadow: 0 0 25px var(--main-color2);
  border-radius: 0.6rem; 
  font-size: 1.6rem;
  font-family: "Fondamento", cursive;
  font-weight: 400;
  font-style: italic;
  color: black;
  border: 2px solid transparent;
  letter-spacing: 0.1rem;
  font-weight: 600;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}
.btn:hover{
  transform: scale(1.05);
  box-shadow: 0 0 50% var(--main-color2);
}
.btn-group{
  display: absolute;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}
.btn-group a:nth-of-type(1){
  background-color: black;
  color: var(--main-color2);
  border: 2px solid var(--main-color2);
  box-shadow: 0 0 25px transparent;
}
  /*
.btn-group a:nth-of-type(1):hover{
  box-shadow: 0 0 25px var(--main-color2);
  background-color: var(--main-color2);
  color: black;
}
  /*
.btn-group a:nth-of-type(2){
  background-color: black;
  color: var(--main-color2);
  border: 2px solid var(--main-color2);
  box-shadow: 0 0 25px transparent;
}
.btn-group a:nth-of-type(2):hover{
  box-shadow: 0 0 25px var(--main-color2);
  background-color: var(--main-color2);
  color: black;
}

.btn-group a:nth-of-type(3){
  background-color: black;
  color: var(--main-color2);
  border: 2px solid var(--main-color2);
  box-shadow: 0 0 25px transparent;
}
.btn-group a:nth-of-type(3):hover{
  box-shadow: 0 0 25px var(--main-color2);
  background-color: var(--main-color2);
  color: black;
}
  */
.cytat{
  padding: 0.5rem;
}
.cytat

.text-animation{
  font-size: 5.5rem;
  font-weight: 600;
  min-width: 280px;
  font-family: var(--font-h);
  color: var(--main-color2);
  text-shadow: 2px 3px black;
}
.text-animation span{
  position: relative;
}
.text-animation span::before{
  content: "";
  color: var(--main-color2);
  animation: words 20s infinite;
}
.text-animation span::after{
  content: "";
  background-color: var(--bg-color);
  position: absolute; 
  width: calc(100% + 8px);
  height: 100%;
  border-left: 3px solid var(--bg-color);
  right: -8px;
  animation: cursor 0.6s infinite, typing 20s steps(14) infinite; 
}
.text-animation-small{
  font-family: var(--font-h);
  font-size: var(--font-size-h1);
  color: var(--main-color2);
  text-shadow: 3px 4px var(--bg-color);
}
@keyframes cursor{
  to{
      border-left: 2px solid var(--main-color);
  }
}
@keyframes words{
  0%,
  100%{
      content: "Witaj na stronie Totalnie w górach!";
  }
  /* 21%,
  40%{
      content: "klops";
  }
  41%,
  60%{
      content: "wiadro";
  }
  61%,
  80%{
      content: "kotlet";
  }
  81%,
  100%{
      content: "wystarczy.";
  } */
}
@keyframes typing{
  10%,
  15%,
  30%,
  35%,
  50%, 
  55%,
  70%,
  75%,
  90%,
  95%{
      width: 0;
  }
  5%,
  20%,
  25%,
  40%,
  45%,
  60%,
  65%,
  80%,
  85%{
      width: calc(100% + 8px);
  }
} 

/*
.fog-7 {
  position: absolute;
  z-index: 2;
  top: 37.7%;
  left: 70.8%;
  width: 132%;
}

.mountain-10 {
  position: absolute;
  z-index: 3;
  top: 70.58%;
  width: 80.52%;
  left: 67.84%;
}

.fog-6 {
  position: absolute;
  z-index: 4;
  top: 62.09%;
  left: 50.4%;
  width: 129.3%;
}

.mountain-9 {
  position: absolute;
  z-index: 5;
  top: 63.95%;
  width: 32.63%;
  left: 18.3%;
}

.mountain-8 {
  position: absolute;
  z-index: 6;
  top: 60.6%;
  width: 56.25%;
  left: 36%;
}

.fog-5 {
  position: absolute;
  z-index: 7;
  top: 69.7%;
  left: 51.3%;
  width: 31.25%;
}

.mountain-7 {
  position: absolute;
  z-index: 8;
  width: 37.36%;
  top: 65.18%;
  left: 71.18%;
}
*/
.text {
  position: absolute;
  z-index: 9;
  top: 30%;
  left: 30%;
  text-align: center;
  text-transform: uppercase;
  color: #fff;
  pointer-events: auto;
  text-shadow: 3px 5px #000;
}

.text h2 {
  font-weight: 100;
  font-size: 6.8rem;
  line-height: 0.88;
}

.text h1 {
  font-weight: 800;
  line-height: 0.88;
  font-size: 8.7rem;
}
/*
.mountain-6 {
  position: absolute;
  z-index: 10;
  top: 57.4%;
  width: 28.33%;
  left: 90.97%;
}

.fog-4 {
  position: absolute;
  z-index: 11;
  top: 77.7%;
  left: 45.84%;
  width: 40.27%;
}

.mountain-5 {
  position: absolute;
  z-index: 12;
  top: 80.86%;
  width: 43.4%;
  left: 59%;
}

.fog-3 {
  position: absolute;
  z-index: 13;
  top: 63.58%;
  left: 48.27%;
  width: 127.63%;
}

.mountain-4 {
  position: absolute;
  z-index: 14;
  top: 74.19%;
  width: 54.16%;
  left: 23.55%;
}

.mountain-3 {
  position: absolute;
  z-index: 15;
  top: 61.35%;
  left: 101.11%;
  width: 32.22%;
}

.fog-2 {
  position: absolute;
  z-index: 16;
  top: 68.14%;
  left: 48%;
  width: 108.33%;
}

.mountain-2 {
  position: absolute;
  z-index: 17;
  top: 69.01%;
  left: 78.61%;
  width: 47.91%;
}

.mountain-1 {
  position: absolute;
  z-index: 18;
  top: 52%;
  left: 8.27%;
  width: 37.15%;
}

.sun-rays {
  position: absolute;
  z-index: 19;
  top: 0;
  right: 0%;
  width: 41.31%;
  pointer-events: none;
}

.black-shadow {
  position: absolute;
  z-index: 20;
  bottom: 0;
  right: 0%;
  pointer-events: none;
  width: 100%;
}

.fog-1 {
  position: absolute;
  z-index: 21;
  top: 59.26%;
  left: 50.69%;
  width: 111.8%;
}
*/
.vignette {
  position: absolute;
  z-index: 100;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0, 0, 0, 0) 65%,
    rgba(0, 0, 0, 0.7)
  );
  pointer-events: none;
}

.fondamento-regular {
  font-family: "Fondamento", cursive;
  font-weight: 400;
  font-style: normal;
}

.fondamento-regular-italic {
  font-family: "Fondamento", cursive;
  font-weight: 400;
  font-style: italic;
}
/* 
.metodabg{
  background: url(../img/metodaopis.png);
  border: 2px solid black;
  display: grid;
  align-items: center;
  gap: 2.5rem;
} */
.transparentbox{
  margin: 30px;
  background-color: #ffffff;
  border: 1px solid black;
  opacity: 0.6;
  border-radius: 0.8rem;
}

.transparentbox h3, p{
  font-family: "Fondamento", cursive;
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  margin: 5%;
  color: #000;
}

.glowna{
  /* margin: 30px; */
  margin-top: 30px;
  margin-bottom: 30px;
  /* background-color: #ffffff; */
  border: 1px solid black;
  /* opacity: 0.6; */
  border-radius: 0.8rem;       
}
.glowna-cytat{
  font-size: var(--font-size-h1);
  text-align: center;
  margin: 2.5rem 0;
  font-family: var(--font-h);
  font-style: var(--font-italic);
  text-align: right;
  color: var(--bg-color);
  text-shadow: var(--main-color2) 1px 0 10px;
}
.glowna h2{
  margin-bottom: 5rem;
  /* color: white; */
}
.glowna-container{
  background: url(../img/metodaopis.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: grid;
  background-size: cover;
  /*grid-template-columns: repeat(2,1fr); */
  align-items: center;
  /* gap: 2.5rem; */
  padding-left: 5rem;
  padding-top: 15rem;
  padding-bottom: 15rem;

}
.glowna-box{
  margin-top: 70px;
  grid-template-columns: repeat(2,1fr);
  display: grid;
  max-height: 700px;
}
.glowna-box .services-info{
  display: flex;
  flex-direction: column;
  text-align: left;
  max-height: 200px;
  justify-content: left;
  align-items: baseline;
  padding: 5rem 5rem;
}
.glowna-info{
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(238, 238, 238, 0.2);
  /*background-color: black;*/
  border-radius: 3rem;
  /*border: 3px solid black;*/
  /*opacity: 0.6;*/
  /* cursor: pointer; */
  transition:  0.4s ease-in-out;
  padding: 2rem;
}

.glowna-info:hover{
  border: 3px solid var(--main-color);
  transform: translateY(-10px)scale(1.03);
  box-shadow: 0 0 50px var(--main-color);
  /* background: white;
  color: black;
  border: 5x solid var(--main-color);
  transform: scale(1.03); */
}
.glowna-info p{
  font-size: var(--font-size-p);
  max-height: 90%;
  padding: 0.5rem;
  line-height: 1;
  margin: auto;  
  font-family: var(--font-p);
  color: white;
  text-align: justify;
}
.glowna-info a{
  color: var(--main-color2);
}

.metoda{
  background: var(--second-bg-color);
  background: url(../img/opis.png);
  background-repeat: no-repeat; 
  background-size: cover;
  height: 100%;
  padding: 1rem;
}
.metoda-box{
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  height: 100%;
}
.metoda .heading{
  margin: 145px;
  font-family: var(--font-h);
  font-size: var(--font-size-h1);
  text-align: center;
  color: #000;
}
.metoda-cytat{
  font-size: 2.5rem;/*var(--font-size-h1);*/
  margin-top: 2rem;
  font-family: var(--font-h);
  font-style: var(--font-italic);
  text-align: left;
  color: var(--bg-color);
  text-shadow: var(--main-color2) 1px 0 10px;
  margin-top: 105px;
  margin-bottom: 5rem;
}
.metoda-wrapper{
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
}
.metoda-item{
  /*max-height: 850px;*/
  /*max-width: 500px;*/
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(238, 238, 238, 0.2);
  border-radius: 2rem;
  /* margin: 0 2rem; */
  padding: 10px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: left; 
  justify-content: start; 
  text-align: justify;
  /* gap: 1.5rem; */
  color: white;
  transition: 0.4s ease-in-out;
}
.metoda-item:hover{
  border: 3px solid var(--main-color);
  transform: translateY(-10px)scale(1.03);
  box-shadow: 0 0 50px var(--main-color);
}
.metoda-item h1{
  font-size: var(--font-size-h1);
  font-family: var(--font-p);
  justify-content: center;
  text-align: center;
}
.metoda-item p{
  font-size: var(--font-size-p);
  color: white;
  font-family: var(--font-p);
  line-height: 1.2;
  text-align: justify;
  margin: 1.5rem;
}
.metoda-item li{
  font-family: var(--font-p);
  font-size: var(--font-size-p);
  text-align: left;
  margin-left: 80px;
  padding: 0.2rem;
}

.konsultacje{
  padding: 5rem;
  background-color: var(--bg-color);
  background: url(../img/konsultacje.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 3.5rem;
  margin-bottom: 30px;
}
.konsultacje-cytat{
  padding: var(--font-size-h1);
  display: flex;
  font-family: var(--font-h);
  font-size: var(--font-cytat);
  font-style: var(--font-italic);
  justify-content: right;
  color: black;
  text-shadow: var(--main-color2) 1px 0 10px;
  margin-top: 200px;
}


.konsultacje-footer{
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(238, 238, 238, 0.2);
  border-radius: 2rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  transition: 0.4s ease-in-out;
  font-family: var(--font-p);
  font-size: var(--font-size-h2);
  padding: 2rem;
  margin-bottom: 200px;
}
.konsultacje-footer:hover{
  border: 3px solid var(--main-color);
  transform: translateY(-10px)scale(1.03);
  box-shadow: 0 0 50px var(--main-color);
}

.konsultacje-items{
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  align-items: center; 
  text-align: center;
  
  /*justify-content: center; 
  flex-direction: column;
  margin-top: 200px;*/
}
.konsultacje-item{
  /*max-height: 350px;*/
  /*min-height: 350px;*/
  vertical-align: top;
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(238, 238, 238, 0.2);
  border-radius: 2rem;
  /*margin: 1rem;*/
  padding: 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: center;
  gap: 1rem;
  color: white;
  transition: 0.4s ease-in-out;
  font-family: var(--font-p);
  height: 100%;
}
.konsultacje-item:hover{
  border: 3px solid var(--main-color);
  transform: translateY(-10px)scale(1.03);
  box-shadow: 0 0 50px var(--main-color);
}
.konsultacje-item h1{
  font-size: var(--font-size-h1);
  font-family: var(--font-p);
  text-align: center;
}
.konsultacje-item h2{
  font-size: var(--font-size-p);
  font-family: var(--font-p);
  text-align: justify;
  line-height: 1.5;
  margin-top: 10px;
  margin-left: 20px;
}
.konsultacje-item li{
  font-size: var(--font-size-p);
  font-family: var(--font-p);
  text-align: left;
  padding: 0.5rem;
  margin-left: 30px;
}
.konsultacje-item p{
  font-size: 1.5rem;
  color: white;
  text-align: center;
}

.omnie{
  padding: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--main-color3);
  /*background: url(../img//omnie.png);*/
  background-repeat: no-repeat;
  background-size: cover;
  
}
.omnie-content{
  background-size: cover;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1rem;
  align-items: center; 
  text-align: center;
}
.omnie-item{
  background: rgba(0, 0, 0, 0.7);
  border: 3px solid rgba(238, 238, 238, 0.2);
  border-radius: 2rem;
  padding: 10px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: justify;
  /* gap: 1rem; */
  color: white;
  transition: 0.4s ease-in-out; 
}
.omnie-item:hover{
  box-shadow: 0 0 25px var(--main-color3),
              0 0 50px var(--main-color3),
              0 0 100px var(--main-color3);
}
.omnie-content h1{
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-top: 0.6rem;
  font-size: var(--font-size-h1);
  font-family: var(--font-p);
  text-align: center;
  padding-bottom: 0.5rem;
  /*font-style: italic;*/
}
.omnie-content h2{
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-top: 0.5rem;
  line-height: 1;
  font-family: var(--font-p);
}
.omnie-content p{
  font-size: var(--font-size-p);
  font-weight: 700;
  text-align: justify;
  margin: 1rem;
  line-height: 0.5;
  font-family: var(--font-p);
  color: var(--text-color);
}
.image{
  border-radius: 5%;
}
.image img{
  /*position: relative;*/
  top: 3rem;
  max-width: 28vw;
  border-radius: 5%;
  box-shadow: 0 0 25px var(--main-color3);
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
/*
.omnie-item img{
  border-radius: 25%; 
  resize: vertical;
}
.omnie-item img{
  position: flex;
  border-radius: 5%;
  cursor: pointer;
  transition: 0.4s ease-in-out;
}
.omnie-item img:hover{
  box-shadow: 0 0 25px var(--main-color3),
              0 0 50px var(--main-color3),
              0 0 100px var(--main-color3);
}
              */
.omnie-content p{
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8;
  /* max-width: 1000px; */
}

::-webkit-scrollbar{
  width: 15px;
}
::-webkit-scrollbar-thumb{
  background-color: var(--main-color);
}
::-webkit-scrollbar-track{
  background-color: var(--bg-color);
  width: 50%;
}

.contact{
  padding: 3rem;
  background-color: var(--bg-color);
}
.contact h2{
  margin-bottom: 1.5rem;
  color: white;
}
.contact form{
  display: flex; /*bylo flex*/
  /*grid-template-columns: repeat(2,1fr);*/
  align-items: start;
  justify-content: center;
  gap: 3rem;
  margin: 5rem auto;
  text-align: center;
  background-color: var(--bg-color);
  
}
.input-group-2{
  min-width: 55%;
}
.contact form .input-box{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.contact form .input-box input,
.contact form textarea{
  width: 100%;
  padding: 2.5rem;
  font-size: 1.8rem;
  color: var(--text-color);
  background: var(--second-bg-color);
  border-radius: 2rem;
  border: 2px solid var(--main-color3);
  margin: 2rem 0;
  resize: none;
}
.contact form .btn{
  margin-top: 2rem;
}
.rodo{
  color:white;
  display: flex;
  margin: 1.2rem;
}
.contact p{
  color: white;
  text-align: justify;
  font-family: var(--font-p);
}
.contact .cbx{
  max-width: 30px;
}

.footer{
  position: relative;
  bottom: 0;
  width: 100%;
  padding: 40px 0;
  background-color: var(--second-bg-color);
}
.footer .social{
  text-align: center;
  padding-bottom: 25px;
  padding-top: 25px;
  color: white;
}
.footer .social a{
  font-size: 25px;
  color: white;
  border: 2px solid white;
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  margin: 0 10px;
  transition: 0.3s ease-in-out;
}
.footer .social a:hover{
  transform: scale(1.2)translateY(-10px);
  /*background-color: var(--main-color);*/
  color: white;
  /*box-shadow:  0 0 25px var(--main-color);*/
}
.footer ul{
  margin-top: 0;
  padding: 0;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 0;
  text-align: center;
}
.footer ul li a{
  color: white;
  font-family: "Fondamento", cursive;
  border-bottom: 3px solid transparent;
  transition: 0.3s ease-in-out;
}
.footer ul li a:hover{
  border-bottom: 3px solid var(--main-color);
}
.footer ul li{
  display: inline-block;
  padding: 0 15px;
}
.footer .copyrights{
  margin-top: 25px;
  text-align: center;
  font-size: 1rem;
  color: white;
  font-family: "Fondamento", cursive;
}


.cookiePopupBoxContainer {
	z-index: 999;
	width: 350px;
	min-height: 20px;
	box-sizing: border-box;
	padding: 30px 30px 30px 30px;
	background: #0b0c10;
	overflow: hidden;
	position: fixed;
    bottom: 30px;
	right: 30px;
	display: none;
	border-radius: 10px;
}
.cookiePopupBoxContainer .cookieTitle a {
	font-family: var(--font-h);
	color:  var(--main-color2);
	font-size: 22px;
	line-height: 20px;
	display: block;
}
.cookiePopupBoxContainer .cookieDesc p {
	margin: 0;
	padding: 0;
	font-family: var(--font-p);/*OpenSans, arial, "sans-serif";*/
	color: #FFFFFF;
	font-size: 13px;
	line-height: 20px;
	display: block;
	margin-top: 10px;
} .cookiePopupBoxContainer .cookieDesc a {
	font-family: var(--font-p);
	color: #ffffff;
	text-decoration: underline;
}
.cookiePopupBoxContainer .cookieButton a {
	display: inline-block;
	font-family: var(--font-h);
	color: #FFFFFF;
	font-size: 14px;
	font-weight: bold;
	margin-top: 14px;
	background: #000000;
	box-sizing: border-box; 
	padding: 15px 24px;
  border-radius: 10px;
	text-align: center;
	transition: background 0.3s;
}
.cookiePopupBoxContainer .cookieButton a:hover { 
	cursor: pointer;
	background: var(--main-color2);
  color: var(--bg-color);
}

@media (max-width: 980px) {
	.cookiePopupBoxContainer {
		bottom: 0px !important;
		left: 0px !important;
		width: 100%  !important;
	}
}


@media(max-width:1285px){
  html{
      font-size: 55%;
  }
  .services-container{
      padding-bottom: 7rem;
      grid-template-columns: repeat(2,1fr);
      margin: 0 5rem;
  }
}
@media(max-width:991px){
  .header{
      padding: 2rem 3%;
  }
  /*section{
      padding: 10rem 3% 2rem;
  }*/
  .metoda-item::before{
      left: 7px;
  }
  .services{
      padding-bottom: 7rem;
  }
  .omnie .metoda .metoda-wrapper .konsultacje-items .omnie-content{
      grid-template-columns: repeat(1,1fr);
  }
  .contact form{
      flex-direction: column;
  }
  .footer{
      padding: 2rem 3%;
  }
}
/*bylo 895*/
@media(max-width:895px){
  #menu-icon{
      display: block;
  }
  .header{
    opacity: 1.0;
    display: block;
  }
  .hide{
    opacity: 1.0;
  }
  .navbar{
      position: absolute;
      top: 100%;
      right: 0;
      width: 100%;
      padding: 1rem  3%;
      background: black;/*rgba(0, 0 0,0.8);*/
      backdrop-filter: blur(20px);
      border-bottom-left-radius: 2rem;
      border-bottom-right-radius: 2rem;
      border-left: 2px solid var(--main-color);
      border-right: 2px solid var(--main-color);
      border-bottom: 2px solid var(--main-color);
      display: none;
      
  }
  .navbar.active{
      display: block;
      background-color: black;
  }
  .navbar a{
      display: block;
      font-size: 2rem;
      margin: 3rem 0;
      color: white;
  }
  .home{
      flex-direction: column-reverse;
      margin:  0rem 0rem;
  }
  .home-content h3{
      font-size: 2.6rem;
  }
  .home-content h1{
      font-size: 8rem;
      margin-top: 3rem;
  }
  .home-content p{
      max-width: 600px;
      margin-top: 0 auto;
  }
  .home-img{
      width: 56vw;
  }
  .services h2{
      margin-bottom: 3rem;
  }
  .glowna-container{
    padding: 1rem;
  }
  .glowna-cytat{
    padding: 1rem;
    margin: auto;
  }
  .glowna-box{
    display: inline-table;
    margin: auto;
  }
  .metoda-box{
    padding: 1rem;
  }
  .metoda-cytat{
    margin-top: 50px;
  }
  .metoda-wrapper{
    display: inline;
  }
  .konsultacje{
    padding: 1rem;
  }
  .konsultacje-items{
    display: inline;
    margin: auto;
  }
  .konsultacje-cytat{
    margin-top: 50px;
  }
  .konsultacje-item{
    display: inline-table;
    padding-right: 15px;
    width: 100%;
  }
  .konsultacje-footer{
    margin-bottom: 100px;
  }
  .omnie{
    display: grid;
    padding: 1rem;
    margin-top: 50px;
  }
  .omnie-cytat h1{
    margin: auto;
  }
  .omnie-content{
    margin-top: 50px;
    grid-template-columns: repeat(1,1fr);
  }
  .omnie-content h1{
    margin: 0.5rem;
  }
  .omnie-item{
    margin: auto;
    padding: 0.2rem;
  }
  .omnie img{
    margin-top: 20px;
    width: 100%;
  }
  .bg-img{
    left: 0%;
  }
  .text{
    left: 10%;
  }
}


@media (max-width: 1100px) {
  .bg-img{
    left: 0%;
  }
  .text{
    left: 10%;
  }
  .text h1 {
    font-size: 5.8rem;
  }

  .text h2 {
    font-size: 4.7rem;
  }
}

@media (max-width: 725px) {
  .text h1 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .text h2 {
    font-size: 4.1rem;
    line-height: 1.1;
  }

  header nav {
    padding: 0 1rem;
  }

  .logo {
    width: 75px;
  }

  header ul a {
    font-size: 0.73rem;
    padding: 0 0.9rem;
  }

  .search a {
    font-size: 0.85rem;
    padding: 0 1.8rem;
  }

  .hamburger {
    padding-left: 0.9rem;
  }

  .hamburger a {
    height: 30px;
    width: 30px;
  }
  
  .bg-img {
    width: initial;
    height: 208.1%;
    left: 0%;
  }
  .text{
    text-align: center;
  }

  .cytat .text-animation{
    font-size: 3rem;
  }
  .text-animation-small{
    font-size: 2rem;
  }

/*
  .fog-7 {
    width: initial;
    height: 146.17%;
  }

  .fog-6 {
    width: initial;
    height: 73.11%;
  }

  .fog-4 {
    width: initial;
    height: 104.5%;
  }

  .fog-3 {
    width: initial;
    height: 90.78%;
  }


  .fog-2 {
    width: initial;
    height: 84.73%;
  }

  .fog-1 {
    width: initial;
    height: 89.86%;
  }
    */
}


/*
@media (max-width: 520px) {
  .text h1 {
    font-size: 3.3rem;
  }

  .text h2 {
    font-size: 2.6rem;
  }
}


*/