@import url("https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
}

html {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 3px;
  background: #cccccc;
}

::-webkit-scrollbar-thumb {
  background: #6d6d6d;
}

footer {
  width: 100%;
  height: 10vh;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
footer a {
  text-decoration: none;
  color: unset;
  transition: 0.2s;
}

footer.position-bottom {
  position: absolute;
  bottom: 0;
}

section.theme1 {
  width: 100%;
  height: 90vh;
}

section.theme2 {
  width: 100%;
  height: 100vh;
}

.bg_img {
  width: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  -o-object-fit: cover;
     object-fit: cover;
}

.logo {
  width: 250px;
}
.logo img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.title {
  font-size: 40px;
  text-shadow: 0 0 #000;
}

.contact-form {
  background: rgba(255, 255, 255, 0.7607843137);
  width: 100%;
  height: auto;
  padding: 50px;
  border-radius: 15px;
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}

@media screen and (max-width: 767px) {
  section.theme2 {
    height: auto;
    position: relative;
  }
}
@media screen and (max-width: 425px) {
  .contact-form {
    padding: 50px 20px;
  }
}/*# sourceMappingURL=maintenance.css.map */