* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    
  }

#cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #f1f1f1;
  padding: 10px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  display: none;
}
#cookie-banner p {
  margin: 0;
}
#cookie-banner button {
  margin-left: 10px;
  border-radius: 20px;
  border: none;
  color: #f3f3f3;
}

#accept-cookies:hover {
  background-color: #5c8546;
}

#decline-cookies:hover {
  background-color: #e73636;
}

#accept-cookies {
  padding: 10px;
  background-color: #609b43;
  cursor: pointer;
}

#decline-cookies {
  padding: 10px;
  background-color: #e54f4f;
  cursor: pointer;
}


html {
  scroll-behavior: smooth;
}

body {
  background-color: #eeecec;
  scrollbar-color: darkgray lightgray;
  scrollbar-width: thin;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  scroll-behavior: smooth;
}


::-webkit-scrollbar {
  width: 9px;
  background-color: #8a8a8a;
}

::-webkit-scrollbar-thumb {
  background-color: rgb(49, 48, 48);

}

::-webkit-scrollbar-thumb:hover {
  background-color: rgb(41, 40, 40);
}

::-webkit-scrollbar-thumb:active {
  background-color: rgb(41, 40, 40);
}

.navbar {
  height: 80px;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(24, 24, 24, 0.76));
  transition: background-color 0.5s ease;
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  height: 80px;
  z-index: 1;
  width: 100%;
  padding-right: 10%;
}

#navbar__logo {
  color: #efefefef;
  display: flex;
  align-items: center;
  cursor: pointer;
  text-decoration: none;
  font-size: 30px;
  padding-left: 10%;
}

.fa-gem {
  margin-right: 0.5rem;
}

.navbar__menu {
  display: flex;
  align-items: center;
  list-style: none;
  text-align: center;
  margin-left:  auto;
  height: auto;
}

.navbar__item {
  height: auto;
  cursor: pointer;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 1rem;
  padding-right: 1rem;
  position: relative;
}

.navbar__links {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  position: relative;
  height: 100%;
  width: auto;
}


.navbar__links::after {
  content: '';
  width: 0%;
  height: 2px;
  background: #e98d37;
  display: block;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.5s;
}

.navbar__links:hover::after {
  width: 100%;
}

@media screen and (max-width: 1500px) {

  #accept-cookies {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 960px) {
  .navbar {
    background: #131313;
  }

  .navbar__container {
    display: flex;
    justify-content: space-between;
    height: 80px;
    z-index: 1;
    width: 100%;
    max-width: 1300px;
    padding: 0;
  }

  .navbar__menu {
    display: grid;
    grid-template-columns: auto;
    margin: 0;
    width: 100%;
    position: absolute;
    top: -1000px;
    opacity: 1;
    transition: all 0.5s ease;
    height: 50vh;
    z-index: -1;
  }

  .navbar__menu.active {
    background: #131313;
    top: 100%;
    opacity: 1;
    transition: all 0.5s ease;
    z-index: 99;
    height: auto;
    padding-bottom: 20px;
    font-size: 1.6rem;
  }

  #navbar__logo {
    padding-left: 25px;
    font-size: 20px;
  }


  .navbar__toggle .bar {
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background: #fff;
  }

  .navbar__item {
    width: auto;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }

  .navbar__links {
    text-align: center;
    width: 100%;
    font-size: 20px;
    display: table;
  }



  #mobile-menu {
    position: absolute;
    top: 20%;
    right: 5%;
    transform: translate(5%, 20%);
  }

  .navbar__toggle .bar {
    display: block;
  }

  .navbar__toggle {
      cursor: pointer;
  }

  #mobile-menu.is-active .bar:nth-child(2) {
    opacity: 0;
  }

  #mobile-menu.is-active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  #mobile-menu.is-active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .lang {
    position: relative !important;
    cursor: pointer;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: inline-block;
    right: 0 !important;
  }

  .text-view h1 {
    font-size: 35px !important;
  }

  .text-view p {
    font-size: 15px !important;
  }

  .mobile-lang.active {
    display: block !important;
    margin-right: auto;
    margin-left: auto;
  }


  .mobile-lang > .dropdown-item {
    display: block !important;
    position: relative;
    justify-content: center;
    cursor: pointer;
    margin-top: 5px;
    color: #b4b4b4;
    width: auto;
  }


  .mobile-lang > .dropdown-item {
    padding-right: 20px;
    padding-left: 20px;
  }


  .lang:hover .dropdown-content {
    display: none !important;
  }

  .dropdown-name {
    width: auto;
    position: relative;
  }

  .dropdown-name::after {
    content: '';
    width: 0%;
    height: 2px;
    background: #e98d37;
    display: block;
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }

  .dropdown-name:hover::after {
    width: 100%;
  }

  .lang-selecter {
    position: relative;
    left: -10px !important;
  }

}

.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4,9,30,0.2), rgba(4,9,30,0.2)),url(assests/video.mp4);
  background-size: cover;
  position: relative;
}

.header-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: -1;
}




#preloader {
  background: #242323;
  background-size: 20%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}

#blur.active {
  transition: background-color 1s ease;
  background: #888585d5;
  background-size: 100%;
  height: 100vh;
  width: 100%;
  position: fixed;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
}


.image-load {
  width: 150px;
  height: 150px;
  border-radius: 20px;
}


.loading-bar{
  width: 130px;
  height: 2px;
  margin-left: auto;
  margin-right: auto;
  background: #cfcfcf;
  margin-top: 22px;
  position: relative;
  overflow: hidden;
}

.loading-bar::before{
  content: '';
  width: 68px;
  height: 2px;
  background: #ebb505;
  position: absolute;
  left: -34px;
  animation: bluebar 1.5s infinite ease;
}

@keyframes bluebar{
  50%{
    left: 96px;
  }
}

/* Styl animacji */
@keyframes fadeOutAnimation {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

.navbar.scrolled {
  background: #131313;
}

.text-view {
  width: 90%;
  color: #cfcfcf;
  position: absolute;
  top:73%;
  left: 50%;
  font-family: 'Poppins', sans-serif;
  transform: translate(-50%, -50%);
  text-align: center;
  overflow: hidden;
}

.lang {
  position: absolute;
  right: 2%;
  cursor: pointer;
  align-items: center;
  display: inline-block;
}

.lang:hover .dropdown-content {
  display: block;
}

.dropicon {
  color: #ddd;
  margin-top: auto;
  margin-bottom: auto;
  padding-bottom: 2px;
  margin-left: 0;
}

.dropicon.active {
  transform: rotate(180deg) translateY(5px);
}

.dropdown {
  position: absolute; 
  right: 0; 
  top: 100%;
}

.dropdown-content {
  display: none;
  min-width: 100px;
  padding: 5px;
  left: -100px;
  border: 1px solid #ddd;
  z-index: 1;
}

.dropdown-content .dropdown-item {
  display: flex;
  justify-content: flex-end;
  padding: 5px;
  position: relative;
}

.dropdown-content {
  border-radius: 5px;
  color: #f1f1f1;
  transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -webkit-transition: all 500ms ease;
}

.dropdown-content .dropdown-item.selected {
  background-color: #ddd;
}

.dropdown-content .dropdown-item:hover {
  background-color: #61606088;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.mobile-lang {
  display: none;
}


.dropdown.active .dropdown-content {
  display: block;
}

.lang-selecter {
  content: '';
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 25%;
  left: 10%;
  border-radius: 50%;
  border: 2px solid #000;
  background: #13131354;
}

.lang-selecter.selected {
  background: #ddd;
}


.lang .icon {
  padding-top: 10px;padding-bottom: 10px;
  font-size: 30px;
  color: #cfcfcf;
}

.text-view .page-title {
  font-size: 50px;
}

.text-view .page-pretitle {
  font-size: 20px;
}

.scrolldown {
  border: 2px solid #FFFFFF;
  border-radius: 30px;
  height: 46px;
  text-align: center;
  width: 30px;
  cursor: pointer;
  position: absolute;
  right: 0;
  left: 0;
  top: 80%;
  bottom: 0;
  margin: auto;
}

.scrolldown-p1,
.scrolldown-p2 {
	animation-duration: 1.5s;
	animation-name: scrolldown;
	animation-iteration-count: infinite;
	fill: #FFFFFF;
}
  
.scrolldown-p2 {
	animation-delay: .75s;
}

@keyframes scrolldown { 0% {
		opacity: 0;
		transform: translate(0, -8px);
	}
	50% {
		opacity: 1;
		transform: translate(0, 0);
	}
	100% {
		opacity: 0;
		transform: translate(0, 8px);
	}
}

@keyframes drop-in {
  from {
   opacity: 0;
   transform: translateY(-100px);
  }
  to {
   opacity: 1;
   transform: translate(0px);
  }
 }

#footer {
  width: 100%;
  height: auto;
}

#footer > .container {
  width: 100%;
  background-image: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)),url(assests/footer.png);
  background-size: contain;
  padding-left: 5%;
  padding-right: 5%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
.footer-img {
  width: 100px;
  margin-top: 15%;
  margin-left: auto;
  margin-right: auto;
  border-radius: 20px;
  height: 100px;
  background-color: #c4c3c3;
}

.first {
  text-align: center;
}

.column > .motto {
  margin-top: 20px;
  font-size: 15px;
  color: #c9c9c9;
  margin-bottom: 20px;
}

.social > i {
  color: rgb(170, 170, 170);
  text-decoration: none;
  width: 30px;
  height: 30px;
}

.social {
  font-size: 25px;
  padding: 10px;
  background-color: #000;
  border-radius: 5px;
  margin-right: 10px;
  margin-left: 10px;
}

.social:hover > i {
  color: #ddd;
  transition: color 500ms linear;
}

.instagram:hover {
  background-color: #833AB4;
  transition: background-color 500ms linear;
}

.facebook:hover {
  background-color: #4267B2;
  transition: background-color 500ms linear;
}

.copyright {
  margin-top: 10%;
  margin-bottom: 20px;
  font-size: 15px;
  color: #494949 ;
}

.column {
  width: clamp(25%,25%,50%);
  padding: 0 25px;
}

.column > h4 {
  margin-top: 50px;
  margin-bottom: 40px;
  font-size: 20px;
  text-transform: capitalize;
  color: #c4c4c4;
  font-weight: 600;
}

.column > ul > li:not(:last-child) {
  margin-bottom: 10px;
}

.column ul > li > a {
  font-size: 17px;
  color: #b0b0b0;
  text-transform: capitalize;
  text-decoration: none;
}

.column > ul > li > a:hover {
  padding-left: 10px;
  color: #808080;
  transition: 0.5s;
}

.column > ul {
  list-style: none;
}

@media screen and (min-width: 601px) and (max-width: 1150px) {
  .column {
    width: 50%;
  }

  #footer > .container {
    padding-bottom: 30px;
  }

  .menu-links {
    padding-left: 10%;
  }

}

@media screen and (max-width: 600px) {
  .column {
    width: 100%;
  }

  .column:not(:last-child):not(:first-child) {
    margin-bottom: 20px;
  }


  #footer > .container {
    padding-bottom: 30px;
  }
}

.column > h2 {
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  color: #afafaf;
}

.email > a, .maps > a {
  margin-top: 10px;
  margin-bottom: 20px;
  text-decoration: none;
  color: #8c8a8a !important;
}


.email > a:hover {
  cursor: pointer;
  color: #676767 !important;
  transition: 0.5s;
}

.phone {
  margin-top: 10px;
}

.maps {
  margin-top: 30px;
}

.maps:hover {
  cursor: pointer;
  color: #8f8f8f;
  transition: 0.5s;
}


#the-count {
  color: #dddddd;
  display: inline-block;
  width: auto;
  padding: 0.1rem 0 0 0;
  font-size: 0.875rem;
}

.scrollUp {
  position: fixed;
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  bottom: 3%;
  background-color: #8c8c8c;
  color: #ffffff;
  z-index: 800;
  right: 3%;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.activeScroll {
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}

.language.h1.active {
  color: #e1e1e1 !important;
}

#main > .container {
  margin-left: auto;
  width: 75%;
  margin-right: auto;
}

#main {
  margin-bottom: 20px;
}

#main > .container > h1 {
  text-align: center;
}

.carousel-item {
  width: 100%;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #e5e3e3;
  text-align: center;
}

.carousel-item > h4 {
  margin: 0;
}

.container {
  text-align: center;
}

.titlebox {
  width: auto;
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px;
  text-align: center;
  position: relative;
}

.stress {
  width: 40%;
  display: block;
  height: 8px;
  border-radius: 20px;
  background-color: #e98d37;
  margin-left: auto;
  margin-right: auto;
}

.title{
  color: #242323;
  font-size: 40px;
  font-weight: 550;
  margin-top: 35px;
  display: inline-block;
}

.stats {
  width: 100%;
  height: auto;
  padding: 0 20px 60px 20px;
  background: linear-gradient(to top, rgba(24, 24, 24, 0.76), rgba(24, 24, 24, 0.76)),url("assests/marmur.jpg");
  background-size: cover;
  background-position: center;
}

.certify.about {
  display: flex;
  flex-wrap: wrap;
  place-items: normal;
  justify-content: center;
}

.certify{
  display: flex;
  flex-wrap: wrap;
  place-items: center;
  justify-content: center;
}

.certify > .box {
  width: 50%;
  vertical-align: center;
  padding: 20px;
  height: auto;
  box-sizing: border-box;
}

.box > img {
  width: 90%;
  cursor: zoom-in;
  border-radius: 6px;
  -webkit-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  -moz-box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
  box-shadow: 8px 8px 24px 0px rgba(66, 68, 90, 1);
}

@media screen and (min-width: 781px) and (max-width: 1100px){
  #main > .container {
    width: 90% !important;
  }
  .box > img {
    width: 100%;
  }
  .pricing > .container {
    width: 60% !important;
    margin-right: auto;
    margin-left: auto;
  }
}

@media only screen and (max-width: 780px) {
  #main > .container {
    width: 90% !important;
  }
  .certify {
    flex-direction: column;
    align-items: center;
  }
  .certify > .box {
    width: 100%;
  }
  .box > img {
    width: 100%;
  }
  .certifyText {
    font-size: 25px !important;
  }

  .p {
    font-size: 15px !important;
  }

  .title {
    font-size: 30px !important;
  }

  .explanation {
    font-size: 15px !important;
  }

  .stats-column > h1 {
    font-size: 23px !important;
  }

  .stats-column > h3 {
    font-size: 18px !important;
  }


  .stats-columns {
    flex: 1 1 100%;
    margin: 10px 0;
  }

  .pricing > .container {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
  }

  .pricingBtn {
    margin-bottom: 20px;
    font-size: 12px;
  }

  .pricing > .container > .certify > .box {
    padding: 20px 0 0 0 !important;
  }


  .stats-column {
      flex: 1 1 100%;
      margin: 10px 0;
  }
}

.description {
  color: #3f3d3d;
  font-size: 15px;
}

.certifyText {
  font-size: 32px;
  color: #242323;
}

.explanation {
  font-size: 18px;
}

.stats-columns {
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  max-width: 800px;
  color: #c5c3c3;
  display: flex;
  flex-wrap: wrap;
}
.stats-column {
  flex: 1;
  margin: 0 10px;
}

.stats-column > h1 {
  color: #e98d37;
  font-size: 30px;
}

.content {
  margin-bottom: 40px;
}

.content.hide {
  display: none;
}

.liner {
  background-color: #e98d37;
  width: 200px;
  height: 2px;
  display: block;
  margin: 20px auto;
}

.imageAbout {
  max-height: 200px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.image-grid img {
  cursor: zoom-in;
  border-radius: 6px;
  width: 30%;
  margin: 1%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

#categoryName {
  font-size: 30px;
}

#iconAbout {
  font-size: 40px;
  color: #e98d37;
  margin-top: 30px;
  margin-bottom: 30px;
}

.image-grid img.loaded {
  opacity: 1;
}

.lookMore:hover {
  background-color: #bd6010;
}

.lookMore.hide {
  display: none;
}

.lookMore {
  margin-top: 20px;
  width: auto;
  display: inline-block;
  padding: 15px 23px 15px 23px;
  cursor: pointer;
  color: #fcfcfc;
  border-radius: 20px;
  background-color: #e98d37;
  transition: background-color 200ms ease-in-out;
}

.abtBtn {
  padding: 10px;
  border-radius: 20px;
  border: #e98d37 2px solid;
  display: inline-block;
  cursor: pointer;
  margin-bottom: 10px;
  box-sizing: border-box;
  transition: background-color 200ms ease-in-out;
}

.abtBtn:hover {
  background-color: #ee961f;
}

.abtBtn.active {
  background-color: #e8b877;
  border: rgba(233, 141, 55, 0.54) 2px solid;
}

.pricingBtn {
  width: auto;
  display: inline-block;
  padding: 15px 23px 15px 23px;
  cursor: pointer;
  color: #fcfcfc;
  border-radius: 20px;
  background-color: #e98d37;
  transition: background-color 200ms ease-in-out;
}

.startAboutP {
  margin-bottom: 20px;
}

.pricingBtn:hover {
  background-color: #bd6010;
}

.pricing {
  background-color: white;
}

.pricing > .container {
  width: 40%;
  margin-right: auto;
  margin-left: auto;
}

.language {
  margin-top: 10%;
}

.language > h1 {
  display: inline-block;
  cursor: pointer;
  font-size: 17px;
  color: #696969;
}

.language > h1:hover {
  color: #e1e1e1 !important;
}

.language > h1.active {
  color: #b0b0b0 !important;
  cursor: default !important;
}

#overlayImages {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 999;
  overflow: auto;
  display: none;
  justify-content: center; /* Wyśrodkowanie na osi X */
  align-items: center;
}

#largeImage {
  display: block;
  max-width: 90%;
  max-height: 90%;
}

.close {
  color: #383535;
  position: absolute;
  top: 20px;
  right: 30px;
  border-radius: 20px;
  padding: 7px 20px 7px 20px;
  background-color: #f8f8f8;
  font-size: 30px;
  font-weight: bold;
  transition: background-color 200ms ease-in-out;
  cursor: pointer;
}

.close:hover {
  color: #f1ebeb;
  background-color: #de5f5f;
}


img:hover .zoom-icon {
  display: block;
}


.zoom-icon {
  display: none;
  position: absolute;
  z-index: 99999;
  bottom: 10px;
  right: 10px;
}

.tooltip {
  position: absolute;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  border-radius: 5px;
  font-size: 14px;
  pointer-events: none; /* Zapobiega interakcji z dymkiem */
}

