/* ====================================================
    Variables
==================================================== */
/* ====================================================
    Mixins
==================================================== */
/* ==========================================================================
   HELPER CLASSES
   ========================================================================== */
.span--1 {
  color: #009c65;
}

.span--2 {
  color: #C61E58;
}

/* ====================================================
    Default Styles
==================================================== */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 10px;
  height: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  background-color: #062340;
  color: #ffffff;
  font-family: "Roboto", sans-serif;
  position: relative;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ol,
ul {
  margin: 0;
  padding: 0;
  font-weight: normal;
}

img {
  max-width: 100%;
  height: auto;
}

/* ====================================================
    Custom Styles
==================================================== */
.container {
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 98vh;
}

@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}

@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}

@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}

@media (min-width: 1400px) {
  .container {
    width: 1370px;
  }
}

.content {
  width: 50%;
  height: 47rem;
  margin: auto;
  margin-left: 0;
  float: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.heading {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 2.8rem;
  margin: 4.5rem 0 7.2rem;
}

.para {
  margin-top: auto;
  max-width: 540px;
}

.para .subheading {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 2.6rem;
  margin-bottom: 2.1rem;
}

.para p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 2.1rem;
  margin-bottom: 2.1rem;
}

.illustration {
  width: 66rem;
  height: 66rem;
  float: right;
  background: url("/assets/img/vector.svg");
  background-size: 66rem;
  background-position: left bottom;
  background-repeat: no-repeat;
  max-width: 50%;
  position: absolute;
  left: 50%;
  bottom: 0;
}

.illustration .io {
  font-size: 20rem;
  position: absolute;
  right: 50%;
  bottom: 50%;
  -webkit-transform: translate(50%, 50%);
          transform: translate(50%, 50%);
}

/* ====================================================
    Responsiveness Styles
==================================================== */
@media only screen and (min-height: 920px) {
  .illustration {
    bottom: 0;
    top: 0;
    height: 100vh;
    background-position: left center;
  }
}

@media only screen and (max-width: 760px) {
  .logo {
    margin: 1rem 0;
    max-width: 90vw;
  }
  .logo img {
    width: 100%;
  }
  .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100vh;
  }
  .content {
    width: 100%;
    margin-top: 1rem;
    margin-bottom: 2rem;
    z-index: 2;
    position: relative;
  }
  .illustration {
    width: 100vw;
    background-size: 100% 100%;
    max-width: 100vw;
    bottom: 0;
    left: 0;
    position: relative;
  }
  .illustration .io {
    font-size: 30vw;
  }
}