@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");
body,
html {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  overflow: hidden;
  min-height: 100vh;
  width: 100%;
  background: rgb(19, 40, 45);
  background: linear-gradient(180deg, rgb(19, 40, 45) 0%, rgb(35, 76, 77) 100%);
  font-family: "Poppins", sans-serif;
  color: #f7feff;
}

.top img {
  position: absolute;
  top: 0;
  right: 0;
  width: 15%;
  filter: blur(1px);
  -webkit-filter: blur(1px);
  opacity: 0.1;
  pointer-events: none;
}

.bottom img {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  filter: blur(7.5px);
  -webkit-filter: blur(7.5px);
  transform: rotate(180deg);
  opacity: 0.3;
  pointer-events: none;
}

footer {
  position: absolute;
  bottom: 10px;
  right: 10px;
  opacity: 0.2;
  font-weight: 400;
}

.logo {
  margin: 130px 0;
}

.header_wrapper .header {
  border-left: 3px solid #0b7d5d;
  justify-content: center;
}
.header_wrapper .header .contacts {
  padding-left: 10px;
}
.header_wrapper .header .contacts .mail {
  font-size: 12px;
  font-weight: 400;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.header_wrapper .header .contacts .title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.actions {
  display: flex;
  flex-direction: column;
}
.actions a {
  padding: 10px 40px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  text-decoration: none;
  background: none;
  border: 3px solid #0b7d5d;
  color: #0b7d5d;
  transition: border 300ms ease, transform 800ms ease;
  border-radius: 50px;
  height: 60px;
  width: 35%;
  text-align: center;
}
.actions a:hover {
  transform: scale(1.05);
  border-color: #0b7d5d transparent;
}
.actions a:active {
  transform: scale(0.9);
}
.actions a:first-child {
  margin-top: 50px;
}
.actions a:last-child {
  margin-top: 20px;
}
.actions a i {
  transition: all 800ms ease;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width: 1199px) {
  .bottom img {
    width: 80%;
    filter: blur(4.5px);
    -webkit-filter: blur(4.5px);
  }
  .top img {
    width: 25%;
  }
}
@media only screen and (max-width: 991px) {
  .bottom img {
    width: 80%;
    filter: blur(3.5px);
    -webkit-filter: blur(3.5px);
  }
  .top img {
    width: 25%;
  }
  .actions a {
    width: 40%;
  }
}
@media only screen and (max-width: 767px) {
  .bottom img {
    width: 95%;
    filter: blur(2.5px);
    -webkit-filter: blur(2.5px);
  }
  .top img {
    width: 35%;
  }
  .actions a {
    width: 50%;
  }
}
@media only screen and (max-width: 575px) {
  .bottom img {
    width: 100%;
    bottom: 0;
    filter: blur(1.5px);
    -webkit-filter: blur(1.5px);
  }
  .top img {
    width: 35%;
  }
  .actions a {
    width: 80%;
    height: 65px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo,
.actions,
.header_wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .logo {
    margin: 75px 0 100px 0;
  }
}
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgb(19, 40, 45);
  background: linear-gradient(180deg, rgb(19, 40, 45) 0%, rgb(35, 76, 77) 100%);
  transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader::after {
  content: "";
  width: 75px;
  height: 75px;
  border: 15px solid #dddddd;
  border-top-color: #0b7d5d;
  border-radius: 50%;
  -webkit-animation: loading 0.75s ease infinite;
          animation: loading 0.75s ease infinite;
}

@-webkit-keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}

@keyframes loading {
  from {
    transform: rotate(0turn);
  }
  to {
    transform: rotate(1turn);
  }
}/*# sourceMappingURL=app.css.map */