/*
    320px - 479px:      Screen Extra Extra Small   screen-xs       <= Design Default
    480px - 639px:      Screen Extra Small         screen-s  
    768px - 991px:      Screen Medium              screen-m        <= Standard
    992px - 1199px:     Screen Large               screen-l
    1200px - 1799px:    Screen Extra Large         screen-xl
    1800px +:           Screen Extra Extra Large   screen-xxl      <= Special

1em = 16px;

ORDER:

1. Base & Typography
2. General Layout & Grid
3. Page Layout
4. Components

*/
@keyframes blink {
  0% {
    border-color: transparent; }
  50% {
    border-color: #333; }
  100% {
    border-color: transparent; } }

@keyframes type {
  0% {
    width: 0%; }
  100% {
    width: 100%; } }

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem); }
  80% {
    transform: translateX(1rem); }
  100% {
    opacity: 1;
    transform: translateX(); } }

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem); }
  80% {
    transform: translateX(-1rem); }
  100% {
    opacity: 1;
    transform: translateX(); } }

@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem); }
  100% {
    opacity: 1;
    transform: translateX(0); } }

*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  /*///Based Font Size/Browser Default Font Size: 10px/16px = 0.625 // 10px: size we want for 1rem, 16px: default size = % of default size   /*/
  font-size: 62.5%;
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden; }
  @media only screen and (min-width: 30em) {
    html {
      font-size: 56.25%; } }
  @media only screen and (min-width: 48em) {
    html {
      font-size: 50%; } }
  @media only screen and (min-width: 62em) {
    html {
      font-size: 75%; } }

body {
  box-sizing: border-box;
  padding: 0rem; }

::selection {
  background-color: #202020;
  color: #fff; }

body {
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  line-height: 1.7;
  color: #999; }

.brand-logo {
  font-weight: 700;
  color: #fff;
  line-height: 5.5rem;
  text-decoration: none;
  cursor: pointer; }

.h1 {
  font-size: 6rem; }
  .h1--main {
    color: #999;
    font-size: 4.8rem;
    line-height: 1.4;
    font-weight: 600;
    text-align: center;
    animation: moveInLeft 1s ease-out; }
    @media only screen and (min-width: 30em) {
      .h1--main {
        font-size: 4.5rem; } }
    @media only screen and (min-width: 48em) {
      .h1--main {
        font-size: 6rem; } }
    @media only screen and (min-width: 62em) {
      .h1--main {
        font-size: 9.5rem; } }
  .h1--sub {
    display: block;
    color: #777;
    font-size: 0.9rem;
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
    padding: 0 0.75rem; }
    @media only screen and (min-width: 62em) {
      .h1--sub {
        font-size: 1.2rem; } }

.h2 {
  font-size: 3.9rem;
  font-weight: 100;
  display: inline-block;
  text-align: left;
  color: #999;
  letter-spacing: 0.2rem;
  transition: all 0.2s; }
  @media only screen and (min-width: 48em) {
    .h2 {
      font-size: 6.1rem;
      text-align: left; } }

.h3 {
  font-size: 3.1rem;
  font-weight: 400; }
  .h3--sub {
    font-size: 1.6rem;
    text-transform: uppercase;
    padding: 0 1rem 0; }
  @media only screen and (min-width: 48em) {
    .h3 {
      font-size: 3.9rem; } }

.h4 {
  font-size: 2.6rem;
  font-weight: 600; }

.h5 {
  font-size: 1rem; }

.h6 {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600; }

.header-paragraph {
  display: block;
  color: #777;
  font-size: 1.6rem;
  font-weight: 400;
  padding: 0 0.5rem 1rem; }
  @media only screen and (min-width: 62em) {
    .header-paragraph {
      font-size: 1.3rem; } }

.link-item {
  padding-left: 5rem;
  font-size: 1.6rem;
  cursor: pointer; }

.link-item--light {
  padding: 0rem;
  text-align: center;
  font-size: 1.6rem;
  color: #c9c9c9;
  cursor: pointer; }

.list__order-list {
  padding-left: 5rem; }

.p {
  font-size: 1.6rem;
  width: 100%; }
  .p:not(:last-child) {
    margin-bottom: 1.6rem; }

.section-title {
  margin-bottom: 6rem;
  text-align: left;
  width: 100%;
  padding: 0 2.5% 1rem; }
  .section-title i {
    font-size: 5rem; }
  @media only screen and (min-width: 30em) {
    .section-title {
      padding: 0 5% 1rem; } }
  @media only screen and (min-width: 48em) {
    .section-title {
      padding: 0 15% 1rem; } }
  @media only screen and (min-width: 62em) {
    .section-title {
      padding: 0 25% 1rem; } }

.section-bar {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 90%;
  max-width: 100vw;
  height: 40rem;
  overflow: hidden;
  padding-top: 8rem;
  display: flex;
  justify-content: center;
  align-items: center; }
  .section-bar__title {
    display: flex;
    flex-flow: column wrap;
    margin-bottom: 3rem; }
    .section-bar__title i {
      text-align: center;
      font-size: 5rem; }

.text__wrapper {
  display: flex;
  flex-flow: row wrap;
  padding: 0 5% 3rem;
  width: 100%;
  align-items: center; }
  @media only screen and (min-width: 48em) {
    .text__wrapper {
      padding: 0 15% 3rem; } }
  @media only screen and (min-width: 62em) {
    .text__wrapper {
      padding: 0 25% 3rem; } }

.underline {
  width: 7rem;
  height: 0.1rem;
  background: #202020;
  margin-bottom: 1rem; }

.image-caption {
  font-size: 1.6rem;
  padding: 0 2rem 5rem; }

.caption-wrapper {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  width: 100%; }
  @media only screen and (min-width: 48em) {
    .caption-wrapper {
      width: 40%;
      padding: 0; } }
  @media only screen and (min-width: 48em) {
    .caption-wrapper--l {
      width: 100%;
      padding: 0; } }

.article-heading {
  text-align: left;
  width: 100%; }

.list-indent {
  padding: 0 3rem 0; }

.li-style {
  list-style-type: inside; }
  .li-style--disc {
    list-style-type: disc; }

.text-bold {
  font-weight: 700; }

.u-center-text {
  text-align: center !important; }

.u-margin-bottom-s {
  margin-bottom: 3rem !important; }

.u-margin-bottom-m {
  margin-bottom: 13rem !important; }
  @media only screen and (min-width: 62em) {
    .u-margin-bottom-m {
      margin-bottom: 15rem !important; } }

.u-margin-bottom-l {
  margin-bottom: 15rem !important; }
  @media only screen and (min-width: 62em) {
    .u-margin-bottom-l {
      margin-bottom: 25rem !important; } }

.u-margin-top-l {
  margin-top: 8rem !important; }

.u-margin-top-xl {
  margin-top: 30rem !important; }

.logo-shadow {
  text-shadow: 0.5rem 0.5rem 2rem #000; }

.page-shadow {
  box-shadow: 0 3rem 6rem rgba(0, 0, 0, 0.1); }

.display_block {
  display: block; }

.display_in-line {
  display: inline; }

.overview {
  padding-bottom: 10rem;
  width: 100%; }
  .overview__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 62em) {
      .overview__wrapper {
        justify-content: center;
        flex-flow: row; } }
  .overview__item {
    margin-bottom: 2rem;
    display: flex;
    flex-flow: column wrap; }
    @media only screen and (min-width: 62em) {
      .overview__item {
        flex-flow: row; } }
  .overview__info {
    display: flex;
    flex-flow: column wrap;
    padding: 5rem 2rem 3rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center; }
    .overview__info--icon {
      font-size: 2.5rem;
      margin-bottom: 2rem; }
    .overview__info--sub {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      margin-bottom: 1rem; }
    .overview__info-text {
      font-size: 1.6rem;
      flex: 1; }

.overview-wrapper {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-bottom: 3rem; }
  .overview-wrapper .caption {
    font-size: 1.6rem;
    padding-top: 0; }

.background-wrapper {
  display: flex;
  flex-flow: row wrap; }

.background-item-a {
  flex: 1 0 auto;
  padding: 1rem 2rem; }

.btn, .btn:link, .btn:visited {
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  transition: all 0.2s;
  position: relative;
  font-size: 1.6rem;
  font-weight: 600;
  cursor: pointer; }
  @media only screen and (min-width: 30em) {
    .btn, .btn:link, .btn:visited {
      font-size: 2rem; } }
  @media only screen and (min-width: 62em) {
    .btn, .btn:link, .btn:visited {
      font-size: 1.1rem; } }
  @media only screen and (min-width: 75em) {
    .btn, .btn:link, .btn:visited {
      font-size: 1.5rem; } }

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.2); }
  .btn:hover::after {
    transform: scaleX(1.4) scaleY(1.6);
    opacity: 0; }

.btn:active, .btn:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }

.btn--dark {
  text-decoration: none;
  padding: 0.5rem 4rem;
  margin: 0.5rem;
  background-color: #111111;
  color: #fff;
  border: none; }
  @media only screen and (min-width: 30em) {
    .btn--dark {
      padding: 0.5rem 5rem; } }
  @media only screen and (min-width: 48em) {
    .btn--dark {
      padding: 1rem 6rem; } }
  @media only screen and (min-width: 62em) {
    .btn--dark {
      padding: 0.5rem 3rem 0.5rem 4rem; } }

.btn--light {
  text-decoration: none;
  padding: 0.5rem 4rem;
  margin: 0.5rem;
  background-color: #777777;
  color: #fff;
  border: none; }
  @media only screen and (min-width: 30em) {
    .btn--light {
      padding: 0.5rem 5rem; } }
  @media only screen and (min-width: 48em) {
    .btn--light {
      padding: 1rem 6rem; } }
  @media only screen and (min-width: 62em) {
    .btn--light {
      padding: 0.5rem 3rem; } }

.btn--white {
  text-decoration: none;
  padding: 0.5rem 4rem;
  margin: 0.5rem;
  background-color: #fff;
  color: #111111;
  border: none;
  text-align: center; }
  @media only screen and (min-width: 30em) {
    .btn--white {
      padding: 0.5rem 5rem; } }
  @media only screen and (min-width: 48em) {
    .btn--white {
      padding: 1rem 6rem; } }
  @media only screen and (min-width: 62em) {
    .btn--white {
      padding: 0.75rem 7rem; } }
  .btn--white::after {
    background-color: #202020; }

.btn--transparent {
  text-decoration: none;
  padding: 0.5rem 3.7rem;
  margin: 0.5rem;
  background-color: transparent;
  color: #999;
  border: 0.1rem solid #999; }
  @media only screen and (min-width: 30em) {
    .btn--transparent {
      padding: 0.5rem 6rem; } }
  @media only screen and (min-width: 48em) {
    .btn--transparent {
      padding: 1rem 5rem; } }
  @media only screen and (min-width: 62em) {
    .btn--transparent {
      padding: 0.5rem 3rem; } }

.btn--plain {
  text-decoration: underline;
  padding: 1rem 0;
  margin: 1rem;
  background-color: transparent;
  color: #999;
  border: none; }
  @media only screen and (min-width: 30em) {
    .btn--plain {
      padding: 0.5rem 0; } }
  @media only screen and (min-width: 48em) {
    .btn--plain {
      padding: 1rem 0; } }
  @media only screen and (min-width: 62em) {
    .btn--plain {
      padding: 0.75rem 0; } }
  .btn--plain:hover {
    box-shadow: none; }

.btn::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s; }

.btn--animated {
  animation: moveInBottom 0.5s ease-out 0.75s;
  animation-fill-mode: backwards; }

.btn-text:link, .btn-text:visited {
  font-size: 1.6rem;
  color: #202020;
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #202020;
  padding: 3px;
  transition: all 0.2; }

.btn-text:hover {
  background-color: #202020;
  color: #fff;
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); }

.btn-text:active {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  transform: translateY(0); }

.icon {
  color: #999;
  transition: color 1s; }
  .icon-behance:hover {
    color: #1769ff; }
  .icon-dribbble:hover {
    color: #ea4c89; }
  .icon-iceyisaak:hover {
    color: #f05e5e; }
  .icon-linkedin:hover {
    color: #0077b5; }

.cf-button {
  font-size: 1.6rem; }

.showcase {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%; }
  .showcase__heading {
    color: #fff; }
  .showcase__wrapper {
    display: flex;
    flex-flow: row;
    justify-content: center;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .showcase__wrapper {
        width: 80%; } }

.conclusion {
  width: 100%;
  padding: 2rem 0 5rem;
  font-size: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  color: #777; }
  @media only screen and (min-width: 62em) {
    .conclusion__item {
      flex: 0 0 calc(33.3333% - 1rem); } }
  .conclusion__heading {
    color: #999; }
  .conclusion__text {
    padding: 1rem 2rem 1rem; }
  .conclusion__cta--hire-me {
    background: #fff;
    text-align: center;
    padding: 3rem 3rem 5rem;
    width: 80%; }
    @media only screen and (min-width: 48em) {
      .conclusion__cta--hire-me {
        padding: 3rem 12rem 5rem; } }
    @media only screen and (min-width: 62em) {
      .conclusion__cta--hire-me {
        padding: 3rem 10rem 5rem; } }

.challenges {
  width: 90%;
  color: #f7f7f7; }
  .challenges__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .challenges__wrapper {
        flex-flow: row;
        width: 101%; } }
  .challenges__heading {
    color: #f7f7f7; }
  .challenges__item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    display: flex;
    flex-flow: column wrap;
    flex: 0 0 calc(33.3333% - 1rem);
    transition: box-shadow 0.3s ease-in-out;
    position: relative; }
    .challenges__item:hover {
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }
    @media only screen and (min-width: 62em) {
      .challenges__item {
        flex: 0 0 calc(33.3333% - 0.5rem); } }
    @media only screen and (min-width: 62em) {
      .challenges__item {
        flex: 0 0 calc(33.3333% - 1rem); } }
  .challenges .item-1 {
    background: #1ba955; }
  .challenges .item-2 {
    background: #b24141; }
  .challenges .item-3 {
    background: #111111; }
  .challenges .item__header {
    display: flex;
    flex-flow: nowrap;
    justify-content: center;
    padding: 3rem; }
  .challenges .item__body {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    flex: 1 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: #999; }
    .challenges .item__body-text {
      border-bottom: 0.1rem solid #eee; }
  .challenges .item__heading {
    color: #f7f7f7; }

.approach {
  display: flex;
  flex-flow: row wrap;
  justify-content: center; }
  .approach__img {
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .approach__img {
        width: 50%; } }

.image__wrapper {
  width: 100%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-content: space-between; }
  @media only screen and (min-width: 48em) {
    .image__wrapper {
      flex-flow: row wrap; } }

.image__item--s {
  width: 100%;
  padding: 1rem 1rem 1rem; }
  @media only screen and (min-width: 48em) {
    .image__item--s {
      width: 45%; } }
  @media only screen and (min-width: 62em) {
    .image__item--s {
      width: 100%; } }

.image__item--m {
  width: 100%;
  padding: 1rem 1rem; }
  @media only screen and (min-width: 48em) {
    .image__item--m {
      width: 45%; } }
  @media only screen and (min-width: 62em) {
    .image__item--m {
      width: 30%; } }

.image__item--l {
  width: 100%;
  padding: 1rem 1rem; }
  @media only screen and (min-width: 48em) {
    .image__item--l {
      width: 80%; } }
  @media only screen and (min-width: 62em) {
    .image__item--l {
      width: 70%; } }

.discover {
  width: 90%;
  color: #f7f7f7; }
  .discover__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .discover__wrapper {
        flex-flow: row;
        width: 101%; } }
  .discover__heading {
    color: #f7f7f7; }
  .discover__item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    display: flex;
    flex-flow: column wrap;
    flex: 0 0 calc(33.3333% - 1rem);
    transition: box-shadow 0.3s ease-in-out;
    position: relative; }
    .discover__item:hover {
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }
    @media only screen and (min-width: 62em) {
      .discover__item {
        flex: 0 0 calc(33.3333% - 0.5rem); } }
    @media only screen and (min-width: 62em) {
      .discover__item {
        flex: 0 0 calc(33.3333% - 1rem); } }
  .discover .item-1 {
    background: #1ba955; }
  .discover .item-2 {
    background: #b24141; }
  .discover .item-3 {
    background: #111111; }
  .discover .item__header {
    display: flex;
    flex-flow: nowrap;
    justify-content: center;
    padding: 3rem; }
  .discover .item__body {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    flex: 1 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: #999; }
    .discover .item__body-text {
      border-bottom: 0.1rem solid #eee; }
  .discover .item__heading {
    color: #f7f7f7; }

.overview {
  padding-bottom: 10rem;
  width: 100%; }
  .overview__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 62em) {
      .overview__wrapper {
        justify-content: center;
        flex-flow: row; } }
  .overview__item {
    margin-bottom: 2rem;
    display: flex;
    flex-flow: column wrap; }
    @media only screen and (min-width: 62em) {
      .overview__item {
        flex-flow: row; } }
  .overview__info {
    display: flex;
    flex-flow: column wrap;
    padding: 5rem 2rem 3rem;
    flex: 1;
    justify-content: center;
    align-items: center;
    text-align: center; }
    .overview__info--icon {
      font-size: 2.5rem;
      margin-bottom: 2rem; }
    .overview__info--sub {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between;
      margin-bottom: 1rem; }
    .overview__info-text {
      font-size: 1.6rem;
      flex: 1; }

.overview-wrapper {
  width: 100%;
  display: flex;
  flex-flow: column;
  align-items: center;
  padding-bottom: 3rem; }
  .overview-wrapper .caption {
    font-size: 1.6rem;
    padding-top: 0; }

.background-wrapper {
  display: flex; }

.background-item-a {
  flex: 1 0 auto; }

.devise {
  width: 90%;
  color: #f7f7f7; }
  .devise__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .devise__wrapper {
        flex-flow: row;
        width: 101%; } }
  .devise__heading {
    color: #f7f7f7; }
  .devise__item {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    background: #fff;
    display: flex;
    flex-flow: column wrap;
    flex: 0 0 calc(33.3333% - 1rem);
    transition: box-shadow 0.3s ease-in-out;
    position: relative; }
    .devise__item:hover {
      box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.2); }
    @media only screen and (min-width: 62em) {
      .devise__item {
        flex: 0 0 calc(33.3333% - 0.5rem); } }
    @media only screen and (min-width: 62em) {
      .devise__item {
        flex: 0 0 calc(33.3333% - 1rem); } }
  .devise .item-1 {
    background: #1ba955; }
  .devise .item-2 {
    background: #b24141; }
  .devise .item-3 {
    background: #111111; }
  .devise .item__header {
    display: flex;
    flex-flow: nowrap;
    justify-content: center;
    padding: 3rem; }
  .devise .item__body {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
    flex: 1 0 auto;
    text-align: center;
    font-size: 1.2rem;
    color: #999; }
    .devise .item__body-text {
      border-bottom: 0.1rem solid #eee; }
  .devise .item__heading {
    color: #f7f7f7; }

.deliver {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  width: 100%; }
  .deliver__wrapper {
    display: flex;
    flex-flow: row;
    justify-content: center;
    width: 100%; }
    @media only screen and (min-width: 48em) {
      .deliver__wrapper {
        width: 80%; } }

.result {
  width: 100%;
  font-size: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  color: #777; }
  .result__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 62em) {
      .result__wrapper {
        justify-content: center;
        flex-flow: row; } }
  @media only screen and (min-width: 62em) {
    .result__item {
      flex: 0 0 calc(33.3333% - 1rem); } }
  .result__heading {
    color: #999; }
  .result__text {
    padding: 1rem 2rem 1rem; }
  .result__cta--hire-me {
    background: #fff;
    text-align: center;
    padding: 3rem 3rem 5rem;
    width: 80%; }
    @media only screen and (min-width: 48em) {
      .result__cta--hire-me {
        padding: 3rem 12rem 5rem; } }
    @media only screen and (min-width: 62em) {
      .result__cta--hire-me {
        padding: 3rem 10rem 5rem; } }

.cta {
  width: 100%;
  font-size: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  color: #777; }
  .cta__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    align-content: space-around;
    width: 100%; }
    @media only screen and (min-width: 62em) {
      .cta__wrapper {
        justify-content: center;
        flex-flow: row; } }
  @media only screen and (min-width: 62em) {
    .cta__item {
      flex: 0 0 calc(33.3333% - 1rem); } }
  .cta__heading {
    color: #999; }
  .cta__text {
    padding: 1rem 2rem 1rem; }
  .cta__control {
    display: flex;
    flex-flow: row wrap;
    width: 100%; }
    @media only screen and (min-width: 30em) {
      .cta__control {
        width: 45rem; } }
    @media only screen and (min-width: 48em) {
      .cta__control {
        align-content: flex-start;
        width: 100%; } }
    @media only screen and (min-width: 48em) {
      .cta__control .cta-btn {
        flex: 1 0 auto; } }
  .cta__cta--hire-me {
    background: #fff;
    text-align: center;
    padding: 3rem 3rem 5rem;
    width: 80%; }
    @media only screen and (min-width: 48em) {
      .cta__cta--hire-me {
        padding: 3rem 12rem 5rem; } }
    @media only screen and (min-width: 62em) {
      .cta__cta--hire-me {
        padding: 3rem 10rem 5rem; } }

.footer {
  background: #202020;
  font-size: 1.4rem;
  color: #c9c9c9;
  height: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center; }
  .footer__logo {
    width: 50%; }
  .footer__wrapper {
    padding: 5rem 0 3rem; }
    @media only screen and (min-width: 48em) {
      .footer__wrapper {
        display: flex;
        flex-flow: row wrap;
        width: 100%;
        justify-content: space-between; } }
  .footer__item {
    flex: 0 0 calc(50% - 1rem);
    display: flex;
    flex-flow: column;
    align-items: center;
    background: transparent;
    padding: 2rem 5rem;
    margin: 4rem 0;
    position: relative; }
    @media only screen and (min-width: 30em) {
      .footer__item {
        padding: 2rem 8rem; } }
    @media only screen and (min-width: 48em) {
      .footer__item {
        padding: 2rem 4rem;
        margin: 0; } }
    @media only screen and (min-width: 62em) {
      .footer__item {
        padding: 2rem 0; } }
    .footer__item .item__heading {
      font-weight: 600;
      font-size: 2rem; }
    .footer__item .item__body {
      display: flex;
      flex-flow: column;
      width: 100%;
      height: 100%;
      align-items: center; }
    .footer__item .item__section {
      display: flex;
      margin: 0.5rem 0;
      width: 80%; }
    .footer__item .item__link {
      cursor: pointer; }
    .footer__item .item__icon {
      padding-top: 0.5rem;
      margin-right: 4rem; }
    .footer__item .item__social-icons {
      display: flex;
      flex-flow: row;
      justify-content: space-around;
      width: 100%;
      font-size: 2rem;
      margin-top: 2rem; }
  .footer__map {
    width: 100%; }
  .footer__copyright {
    width: 100%;
    text-align: center;
    margin: 2rem auto 1rem; }

.header,
.main-content,
.footer {
  max-width: 100vw; }

.header {
  min-height: 20vh;
  max-width: 100vw;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  overflow: hidden; }
  .header__cover-image {
    width: 100%; }
  .header__wrapper {
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    background: #f7f7f7; }
    @media only screen and (min-width: 62em) {
      .header__wrapper {
        justify-content: center; } }
  .header__welcome {
    border: none;
    display: flex;
    flex-flow: column wrap;
    justify-content: center;
    padding: 4rem 5% 3rem;
    background-color: #f7f7f7; }
    @media only screen and (min-width: 30em) {
      .header__welcome {
        padding: 8rem 10% 3rem; } }
    @media only screen and (min-width: 48em) {
      .header__welcome {
        border-radius: 1.5rem;
        padding: 10rem 15% 3rem; } }
    @media only screen and (min-width: 62em) {
      .header__welcome {
        padding: 10rem 25% 5rem; } }
    @media only screen and (min-width: 75em) {
      .header__welcome {
        padding: 10rem 25% 8rem; } }
  .header__heading {
    text-align: center; }
    @media only screen and (min-width: 62em) {
      .header__heading {
        text-align: left; } }
  .header__logo {
    font-size: 1rem;
    top: 3rem;
    left: 3rem;
    max-width: 100vw;
    position: absolute;
    display: inline-block; }
    @media only screen and (min-width: 30em) {
      .header__logo {
        font-size: 1.5rem;
        padding-bottom: 1rem;
        left: 3.5rem; } }
    @media only screen and (min-width: 48em) {
      .header__logo {
        font-size: 2rem; } }
    @media only screen and (min-width: 62em) {
      .header__logo {
        font-size: 1.5rem; } }
  .header__cta {
    margin-top: 2rem; }
    @media only screen and (min-width: 62em) {
      .header__cta {
        width: 80%; } }
    .header__cta-wrapper {
      display: flex;
      flex-flow: column;
      justify-content: flex-start; }
      @media only screen and (min-width: 62em) {
        .header__cta-wrapper {
          flex-flow: row; } }

.navbar {
  position: fixed;
  right: 0rem;
  z-index: 10;
  /* navigation ends*/ }
  .navbar .menu-icon__wrapper {
    display: inline-block; }
  .navbar .menu-icon {
    z-index: 11;
    top: 5rem;
    right: 3rem;
    cursor: pointer;
    position: absolute; }
    .navbar .menu-icon .line {
      height: 0.2rem;
      width: 2.5rem;
      background-color: #333;
      margin-bottom: 0.6rem; }
      .navbar .menu-icon .line-1, .navbar .menu-icon .line-3 {
        transition: all 0.4s; }
  .navbar .nav-menu {
    position: fixed;
    right: -40rem;
    top: 0;
    width: 30rem;
    height: 100vh;
    background: linear-gradient(to top, #111111, rgba(17, 17, 17, 0.8));
    z-index: 5;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    transition: right 0.8s cubic-bezier(1, 0, 0, 1); }
    @media only screen and (min-width: 30em) {
      .navbar .nav-menu {
        width: 40rem; } }
    .navbar .nav-menu__header {
      padding-top: 3rem;
      display: flex;
      flex-flow: row wrap;
      justify-content: center;
      align-items: center; }
    .navbar .nav-menu__heading {
      align-self: center;
      font-size: 3.5rem;
      font-weight: 800;
      letter-spacing: 0.2rem;
      color: #fff;
      text-align: center; }
    .navbar .nav-menu__list {
      list-style: none;
      padding: 0;
      height: 28rem;
      display: flex;
      flex-flow: column;
      justify-content: space-between;
      align-items: center; }
    .navbar .nav-menu__item {
      position: relative; }
    .navbar .nav-menu__link {
      color: #fff;
      font-size: 1.6rem;
      font-weight: 400;
      letter-spacing: 0.1rem;
      text-transform: uppercase;
      text-decoration: none;
      transition: color 0.5s; }
      .navbar .nav-menu__link::before {
        content: "";
        width: 0rem;
        height: 0.1rem;
        background: #d8b617;
        position: absolute;
        top: 1rem;
        left: -4rem;
        transition: width 0.5s cubic-bezier(1, 0, 0, 1); }
      .navbar .nav-menu__link::after {
        content: "";
        width: 0rem;
        height: 0.1rem;
        background: #d8b617;
        position: absolute;
        top: 1rem;
        right: -4rem;
        transition: width 0.5s cubic-bezier(1, 0, 0, 1); }
      .navbar .nav-menu__link:hover {
        color: #d8b617; }
        .navbar .nav-menu__link:hover::before, .navbar .nav-menu__link:hover::after {
          width: 3rem; }
  .navbar .copyright {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1.5rem; }
  .navbar .checkbox:checked ~ .nav-menu {
    right: 0rem;
    top: 0; }
  .navbar .checkbox:checked ~ .menu-icon__wrapper .line-1 {
    transform: rotate(-405deg) translate(-5px, 6px);
    width: 2.5rem;
    background-color: #f7f7f7; }
    @media only screen and (min-width: 30em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-1 {
        transform: rotate(-405deg) translate(-3px, 6px);
        width: 3rem; } }
    @media only screen and (min-width: 48em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-1 {
        transform: rotate(-405deg) translate(-3px, 6px);
        width: 3rem; } }
    @media only screen and (min-width: 62em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-1 {
        transform: rotate(-405deg) translate(-6px, 6px); } }
  .navbar .checkbox:checked ~ .menu-icon__wrapper .line-2 {
    opacity: 0; }
  .navbar .checkbox:checked ~ .menu-icon__wrapper .line-3 {
    transform: rotate(405deg) translate(-5px, -6px);
    width: 2.5rem;
    background-color: #f7f7f7; }
    @media only screen and (min-width: 30em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-3 {
        transform: rotate(405deg) translate(-4px, -7px);
        width: 3rem; } }
    @media only screen and (min-width: 48em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-3 {
        transform: rotate(405deg) translate(-3px, -6px);
        width: 3rem; } }
    @media only screen and (min-width: 62em) {
      .navbar .checkbox:checked ~ .menu-icon__wrapper .line-3 {
        transform: rotate(405deg) translate(-8px, -7px); } }

.section__overview {
  background: #f7f7f7;
  max-width: 100vw;
  padding: 10rem 0 5rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__discover {
  background: #777;
  color: #f7f7f7;
  max-width: 100vw;
  min-height: 100vh;
  padding: 20rem 0 10rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__define {
  background: #f7f7f7;
  max-width: 100vw;
  overflow: hidden;
  padding: 30rem 0 20rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__devise {
  background: #777;
  color: #f7f7f7;
  max-width: 100vw;
  min-height: 100vh;
  padding: 20rem 0 10rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__deliver {
  background: #f7f7f7;
  color: #999;
  padding: 20rem 0 10rem;
  max-width: 100vw;
  min-height: 100vh;
  padding: 10rem 0 10rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__result {
  background: #f7f7f7;
  color: #999;
  max-width: 100vw;
  min-height: 100vh;
  overflow: hidden;
  padding: 10rem 0 3rem;
  display: flex;
  align-items: center;
  flex-flow: column; }

.section__cta {
  background: #eee;
  color: #999;
  max-width: 100vw;
  min-height: 40vh;
  overflow: hidden;
  padding: 10rem 0 10rem;
  display: flex;
  align-items: center;
  flex-flow: column; }
