@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700;800&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Alfa+Slab+One&family=Nabla&family=Press+Start+2P&family=Roboto+Slab:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik+Mono+One&display=swap');

:root {
  --primary-color: #4D80BF ;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* outline: 2px solid red */
}

html, body {
  max-width: 100%;
  padding: 0;
  margin: 0;
  position: relative;
  /* overflow-x: hidden; */
}

body {
  background-color: #D3D7D2;
  font-family: 'open sans';
}

.grecaptcha-badge { visibility: hidden; }

/* ////////////////////////////// NAV START ////////////////////////////////// */

.sideleft {
  position: fixed;
  width: 600px;
  height: 100vh;
  background-color: #2D3033;
  z-index: 1000;
}

.img {
  display: grid;
  justify-items: center;
  position: relative;
  width: 600px;
  top: 6em;
}

.hero-img {
  width: 300px;
}

.dreamer-copy {
  width: 600px;
  position: relative;
  color: #D3D7D2;
  top: 8em;
}

.dreamer-copy p {
  padding: 0 5em;
  text-align: center;
  word-spacing: 3px;
  /* height: 50px; */
  font-size: 1rem;
}

.dreamer-contact {
  margin-top: 4em;
  text-align: center;

}

.dreamer-contact a {
  position: relative;
  text-decoration: none;
  color: #4D80BF;
}

.dreamer-contact a:hover {
  text-decoration: underline;
}

.dreamer-contact::before {
  content: '';
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font-family: "Font Awesome 5 Free";
  position: relative;
  color: #4D80BF;
}

.main-right {
  position: absolute;
  height: 100vh;
}

.main-right::after {
  content: '';
  opacity: .3;
  position: fixed;
  min-width: 100%;
  height: 100vh;
  background-image: url(/assets/9.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: left 550px top 5px;
  top: 0;
  left: 0;
}

.main-block {
  position: relative;
  z-index: 1;
  padding-top: 125px;
}

.main-block h1 {
  color: #4D80BF;
  font-size: 1.2rem;

}

.main-block a {
  position: relative;
  text-decoration: none;
  color: #2D3033;
}

.main-block a:hover {
  text-decoration: underline;
}

.main-block a:visited {
  text-decoration: none;

}

.wrapper {
  position: relative;
  margin-bottom: 4em;
  left: 45em;
}

@media screen and (max-width: 1122px) {
  .sideleft {
    width: 100%;
    max-height: 300px;
    position: relative;
  }

  .main-right {
    position: absolute;
    margin-top: 15em;
    width: 100%;
    display: grid;
    justify-content: center;
  }

  .main-right::after {
    background-position: right -150px top 5px;
  }

  .main-block {
    height: 200px;
    padding: 4em 4em;
    width: 100%;
  }

  .wrapper {
    width: 100%;
    left: 0;
  }

  .img {
    width: 100%;
  }

  .img {
     top: 0;
     padding: 45px;
  }

  

  .dreamer-copy {
    background-color: #4D80BF;
    padding: 30px;
    height: 300px;
    top: 0;
    padding: 45px;
    width: 100%;
  }

  .dreamer-copy p {
    padding: 10px;
    width: 365px;
    margin: 0 auto;
    text-align: left;
  }

  .dreamer-contact a {
    margin-bottom: 25em;
    color: #D3D7D2;
  }

  .dreamer-contact::before {
    color: #D3D7D2;
  }
  


}