@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url(/scss/menu.css);
@import url(/scss/footer.css);
@import url(/scss/form.css);
@import url(/scss/cookie.css);
@import url(/scss/main.css);
@import url(/scss/contact.css);
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, p, a {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  letter-spacing: .1em;
  line-height: 1.5;
  text-decoration: none;
}

.main-wrapper {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 129px);
}
.main-wrapper .inner {
  width: 100%;
  text-align: center;
}
.main-wrapper .inner h1 {
  font-size: 20px;
}
.main-wrapper img {
  object-fit: contain;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 922px) {
  .main-wrapper img {
    width: 90%;
  }
}

#backToTopBtn {
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 99;
  font-size: 16px;
  background-color: #383838;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  padding: 10px 20px;
  transition: all .5s ease;
}
@media screen and (max-width: 992px) {
  #backToTopBtn {
    display: none !important;
  }
}

#backToTopBtn:hover {
  background-color: #45526e;
  color: #000;
}

/*# sourceMappingURL=style.css.map */
