@font-face {
  font-family: "Woodland";
  src: url("../fonts/PPWoodland-Ultralight.woff2") format("woff2"), url("../fonts/PPWoodland-Ultralight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Woodland";
  src: url("../fonts/PPWoodland-Bold.woff2") format("woff2"), url("../fonts/PPWoodland-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
.woodland-20-light, body {
  font-family: "Woodland";
  font-size: 20px;
  font-weight: 200;
  font-style: normal;
  line-height: 110%;
}

.woodland-24-light, .footer, .image-text__text-container, .services__card p, header {
  font-family: "Woodland";
  font-size: 24px;
  font-weight: 200;
  font-style: normal;
  line-height: 110%;
}
@media screen and (max-width: 1200px) {
  .woodland-24-light, .footer, .image-text__text-container, .services__card p, header {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .woodland-24-light, .footer, .image-text__text-container, .services__card p, header {
    font-size: 16px;
  }
}

.woodland-32, .image-text__accent-text, .services__card h3 {
  font-family: "Woodland";
  font-size: 32px;
  font-weight: 700;
  font-style: normal;
  line-height: 110%;
}
@media screen and (max-width: 1200px) {
  .woodland-32, .image-text__accent-text, .services__card h3 {
    font-size: 25px;
  }
}
@media screen and (max-width: 880px) {
  .woodland-32, .image-text__accent-text, .services__card h3 {
    font-size: 20px;
  }
}

.woodland-40, .image-text__title, h2 {
  font-family: "Woodland";
  font-size: 40px;
  font-weight: 700;
  font-style: normal;
  line-height: 110%;
}
@media screen and (max-width: 1200px) {
  .woodland-40, .image-text__title, h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 880px) {
  .woodland-40, .image-text__title, h2 {
    font-size: 25px;
  }
}

.woodland-40-light, .action__btn {
  font-family: "Woodland";
  font-size: 40px;
  font-weight: 200;
  font-style: normal;
  line-height: 110%;
}
@media screen and (max-width: 1200px) {
  .woodland-40-light, .action__btn {
    font-size: 32px;
  }
}
@media screen and (max-width: 880px) {
  .woodland-40-light, .action__btn {
    font-size: 25px;
  }
}
@media screen and (max-width: 660px) {
  .woodland-40-light, .action__btn {
    font-size: 20px;
  }
}
@media screen and (max-width: 500px) {
  .woodland-40-light, .action__btn {
    font-size: 16px;
  }
}

.woodland-110, .landing__title {
  font-family: "Woodland";
  font-size: 110px;
  font-weight: 700;
  font-style: normal;
  line-height: 120%;
}
@media screen and (max-width: 1200px) {
  .woodland-110, .landing__title {
    font-size: 90px;
  }
}
@media screen and (max-width: 880px) {
  .woodland-110, .landing__title {
    font-size: 70px;
  }
}
@media screen and (max-width: 660px) {
  .woodland-110, .landing__title {
    font-size: 55px;
  }
}
@media screen and (max-width: 500px) {
  .woodland-110, .landing__title {
    font-size: 40px;
  }
}
@media screen and (max-width: 500px) {
  .woodland-110, .landing__title {
    font-size: 32px;
  }
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

:root {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  width: 100%;
  height: auto;
  overflow-x: hidden;
  background-color: #dcd7c9;
}

header {
  width: 100%;
  height: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  transform: translateY(-70px);
  transition: opacity 300ms ease-in, transform 500ms ease-in;
}
header.show {
  opacity: 1;
  transform: none;
}

.header {
  width: 100%;
  height: auto;
  z-index: -1;
}

.header__above {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  color: #dcd7c9;
  padding: 10px 80px;
  background-color: #2c3639;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .header__above {
    padding: 10px 5%;
  }
}

.header__below {
  width: 100%;
  height: 30px;
  background-color: #3f4e4f;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 5%;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.5);
  z-index: -1;
  position: absolute;
  top: 80px;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 200ms ease-in, visibility 200ms ease-in, transform 200ms ease-in;
}
.header__below.show-nav {
  opacity: 1;
  visibility: visible;
  transform: none;
}
@media screen and (min-width: 781px) {
  .header__below {
    display: none;
  }
}

.header__below-links {
  width: 60%;
  color: #dcd7c9;
  height: auto;
  display: flex;
  justify-content: space-between;
}
.header__below-links a {
  text-decoration: none;
  color: inherit;
}
@media screen and (max-width: 600px) {
  .header__below-links {
    width: 80%;
  }
}
@media screen and (max-width: 440px) {
  .header__below-links {
    width: 100%;
  }
}

.header__logo-link {
  height: 100%;
  width: auto;
}

.header__logo {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__links-container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 800px;
}
@media screen and (max-width: 1200px) {
  .header__links-container {
    width: 650px;
  }
}
@media screen and (max-width: 780px) {
  .header__links-container {
    width: auto;
  }
}

.link-underline, .footer__link, .header__links a, .header__below-links a {
  position: relative;
}
.link-underline::after, .footer__link::after, .header__links a::after, .header__below-links a::after {
  content: "";
  position: absolute;
  width: 100%;
  background-color: #fff;
  height: 1px;
  top: 100%;
  left: 0;
  will-change: transform;
  transform-origin: 100% 50%;
  transform: scale3d(0, 1, 1);
  transition: transform 300ms cubic-bezier(0.2, 1, 0.8, 1);
}
.link-underline:hover::after, .footer__link:hover::after, .header__links a:hover::after, .header__below-links a:hover::after {
  transform-origin: 0% 50%;
  transform: scale3d(1, 1, 1);
  transition-timing-function: cubic-bezier(0.7, 0, 0.2, 1);
}

.header__links {
  list-style: none;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-grow: 1;
}
.header__links li {
  margin-right: 30px;
}
@media screen and (max-width: 1200px) {
  .header__links li {
    margin-right: 25px;
  }
}
@media screen and (max-width: 1024px) {
  .header__links li {
    margin-right: 20px;
  }
}
.header__links a {
  color: #dcd7c9;
  text-decoration: none;
}
@media screen and (max-width: 780px) {
  .header__links {
    display: none;
  }
}

.header__call-btn {
  margin: 10px;
  padding: 5px 20px;
  text-transform: uppercase;
  color: #000 !important;
  box-shadow: 0 0 10px #000;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  z-index: 1;
  display: flex;
  align-items: center;
  background-color: #dcd7c9;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  transition: all 200ms;
}
.header__call-btn img {
  height: 0.8em;
  width: auto;
  margin-right: 0.5em;
}
.header__call-btn:hover {
  background-color: #a27b5c;
  color: #fff !important;
  text-decoration: none;
  transition: all 200ms;
}
.header__call-btn:hover img {
  filter: invert(1);
}
@media screen and (max-width: 480px) {
  .header__call-btn {
    height: 30px;
  }
}

@media screen and (max-width: 480px) {
  .header__call-btn-num {
    display: none;
  }
}

.header__burger {
  width: 30px;
  height: 20px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
  cursor: pointer;
}
@media screen and (max-width: 780px) {
  .header__burger {
    display: flex;
  }
}
.header__burger.toggled .header__burger-line:nth-of-type(1) {
  transform: translateY(8.5px) rotate(45deg);
}
.header__burger.toggled .header__burger-line:nth-of-type(2) {
  display: none;
}
.header__burger.toggled .header__burger-line:nth-of-type(3) {
  transform: translateY(-8.5px) rotate(135deg);
}

.header__burger-line {
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition: all 200ms;
}

.landing {
  position: relative;
  top: 0;
  left: 0;
  min-height: 600px;
  height: 100vh;
  width: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #dcd7c9;
  text-align: center;
  padding: 5%;
}
.landing.show .landing__title,
.landing.show .action__btn {
  opacity: 1;
  transform: none;
}

.landing__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}

.landing__overflow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.landing__title {
  color: #fff;
  z-index: 1;
  opacity: 0;
  transition: opacity 500ms ease-in;
}

.action__btn {
  text-align: center;
  background-color: #2c3639;
  transition: all 500ms;
  margin: 10px;
  padding: 15px 45px;
  text-transform: uppercase;
  color: #fff;
  box-shadow: 0 0 20px #000;
  border-radius: 10px;
  display: block;
  text-decoration: none;
  z-index: 1;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 300ms ease-in, transform 500ms ease-in, background-color 300ms ease-in;
}
.action__btn.show {
  opacity: 1;
  transform: none;
}
.action__btn img {
  height: 0.8em;
  width: auto;
  margin-right: 0.5em;
  filter: invert(1);
}
.action__btn:hover {
  background-color: #3f4e4f;
  transition: background-color 500ms ease-in;
}
@media screen and (max-width: 660px) {
  .action__btn {
    padding: 10px 30px;
  }
}

.accent-line {
  width: 100%;
  height: auto;
  padding: 50px 5%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #2c3639;
  color: #fff;
  overflow: hidden;
}
.accent-line.show .accent-line__text {
  opacity: 1;
}

.accent-line__text {
  opacity: 0;
  transition: opacity 500ms ease-in;
}

.services {
  width: 100%;
  height: auto;
  padding: 50px 5%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background: #2c3639 url("/images/drva.webp") center top/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .services {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media screen and (max-width: 660px) {
  .services {
    grid-template-columns: repeat(1, 1fr);
  }
}

.services__card {
  min-height: 300px;
  width: auto;
  background-color: #dcd7c9;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding: 50px;
  box-shadow: 0 0 10px #000;
  color: #2c3639;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 300ms ease-in, transform 500ms ease-in, background-color 300ms ease-in;
}
.services__card.show {
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 1024px) {
  .services__card {
    padding: 30px;
  }
}
@media screen and (max-width: 660px) {
  .services__card {
    padding: 10px 10px 40px;
    min-height: 250px;
    justify-content: center;
  }
}
.services__card h3 {
  margin-bottom: 10px;
}
.services__card:hover {
  background-color: #2c3639;
  color: #dcd7c9;
  transition: all 200ms ease-in;
}
.services__card:hover .services__card-img {
  filter: invert(1);
}

.services__card-img {
  width: 120px;
  height: 120px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 10px;
  transition: all 200ms ease-in;
}

.image-text {
  width: 100%;
  height: auto;
  padding: 50px 5%;
  background: #dcd7c9 url("/images/vatra.webp") center center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 660px) {
  .image-text {
    flex-direction: column;
  }
}
.image-text.show .image-text__image-container,
.image-text.show .image-text__text-container {
  opacity: 1;
  transform: none;
}

.image-text__image-container {
  background-color: #2c3639;
  border: 1vw solid #2c3639;
  width: auto;
  height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px #000;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 300ms ease-in, transform 500ms ease-in;
}
@media screen and (max-width: 1200px) {
  .image-text__image-container {
    height: 400px;
  }
}
@media screen and (max-width: 660px) {
  .image-text__image-container {
    height: 350px;
  }
}

.image-text__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.image-text__text-container {
  color: #fff;
  margin-left: 50px;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 300ms ease-in 500ms, transform 500ms ease-in 500ms;
}
@media screen and (max-width: 660px) {
  .image-text__text-container {
    margin-top: 50px;
    margin-left: 0;
    text-align: center;
  }
}

.image-text__title {
  margin-bottom: 10px;
}

.image-text__text {
  margin-bottom: 6px;
}

.image-text__accent-text {
  font-weight: 700;
  display: inline-block;
  padding: 5px 10px;
  background-color: #2c3639;
}

.galery {
  width: 100%;
  height: auto;
  background: #dcd7c9 url("/images/tekstura.webp") center center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 50px 5%;
}
@media screen and (max-width: 1200px) {
  .galery {
    padding: 0 5% 50px;
  }
}
@media screen and (max-width: 660px) {
  .galery {
    padding: 50px 5%;
  }
}
.galery .action__btn {
  margin-top: 50px;
}

.galery__images {
  width: 100%;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 100px;
  grid-row-gap: 50px;
  opacity: 0;
  transform: translateY(70px);
  transition: opacity 300ms ease-in, transform 500ms ease-in;
}
.galery__images.show {
  opacity: 1;
  transform: none;
}
@media screen and (max-width: 1440px) {
  .galery__images {
    grid-column-gap: 50px;
  }
}
@media screen and (max-width: 1200px) {
  .galery__images {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 100px;
  }
}
@media screen and (max-width: 880px) {
  .galery__images {
    grid-column-gap: 50px;
  }
}
@media screen and (max-width: 660px) {
  .galery__images {
    grid-template-columns: repeat(1, 1fr);
  }
}

.galery__img-container {
  background-color: #2c3639;
  border: 1vw solid #2c3639;
  height: 25vw;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 0 20px #000;
}
.galery__img-container:nth-of-type(1) {
  transform: rotate(-5deg);
  margin-top: 30px;
}
.galery__img-container:nth-of-type(3) {
  transform: rotate(5deg);
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .galery__img-container:nth-of-type(1) {
    transform: none;
    margin-top: 0;
    grid-area: 1/1/2/3;
    width: 50%;
    margin: 0 auto;
    transform: translateY(100px);
    z-index: 1;
  }
  .galery__img-container:nth-of-type(2) {
    grid-area: 2/1/3/2;
    transform: rotate(-5deg);
    margin-top: 0;
  }
  .galery__img-container:nth-of-type(3) {
    grid-area: 2/2/3/3;
    transform: rotate(5deg);
    margin-top: 0;
  }
}
@media screen and (max-width: 660px) {
  .galery__img-container:nth-of-type(n) {
    grid-area: unset;
    transform: rotate(-5deg);
    margin-top: 0;
    width: 80%;
    height: auto;
    margin: 0 auto;
    aspect-ratio: 5/4;
  }
}

.galery__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  width: 100%;
  min-height: 150px;
  height: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #2c3639;
  color: #dcd7c9;
  padding: 50px 5%;
  gap: 100px;
  box-shadow: 0px -10px 20px 0px rgba(0, 0, 0, 0.5);
  overflow-y: hidden;
}
@media screen and (max-width: 800px) {
  .footer {
    justify-content: center;
    gap: 50px;
  }
}
@media screen and (max-width: 660px) {
  .footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.footer__logo-link {
  width: 200px;
  height: auto;
}

.footer__logo {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.footer__content {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .footer__content {
    width: auto;
  }
}
@media screen and (max-width: 660px) {
  .footer__content {
    text-align: center;
  }
}

.footer__slogan {
  margin-bottom: 10px;
}

.footer__link {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}
.footer__link:nth-of-type(2) {
  margin-left: 20px;
}
.footer__link img {
  height: 0.8em;
  width: auto;
  filter: invert(1);
}
@media screen and (max-width: 800px) {
  .footer__link {
    display: block;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .footer__link:nth-of-type(2) {
    margin-left: 0;
    margin-top: 10px;
  }
}

.footer__copyright {
  margin-top: 10px;
}/*# sourceMappingURL=main.css.map */