* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

.container {
  width: 100vw;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  position: relative;
  top: 50%;
}

.container .left-side {
  width: 50%;
  height: 100vh;
  position: relative;
  padding: 0;
  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-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.container .left-side .content-wrapper {
  position: relative;
  margin: auto auto auto 90px;
}

.container .left-side .content-wrapper h1.header {
  margin-bottom: 40px;
  color: #000;
  font-size: 24px;
  line-height: 1.7;
  font-weight: 300;
}

.container .left-side .content-wrapper a.install {
  padding: 12px 50px;
  border-radius: 6px;
  background: #ff1e68;
  font-size: 16px;
  color: #fff;
  line-height: 1;
  text-transform: capitalize;
  text-decoration: none;
  -webkit-box-shadow: #c3043e 0px 2px;
          box-shadow: #c3043e 0px 2px;
  font-weight: 300;
}

.container .left-side .content-wrapper a.install:hover {
  cursor: pointer;
}

.container .left-side ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  position: absolute;
  bottom: 25px;
  right: 55px;
}

.container .left-side ul li {
  text-transform: capitalize;
}

.container .left-side ul a {
  text-decoration: none;
  margin-left: 20px;
  color: #000;
  font-size: 12px;
  font-weight: 100;
}

.container .left-side ul a::first-child {
  margin-left: 0;
}

.container .left-side ul a:hover {
  cursor: pointer;
}

.container .right-side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 50%;
  height: 100vh;
  background: url("../img/background.png") no-repeat;
  background-size: cover;
}

.container .right-side figure {
  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;
}

.container .right-side figure img {
  width: 250px;
  height: 250px;
  margin-bottom: 20px;
}

.container .right-side figure figcaption {
  font-size: 40px;
  color: #fff;
  line-height: 1.7;
  text-align: center;
  font-weight: 100;
}
/*# sourceMappingURL=style.css.map */