/* Base */
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&subset=latin-ext");
@import url("https://cdnjs.cloudflare.com/ajax/libs/material-design-iconic-font/2.2.0/css/material-design-iconic-font.min.css");
@import url("https://fonts.googleapis.com/css2?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");
/* Flex center */
.d-flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.flex-column {
  flex-direction: column;
}

body {
  box-sizing: border-box;
  overflow-x: hidden;
  cursor: default;
}

* {
  box-sizing: border-box;
}

body,
p,
a,
ul,
li,
h1,
h2,
h3,
h4 {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

li {
  list-style: none;
}

html {
  font-size: 10px;
  height: 100vh;
}

body {
  font-family: "Roboto", sans-serif;
}

.wrapper {
  width: 100vw;
  height: 100vh;
  padding: 20px;
  background-image: url(/assets/background.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

h1 {
  margin-bottom: 30px;
  color: #fff;
  font-size: 80px;
  font-weight: normal;
}

.msg {
  text-align: center;
  font-size: 20px;
}
@media screen and (min-width: 960px) {
  .msg {
    font-size: 30px;
  }
}

.heading {
  font-size: 30px;
  text-align: center;
}
@media screen and (min-width: 960px) {
  .heading {
    font-size: 50px;
  }
}

.yellow {
  color: #ddb04c;
}

.white {
  color: #fff;
}

.form {
  flex-direction: column;
}

input[type=text] {
  width: 100%;
  height: 60px;
  margin-top: 15px;
  margin-bottom: 60px;
  font-size: 20px;
  padding: 0 20px;
}

.button {
  width: 50%;
  padding: 10px 0;
  background: #ddb04c;
  color: #000200;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
.button.xl-button {
  padding: 15px 0;
  font-size: 28px;
}

.img-wrapper {
  max-height: 350px;
  margin-top: 10px;
}
.img-wrapper img {
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 960px) {
  .img-wrapper {
    max-height: 450px;
    margin-top: 20px;
  }
}

.progress-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.progress-page .logo {
  width: 210px;
  height: 100px;
  background: url("/assets/OSOM_LOGOTYPY_WEKTOR/OSOM_EG_dark.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 960px) {
  .progress-page .logo {
    width: 400px;
    background: url("/assets/OSOM_LOGOTYPY_WEKTOR/OSOM_EG_dark1.svg");
    background-repeat: no-repeat;
  }
}
.progress-page .bar {
  width: 100%;
  max-width: 500px;
  height: 15px;
  margin: 30px 0;
  border: 1px solid #fff;
  background: linear-gradient(95deg, rgb(221, 176, 76) 15%, rgba(0, 0, 0, 0.427054073) 33%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (min-width: 960px) {
  .progress-page {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-template-rows: repeat(12, 1fr);
  }
  .progress-page .logo {
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 4;
    grid-row-end: 6;
    justify-self: end;
    width: 450px;
  }
  .progress-page .img-wrapper {
    width: 420px;
    height: 420px;
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 12;
  }
  .progress-page .content {
    max-width: 470px;
    grid-column-start: 1;
    grid-column-end: 2;
    grid-row-start: 6;
    grid-row-end: 10;
    justify-self: end;
  }
}/*# sourceMappingURL=style.css.map */