/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-default);
}

a {
  color: var(--color-links);
  text-decoration: none;
}

a:hover {
  color: var(--color-links-hover);
  text-decoration: none;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
/* Handle */
::-webkit-scrollbar-thumb {
  background: #e84137;
}
/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #ef7a73;
}

/*--------------------------------------------------------------
# Sections & Section Header
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-header {
  text-align: center;
  padding-bottom: 40px;
}

.section-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .section-header h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-primary);
  }
}

.section-header p {
  margin: 0 auto;
  color: var(--color-secondary);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.35!important;
}
@media (max-width: 640px) {
.section-header p {
    color: var(--color-secondary);
    font-size: 18px;
  }
}

@media (min-width: 1280px) {
  .section-header p {
    max-width: 80%;
  }
}

/*--------------------------------------------------------------
# Przycisk powrotu do gory
--------------------------------------------------------------*/
/* .wroc-do-gory {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 996;
  background: var(--color-primary);
  padding: 10px 24px;
  color: #fff;
  transition: all 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0px 0px 30px rgba(var(--color-primary-rgb), 0.35);
  border: 1px solid #fff;
}

.wroc-do-gory:hover {
  background: #fff;
  color: var(--color-primary);
}
.wroc-do-gory:hover > i {
  color: var(--color-primary);
}

.wroc-do-gory i {
  font-size: 16px;
  color: #fff;
  line-height: 0;
  transition: all 0.4s;
}

.wroc-do-gory.active {
  visibility: visible;
  opacity: 1;
} */

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  padding: 12px 6px;
  z-index: 997;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}

.header.sticked {
  background: rgba(242,242,242,0.65);
  box-shadow: 0px 2px 20px rgba(31, 36, 68, 0.3);
}
.header.sticked::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  inset:0;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: -1!important;
}

.header .logo img {
  /* margin-left: 8px; */
  max-width: 240px;
  height: auto;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-white);
  background: var(--color-primary);
  padding: 7px 20px;
  border-radius: 4px;
  transition: 0s;
}
@media (min-width: 769px) and (max-width: 1366px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    padding: 6px 6px!important;
    font-size: 14px!important;
  }
}
@media (max-width: 768px) {
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    padding: 7px 18px!important;
    font-size: 14px!important;
  }
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--color-white);
  background: rgba(var(--color-primary-rgb), 0.85);
}

@media (max-width: 1440px) {
  .header {
    padding: 15px 10px;
    z-index: 997;
    -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
  }
  .header.sticked {
    background: rgba(242,242,242,0.65);
    box-shadow: 0px 2px 20px rgba(31, 36, 68, 0.3);
  }
  .header.sticked::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    inset:0;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    z-index: -1!important;
  }
  .header .logo img {
    margin-left: 0;
    max-width: 140px;
    height: auto;
  }
  .header .btn-getstarted,
  .header .btn-getstarted:focus {
    margin-right: 44px;
  }
}

/*--------------------------------------------------------------
# Desktop Navigation
--------------------------------------------------------------*/
@media (min-width: 1441px) {
  .navbar {
    padding: 0;
    position: relative;
  }

  .navbar ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navbar li {
    position: relative;
  }

  .navbar>ul>li {
    white-space: nowrap;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    transition: 0.4s;
    position: relative;
    margin: 0 8px;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 18px;
    line-height: 0;
  }

  .navbar>ul>li>a:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #e84137;
    visibility: hidden;
    transition: all 0.4s ease-in-out 0s;
    transform: scaleX(0);
    transition: all 0.4s ease-in-out 0s;
  }

  .navbar a:hover:before,
  .navbar li:hover>a:before,
  .navbar .active:before {
    visibility: visible;
    transform: scaleX(0.7);
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    color: var(--color-primary);
  }

  .navbar .dropdown a:hover:before,
  .navbar .dropdown:hover>a:before,
  .navbar .dropdown .active:before {
    visibility: hidden;
  }

  .navbar .dropdown a:hover,
  .navbar .dropdown .active,
  .navbar .dropdown .active:focus,
  .navbar .dropdown:hover>a {
    color: var(--color-white);
    background: var(--color-secondary);
  }

  .navbar .dropdown ul {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    margin: 0;
    padding: 0 0 10px 0;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    background: var(--color-secondary);
    transition: 0.4s;
  }

  .navbar .dropdown ul li {
    min-width: 200px;
  }

  .navbar .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    font-weight: 400;
    color: rgba(var(--color-white-rgb), 0.5);
  }

  .navbar .dropdown ul a i {
    font-size: 12px;
  }

  .navbar .dropdown ul a:hover,
  .navbar .dropdown ul .active,
  .navbar .dropdown ul .active:hover,
  .navbar .dropdown ul li:hover>a {
    color: var(--color-white);
    background: var(--color-primary);
  }

  .navbar .dropdown:hover>ul {
    opacity: 1;
    visibility: visible;
  }

  .navbar .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

  .navbar .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: 100%;
    visibility: visible;
  }

  .navbar ul li img {
    display: none;
  }
}

@media (min-width: 1280px) and (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation
--------------------------------------------------------------*/
@media (max-width: 1440px) {
  .navbar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    bottom: 0;
    transition: 0.3s;
    z-index: 9997;
  }

/*  .navbar ul {
    position: absolute;
    inset: 0;
    padding: 0;
    margin: 0;
    overflow-y: auto;
    list-style: none;
    background-image:linear-gradient(rgba(31,36,68,0.85),rgba(232,65,55,0.25)),url(../img/mobile-menu-bg.jpg);
    background-size: cover;
    transition: 0.4s;
    z-index: 9998;
  }*/
  .navbar ul {
     position: absolute;
     inset: 0;
     padding: 0;
     margin: 0;
     overflow-y: auto;
     list-style: none;
     background-image:linear-gradient(rgba(31, 36, 68, 0.8),rgba(232, 65, 55 ,0.2));
     backdrop-filter: blur(3px);
     -webkit-backdrop-filter: blur(3px);
     background-size: cover;
     transition: 0.4s;
     z-index: 9998;
   }

  .navbar ul li img {
    display: inline-block;
    margin-top: 24px;
    padding: 18px;
    max-width: 300px;
    height: auto;
  }

  .navbar a,
  .navbar a:focus {
    display: flex;
    align-items: left;
    justify-content: left;
    margin-left: 40px;
    padding: 16px 0;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    text-shadow: 0 0 3px #1f2444, 0 0 3px #1f2444, 0 0 3px #1f2444, 0 0 3px #1f2444;
    white-space: nowrap;
    text-transform: uppercase;
    transition: font 0.15s ease;
    letter-spacing: 1px;
    opacity: 1;
  }

  .navbar a:hover,
  .navbar .active,
  .navbar .active:focus,
  .navbar li:hover>a {
    text-decoration: underline;
    text-decoration-color: #e84137;
    text-underline-offset: 6px;
    font-size: 18px;
    color: #fff;
  }

  .navbar a i,
  .navbar a:focus i {
    font-size: 26px;
    line-height: 0;
  }

  .navbar .dropdown ul,
  .navbar .dropdown .dropdown ul {
    position: static;
    display: none;
    padding: 10px 0;
    margin: 10px 20px;
    transition: all 0.4s ease-in-out;
    border: 1px solid rgba(var(--color-secondary-light-rgb), 0.3);
  }

  .navbar .dropdown>.dropdown-active,
  .navbar .dropdown .dropdown>.dropdown-active {
    display: block;
  }

  .mobile-nav-toggle {
    display: block !important;
    color: var(--color-secondary);
    font-size: 32px;
    cursor: pointer;
    line-height: 1.25;
/*    transition: 0.4s;*/
    position: fixed;
    top: 15px;
    z-index: 9999;
    right: 20px;
  }

  .mobile-nav-toggle.bi-x {
    color: var(--color-white);
  }

  .mobile-nav-active {
    overflow: hidden;
    z-index: 9995;
    position: relative;
  }

  .mobile-nav-active .navbar {
    left: 0;
  }

  .mobile-nav-active .navbar:before {
    content: "";
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9996;
  }

  .language-switcher {
    margin-right: 50px;
  }
}

/*--------------------------------------------------------------
# Fullscreen Hero Section
--------------------------------------------------------------*/
.sekcja-startowa {
  width: 100%;
  min-height: 100vh;
  background: url("../img/hero-fullscreen-bg-updated-v3.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 120px 0 60px;
}

.sekcja-startowa:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.85);
  position: absolute;
  inset: 0;
}

  @media (min-width: 1365px) {
    .sekcja-startowa {
      background-attachment: fixed;
    }
  }

/*  .sekcja-startowa h1 {
    margin: 0 0 10px 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
  }*/

/*  .sekcja-startowa .container {
    background: rgba(211,211,211,0.7);
    outline: 6px solid rgba(255,255,255,0.35);
    padding: 22px;
  }*/

  .sekcja-startowa .container p {
    color: var(--color-secondary);
    margin: 0 0 30px 0;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.3!important;
  }

  .sekcja-startowa h1 {
    margin: 0 0 12px 0;
    font-size: 36px;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.0!important;
  }

  .sekcja-startowa .btn-get-started {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    padding: 10px 28px;
    border-radius: 4px;
    transition: 0.4s;
    color: var(--color-white);
    background: var(--color-primary);
  }

  .sekcja-startowa .btn-get-started:hover {
    background: rgba(var(--color-primary-rgb), 0.8);
  }

/*.sekcja-startowa .btn-get-started {
  font-size: 16px;
  font-weight: 500;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 4px;
  transition: 0.4s;
  color: var(--color-white);
  background: var(--color-primary);
}

.sekcja-startowa .btn-get-started:hover {
  background: rgba(var(--color-primary-rgb), 0.8);
}*/

@media (max-width: 568px) {
  .sekcja-startowa {
    width: 100%;
    min-height: 100vh;
    background: url("../img/hero-fullscreen-bg-mobile-updated-v4.jpg") center center;
    background-size: cover;
    position: relative;
    padding: 100px 0 60px;
  }
  .sekcja-startowa:before {
    content: "";
    background: rgba(var(--color-white-rgb), 0.85);
    position: absolute;
    inset: 0;
  }
  /* .sekcja-startowa p {
    font-size:0.85rem!important;
    font-weight:500!important;
  } */
  .sekcja-startowa p {
    font-size:18px!important;
    color: #1d1d1b!important;
    font-weight: 400!important;
  }
}

@media (max-width: 800px) {
  .sekcja-startowa h1 {
    font-size: 24px;
  }
  /* .sekcja-startowa p {
    font-size:0.85rem!important;
    font-weight:500!important;
  } */
  .sekcja-startowa p {
    font-size:18px!important;
    color: #1d1d1b!important;
    font-weight: 400!important;
  }
  .sekcja-startowa .btn-get-started {
    font-size: 14px;
    padding: 7px 22px;
  }
}

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.cta {
  width: 100%;
  min-height: 100vh;
  background: url("../img/cta-bg.jpg") center center;
  background-size: cover;
  position: relative;
  padding: 60px 0 60px;
  border-top: 1px solid #1f2444;
}

.cta:before {
  content: "";
  background: rgba(var(--color-white-rgb), 0.7);
  position: absolute;
  inset: 0;
}

.cta .container {
  padding: 80px;
  background: rgba(242,242,242,0.75);
  border-radius: 15px;
}

.cta .container i {
  font-size: 40px;
  color: darkgreen;
}

.cta .container h4 {
    color: var(--color-primary);
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 500;
}

@media (max-width: 992px) {
  .cta .container {
    padding: 46px 23px;
    background: rgba(242,242,242,0.65);
  }
}
.cta .content h2 {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .cta .content h2 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
  }
}

.cta .content h3 {
    color: var(--color-secondary);
    margin: 0 0 30px 0;
    font-size: 22px;
    font-weight: 400;
}
@media (max-width: 640px) {
  .cta .content h3 {
    color: var(--color-secondary);
    font-size: 18px;
    margin-top: 6px;
    margin-bottom: 20px;
  }
  .cta .content h4 {
    color: var(--color-primary);
    font-size: 18px;
    margin-top: 6px;
    margin-bottom: 20px;
  }
}

.cta .content .cta-btn {
  color: var(--color-white);
  font-weight: 500;
  font-size: 16px;
  display: inline-block;
  padding: 12px 40px;
  border-radius: 5px;
  transition: 0.4s;
  margin-top: 10px;
  background: rgba(var(--color-primary-dark-rgb), 0.9);
}

.cta .content .cta-btn:hover {
  background: var(--color-primary);
}

.cta .img {
  position: relative;
  padding-top: 8px;
}

.cta .img img {
  position: relative;
  z-index: 3;
  border-radius: 15px;
  border: 2px solid #fff;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.kontakt {
  background: rgba(242,242,242,0.9);
  padding-top:40px!important;
  padding-bottom:50px!important;
  border-top: 1px solid #1f2444;
}
@media (max-width: 991px) {
  .kontakt {
    padding-top:40px!important;
    padding-bottom:50px!important;
  }
}
.kontakt .map {
  margin-bottom: 40px;
}

.kontakt .map iframe {
  border: 0;
  width: 100%;
  height: 400px;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

.kontakt .info {
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.25);
  border-radius: 20px;
  overflow: hidden;
  background-color: #fff;
}

.kontakt .info h3 {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .kontakt .info h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary);
  }
}

.kontakt .info p {
  color: var(--color-secondary-light);
  margin-bottom: 30px;
  font-size: 15px;
}

.kontakt .info-item+.info-item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid rgba(var(--color-secondary-rgb), 0.15);
}

.kontakt .info-item i {
  font-size: 24px;
  color: var(--color-primary);
  transition: all 0.4s ease-in-out;
  margin-right: 20px;
}

.kontakt .info-item h4 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #1d1d1b;
}
.kontakt .info-item a {
  font-size: 18px;
  font-weight: 500;
}
  @media (max-width: 640px) {
  .kontakt .info-item h4 {
    padding: 0;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #1d1d1b;
  }
  .kontakt .info-item a {
    font-size: 16px;
    font-weight: 500;
  }
}

.kontakt .info-item a {
  font-weight: 500;
}

.kontakt .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-secondary-light);
}

.kontakt .formularz-kontaktowy {
  width: 100%;
  padding: 40px;
  box-shadow: 0px 2px 15px rgba(var(--color-black-rgb), 0.25);
  border-radius: 20px;
  background-color: #fff;
  overflow: hidden;
}

.kontakt .formularz-kontaktowy .row h3 {
  font-weight: 700;
  font-size: 30px;
  color: var(--color-primary);
}
@media (max-width: 640px) {
  .kontakt .formularz-kontaktowy .row h3 {
    font-weight: 700;
    font-size: 24px;
    color: var(--color-primary);
  }
}
.kontakt .formularz-kontaktowy .row p {
  color: #1d1d1b;
  font-weight: 400;
  font-size: 12px;
}

.kontakt .formularz-kontaktowy .form-group {
  padding-bottom: 8px;
}

.kontakt .formularz-kontaktowy .blad-powiadomienie {
  display: none;
  color: var(--color-white);
  background: var(--color-red);
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.kontakt .formularz-kontaktowy .blad-powiadomienie br+br {
  margin-top: 25px;
}

.kontakt .formularz-kontaktowy .wiadomosc-wyslana {
  display: none;
  color: var(--color-white);
  background: var(--color-green);
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.kontakt .formularz-kontaktowy .ladowanie {
  display: none;
  background: var(--color-white);
  text-align: center;
  padding: 15px;
}

.kontakt .formularz-kontaktowy .ladowanie:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--color-green);
  border-top-color: var(--color-white);
  animation: animacja-ladowanie 1s linear infinite;
}

.kontakt .formularz-kontaktowy input[type=text],
.kontakt .formularz-kontaktowy input[type=email],
.kontakt .formularz-kontaktowy textarea {
  border-radius: 0px;
  box-shadow: none;
  font-size: 14px;
}

.kontakt .formularz-kontaktowy input[type=text]:focus,
.kontakt .formularz-kontaktowy input[type=email]:focus,
.kontakt .formularz-kontaktowy textarea:focus {
  border-color: var(--color-secondary-light);
}

.kontakt .formularz-kontaktowy input[type=text],
.kontakt .formularz-kontaktowy input[type=email] {
  height: 48px;
  padding: 10px 15px;
}

.kontakt .formularz-kontaktowy textarea {
  padding: 10px 12px;
  height: 290px;
}

.kontakt .formularz-kontaktowy input[type=submit] {
  background: var(--color-primary);
  border: 1px solid #fff;
  padding: 10px 24px;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0px 0px 30px rgba(40, 0, 20, 0.2);
}
.kontakt .formularz-kontaktowy input:disabled[type=submit] {
  border: 1px solid #fff;
  padding: 10px 24px;
  background: darkgrey;
  color: var(--color-white);
  cursor: not-allowed;
  transition: 0.4s;
}

.kontakt .formularz-kontaktowy input[type=submit]:not(:disabled):hover {
  background: rgba(var(--color-primary-rgb), 0.85);
}

@keyframes animacja-ladowanie {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  color: var(--color-white);
  font-size: 14px;
  background: rgba(242,242,242,0.9)!important;
}

.footer .custom-footer-links a {
  color: #f1857f!important;
  font-weight: 500;
}
.footer .custom-footer-links a:hover {
  color: #f3a09b!important;
}

.footer .footer-content {
  padding: 40px 10px;
  margin: 0;
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/footer-bg-v2.jpg) no-repeat center center;
  background-size: cover;
}
@media (max-width: 991px) {
  .footer .footer-content {
    padding: 40px 10px;
    margin: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/footer-bg-v2-sm.jpg) no-repeat center center;
    background-size: cover;
  }
}

.footer .footer-content .footer-info {
  margin-bottom: 0px;
}

.footer .footer-content .footer-info img {
  width: 200px;
  height: auto;
}

.footer .footer-content .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}

.footer .footer-content .footer-info h3 span {
  color: var(--color-primary);
}

.footer .footer-content .footer-info p {
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  margin-bottom: 0;
  color: var(--color-white);
}

.footer .footer-content h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 15px;
}

/* .footer .footer-content h4::after {
  content: "";
  position: absolute;
  display: block;
  width: 20px;
  height: 3px;
  background: #e84137;
  outline: 1px solid #fff;
  bottom: 0;
  left: 0;
} */

.footer .footer-content .footer-links {
  margin-bottom: 30px;
}

.footer .footer-content .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-content .footer-links ul i {
  padding-right: 2px;
  color: var(--color-white);
  font-size: 12px;
  line-height: 1;
}

.footer .footer-content .footer-links ul li {
  padding: 7px 0;
  display: flex;
  align-items: center;
}

.footer .footer-content .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-content .footer-links ul a {
  color: rgba(var(--color-white-rgb), 0.7);
  transition: 0.4s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-content .footer-links ul a:hover {
  color: var(--color-white);
}

.footer .footer-content .footer-newsletter form {
  margin-top: 30px;
  background: var(--color-white);
  padding: 6px 10px;
  position: relative;
  border-radius: 33px;
}

.footer .footer-content .footer-newsletter form input:not([disabled])[type=email]:focus-visible {
  outline: none;
}
.footer .footer-content .footer-newsletter form input:not([disabled])[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 110px);
}
.footer .footer-content .footer-newsletter form input:not([disabled])[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: #e84137;
  color: var(--color-white);
  transition: 0.4s;
  border-radius: 33px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}
.footer .footer-content .footer-newsletter form input:not([disabled])[type=submit]:hover {
  background: rgba(232, 65, 55, 0.85);
}

.footer .footer-content .footer-newsletter form input:disabled[type=submit] {
  position: absolute;
  top: 0;
  right: -2px;
  bottom: 0;
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  background: darkgrey;
  color: var(--color-white);
  cursor: not-allowed;
  transition: 0.4s;
  border-radius: 33px;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  border-right: 1px solid #fff;
}

.footer .footer-legal {
  padding: 74px 0;
  background: linear-gradient(rgba(31, 36, 68, 0.85), rgba(31, 36, 68, 1));
  background-size: cover;
  margin: 0;
}
@media (max-width: 991px) {
  .footer .footer-legal {
    padding: 74px 0;
    background: linear-gradient(rgba(31, 36, 68, 0.85), rgba(31, 36, 68, 1));
    background-size: cover;
    margin: 0;
  }
}

.footer .footer-legal .credits {
  padding-top: 4px;
  font-size: 13px;
  color: var(--color-white);
}

.footer .footer-legal .credits a {
  color: var(--color-primary-light);
}

.footer .footer-legal .social-links a {
  font-size: 18px;
  display: inline-block;
  background: rgba(var(--color-white-rgb), 0.1);
  color: var(--color-white);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.4s;
}

.footer .footer-legal .social-links a:hover {
  background: var(--color-primary);
  text-decoration: none;
}

.footer .footer-legal .social-links p {
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .footer .footer-legal .social-links p {
    display: none;
  }
}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/
.clients {
  text-align: center;
  padding-top:40px!important;
  padding-bottom:30px!important;
  border-top: 1px solid #1f2444;
}
.clients img {
  transition: all 0.4s ease-in-out;
  display: inline-block;
  padding: 15px 0;
  cursor: pointer;
}
.clients img:hover {
  filter: none;
  transform: scale(1.10);
}
@media (max-width: 991px) {
  .clients {
    text-align: center;
    padding-top:50px!important;
    padding-bottom:10px!important;
  }
}
@media (max-width: 768px) {
  .clients img {
    max-width: 65%;
  }
}
.clients h3 {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 48px;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .clients h3 {
    font-size: 32px;
  }
}

hr.formularz-hr {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0));
}

.swal2-container.swal2-backdrop-show, .swal2-container.swal2-noanimation {
  background: rgba(0, 0, 0, 0.9)!important;
}

.grecaptcha-badge {
  visibility: hidden!important;
}

.nobr { white-space:nowrap!important; }

@media (min-width: 1280px) {
  .sekcja-startowa .container p {
    text-align: justify;
  }
  .cta .content h3 {
    text-align: justify;
  }
  .features .tab-pane h4 {
    text-align: justify;
  }
}

.sticky-ue {
  position: static;
  bottom: 0;
  right: 0;
  z-index: 99;
  padding: 30px 0;
  background-color: #fff;
}
.sticky-ue img {
  width: 100%;
  height: auto;
}
.sticky-ue a {
  position: absolute;
  left: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-weight: 900;
  letter-spacing: 1px;
  font-style: italic;
  font-size: 14px;
  text-decoration: none;
}

@media (min-width: 781px) {
  .sticky-ue img {
    width: 50%!important;
    height: auto!important;
  }
  .sticky-ue a {
    position: absolute;
    left: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-weight: 900;
    letter-spacing: 1px;
    font-style: italic;
    font-size: 20px;
    text-decoration: none;
  }
}

/*--------------------------------------------------------------
# Custom
--------------------------------------------------------------*/
#sticky-side
{
  position:fixed;
  top:50%;
  transform:translateY(-50%);
  right:0;
  display: flex;
  align-items: center;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  #sticky-side
  {
    position:absolute;
  }
}
.contact-btn
{
  height:50px;
  width:150px;
  background-color:rgba(31, 36, 68, 0.9);
  color:#fff;
  line-height:54px;
  text-align:center;
  font-size:16px;
  font-weight:700;
  text-transform:uppercase;
  transform:translatex(50px) rotate(-90deg);
  cursor:pointer;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}
#side-box
{
  padding: 12px;
  border: 1px solid #e1e1e1;
  border-right: 0;
  height: auto;
  max-height: calc(100vh - 220px);
  overflow-y: auto;
  background: #fff;
  width: 300px;
  margin-right: -300px;
  z-index: 9999;
  transition: all .5s;
  background-image: linear-gradient(rgba(255,255,255,0.85), rgba(255,255,255,0.85)), url("../img/nitrosamines-background.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#side-box p
{
  color: var(--color-primary);
  font-weight: 500;
  font-size: 18px;
}
#side-box a
{
  font-size: 20px;
}
#side-box .side-header
{
  display:block;
  background-color:#1f2444;
  padding:0 15px;
  font-size:20px;
  color:#fff;height:40px;
  line-height:40px;
  position:relative;
}
#side-box .side-header i
{
  font-size:20px;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor:pointer;
}
.open-box
{
  margin-right:0!important;
}
.lang-switcher-prefix {
  display:none!important;
}
.language-switcher-container {
  user-select:none!important;
}

.language-switcher-container blockquote > i {
  color:#1d1d1b!important
}
.language-switcher-container blockquote > span {
  color:#1d1d1b!important;
  font-weight:600!important;
  letter-spacing:1px!important;
  font-size:14px!important
}
@media only screen and (min-width: 1490px) {
  .lang-switcher-prefix {
    display:inline!important
  }
}
@media only screen and (min-width: 640px) and (max-width: 1440px) {
  .lang-switcher-prefix {
    display:inline!important
  }
}
.language-switcher {
  padding: 4px;
  border: 1px solid #1f2444;
  display: inline-block;
  font-family: sans-serif;
  font-weight: bold;
  border-radius: 15px;
  background-color: #fff;
}

.language-switcher span {
  display: inline-block;
  padding-left: 10px;
  padding-right: 10px;
  margin: 0;
  background-color: #ffffff;
  color: #1f2444;
  border-radius: 15px;
}

.language-switcher .active {
  background-color: #1f2444;
  background-image:var(--bs-gradient)!important;
  color: #fff;
}

.language-switcher .language-pl.active {
  padding-left: 10px;
}

.language-switcher .language-en.active {
  padding-right: 10px;
}

@media (max-width: 1440px) {
  .language-switcher span {
    display: inline-block;
    padding-left: 6px;
    padding-right: 6px;
    margin: 0;
    background-color: #ffffff;
    color: #1f2444;
    border-radius: 15px;
  }
  .language-switcher .language-pl.active {
    padding-left: 6px;
  }

  .language-switcher .language-en.active {
    padding-right: 6px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features {
  background: rgba(242,242,242,0.9);
  border-top: 1px solid #1a1f24;
}
.features .nav-tabs {
  border: 0;
}

.features .nav-link {
  border: 0;
  padding: 25px 20px;
  color: var(--color-secondary);
  box-shadow: 5px 5px 25px rgba(var(--color-secondary-rgb), 0.15);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: 0s;
  cursor: pointer;
  height: 100%;
}

.features .nav-link i {
  font-size: 32px;
  line-height: 0;
}

.features .nav-link h2 {
  font-size: 24px;
  font-weight: 700;
  margin: 10px 0 0 0;
  color: #1d1d1b;
}

.features .tab-content .tab-pane h2 {
  font-weight: 400;
  color: #1d1d1b;
  line-height: 1.25;
}

.features .nav-link.active {
  transition: 0.4s;
  background: var(--color-secondary) linear-gradient(rgba(var(--color-primary-rgb), 0.95), rgba(var(--color-primary-rgb), 0.6));
  border-color: var(--color-primary);
}

.features .nav-link.active h2 {
  color: var(--color-white);
}

.features .nav-link.active i {
  color: var(--color-white) !important;
}

.features .tab-content {
  margin-top: 30px;
}

.features .tab-pane.active {
  animation: fadeIn 0.5s ease-out;
}

.features .tab-pane h3 {
  color: var(--color-primary);
  font-size: 36px;
  font-weight: 700;
}
@media (max-width: 640px) {
  .features .tab-pane h3 {
    color: var(--color-primary);
    font-size: 24px;
    font-weight: 700;
  }
}

.features .tab-pane h4 {
    color: var(--color-secondary);
    margin: 0 0 30px 0;
    font-size: 22px;
    font-weight: 400;
}
@media (max-width: 640px) {
  .features .tab-pane h4 {
    color: var(--color-secondary);
    font-size: 18px;
    margin-top: 6px;
    margin-bottom: 20px;
  }
}

.features .tab-pane ul {
  list-style: none;
  padding: 0;
}

.features .tab-pane ul li {
  padding-bottom: 10px;
}

.features .tab-pane ul i {
  font-size: 24px;
  margin-right: 4px;
  color: var(--color-primary);
}

.features .tab-pane p:last-child {
  margin-bottom: 0;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (max-width: 991px) {
  .w-100-mobile{
      width:100%!important
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

@media (max-width: 1440px) {
  .breadcrumbs {
    padding: 65px 0;
    background: rgba(var(--color-secondary-rgb), 0.05);
    min-height: 40px;
    margin-top: 70px;
  }
}
@media (min-width: 1441px) {
  .breadcrumbs {
    padding: 65px 0;
    background: rgba(var(--color-secondary-rgb), 0.05);
    min-height: 40px;
    margin-top: 90px;
  }
}

.breadcrumbs h1 {
  font-size: 34px;
  color: var(--color-primary);;
  font-weight: 700;
  margin: 0;
}

.breadcrumbs ol {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 6px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 6px;
  color: var(--color-secondary-light);
  content: "/";
}

.breadcrumbs .d-flex {
  display: block !important;
}

@media (max-width: 992px) {

  .breadcrumbs .d-flex {
    display: block !important;
  }

  .breadcrumbs h1 {
    margin-bottom: 10px;
    font-size: 24px;
  }

  .breadcrumbs ol {
    display: block;
    text-align: center;
  }

  .breadcrumbs ol li {
    display: inline-block;
  }
}
.accordion-button{
  background: #1f2444!important;
  color: #fff!important;
}
.accordion-button.collapsed {
  background: #1f2444!important;
  color: #fff!important;
}
.accordion-button.collapsed::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")!important;
}
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")!important;
}
.accordion-button:focus {
  box-shadow: none!important;
  border-color: rgba(0,0,0,.125)!important;
}

.button__scroll--up {
  z-index: 996;
  position: fixed;
  background: #fff;
  right: 30px;
  bottom: 14px;
  border-radius: 10px;
  border: 0;
  width: 55px;
  height: 55px;
  font-size: 1.7em;
  outline: none;
  color: #1f2444;
  transform: scale(0);
  box-shadow: 0 2px 5px rgba(0, 0, 0, .45);
  transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.is_showing {
  display: block;
  transform: scale(1);
}

.footer hr {
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0));
}

#cc-main {
    /** Change button primary color to black **/
    --cc-btn-primary-bg: #1f2444;
    --cc-btn-primary-border-color: #1f2444;

    /** Make the buttons a bit rounder **/
    --cc-btn-border-radius: 33px;

    --cc-font-family: var(--font-default)!important;

    --cc-toggle-on-bg: #1f2444;
}

#cc-main,
#cc-main .pm {
    --cc-modal-transition-duration: 0!important;
}

#cc-main .cm {
    background: rgba(255,255,255,0.6)!important;
    -webkit-backdrop-filter: blur(8px)!important;
    backdrop-filter: blur(8px)!important;
    --cc-modal-transition-duration: 0.7s!important;
}

button[data-cc="show-preferencesModal"]:hover,
button[data-cc="show-preferencesModal"]:focus {
  background-color: transparent!important;
  border-color: #f8f9fa!important;
  color: #fff!important;
}

.sticky-call {
	background-color: #fff;
	border-radius: 10px;
	bottom: 14px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, .45);
	color: #01633a!important;
  left: 30px;
	height: 55px;
  width: 55px;
	position: fixed;
  opacity:0;
  transition: opacity 0.3s;
	z-index: 996!important;
}

.sticky-call.active {
  display: block;
  opacity:1;
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
@-webkit-keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.8);
  }
}
.custom-swal-show {
  animation: scaleIn 0.3s ease-out;
  -webkit-animation: scaleIn 0.3s ease-out;
}
.custom-swal-hide {
  animation: scaleOut 0.3s ease-in;
  -webkit-animation: scaleOut 0.3s ease-in;
}

.swal-configuration-window button {
  border-radius: 33px!important;
  box-shadow:none!important
}
