@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://use.fontawesome.com/releases/v5.2.0/css/all.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Montserrat", sans-serif, Inter;
  font-size: 10px;
  --leaf-green: #9ab93c;
  --almost-white: #f7f8f8;
  --sb-track-color: #132103;
  --sb-thumb-color: #9ab93c;
  --sb-size: 5px;
  --dark-green: #35602c;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
*::-webkit-scrollbar {
  width: var(--sb-size);
}

*::-webkit-scrollbar-track {
  background: var(--sb-track-color);
  border-radius: 0px;
}

*::-webkit-scrollbar-thumb {
  background: var(--sb-thumb-color);
  border-radius: 5px;
}

@supports not selector(::-webkit-scrollbar) {
  * {
    scrollbar-color: var(--sb-thumb-color) var(--sb-track-color);
  }
}

h1 {
  cursor: default;
}
h2 {
  cursor: default;
}
h3 {
  cursor: default;
}
h5 {
  cursor: default;
}
p {
  cursor: default;
}
div {
  cursor: default;
}

.top-bar.wide {
  display: none;
}
.top-bar {
  padding: 1rem 2rem;
  width: 100%;
  background-color: #000;
  color: #fff;
  font-size: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.top-bar a {
  text-decoration: none;
  color: white;
  transition: 0.3s;
}
.phone-numbers {
  position: absolute;
  top: -5em;
  right: 0;
  z-index: -1;
  transition: 0.5s;
}
.phone-numbers a {
  padding: 1rem;
  display: block;
  text-shadow: #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 25px;
}
.phone-numbers.active {
  top: 2.5em;
  z-index: 6;
}

p.thin-bar {
  background-color: #fff;
  height: 2px;
  width: 66.66%;
  margin: 0 auto;
  margin-bottom: 1rem;
}

.left {
  margin-right: auto;
}

.center {
  margin-left: auto;
  margin-right: auto;
}

.right {
  margin-left: auto;
}

.banner-background {
  padding-bottom: 2rem;
  background-color: rgba(0, 0, 0, 0.7);
}
.home-header {
  position: relative;
  color: white;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-image: url("../images/Banner1640x426.avif");
}
.slogan {
  text-align: center;
  width: 80%;
  margin: 0 auto;
  margin-top: 10%;
}
.slogan img {
  width: 50%;
}
.slogan .company-name {
  font-size: 2rem;
  font-weight: 500;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}
.slogan .company-owners {
  font-size: 1.5rem;
  font-weight: 400;
}
nav {
  display: none;
  transition: top 0.3s;
}

@media (min-width: 680px) {
  .slogan img {
    width: 30%;
  }
}
@media (min-width: 900px) {
  .slogan img {
    width: 25%;
  }
}
@media (min-width: 768px) {
  .top-bar {
    font-size: 2rem;
  }

  .phone-numbers.active {
    top: 2em;
  }

  .home-header {
    background-image: url("../images/Banner11280x852.avif");
  }
}
@media (min-width: 1024px) {
  .top-bar.wide {
    display: flex;
    font-size: 1.8rem;
    padding: 2rem 2rem;
  }

  .top-bar.narrow {
    display: none;
  }

  .top-bar a:hover {
    color: var(--leaf-green);
  }

  .home-header {
    background-image: url("../images/Banner11920x1278.avif");
  }
}

@media (min-width: 1024px) {
  .banner-background {
    min-height: 100vh;
  }
  .slogan img {
    width: auto;
  }

  .home-header {
    min-height: 100vh;
  }

  .slogan .company-name {
    font-size: 4.8rem;
    margin-bottom: 1rem;
  }

  .slogan .company-owners {
    font-size: 3.2rem;
    font-weight: 400;
  }
}
@media (min-width: 1200px) {
  .slogan .company-name {
    font-size: 6.4rem;
  }

  .slogan .company-owners {
    font-size: 4.8rem;
  }
}
@media (min-width: 1600px) {
  .slogan .company-name {
    font-size: 6.4rem;
  }
}
footer {
  background-color: #000;
  font-size: 1rem;
  font-weight: 400;
  text-align: center;
  color: white;
  padding: 1rem 1.5rem;
}
@media (min-width: 731px) {
  footer {
    font-size: 2rem;
  }
}

.menu {
  --s: 2.5rem;
  --c: var(--almost-white);
  height: var(--s);
  aspect-ratio: 1;
  border: none;
  padding: 0;
  border-inline: calc(var(--s) / 2) solid #0000;
  box-sizing: content-box;
  --_g1: linear-gradient(var(--c) 20%, #0000 0 80%, var(--c) 0) no-repeat content-box border-box;
  --_g2: radial-gradient(circle closest-side at 50% 12.5%, var(--c) 95%, #0000) repeat-y content-box border-box;
  background: var(--_g2) left var(--_p, 0px) top, var(--_g1) left calc(var(--s) / 10 + var(--_p, 0px)) top, var(--_g2) right var(--_p, 0px) top,
    var(--_g1) right calc(var(--s) / 10 + var(--_p, 0px)) top;
  background-size: 20% 80%, 40% 100%;
  position: relative;
  clip-path: inset(0 25%);
  -webkit-mask: linear-gradient(90deg, #0000, #000 25% 75%, #0000);
  transition: background-position 0.3s var(--_s, 0.3s), clip-path 0s var(--_s, 0.6s);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.menu:before,
.menu:after {
  content: "";
  position: absolute;
  border-radius: var(--s);
  inset: 40% 0;
  background: var(--c);
  transition: transform 0.3s calc(0.3s - var(--_s, 0.3s));
}

.menu:checked {
  clip-path: inset(0);
  --_p: calc(-1 * var(--s));
  --_s: 0s;
}

.menu:checked:before {
  transform: rotate(45deg);
}

.menu:checked:after {
  transform: rotate(-45deg);
}

.menu:focus-visible {
  clip-path: none;
  -webkit-mask: none;
  border: none;
  outline: 2px solid var(--c);
  outline-offset: 5px;
}
.hamburger-icon {
  position: fixed;
  z-index: 2;
  top: 5rem;
  padding: 1rem 0;
  right: 1rem;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.7);
  border: 2px solid var(--leaf-green);
}
.hamburger {
  position: fixed;
  right: -220px;
  top: 12rem;
  z-index: 2;
  transition: 0.4s;
}
.hamburger.active {
  right: 0;
}
.hamburger a {
  display: block;
  margin: 0.5rem 0 0.5rem 1rem;
  padding: 1rem 1rem 1rem 3rem;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 2rem;
  font-weight: 500;
  text-align: right;
  transition: 0.3s;
  border-top-left-radius: 5rem;
  border-bottom-left-radius: 1rem;
  background: rgba(0, 0, 0, 0.8);
  border-bottom: 2px solid var(--leaf-green);
  border-top: 2px solid var(--leaf-green);
  border-left: 2px solid var(--leaf-green);
  /*
text-shadow: #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 25px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 25px;
*/
}

.navbar {
  width: 100%;
  justify-content: flex-end;
  transition: 0.4s;
}
nav.fixed {
  position: fixed;
  top: -10vh;
  z-index: 5;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
}
nav.fixed a {
  text-shadow: #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 25px;
}

nav.fixed.scrolled-up {
  top: 0;
}

.navbar a {
  padding: 2rem 4rem;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  font-size: 1.5rem;
  font-weight: 500;
  transition: 0.3s;
}

.navbar a:hover {
  color: var(--leaf-green);
  text-shadow: #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 25px;
}
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  .hamburger-icon {
    display: none;
  }
  .menu {
    display: none;
  }
  nav {
    display: flex;
  }
}
@media (min-width: 1100px) {
  .navbar a {
    font-size: 2rem;
  }
}

@media (min-width: 1600px) {
  .navbar a {
    font-size: 2.4rem;
  }
}

section.about-us {
  width: 100%;
  padding-top: 5rem;
}

.about-us-wrapper {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}

.about-us-wrapper h2 {
  font-weight: 400;
  font-size: 2rem;
  text-transform: uppercase;
}

.about-us-wrapper h1 {
  font-weight: 400;
  font-size: 3rem;
  margin-top: 1rem;
  margin-bottom: 5rem;
}

.about-us-wrapper h1 span {
  font-weight: 700;
}

.about-us-wrapper p {
  font-size: 1.5rem;
  text-align: left;
  margin-bottom: 4rem;
}

.about-us-wrapper ul {
  font-size: 1.5rem;
  text-align: left;
}

.about-us-wrapper ul li {
  margin-top: 1rem;
  text-align: left;
}
.list {
  width: 80%;
  margin-bottom: 4rem;
}
.list ul li {
  position: relative;
  left: 0;
  padding-left: 0.5rem;
  color: black;
  list-style: none;
  margin: 4px 0;
  border-left: 2px solid var(--leaf-green);
  transition: 0.8s;
  cursor: default;
}

.list ul li span {
  position: relative;
  padding: 8px;
  padding-left: 12px;
  display: inline-block;
  z-index: 1;
  transition: 0.8s;
}

.list ul li:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--leaf-green);
  transform: scaleX(0);
  transform-origin: left;
  transition: 0.8s;
}
.list .nested {
  width: 80%;
  margin-left: 20%;
  list-style-type: none;
}

h2.list-header {
  text-align: center;
  margin: 5rem auto;
  font-weight: 700;
  color: var(--dark-green);
  font-size: 2.8rem;
}
@media (min-width: 1024px) {
  .list ul li:hover:before {
    transform: scaleX(1);
  }

  .list ul li:hover span {
    color: var(--almost-white);
  }

  .list ul li:hover {
    left: 6rem;
  }

  .about-us-wrapper h2 {
    font-size: 3.2rem;
  }

  .about-us-wrapper h1 {
    font-size: 4.8rem;
  }

  .about-us-wrapper p {
    font-size: 2.4rem;
  }

  .about-us-wrapper ul {
    font-size: 2.4rem;
  }
  h2.list-header {
    font-size: 4rem;
  }
}
.trust-background {
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: 2rem;
  padding: 5rem 1rem;
}
.trust {
  color: white;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
.trust p {
  text-shadow: #000 1px 0 20px, #000 1px 0 20px, #000 1px 0 20px;
}
@media (min-width: 533px) {
  .trust {
    font-size: 2rem;
  }
}
@media (min-width: 731px) {
  .trust {
    font-size: 2.5rem;
  }
}
@media (min-width: 1024px) {
  .trust {
    font-size: 3rem;
  }
}
@media (min-width: 1600px) {
  .trust {
    font-size: 4rem;
  }
}
.offer {
  width: 100%;
  text-align: center;
  color: white;

  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
  background-image: url("../images/money-2724241_1280.avif");
}
.offer-background {
  padding-bottom: 2rem;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}
.offer h1 {
  font-size: 2rem;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 2rem;
}

.offer-wrapper {
  padding-top: 3rem;
}
div.offer-items {
  width: 80%;
  display: flex;
  flex-direction: column;
  margin: 3rem auto 0 auto;
  justify-content: space-between;
}
.offer-items .item {
  width: 100%;
  position: relative;
  overflow: hidden;
  border-radius: 1rem;
  margin-bottom: 2rem;
  cursor: pointer;
}

.offer-items .item .img {
  overflow: hidden;
  cursor: pointer;
}
.offer-items .item img {
  width: 100%;
  transition: 1s;
  cursor: pointer;
}
.title {
  width: 100%;
  color: white;
  text-align: left;
  background-color: black;
  line-height: 4rem;
  position: absolute;
  bottom: 0;
  font-size: 1.4rem;
  padding-left: 5rem;
}

.arrow {
  position: absolute;
  cursor: pointer;
  bottom: 0;
  left: 0rem;
  font-size: 3rem;
  color: white;
  z-index: 1;
  display: block;
  height: 4rem;
  line-height: 4rem;
  width: 4rem;
  background-color: var(--leaf-green);
}
@media (min-width: 533px) {
  .offer h1 {
    font-size: 3rem;
  }
  .title {
    line-height: 5rem;
    font-size: 1.8rem;
    padding-left: 6rem;
  }

  .arrow {
    font-size: 3.4rem;
    height: 5rem;
    line-height: 5rem;
    width: 5rem;
  }
}
@media (min-width: 731px) {
  div.offer-items {
    width: 60%;
  }
}
@media (min-width: 1024px) {
  .offer h1 {
    font-size: 4rem;
  }
  div.offer-items {
    margin-top: 5rem;
    width: 80%;
    flex-direction: row;
    justify-content: space-between;
  }
  .offer-items .item {
    width: 48%;
    cursor: pointer;
  }
  .arrow {
    bottom: 0;
    left: -6rem;
    font-size: 3.2rem;
    height: 6rem;
    line-height: 6rem;
    width: 6rem;
    transition: 0.5s 0.6s;
  }
  .title {
    line-height: 6rem;
    bottom: -6rem;
    font-size: 2rem;
    padding-left: 7rem;
    transition: 1s;
  }
  .offer-items .item:hover .title {
    bottom: 0;
  }

  .offer-items .item:hover img {
    transform: scale(1.1);
  }

  .offer-items .item:hover .arrow {
    left: 0;
  }
}
@media (min-width: 1600px) {
  .arrow {
    left: -8rem;
    font-size: 4rem;
    height: 8rem;
    line-height: 8rem;
    width: 8rem;
  }

  .title {
    line-height: 8rem;
    bottom: -8rem;
    font-size: 2.5rem;
    padding-left: 9rem;
  }
}
.offer.references {
  background-image: url("../images/Las5.avif");
}
.offer.references .offer-background {
  background-color: rgba(0, 0, 0, 0.5);
}
.actual {
  position: relative;
  width: 100%;
  text-align: center;
  color: white;
}
.actual img {
  width: 100%;
  max-height: 85vh;
}
.contact {
  width: 100%;
}
.contact iframe {
  width: 100%;
}
.contact-info {
  width: 100%;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  justify-content: space-between;
  font-size: 2.4rem;
}

.contact-info h1 {
  font-weight: 600;
  font-size: 3.2rem;
  margin-bottom: 2rem;
}

.contact-info a {
  text-decoration: none;
  color: white;
  display: block;
  transition: 0.3s;
}
.contact-info a,
.contact-info p {
  margin-bottom: 1rem;
  cursor: pointer;
}

.contact-info i {
  margin-right: 1rem;
  cursor: pointer;
  transition: 0.2s;
}
.facebook {
  text-align: left;
}

.facebook i {
  font-size: 6rem;
}
@media (min-width: 1024px) {
  .contact-info {
    flex-direction: row;
  }
  .facebook {
    text-align: center;
  }
  .contact-info a:hover {
    color: var(--leaf-green);
  }
  .contact-info i:hover {
    color: #9ab93c;
  }
  .contact-info h1 {
    font-weight: 500;
  }
}
.attention {
  margin: 0 -3rem 5rem -3rem;
  padding: 2rem;
  border-radius: 5rem;
  border: dashed 5px var(--leaf-green);
}
.attention .exclamation {
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
  color: var(--leaf-green);
}
.attention p {
  margin-bottom: 1rem;
  hyphens: auto;
}
.modal.about-us {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
  background-image: url("../images/Las8.avif");
  z-index: 6;
  padding-bottom: 4rem;
  transition: opacity 0.5s;
}
.modal .about-us-wrapper {
  margin-top: 4rem;
  padding: 2rem 6rem;
  max-width: 80rem;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: auto;
}

.modal i.close {
  padding: 0.5rem 1rem;
  font-size: 3.5rem;
  color: white;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.9);
  border: 2px solid var(--leaf-green);
  position: fixed;
  bottom: 2%;
  right: 50%;
  transform: translateX(50%);
}
.modal.about-us.disabled {
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s, z-index 0s 0.5s;
}
#systems-modal {
  background-image: url("../images/Drzewo3.avif");
}
@media (min-width: 560px) {
  .attention .exclamation {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .modal i.close {
    font-size: 5rem;
    bottom: 4%;
    cursor: pointer;
    transition: 0.5s;
  }
  .modal i.close:hover {
    color: var(--leaf-green);
    background-color: white;
    border: 2px solid black;
  }
  .modal .about-us-wrapper {
    padding: 4rem 6rem;
  }
  .attention .exclamation {
    font-size: 4rem;
  }
}
.olcards,
.olcards * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.olcards {
  margin: -4rem auto 4rem auto;
  list-style: none;
  counter-reset: cardCount;
  font-family: sans-serif;
  display: flex;
  flex-direction: column;
  --cardsGap: 1rem;
  gap: var(--cardsGap);
  padding-bottom: var(--cardsGap);
}

.olcards li {
  counter-increment: cardCount;
  display: flex;
  color: white;
  --labelOffset: 1rem;
  --arrowClipSize: 1.5rem;
  margin-top: var(--labelOffset);
}

.olcards li .contenty {
  background-color: var(--cardColor);
  --inlinePadding: 1em;
  --boxPadding: 0.5em;
  display: grid;
  padding: var(--boxPadding) calc(var(--inlinePadding) + var(--arrowClipSize)) var(--boxPadding) calc(var(--inlinePadding) + var(--labelOffset));
  grid-template-areas:
    "icon title"
    "icon text";
  gap: 0.25em 1em;
  clip-path: polygon(
    0 0,
    calc(100% - var(--arrowClipSize)) 0,
    100% 50%,
    calc(100% - var(--arrowClipSize)) 100%,
    calc(100% - var(--arrowClipSize)) calc(100% + var(--cardsGap)),
    0 calc(100% + var(--cardsGap))
  );
  position: relative;
  transition: 0.4s;
  cursor: default;
}

.olcards li .contenty .text {
  grid-area: text;
  font-size: 1.5rem;
  text-align: left;
}
@media (min-width: 340px) {
  .olcards {
    padding-left: 4rem;
  }
}
@media (min-width: 1024px) {
  .olcards {
    margin: -4rem auto 3rem 4rem;
  }
  .olcards li .contenty .text {
    grid-area: text;
    font-size: 1.8rem;
  }
  .olcards li .contenty:hover {
    background-color: black;
    color: var(--leaf-green);
  }
}

.certificates {
  width: 100%;
  padding: 5% 0;
}
.modal.certificates.disabled {
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s, z-index 0s 0.5s;
}
.modal.certificates {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
  background-image: url("../images/Las8.avif");
  z-index: 6;
  transition: opacity 0.5s;
}
.certificates-wrapper {
  padding: 2rem 1rem;
  max-width: 100rem;
  width: 90%;
  max-height: 90%;
  overflow-y: auto;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  background-color: #fff;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.certificate-tile {
  width: 95%;
  display: flex;
  margin: 2rem auto;
  border-bottom: 2px solid var(--leaf-green);
  padding-bottom: 2rem;
}
.certificate-tile:nth-last-of-type(1) {
  border-bottom: none;
}
.cert-image {
  width: 30%;
}
.cert-text {
  width: 60%;
  text-align: center;
  margin: 0 auto;
}
.cert-image img {
  width: 100%;
  border: 2px solid var(--leaf-green);
  animation: glow 2s infinite alternate;
}
.cert-title {
  font-size: 2rem;
  color: var(--leaf-green);
  font-weight: 600;
}
.cert-content {
  margin: 2rem auto;
  font-size: 1.5rem;
}
@media (min-width: 533px) {
  .cert-title {
    font-size: 2.5rem;
  }
  .certificate-tile {
    border-bottom: 3px solid var(--leaf-green);
  }
  .cert-content {
    font-size: 2rem;
  }
}
@media (min-width: 731px) {
  .cert-title {
    font-size: 3rem;
  }

  .cert-content {
    font-size: 2.5rem;
  }
  .certificate-tile {
    border-bottom: 4px solid var(--leaf-green);
  }
}
@media (min-width: 1024px) {
  .cert-title {
    font-size: 4rem;
  }
  .certificate-tile {
    border-bottom: 5px solid var(--leaf-green);
  }
  .cert-content {
    font-size: 3.5rem;
  }
}
#certificates-modal {
  background-image: url("../images/Krzak5.avif");
}
#aktualnosci {
  margin-bottom: 5rem;
}
.more-news {
  display: flex;
  justify-content: center;
  width: 100%;
  margin-top: 5rem;
  font-size: 2rem;
}
.hide {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  text-decoration: none;
}
.hide p {
  color: var(--leaf-green);
  font-weight: 600;
  cursor: pointer;
}
.more-news i {
  transform: rotate(270deg);
  color: var(--leaf-green);
  margin-left: 1rem;
}
@media (min-width: 533px) {
  .hide p {
    font-size: 3rem;
  }

  .more-news i {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .hide {
    position: relative;
    cursor: pointer;
  }
  .hide p {
    font-size: 4rem;
    position: relative;
    left: -100%;
    transition: 0.5s;
  }
  .more-news i {
    font-size: 4rem;
    position: relative;
    left: -50%;
    transform: rotate(0deg) translateX(50%);
    transition: 0.5s;
  }
  .hide:hover p {
    left: 0;
  }
  .hide:hover i {
    left: 0;
    transform: rotate(-90deg);
  }
}

.clients {
  width: 100%;
  padding: 5% 0;
}

.modal.clients.disabled {
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s, z-index 0s 0.5s;
}

.modal.clients {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
  background-image: url("../images/Krzew9.avif");
  z-index: 6;
  transition: opacity 0.5s;
}
.modal.clients .about-us-wrapper {
  padding: 2rem 4rem;
}
.about-us-wrapper .client-description {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.about-us-wrapper .client-description span {
  font-size: 1.2rem !important;
}
.about-us-wrapper a.ref-btn {
  text-decoration: none;
  font-size: 1.6rem;
  color: white;
  background-color: var(--leaf-green);
  padding: 1rem 2rem;
  font-weight: 600;
  display: block;
  width: 100%;
  text-align: center;
  margin-top: 2rem;
}

.about-us-wrapper .client-logo {
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}
.about-us-wrapper .client-logo img {
  max-width: 50%;
}

.about-us-wrapper .name {
  margin-top: 2.5rem;
  font-size: 2.5rem;
  font-weight: 600;
  text-align: center;
}
.about-us-wrapper .client-tile {
  margin-bottom: 5rem;
  padding: 1rem 0 1rem 2.5rem;
  width: 99%;
}
.about-us-wrapper .job {
  margin-top: 0.5rem;
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.about-us-wrapper .job a {
  text-decoration: none;
  color: var(--leaf-green);
  font-size: 1.1rem;
}
.testimonials {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
p.line {
  background-color: var(--leaf-green);
  width: 0.8%;
  box-shadow: 4px 0 4px -1px;
}
@media (min-width: 731px) {
  .modal.clients .about-us-wrapper {
    padding: 2rem 5rem;
  }
}

@media (min-width: 1024px) {
  .modal.clients .about-us-wrapper {
    padding: 2rem 6rem;
  }
  .about-us-wrapper .client-description {
    font-size: 1.8rem;
  }
  .about-us-wrapper .client-description span {
    font-size: 1.8rem !important;
  }
  .about-us-wrapper .job {
    font-size: 1.5rem;
  }

  .about-us-wrapper .job a {
    font-size: 1.5rem;
  }
  .ref-btn {
    transition: 0.5s;
    cursor: pointer;
    overflow: hidden;
  }

  .ref-btn::before {
    content: "";
    display: block;
    position: absolute;
    height: 2rem;
    width: 300px;
    background-color: rgba(255, 255, 255, 0.2);
    transform: rotate(-10deg);
    left: -80%;
    top: 0;
  }

  .ref-btn:hover {
    transform: scale(1.02);
  }

  .ref-btn:hover::before {
    animation: ref-btn-glide 5s infinite;
  }
  .about-us-wrapper .name {
    font-size: 3rem;
  }

  .about-us-wrapper .job {
    font-size: 1.6rem;
  }
}

.toolbar {
  margin-bottom: 10px;
}

.toolbar button {
  margin-right: 5px;
  padding: 5px 10px;
}

#editor {
  border: 1px solid #ccc;
  min-height: 200px;
  padding: 10px;
}

@keyframes ref-btn-glide {
  0% {
    left: -80%;
    top: 0;
  }

  20% {
    left: 100%;
    top: 100%;
  }

  40% {
    left: 100%;
    top: 100%;
  }

  100% {
    left: 100%;
    top: 100%;
  }
}
.news {
  width: 100%;
  padding: 5% 0;
}
.modal.news {
  opacity: 1;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-y: auto;
  z-index: 6;
  transition: opacity 0.5s;
}

.modal.news .about-us-wrapper {
  padding: 2rem 4rem;
}
.modal.news.disabled {
  z-index: -1;
  opacity: 0;
  transition: opacity 0.5s, z-index 0s 0.5s;
}
.news-content {
  font-size: 1.2rem;
  text-align: left;
}
.news .about-us-wrapper ul {
  font-size: 1.2rem;
  padding-left: 2rem;
}
.news h3 {
  font-size: 1.8rem;
  color: var(--leaf-green);
  text-shadow: var(--leaf-green) 1px 0 20px;
}
.news-content div {
  font-size: 1.2rem;
  text-align: left;
}
@media (min-width: 731px) {
  .news-content {
    font-size: 1.8rem;
  }

  .news .about-us-wrapper ul {
    font-size: 1.8rem;
  }

  .news h3 {
    font-size: 2.4rem;
  }

  .news-content div {
    font-size: 1.8rem;
  }
}
@media (min-width: 1024px) {
  .news-content {
    font-size: 2.1rem;
  }

  .news .about-us-wrapper ul {
    font-size: 2.1rem;
  }

  .news h3 {
    font-size: 2.7rem;
  }

  .news-content div {
    font-size: 2.1rem;
  }
}

.login-wrapper {
  width: 100%;
  padding-top: 4rem;
  text-align: center;
}

.login-form {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  padding: 0 3rem;
  color: var(--dark-green);
}

.login-form input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--dark-green);
  border-radius: 5px;
}

.login-form form div {
  text-align: left;
}

.login-form h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.login-form label {
  font-size: 1.5rem;
}

.login-form button {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  border: none;
  background-color: var(--dark-green);
  color: white;
  border-radius: 1.5rem;
  cursor: pointer;
  font-family: "Montserrat";
  font-weight: 500;
  transition: 0.4s;
}

.login-wrapper .login-graphic {
  display: none;
  background-image: url("../images/Admin.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 533px) {
  .login-wrapper {
    margin: 0 auto;
    width: 80%;
  }
}

@media (min-width: 731px) {
  .login-wrapper {
    margin: 0 auto;
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .login-wrapper {
    width: 80%;
    display: flex;
    padding: 0;
    background-color: var(--almost-white);
    border-radius: 2rem;
  }

  .login-section {
    background-color: #062b02;
    padding: 4rem 0;
  }

  .login-form {
    flex-basis: 50%;
    padding-top: 4rem;
    flex-grow: 1;
  }

  .login-wrapper .login-graphic {
    display: inline-block;
    flex-basis: 50%;
    flex-grow: 1;
    border-bottom-right-radius: 2rem;
    border-top-right-radius: 2rem;
  }

  .login-form button:hover {
    background-color: var(--almost-white);
    color: var(--dark-green);
    box-shadow: 0 0 0 4px var(--dark-green);
  }
}

@media (min-width: 1300px) {
  .login-form {
    flex-basis: 40%;
    flex-grow: 1;
  }

  .login-wrapper .login-graphic {
    flex-basis: 60%;
    flex-grow: 1;
  }
}
.admin {
  width: 100%;
  background-image: url("../images/Admin2.avif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: white;
  font-family: "IMontserrat", sans-serif;
}

.shader {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: relative;
  top: 0;
  bottom: 100%;
  padding: 4rem 0;
}

.admin h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}

.admin button {
  border: none;
  border-radius: 2%;
  width: 40%;
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--dark-green);
}

@media (min-width: 731px) {
  .admin h1 {
    font-size: 3rem;
  }

  .admin button {
    border: none;
    border-radius: 2%;
    width: 40%;
    margin-top: 2rem;
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    padding: 1.5rem 3rem;
    border: 2px solid var(--dark-green);
  }
}

@media (min-width: 1024px) {
  .admin h1 {
    font-size: 3.5rem;
  }

  .shader {
    padding: 20rem 0;
  }

  .admin button {
    cursor: pointer;
    transition: 0.5s;
  }

  .admin button:hover {
    background-color: var(--dark-green);
    color: white;
  }
}

@media (min-width: 1300px) {
  .admin h1 {
    font-size: 4rem;
  }

  .admin button {
    width: 30%;
  }
}

.admin-news {
  margin-top: 5rem;
}
.admin-news .add {
  text-align: center;
  margin-bottom: 5rem;
}
.admin-news .add a {
  text-decoration: none;
  font-size: 3rem;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
}
.table {
  width: 80%;
  margin: 0 auto;
}
tr {
  height: 200px;
}
td {
  overflow-y: auto;
  max-height: 200px;
}
@media (min-width: 1024px) {
  .admin-news .add a:hover {
    color: white;
    background-color: var(--dark-green);
  }
}

.edit-wrapper {
  margin: 2rem;
  font-size: 2rem;
  color: var(--dark-green);
}
.edit-wrapper h1 {
  text-align: center;
  font-size: 3rem;
  margin: 2rem;
}
.edit-wrapper .form-group {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.edit-wrapper .form-group label {
  width: 90%;
  font-size: 1.5rem;
}
.edit-wrapper .form-group input {
  width: 100%;
  font-size: 2rem;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
}
.btn {
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  color: var(--dark-green);
  border: none;
  border: 2px solid var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
  transition: 0.4s;
  width: 80%;
}
@media (min-width: 1024px) {
  .edit-wrapper {
    font-size: 3rem;
  }

  .edit-wrapper h1 {
    font-size: 4rem;
  }
}
.back {
  margin: 4rem 2rem;
}
.back a {
  color: var(--dark-green);
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  font-size: 2rem;
}
.back i {
  margin-right: 0.5rem;
}
@media (min-width: 1024px) {
  .btn:hover {
    color: white;
    background-color: var(--dark-green);
    box-shadow: 0 0 0 5px var(--dark-green);
  }
  .back a:hover {
    transform: scale(1.1);
    color: var(--leaf-green);
  }
  .back a {
    font-size: 3rem;
  }
}
.delete {
  width: 80%;
  margin: 0 auto;
}
.delete ul {
  padding-left: 6rem;
}
.delete h3 {
  font-size: 3rem;
  text-align: center;
  margin-top: 1rem;
}
dt {
  font-weight: 600;
}
dd {
  margin-bottom: 2rem;
}
.delete-content {
  padding: 4rem;
}

.admin-info {
  width: 80%;
  margin: 2rem auto;
  border-left: 2px solid var(--dark-green);
  border-right: 2px solid var(--dark-green);
}
.admin-row {
  display: flex;
  flex-wrap: wrap;
}
.admin-column {
  text-align: center;
  padding: 1rem 2rem;
  max-height: 20rem;
  overflow-y: auto;
  font-size: 0.8rem;
}
.admin-column ul {
  padding-left: 2rem;
}
.admin-row.admin-header {
  font-weight: 600;
  background-color: var(--dark-green);
  margin-top: 4rem;
  color: white;
}
.admin-header .admin-column {
  font-size: 1.2rem;
}

.admin-column:nth-of-type(2n + 1) {
  flex-basis: 25%;
}
.admin-column:nth-of-type(2n + 2) {
  flex-basis: 50%;
  border-left: 2px solid var(--dark-green);
}
.admin-column:nth-of-type(2n + 3) {
  flex-basis: 25%;
  overflow: hidden;
}
.buttons {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  padding: 2rem;
  background-color: #062b02;
}
.buttons a {
  text-decoration: none;
  color: white;
  border-radius: 2rem;
  border: 2px solid white;
  background-color: var(--leaf-green);
  max-width: 150px;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  transition: 0.4s;
}
.buttons a:hover {
  box-shadow: 0 0 0 5px white;
  border: 2px solid var(--dark-green);
}
.admin-info-client {
  width: 90%;
  margin: 2rem auto;
  border-left: 2px solid var(--dark-green);
  border-right: 2px solid var(--dark-green);
  display: none;
}

.admin-row-client {
  display: flex;
  flex-wrap: wrap;
}

.admin-column-client {
  text-align: center;
  padding: 1rem 2rem;
  max-height: 20rem;
  overflow-y: auto;
  font-size: 1.2rem;
}
.admin-column-client span {
  font-size: 1.2rem !important;
}

.admin-column-client ul {
  padding-left: 4rem;
}

.admin-column-client:nth-of-type(2n + 1) {
  flex-basis: 15%;
}

.admin-column-client:nth-of-type(2n + 2) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 3) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 4) {
  flex-basis: 25%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 5) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 6) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}

.admin-row-client.admin-header {
  font-weight: 600;
  background-color: var(--dark-green);
  margin-top: 4rem;
  color: white;
}

.admin-header .admin-column-client {
  font-size: 1.5rem;
}
.admin-details {
  width: 80%;
  margin: 0 auto;
}
.admin-details h1 {
  margin: 2rem;
  font-size: 3rem;
  color: var(--leaf-green);
  text-align: center;
}

.news-back {
  margin: 4rem 2rem;
}

.news-back a {
  color: var(--leaf-green);
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  font-size: 2rem;
}

.news-back i {
  margin-right: 0.5rem;
}

@media (min-width: 533px) {
  .admin-column {
    font-size: 1rem;
  }

  .admin-column ul {
    padding-left: 3rem;
  }

  .admin-header .admin-column {
    font-size: 2rem;
  }

  .buttons a {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .admin-column {
    font-size: 2rem;
  }

  .admin-column ul {
    padding-left: 4rem;
  }

  .admin-header .admin-column {
    font-size: 3rem;
  }

  .buttons a {
    font-size: 2rem;
  }

  .admin-column:nth-of-type(2n + 1) {
    flex-basis: 20%;
  }

  .admin-column:nth-of-type(2n + 2) {
    flex-basis: 60%;
  }

  .admin-column:nth-of-type(2n + 3) {
    flex-basis: 20%;
  }
}

.mobile-admin {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  border: 2px solid var(--dark-green);
}
.mobile-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  max-height: 20rem;
  padding: 0 0.5rem 0 0;
  border-bottom: 2px solid var(--dark-green);
}
.mobile-header {
  flex-basis: 40%;
  font-size: 1rem;
  color: white;
  background-color: var(--dark-green);
  font-weight: 700;
  padding: 1rem 0 1rem 1rem;
}
.mobile-content {
  flex-basis: 60%;
  font-size: 1rem;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.scroll-mobile {
  max-height: 20rem;
}
.mobile-content span {
  font-size: 1rem !important;
}
@media (min-width: 731px) {
  .mobile-header {
    font-size: 2rem;
  }

  .mobile-content {
    font-size: 1.5rem;
  }

  .mobile-content span {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .admin-info-client {
    display: block;
  }

  .mobile-admin {
    display: none;
  }
}
@media (min-width: 1200px) {
  .admin-column-client {
    font-size: 1.7rem;
  }

  .admin-column-client span {
    font-size: 1.7rem !important;
  }

  .admin-header .admin-column-client {
    font-size: 2rem;
  }
}

.news-body {
  width: 100%;
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-image: url("../images/Admin2.avif");
}
.actual-news {
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
  padding: 8rem 0;
  background-color: white;
}
.n-tile {
  margin: 4rem 0;
  border-radius: 2rem;
  border: 2px solid var(--dark-green);
  cursor: default;
}
.n-title {
  font-size: 1.5rem;
  color: var(--leaf-green);
  margin: 2rem 0;
  padding: 0 1rem;
}
.n-content {
  font-size: 1rem;
  text-align: left;
  hyphens: auto;
  padding: 0 1rem;
  overflow: hidden;
}
.n-content ul {
  padding-left: 3rem;
}
.n-photo {
  border-top-left-radius: 1.7rem;
  border-top-right-radius: 1.7rem;
  overflow: hidden;
  cursor: pointer;
}
.n-photo img {
  width: 100%;
}
.n-read-more {
  margin: 2rem 0 0 0;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  color: var(--almost-white);
  background-color: var(--dark-green);
  font-weight: 600;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border-top: 2px solid var(--dark-green);
}
@media (min-width: 731px) {
  .news-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .n-title {
    font-size: 2rem;
  }
  .n-tile {
    border: 4px solid var(--dark-green);
  }
  .n-content {
    font-size: 1.5rem;
    padding: 0 2rem;
  }
  .n-read-more {
    font-size: 2rem;
    border-top: 4px solid var(--dark-green);
    border-bottom-left-radius: 1.4rem;
    border-bottom-right-radius: 1.4rem;
  }
  .n-photo {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .n-tile {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .n-title {
    flex-grow: 2;
  }
  .n-content {
    flex-grow: 1;
  }
  .n-read-more {
    transition: 0.4s;
    cursor: pointer;
  }
  .n-read-more:hover {
    color: var(--dark-green);
    background-color: var(--almost-white);
  }
}
@media (min-width: 1300px) {
  .n-tile {
    width: 32.5%;
  }
}
.about-us-wrapper .client-line {
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(198, 216, 146, 1) 25%, rgba(154, 185, 60, 1) 50%, rgba(190, 210, 130, 1) 75%, rgba(255, 255, 255, 1) 100%);
  height: 2px;
  width: 50%;
  margin-bottom: 1.5rem;
}
.main-back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
}
.main-back i {
  margin-right: 0.5rem;
}
.main-back a {
  color: var(--leaf-green);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 731px) {
  .main-back {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .main-back {
    font-size: 2.5rem;
  }
  .main-back a {
    transition: 0.4s;
  }
  .main-back a:hover {
    color: white;
    letter-spacing: 2px;
  }
}
.arrow-down {
  margin: 2rem auto;
  font-size: 50px;
  width: 60px;
  height: 60px;
  border: 2px solid black;
  border-radius: 50%;
  background-color: rgba(67, 107, 58, 0.5);
  color: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  transition: 0.2s;
  cursor: pointer;
  text-align: center;
}

.arrow-down:hover {
  box-shadow: 0 0 13px 0 var(--dark-green);
}

.arrow-down i {
  font-size: 4rem;
  text-shadow: 0 -18px 0 rgba(255, 255, 255, 0.6), 0 -36px 0 rgba(255, 255, 255, 0.5);
  transform: translateY(-50px);
  animation: arrow 2s linear infinite;
}

.arrow-down:hover i {
  animation-duration: 1.5s;
}

@keyframes arrow {
  100% {
    transform: translateY(92px);
  }
}
@media (min-width: 1024px) {
  .arrow-down {
    font-size: 5rem;
    width: 80px;
    height: 80px;
  }

  .arrow-down:hover {
    box-shadow: 0 0 13px 0 var(--leaf-green);
  }

  .arrow-down i {
    font-size: 5rem;
    text-shadow: 0 -20px 0 rgba(255, 255, 255, 0.6), 0 -40px 0 rgba(255, 255, 255, 0.5);
  }
}
@media (orientation: landscape) {
  .hamburger {
    top: 8rem;
  }

  .hamburger a {
    padding: 0.5rem 2rem;
    font-size: 1.5rem;
  }

  .hamburger-icon {
    top: 2rem;
  }
}
.lazy-background {
  background-image: none;
}
a#cookie-bar-button {
  background-color: var(--dark-green);
  font-family: "Montserrat";
  font-weight: 400;
  transition: 0.3s;
}
a#cookie-bar-button:hover {
  box-shadow: 0 0 0 1px var(--almost-white);
}

@keyframes glow {
  from {
    box-shadow: 0 0 3px -3px var(--dark-green);
  }
  to {
    box-shadow: 0 0 3px 3px var(--dark-green);
  }
}

.login-wrapper {
  width: 100%;
  padding-top: 4rem;
  text-align: center;
}

.login-form {
  width: 100%;
  font-family: "Montserrat", sans-serif;
  padding: 0 3rem;
  color: var(--dark-green);
}

.login-form input {
  width: 100%;
  margin-bottom: 1rem;
  padding: 1rem 0.5rem;
  font-size: 1.5rem;
  border: 1px solid var(--dark-green);
  border-radius: 5px;
}

.login-form form div {
  text-align: left;
}

.login-form h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.login-form label {
  font-size: 1.5rem;
}

.login-form button {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  font-size: 2rem;
  border: none;
  background-color: var(--dark-green);
  color: white;
  border-radius: 1.5rem;
  cursor: pointer;
  font-family: "Montserrat";
  font-weight: 500;
  transition: 0.4s;
}

.login-wrapper .login-graphic {
  display: none;
  background-image: url("../images/Admin.avif");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

@media (min-width: 533px) {
  .login-wrapper {
    margin: 0 auto;
    width: 80%;
  }
}

@media (min-width: 731px) {
  .login-wrapper {
    margin: 0 auto;
    width: 60%;
  }
}

@media (min-width: 1024px) {
  .login-wrapper {
    width: 80%;
    display: flex;
    padding: 0;
    background-color: var(--almost-white);
    border-radius: 2rem;
  }

  .login-section {
    background-color: #062b02;
    padding: 4rem 0;
  }

  .login-form {
    flex-basis: 50%;
    padding-top: 4rem;
    flex-grow: 1;
  }

  .login-wrapper .login-graphic {
    display: inline-block;
    flex-basis: 50%;
    flex-grow: 1;
    border-bottom-right-radius: 2rem;
    border-top-right-radius: 2rem;
  }

  .login-form button:hover {
    background-color: var(--almost-white);
    color: var(--dark-green);
    box-shadow: 0 0 0 4px var(--dark-green);
  }
}

@media (min-width: 1300px) {
  .login-form {
    flex-basis: 40%;
    flex-grow: 1;
  }

  .login-wrapper .login-graphic {
    flex-basis: 60%;
    flex-grow: 1;
  }
}
.admin {
  width: 100%;
  background-image: url("../images/Admin2.avif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  color: white;
  font-family: "IMontserrat", sans-serif;
}

.shader {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  position: relative;
  top: 0;
  bottom: 100%;
  padding: 4rem 0;
}

.admin h1 {
  text-transform: uppercase;
  font-size: 2.5rem;
  text-align: center;
}

.admin button {
  border: none;
  border-radius: 2%;
  width: 40%;
  margin-top: 2rem;
  font-family: "Montserrat", sans-serif;
  font-size: 1.5rem;
  padding: 1rem 2rem;
  border: 2px solid var(--dark-green);
}

@media (min-width: 731px) {
  .admin h1 {
    font-size: 3rem;
  }

  .admin button {
    border: none;
    border-radius: 2%;
    width: 40%;
    margin-top: 2rem;
    font-family: "Montserrat", sans-serif;
    font-size: 2rem;
    padding: 1.5rem 3rem;
    border: 2px solid var(--dark-green);
  }
}

@media (min-width: 1024px) {
  .admin h1 {
    font-size: 3.5rem;
  }

  .shader {
    padding: 20rem 0;
  }

  .admin button {
    cursor: pointer;
    transition: 0.5s;
  }

  .admin button:hover {
    background-color: var(--dark-green);
    color: white;
  }
}

@media (min-width: 1300px) {
  .admin h1 {
    font-size: 4rem;
  }

  .admin button {
    width: 30%;
  }
}

.admin-news {
  margin-top: 5rem;
}
.admin-news .add {
  text-align: center;
  margin-bottom: 5rem;
}
.admin-news .add a {
  text-decoration: none;
  font-size: 3rem;
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  padding: 1rem 1.5rem;
  border-radius: 50%;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
}
.table {
  width: 80%;
  margin: 0 auto;
}
tr {
  height: 200px;
}
td {
  overflow-y: auto;
  max-height: 200px;
}
@media (min-width: 1024px) {
  .admin-news .add a:hover {
    color: white;
    background-color: var(--dark-green);
  }
}

.edit-wrapper {
  margin: 2rem;
  font-size: 2rem;
  color: var(--dark-green);
}
.edit-wrapper h1 {
  text-align: center;
  font-size: 3rem;
  margin: 2rem;
}
.edit-wrapper .form-group {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.edit-wrapper .form-group label {
  width: 90%;
  font-size: 1.5rem;
}
.edit-wrapper .form-group input {
  width: 80%;
  font-size: 2rem;
  padding: 1rem 2rem;
  font-family: "Montserrat", sans-serif;
}
.btn {
  text-align: center;
  margin: 0 auto;
  font-size: 2rem;
  color: var(--dark-green);
  border: none;
  border: 2px solid var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 2rem;
  font-weight: 600;
  transition: 0.4s;
  cursor: pointer;
  transition: 0.4s;
  width: 80%;
}
@media (min-width: 1024px) {
  .edit-wrapper {
    font-size: 3rem;
  }

  .edit-wrapper h1 {
    font-size: 4rem;
  }
}
.back {
  margin: 4rem 2rem;
}
.back a {
  color: var(--dark-green);
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  font-size: 2rem;
}
.back i {
  margin-right: 0.5rem;
}
@media (min-width: 1024px) {
  .btn:hover {
    color: white;
    background-color: var(--dark-green);
    box-shadow: 0 0 0 5px var(--dark-green);
  }
  .back a:hover {
    transform: scale(1.1);
    color: var(--leaf-green);
  }
  .back a {
    font-size: 3rem;
  }
}
.delete {
  width: 80%;
  margin: 0 auto;
}
.delete ul {
  padding-left: 6rem;
}
.delete h3 {
  font-size: 3rem;
  text-align: center;
  margin-top: 1rem;
}
dt {
  font-weight: 600;
}
dd {
  margin-bottom: 2rem;
}
.delete-content {
  padding: 4rem;
}

.admin-info {
  width: 80%;
  margin: 2rem auto;
  border-left: 2px solid var(--dark-green);
  border-right: 2px solid var(--dark-green);
}
.admin-row {
  display: flex;
  flex-wrap: wrap;
}
.admin-column {
  text-align: center;
  padding: 1rem 2rem;
  max-height: 20rem;
  overflow-y: auto;
  font-size: 0.8rem;
}
.admin-column ul {
  padding-left: 2rem;
}
.admin-row.admin-header {
  font-weight: 600;
  background-color: var(--dark-green);
  margin-top: 4rem;
  color: white;
}
.admin-header .admin-column {
  font-size: 1.2rem;
}

.admin-column:nth-of-type(2n + 1) {
  flex-basis: 25%;
}
.admin-column:nth-of-type(2n + 2) {
  flex-basis: 50%;
  border-left: 2px solid var(--dark-green);
}
.admin-column:nth-of-type(2n + 3) {
  flex-basis: 25%;
  overflow: hidden;
}
.buttons {
  display: flex;
  width: 100%;
  justify-content: space-evenly;
  padding: 2rem;
  background-color: #062b02;
}
.buttons a {
  text-decoration: none;
  color: white;
  border-radius: 2rem;
  border: 2px solid white;
  background-color: var(--leaf-green);
  max-width: 150px;
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.8rem;
  transition: 0.4s;
}
.buttons a:hover {
  box-shadow: 0 0 0 5px white;
  border: 2px solid var(--dark-green);
}
.admin-info-client {
  width: 90%;
  margin: 2rem auto;
  border-left: 2px solid var(--dark-green);
  border-right: 2px solid var(--dark-green);
  display: none;
}

.admin-row-client {
  display: flex;
  flex-wrap: wrap;
}

.admin-column-client {
  text-align: center;
  padding: 1rem 2rem;
  max-height: 20rem;
  overflow-y: auto;
  font-size: 1.2rem;
}
.admin-column-client span {
  font-size: 1.2rem !important;
}

.admin-column-client ul {
  padding-left: 4rem;
}

.admin-column-client:nth-of-type(2n + 1) {
  flex-basis: 15%;
}

.admin-column-client:nth-of-type(2n + 2) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 3) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 4) {
  flex-basis: 25%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 5) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}
.admin-column-client:nth-of-type(2n + 6) {
  flex-basis: 15%;
  border-left: 2px solid var(--dark-green);
}

.admin-row-client.admin-header {
  font-weight: 600;
  background-color: var(--dark-green);
  margin-top: 4rem;
  color: white;
}

.admin-header .admin-column-client {
  font-size: 1.5rem;
}
.admin-details {
  width: 80%;
  margin: 0 auto;
}
.admin-details h1 {
  margin: 2rem;
  font-size: 3rem;
  color: var(--leaf-green);
  text-align: center;
}

.news-back {
  margin: 4rem 2rem;
}

.news-back a {
  color: var(--leaf-green);
  text-decoration: none;
  cursor: pointer;
  transition: 0.4s;
  font-size: 2rem;
}

.news-back i {
  margin-right: 0.5rem;
}

@media (min-width: 533px) {
  .admin-column {
    font-size: 1rem;
  }

  .admin-column ul {
    padding-left: 3rem;
  }

  .admin-header .admin-column {
    font-size: 2rem;
  }

  .buttons a {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .admin-column {
    font-size: 2rem;
  }

  .admin-column ul {
    padding-left: 4rem;
  }

  .admin-header .admin-column {
    font-size: 3rem;
  }

  .buttons a {
    font-size: 2rem;
  }

  .admin-column:nth-of-type(2n + 1) {
    flex-basis: 20%;
  }

  .admin-column:nth-of-type(2n + 2) {
    flex-basis: 60%;
  }

  .admin-column:nth-of-type(2n + 3) {
    flex-basis: 20%;
  }
}

.mobile-admin {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  border: 2px solid var(--dark-green);
}
.mobile-row {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  max-height: 20rem;
  padding: 0 0.5rem 0 0;
  border-bottom: 2px solid var(--dark-green);
}
.mobile-header {
  flex-basis: 40%;
  font-size: 1rem;
  color: white;
  background-color: var(--dark-green);
  font-weight: 700;
  padding: 1rem 0 1rem 1rem;
}
.mobile-content {
  flex-basis: 60%;
  font-size: 1rem;
  padding: 1rem 1rem;
  overflow-y: auto;
}
.scroll-mobile {
  max-height: 20rem;
}
.mobile-content span {
  font-size: 1rem !important;
}
@media (min-width: 731px) {
  .mobile-header {
    font-size: 2rem;
  }

  .mobile-content {
    font-size: 1.5rem;
  }

  .mobile-content span {
    font-size: 1.5rem !important;
  }
}
@media (min-width: 1024px) {
  .admin-info-client {
    display: block;
  }

  .mobile-admin {
    display: none;
  }
}
@media (min-width: 1200px) {
  .admin-column-client {
    font-size: 1.7rem;
  }

  .admin-column-client span {
    font-size: 1.7rem !important;
  }

  .admin-header .admin-column-client {
    font-size: 2rem;
  }
}


.actual-news {
  max-width: 1280px;
  width: 80%;
  margin: 0 auto;
  padding: 8rem 0;
  background-color: white;
}
.n-tile {
  margin: 4rem 0;
  border-radius: 2rem;
  border: 2px solid var(--dark-green);
  cursor: default;
}
.n-title {
  font-size: 1.5rem;
  color: var(--leaf-green);
  margin: 2rem 0;
  padding: 0 1rem;
}
.n-content {
  font-size: 1rem;
  text-align: justify;
  hyphens: auto;
  padding: 0 1rem;
  overflow: hidden;
}
.n-content ul {
  padding-left: 3rem;
}
.n-photo {
  border-top-left-radius: 1.7rem;
  border-top-right-radius: 1.7rem;
  overflow: hidden;
  cursor: pointer;
}
.n-photo img {
  width: 100%;
}
.n-read-more {
  margin: 2rem 0 0 0;
  width: 100%;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  color: var(--almost-white);
  background-color: var(--dark-green);
  font-weight: 600;
  border-bottom-left-radius: 1.6rem;
  border-bottom-right-radius: 1.6rem;
  border-top: 2px solid var(--dark-green);
}
@media (min-width: 731px) {
  .news-flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .n-title {
    font-size: 2rem;
  }
  .n-tile {
    border: 4px solid var(--dark-green);
  }
  .n-content {
    font-size: 1.5rem;
    padding: 0 2rem;
  }
  .n-read-more {
    font-size: 2rem;
    border-top: 4px solid var(--dark-green);
    border-bottom-left-radius: 1.4rem;
    border-bottom-right-radius: 1.4rem;
  }
  .n-photo {
    border-top-left-radius: 1.5rem;
    border-top-right-radius: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .news-flex {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  .n-tile {
    width: 49%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .n-title {
    flex-grow: 2;
  }
  .n-content {
    flex-grow: 1;
  }
  .n-read-more {
    transition: 0.4s;
    cursor: pointer;
  }
  .n-read-more:hover {
    color: var(--dark-green);
    background-color: var(--almost-white);
  }
}
@media (min-width: 1300px) {
  .n-tile {
    width: 32.5%;
  }
}
.about-us-wrapper .client-line {
  margin: 0 auto;
  text-align: center;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(198, 216, 146, 1) 25%, rgba(154, 185, 60, 1) 50%, rgba(190, 210, 130, 1) 75%, rgba(255, 255, 255, 1) 100%);
  height: 2px;
  width: 50%;
  margin-bottom: 1.5rem;
}
.main-back {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
}
.main-back i {
  margin-right: 0.5rem;
}
.main-back a {
  color: var(--leaf-green);
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 731px) {
  .main-back {
    font-size: 2rem;
  }
}
@media (min-width: 1024px) {
  .main-back {
    font-size: 2.5rem;
  }
  .main-back a {
    transition: 0.4s;
  }
  .main-back a:hover {
    color: white;
    letter-spacing: 2px;
  }
}
