@font-face {
  font-family: "NewsCycle";
  src: url("/fonts/NewsCycle-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "NewsCycle";
  src: url("/fonts/NewsCycle-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
@font-face {
  font-family: "Oswald";
  src: url("/fonts/Oswald-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

h1 {
  font-size: 54px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
}

button {
  all: unset;
  cursor: pointer;
}

a {
  cursor: pointer;
}

button, input, textarea {
  font: inherit;
}

body {
  margin: 0 auto;
  font-size: 16px;
  font-family: "NewsCycle", sans-serif;
  background: white;
  color: black;
  line-height: 1.5;
  max-width: 1440px;
}

header {
  display: flex;
  flex-direction: column;
}

.top-header {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 13px;
  background: #f2f2f0;
  height: 45px;
  color: #E1C932;
  padding: 0 80px;
}

.bottom-header {
  display: flex;
  height: 135px;
  padding: 0 80px;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.menu-list {
  display: flex;
  gap: 39px;
  justify-content: center;
  align-items: center;
  list-style: none;
}

.menu-list li > a {
  text-transform: uppercase;
  font-size: 18px;
  color: #777777;
  text-decoration: none;
}

.logo {
  cursor: pointer;
}

.logo img {
  height: 127px;
  width: auto;
}

/* BURGER MENU */
.burger-menu {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.burger-menu span {
  display: block;
  width: 30px;
  height: 3px;
  background: #777777;
  transition: 0.3s;
}

/* MOBILE STYLES */
@media (max-width: 800px) {
  .logo img {
    height: 107px;
  }
  .burger-menu {
    display: flex;
  }
  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    background: #f2f2f0;
    padding: 10px 0;
  }
  .menu-list {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 0;
  }
  .menu-list li {
    padding: 10px 0;
  }
  .menu-list li a {
    font-size: 20px;
  }
  .nav-menu.active {
    display: block;
  }
}
.footer-top {
  display: flex;
  align-items: center;
  background: #D9D9D9;
  color: black;
  padding: 25px 140px;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  background: #08863C;
  color: white;
  padding: 25px 0;
}

.footer-top-left-row {
  display: flex;
  gap: 20px;
  align-items: center;
}

.footer-top-left-row-icon img {
  height: 180px;
}

.footer-top-left-row-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-top-left-row-text-item {
  display: flex;
  gap: 10px;
}

.footer-top-right {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 20px;
}

.footer-top-right-logo {
  display: flex;
}
.footer-top-right-logo img {
  height: 140px;
}

.footer-top-right-cta {
  display: flex;
}

@media (max-width: 920px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
    padding: 40px 20px;
    gap: 40px;
    text-align: center;
  }
  .footer-top-left-row {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .footer-top-left-row-text {
    align-items: center;
  }
  .footer-top-left-row-text-item {
    justify-content: center;
  }
  .footer-top-right {
    align-items: center;
  }
  .footer-top-right-logo img {
    height: 100px;
  }
}
.container {
  display: flex;
  flex-direction: column;
  padding: 0 80px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}

#teenused-section .row {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap when needed */
  justify-content: center;
  gap: 24px;
}

/* Make images shrink proportionally */
.row picture {
  flex: 1; /* Makes all images take equal space */
  max-width: 33%; /* Ensures they are equal width */
}

.row img {
  width: 100%; /* Ensures they scale properly */
  height: auto; /* Maintain aspect ratio */
}

@media (max-width: 800px) {
  .container {
    padding: 0 20px;
  }
  .bottom-header {
    padding: 0 20px;
  }
  .top-header {
    padding: 0 20px;
  }
}
.service-box {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 302px;
  height: 218px;
  padding: 0 50px 35px 50px;
  background: #f2f2f0;
  color: #E1C932;
  font-size: 24px;
  text-transform: uppercase;
  flex: 1; /* Allows equal shrinking */
  max-width: 23%; /* Ensures 4 items fit in one row */
  min-width: 250px; /* Prevents them from getting too small */
  text-align: center;
}

/* Adjust layout for smaller screens */
@media (max-width: 800px) {
  .service-box {
    max-width: 48%; /* 2 items per row */
  }
}
/* Adjust for very small screens (e.g., phones) */
@media (max-width: 500px) {
  .service-box {
    max-width: 100%; /* 1 item per row */
  }
}
.service-box-icon {
  position: relative;
  top: -50px;
}
.service-box-icon img {
  height: 150px;
  width: 150px;
}

.service-box-title {
  position: relative;
  white-space: nowrap;
}

.service-box-detail {
  display: flex;
  flex: 1;
  max-width: 30%;
  min-width: 250px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 196px;
  padding: 0 50px 35px 50px;
  background: #f2f2f0;
  color: black;
}

/* Responsive layout */
@media (max-width: 800px) {
  .service-box-detail {
    max-width: 48%;
  }
}
@media (max-width: 500px) {
  .service-box-detail {
    max-width: 100%;
  }
}
.service-box-detail-title {
  position: relative;
  white-space: nowrap;
  font-family: "Oswald", sans-serif;
}
.service-box-detail-title h2 {
  text-transform: uppercase;
  font-size: 22px;
  line-height: 30px;
  letter-spacing: 1px;
}
@media (max-width: 1200px) {
  .service-box-detail-title h2 {
    font-size: 18px;
    line-height: 26px;
  }
}

.service-box-detail-icon {
  position: relative;
  top: -50px;
  background: #E1C932;
  width: 140px;
  height: 140px;
  border-radius: 50%;
}
.service-box-detail-icon img {
  position: relative;
  top: 50%;
  left: 50%;
  height: 37px;
  width: 37px;
  transform: translate(-50%, -50%);
}

.video-big {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
  overflow: hidden;
  padding-left: 80px;
  padding-right: 80px;
}
@media (max-width: 800px) {
  .video-big {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.video-big iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.content-box {
  display: flex;
  flex-direction: column;
  padding: 50px;
  max-width: 725px;
}
.content-box h2 {
  white-space: nowrap;
}
@media (max-width: 800px) {
  .content-box h2 {
    white-space: normal;
  }
}
@media (max-width: 800px) {
  .content-box {
    padding: 20px;
  }
}

.reverse {
  direction: rtl;
  text-align: right;
}

.yellow-bg {
  background-color: #E1C932;
}
.yellow-bg h2 {
  color: white;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.yellow-bg p {
  color: black;
  padding-bottom: 35px;
}

.grey-bg {
  background-color: #D9D9D9;
}
.grey-bg h2 {
  color: white;
  text-transform: uppercase;
  padding-bottom: 35px;
}
.grey-bg p {
  color: black;
  padding-bottom: 35px;
}

.button {
  display: block;
  width: fit-content;
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  text-decoration: none;
  border: 3px solid white;
}

.button-green {
  background: #B0C807;
  padding: 10px 40px;
  text-transform: uppercase;
  font-size: 18px;
  color: white;
  text-decoration: none;
  border-radius: 3px;
}

.button.loading::after {
  content: "";
  display: block;
  position: absolute;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-color: #E1C932;
  border-top-color: transparent;
  border-width: 2px;
  border-radius: 50%;
  -webkit-animation: spin 0.8s linear infinite;
  animation: spin 0.8s linear infinite;
}

.image-slider {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.service-image {
  width: auto;
  height: 100%;
}
@media (max-width: 1200px) {
  .service-image {
    display: none;
  }
}
.service-image img {
  width: 100%;
  height: auto;
}

.mobile {
  display: none;
  padding-bottom: 35px;
}
@media (max-width: 1200px) {
  .mobile {
    display: block;
  }
}

.image-slider-item img {
  width: 100%;
  height: auto;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-list li {
  font-weight: bold;
}

.gap-normal {
  gap: 24px;
}

.padding-vertical-normal {
  padding-top: 92px;
  padding-bottom: 92px;
}

.padding-vertical-small {
  padding-top: 46px;
  padding-bottom: 46px;
}

.padding-vertical-bottom {
  padding-top: 0;
  padding-bottom: 46px;
}

.align-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.space-between {
  justify-content: space-between;
}

.service-box-title > h2 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  color: #E1C932;
  text-transform: uppercase;
}

.uppercase {
  text-transform: uppercase;
}

.error-msg {
  font-family: "Oswald", sans-serif;
  color: #D32F2F;
}

.sand-cleaning-cover {
  background-image: url("/images/cover/sand-cleaning-cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
}

.grass-cleaning-cover {
  background-image: url("/images/cover/grass-cleaning-cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
}

.beton-cleaning-cover {
  background-image: url("/images/cover/beton-cleaning-cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
}

.epdm-cleaning-cover {
  background-image: url("/images/cover/epdm-cleaning-cover.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: fit-content;
}

.cover-text {
  background: #E1C932;
  padding: 100px 150px 30px 100px;
  width: 50%;
  height: 100%;
  clip-path: polygon(0 0, 75% 0, 100% 100%, 0% 100%);
}
.cover-text h1 {
  color: white;
  text-transform: uppercase;
  margin-bottom: 50px;
}
.cover-text p {
  margin-bottom: 30px;
  line-height: 24px;
  letter-spacing: 1px;
}

@media (max-width: 1200px) {
  .cover-text {
    padding: 80px 50px 30px 50px;
    width: 70%;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
  }
}
@media (max-width: 800px) {
  .cover-text {
    width: 100%;
    padding: 60px 20px 30px 20px;
    clip-path: none;
  }
  .cover-text h1 {
    font-size: 26px;
    text-align: center;
  }
  .cover-text p {
    text-align: center;
    font-size: 16px;
  }
  .cover-text .button {
    display: block;
    margin: 0 auto;
  }
}
.modal {
  display: block;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
  background-color: white;
  border: 1px solid #f2f2f0;
  border-radius: 20px;
  max-height: 90vh;
  max-width: 954px;
  width: 100%;
  overflow-y: auto;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-content-div {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-content-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.modal-content-left {
  display: flex;
  align-items: center;
}
.modal-content-left img {
  height: 60px;
  width: 60px;
}

.modal-content-right {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.modal-content-links {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  padding: 15px 20px;
  background-color: white;
  color: black;
  align-items: center;
}

.modal-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
.modal-header-left img {
  height: 73px;
  width: auto;
}
.modal-header-left h2 {
  text-transform: uppercase;
  font-family: "NewsCycle", sans-serif;
  font-size: 26px;
  color: #777777;
  letter-spacing: 1.5px;
  font-weight: 400;
}

.modal-header-right {
  display: flex;
  align-items: center;
}
.modal-header-right img {
  cursor: pointer;
  height: 28px;
  width: 28px;
}

.modal-body {
  display: flex;
  flex-direction: column;
  padding: 20px 20px;
  gap: 20px;
}

.modal-disclaimer {
  position: relative;
}
.modal-disclaimer input[type=checkbox] {
  appearance: none;
  border-radius: 4px;
  border: 1px solid #D9D9D9;
  background: white;
  position: absolute;
  width: 18px;
  height: 18px;
  top: 2px;
}
.modal-disclaimer input[type=checkbox]:hover {
  cursor: pointer;
  box-shadow: none;
}
.modal-disclaimer input[type=checkbox]:checked {
  background: #08863C;
}
.modal-disclaimer input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 12px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  top: 1px;
  left: 5px;
}
.modal-disclaimer label {
  margin-left: 25px;
}

.modal-footer {
  display: flex;
  padding: 15px 20px;
  background-color: white;
  justify-content: center;
}

.modal-inputs {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.modal-inputs input, .modal-inputs select, .modal-inputs textarea {
  padding: 5px 10px;
  height: 48px;
  border: 1px solid #D9D9D9;
  border-radius: 4px;
  background: #D9D9D9;
}
.modal-inputs input:focus, .modal-inputs select:focus, .modal-inputs textarea:focus {
  outline: none;
  border: 1px solid #E1C932;
}
.modal-inputs textarea {
  box-sizing: border-box;
  resize: none;
  height: 100px;
  padding: 10px;
  line-height: 22px;
}

.delivery-method {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  gap: 10px;
}
.delivery-method .form-label {
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  margin: 0 0 5px 0;
}

.delivery-method-radio {
  display: flex;
  flex-direction: row;
  gap: 15px;
  flex-wrap: wrap;
}
.delivery-method-radio p {
  font-size: 16px;
}

.delivery-method-radio-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.delivery-method-radio-item label {
  cursor: pointer;
}

.success-msg {
  font-family: "Oswald", sans-serif;
  color: #08863C;
}

.dimensions {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 20px;
}

.modal-contacts {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modal-contacts-row {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
.modal-contacts-row input {
  width: 100%;
}

.file-upload label {
  display: block;
  margin-bottom: 10px;
}

/*# sourceMappingURL=style.css.map */
