* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
*:focus {
  outline: none;
  padding: 0.5rem 0.5rem;
  box-shadow: 0 0 0 0.3rem #2e7d327a;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
  /* scroll-behavior: smooth; */
}
body {
  font-family: "Rubik", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #555;
  overflow-x: hidden;
}
.margin-right-sm {
  margin-right: 1.6rem !important;
}
.margin-bottom-sm {
  margin-bottom: 9.6rem !important;
}
.container {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 3.2rem;
}

/*Hero*/
.hero-section {
  background-color: #e1f3e4;
  padding: 4.8rem 0 9.6rem 0;
}
.hero {
  max-width: 130rem;
  margin: 0 auto;
  padding: 0 3.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 9.6rem;
}
.hero-img {
  width: 100%;
}
.heading-primary {
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 1.2;
  color: #333;
  letter-spacing: -0.5px;
  margin-bottom: 3.2rem;
}
.hero-description {
  font-size: 2rem;
  line-height: 1.5;
  margin-bottom: 4.8rem;
}
.btn,
.btn:link,
.btn:visited {
  line-height: 1.4;
  letter-spacing: -0.5px;
  text-decoration: none;
  display: inline-block;
  padding: 1.6rem 3.2rem;
  border-radius: 15px;
  font-weight: 500;
  font-size: 2rem;
  transition: all 0.3s;

  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:link,
.btn-primary:visited {
  background-color: #37b24d;
  color: #fff;
}
.btn-primary:hover,
.btn-primary:active {
  background-color: #32a045;
}
.btn-secondary:link,
.btn-secondary:visited {
  background-color: #fff;
  color: #555;
}
.btn-secondary:hover,
.btn-secondary:active {
  background-color: #e1f3e4;
  box-shadow: inset 0 0 0 3px #fff;
}

/*Why us*/
.why-us-section {
  padding: 4.8rem 0 9.6rem 0;
}
.why-us-box {
  max-width: 130rem;
  margin: 0 auto;
}
.why-us-heading {
  text-align: center;
  font-size: 4.4rem;
  font-weight: 500;
  color: #333;
  margin: 3.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.why-us-list {
  list-style: none;
  /* display: flex;
  justify-content: space-around; */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  row-gap: 1.6rem;
}
.why-us-el {
  font-size: 1.6rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.highlight-text {
  background: #f5f5f5;
  border-left: 5px solid #32a045;
  padding: 2rem;
  margin-top: 4.8rem;
  font-size: 2rem;
  font-weight: 500;
}
/*- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98*/
/*Header*/
.logo {
  height: 8rem;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: #d7f0db; */
  background-color: #e1f3e4;

  height: 9.6rem;
  padding: 0 4.8rem;
  position: relative;
}
/* Navigation*/

.icon-mobile-nav {
  height: 4.8rem;
  width: 4.8rem;
  color: #333;
}

.btn-mobile-nav {
  border: none;
  background: none;
  cursor: pointer;

  display: none;
}

.icon-mobile-nav[name="close-outline"] {
  display: none;
}
.main-nav-list {
  list-style: none;
  display: flex;
  gap: 4.8rem;
}
.main-nav-link:link,
.main-nav-link:visited {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 1.8rem;
  transition: all 0.3s;
}
.main-nav-link:hover,
.main-nav-link:active {
  color: #85e526;
}
.sticky .header {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #ffffffe6;
  z-index: 99;
  height: 8rem;
  padding-top: 0;
  padding-bottom: 0;
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.03);
}
.sticky .hero-section {
  margin-top: 9.6rem;
}
/* About*/
.about-section {
  padding: 4.8rem 0 9.6rem 0;
}
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.about-img {
  width: 100%;
}
.about-heading {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #333;
  font-weight: 500;
  margin: 3.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.about-description {
  font-size: 2rem;
  line-height: 1.5;
}
.about-img-box {
  position: relative;
}
.counter {
  background-color: #e1f3e4;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  display: inline-block;
  padding: 2.4rem 3.6rem;
  position: absolute;
  bottom: -2rem;
  right: 2rem;
}
.counter-number {
  font-variant-numeric: tabular-nums;
  display: inline-block;
  width: 4ch;
  text-align: right;
}

/*Pricing*/
.image-container {
  width: 100%;
}
.lumber {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  overflow: hidden;
}
.lumber-content {
  padding: 3.2rem 4.8rem;
}
.subheading {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  color: #37b24d;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.75px;
}
.services-section {
  padding: 4.8rem 0 9.6rem 0;
}
.services-text {
  text-align: center;
  margin-bottom: 6.4rem;
}
.services-heading {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #333;
  font-weight: 500;
  margin: 3.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.pricing-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}

.pricing-img {
  width: 100%;
}
.pricing-title {
  font-size: 2rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 3.2rem;
  text-align: center;
}
.attributes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.attribute {
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.icon {
  height: 2.4rem;
  width: 2.4rem;
  color: #32a045;
}

.transport-prices {
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  padding: 3.2rem 4.8rem;
}
.heading-transport {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 3.2rem;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.5px;
  text-align: center;
}
.more-info {
  line-height: 1.4;
  text-align: center;
}
.transport-prices .btn {
  display: block;
  width: fit-content;
  margin: 2rem auto;
}

.delivery-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.delivery-list-element {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.6rem;
}

.delivery-list strong {
  color: #2e7d32;
}

.delivery-note {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  color: #666;
  text-align: center;
}
/*Testimonials*/
.testimonials-section {
  padding: 9.6rem 12.8rem;
  background-color: #e1f3e4;
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}
.testimonials-heading {
  font-size: 4.4rem;
  line-height: 1.2;
  color: #0b240f;
  font-weight: 500;
  margin: 3.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.testimonial-img {
  width: 6.4rem;
  border-radius: 50%;
  margin-bottom: 1.2rem;
}
.testimonial-text {
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 1.6rem;
}
.testimonial-name {
  font-size: 1.6rem;
  color: #777;
} /*- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
/*Call to action */
.cta-section {
  padding: 9.6rem 0 12.8rem 0;
}

.cta {
  display: grid;
  grid-template-columns: 2fr 1fr;
  background-color: #32a045;
  box-shadow: 0 2.4rem 4.8rem rgba(0, 0, 0, 0.15);
  border-radius: 12px;

  background-image: linear-gradient(to right bottom, #73c982, #32a045);
  overflow: hidden;
}
.cta-heading {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #0b240f;
  font-weight: 500;
  margin: 3.2rem 0;
  line-height: 1.2;
  letter-spacing: -0.5px;
  text-align: center;
}
.cta-text-box {
  color: #0b240f;
  padding: 3.2rem;
}
.cta-text {
  font-size: 1.5rem;
  line-height: 1.3;
  margin-bottom: 4.8rem;
  text-align: center;
}
.cta-img-box {
  background-image:
    linear-gradient(to right bottom, #73c9810c, #32a0444e),
    url(images/нацепени\ дърва\ 1кб.webp);
  background-size: cover;
  background-position: center;
}
.cta-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 3.2rem;
  row-gap: 2.4rem;
}
.cta-form label {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 1.3rem;
}
.cta-form input,
.cta-form select {
  color: inherit;
  width: 100%;
  padding: 0.8rem;
  font-family: inherit;
  border: none;
  background-color: #e1f3e4;
  border-radius: 9px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.cta-form input::placeholder {
  color: #aaa;
}
.form-error {
  visibility: hidden;
  opacity: 0;
  height: 2.4rem;

  color: #b52626; /* по-наситено червено */
  font-size: 2.2rem; /* по-голям текст */
  font-weight: 600;

  text-align: center;
  margin-top: 1.6rem;

  transition: opacity 0.3s ease;
}

.form-error.show {
  visibility: visible;
  opacity: 1;
}
.input-error {
  outline: 4px solid #b91c1c;
}
.btn-form {
  background-color: #0b240f;
  color: #e1f3e4;
  padding: 1.2rem;
  grid-column: 1 / -1;
}
.btn-viber:hover,
.form-viber:hover {
  background-color: #ae3ec9;
  /* color: #555; */
}
.btn-whatsapp:hover {
  background-color: #fff;
  color: #555;
}
.cta *:focus {
  outline: none;
  box-shadow: 0 0 0 0.8rem #d7f0db74;
}
/* Footer */
.footer {
  padding: 12.8rem 0;
  border-top: 1px solid #eee;
}
.social-links {
  list-style: none;
  display: flex;
  gap: 2.4rem;
}
.footer-logo {
  display: block;
  margin-bottom: 3.2rem;
}
.footer-logo img {
  height: 20rem;
}
.social-icon {
  height: 2.4rem;
  width: 2.4rem;
}
.copyright {
  font-size: 1.4rem;
  color: #767676;
  line-height: 2.4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6.4rem;
  row-gap: 9.6rem;
}
.footer-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.footer-list-element {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.2rem;
  color: #767676;
}
.footer-list strong {
  color: #2e7d32;
}
.footer-heading {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 3.2rem;
  text-align: center;
}
.footer-link {
  display: block;
  margin-bottom: 1.6rem;
}
.footer-link:link,
.footer-link:visited {
  text-decoration: none;
  font-size: 1.6rem;
  color: #767676;
  transition: all 0.3s;
}
.footer-link:hover,
.footer-link:active {
  color: #2e7d32;
}
.contacts {
  font-style: none;
  font-size: 1.6rem;
  line-height: 3rem;
}
.contacts-text {
  display: flex;
  gap: 1rem;
  font-size: 1.6rem;
  color: #767676;
}

/* pop up */
.pop-up {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.629);

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 999;
  visibility: hidden;
  opacity: 0;
}
.inner-pop-up {
  background: #fff;
  padding: 3.2rem;
  border-radius: 10px;
  text-align: center;
}
.pop-up-heading {
  font-size: 2.4rem;
  margin-bottom: 3.2rem;
  font-weight: 500;
  color: #333;
  letter-spacing: -0.5px;
}
.pop-up-text {
  font-size: 1.8rem;
  font-weight: 300;

  line-height: 1.5;
}
.pop-up-btn {
  margin: 1.2rem 0;
  background-color: #cccccc;
}
.pop-up-open {
  visibility: visible;
  opacity: 1;
}
/*- Font sizes (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
- Spacing system (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128
*/
