/* RESET */
html, body, div, span, a, img, section {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}

section {
	display: block;
}
/* END RESET */

body {
  font: normal 13px/1.54 OpenSans, -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  sans-serif !important;
  color: #43425d;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.home-page-holder {
  height: 100vh;
  background: -webkit-gradient(linear,left top, right top,from(#589ecc),color-stop(39%, #3163aa));
  background: -o-linear-gradient(left,#589ecc 0%,#3163aa 39%);
  background: linear-gradient(90deg,#589ecc 0%,#3163aa 39%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.navigation-holder {
  background-color: #fff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40%;
          flex: 0 0 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav-link {
  display: inline-block;
  padding: 34px 10px;
  text-decoration: none;
  color: #329600;
  text-transform: uppercase;
  font-weight: 600;
  width: 65%;
  max-width: 500px;
  text-align: center;
  border-radius: 3px;

  -webkit-backdrop-filter: blur(30px);
  backdrop-filter: blur(30px);
  -webkit-box-shadow: 0 3px 37px 0 #f0f0f7;
          box-shadow: 0 3px 37px 0 #f0f0f7;
  background-color: #fcfeff;
  -webkit-transition: color .5s, -webkit-box-shadow .5s;
  transition: color .5s, -webkit-box-shadow .5s;
  -o-transition: box-shadow .5s, color .5s;
  transition: box-shadow .5s, color .5s;
  transition: box-shadow .5s, color .5s, -webkit-box-shadow .5s;
  -webkit-transition-timing-function: ease;
       -o-transition-timing-function: ease;
          transition-timing-function: ease;
}

.nav-link:first-of-type {
  margin: 100px 0 40px;
}

.nav-link:hover {
  color: #1d5700;
  -webkit-box-shadow: 0 0 37px 0 #1d570059;
          box-shadow: 0 0 37px 0 #1d570059;
}

@media only screen and (max-width: 1440px) {
  .navigation-holder {
    -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
  }
}

@media only screen and (max-width: 1024px) {
  .navigation-holder {
    -ms-flex-preferred-size: 70%;
        flex-basis: 70%;
  }
}


@media only screen and (max-width: 991px) {
  .navigation-holder {
    -ms-flex-preferred-size: 80%;
        flex-basis: 80%;
  }
}