:root {
    /* color */
    --primary-background: #ffffff;
    --secondary-background: #fafafa;
    --dark-background: #EEEEEE;
    --hover-background: rgb(248, 248, 248);
    --primary-color: rgb(70, 70, 70);
    --secondary-color: #00823B;
    --interactive-color: rgb(0, 122, 255);  
    --interactive-color--dark: rgb(0, 78, 161);  
    --primary-button: rgb(241, 241, 241);
    --primary-text: #52565B;
    --primary-text-invert: #ffffff;
    --text-titles: #202124;
    --secondary-text: rgb(126, 126, 126);
    --divider-color: #e6e6e6;
    --nav-color: #000000;
    --meta: rgb(144, 144, 144);
    --body: rgb(119, 119, 119);

    /* typography */
    --step-up-5: 1.9em;
    --step-up-4: 1.7511em;
    --step-up-3: 1.5157em;
    --step-up-2: 1.3195em;
    --step-up-1: 1.1487em;
    --step-up-0: 1em;
    --step-down-1: 0.9em;
    --step-down-2: 0.7em;

    /* spacing */
    --space-x0: 0.1em;
    --space-x1: 0.5em;
    --space-x2: 1.0em;
    --space-x3: 1.5em;
    --space-x4: 2.0em;
    --space-x5: 2.5em;
    --space-x6: 3.0em;

  }

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    font-family: "Poppins","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
    line-height: 1.4;
  }
  


  @media (max-width: 600px) {
    html {
      font-size: 16px;
    }
  }
  
  @media (min-width: 600px) {
    html {
      font-size: 16px;
    }
  }
  
  @media (min-width: 1200px) {
    html {
      font-size: 20px;
    }
  }

html, body {
  width: 100%;
  height: 100%;
  background-color: var(--primary-background);
  color: var(--primary-text);
}


  /* Layout */
.container {
  background-color: #fafafa;
}

.page {
  padding-top: 64px;
  max-width: 1440px;
  margin: auto;

    -webkit-animation: fadein 0.5s; /* Safari, Chrome and Opera > 12.1 */
       -moz-animation: fadein 0.5s; /* Firefox < 16 */
        -ms-animation: fadein 0.5s; /* Internet Explorer */
         -o-animation: fadein 0.5s; /* Opera < 12.1 */
            animation: fadein 0.5s;
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media (max-width: 600px) {
  .page {
    padding-left: 1em;
    padding-right: 1em;
  }
}

@media (min-width: 600px) {
  .page {
    padding-left: 2em;
    padding-right: 2em;
  }
}



/* Text */
h1, h2, h3 {
  color: var(--text-titles);
}

h1 {
  font-size: var(--step-up-5);
  font-weight: 700;
}

h2 {
  font-size: var(--step-up-2);
  font-weight: 600;
  padding-bottom: var(--space-x0);
}

h3 {
  font-size: var(--step-up-0);
  font-weight: 600;
  margin-bottom: var(--space-x0);
}

.main-text {
  max-width: 600px;
}

p {
  line-height: 1.4;
  margin-bottom: var(--space-x2);
}

.quote {
  border-left: solid 4px var(--primary-color);
  padding-left: var(--space-x1);
  margin-top: var(--space-x3);
}



nav {
  display: flex;
  background-color: var(--primary-background);
  height: 64px;
  -webkit-box-shadow: 0 0px 2px 2px rgba(153, 153, 153, 0.15);
    -moz-box-shadow: 0 0px 2px 2px rgba(153, 153, 153, 0.15);
    box-shadow: 0 0px 2px 2px rgba(153, 153, 153, 0.15);
  position: fixed;
  width: 100%;
  z-index: 1;
}

.nav__main{
  display: inline-flex;
  align-items: center;
  padding-left: 1em;
  padding-right: 1em;
  justify-content: space-between;
  max-width: 1440px;
  width: 100%;
  margin: auto;
}

@media (min-width: 600px) {
  .nav__main {
    padding-left: 2em;
    padding-right: 2em;
  }
}

.nav__logo {
  font-size: var(--step-up-0);
  font-weight: 600;
  text-decoration: none;
  background-image: url(img/masae-logo.svg);
  background-size: 120px 64px;
  height: 64px;
  width: 120px;
}








/* Lists */
li {
  padding-bottom: var(--space-x1);
}

nav li {
  padding-bottom: 0;
}


a {
  list-style: none;
  text-decoration: none;
  color: var(--interactive-color););
}

nav ul, nav ul a {
  display: flex;
  text-decoration: none;
  list-style: none;
  font-size: var(--step-down-1);
  color: var(--primary-color);
}

@media (max-width: 600px) {
  .nav ul, nav ul a {
    margin-left: 2em;
  }
}

@media (min-width: 600px) {
  .nav ul, nav ul a {
    margin-left: 2em;
  }
}

nav ul li a {
  position: relative;
  text-decoration: none;
}



header {
  margin-bottom: var(--space-x4);
}


section {
  padding-bottom: var(--space-x6);
}

.section--inner {
  max-width: 740px;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 600px) {
  .section--inner {
    padding: 0;
  }
}


.section__services {
  display: flex;
  justify-content: space-between;
}

.section__services p {
margin-bottom: 0;
}



.divider {
  height: 1px;
  background-color:  #cccccc;
  margin-bottom: var(--space-x3);
}

footer {
  display: flex;
  padding-top: 1em;
  padding-bottom: 6em;
  font-size: var(--step-down-2);
  border-top: #ccc 1px solid;
  margin-top: var(--space-x6);
  justify-content: space-between;
}

footer a {
  text-decoration: underline;
  color: var(--primary-color);
}

.two-col {
  display: block;
  flex-direction:row;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: auto;
}

.two-col > div {
    flex: 1;
    padding:0 15px;
}

@media (max-width: 600px) {
  .two-col > div {
    flex-basis: auto;
  }
}

.four-col {
  display: flex;
  flex-direction:row;
  margin:0 -15px;
  justify-content: space-evenly;
}

 /* Buttons */
 .button--primary {
  background-color: var(--interactive-color);
  color: var(--primary-text-invert);
  padding: 0.5em;
  border-radius: 4px;
}

.button--primary:hover {
  background-color: var(--interactive-color--dark);
  color: #fff;
  padding: 0.5em;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.button:hover {
  background-color: var(--hover-background);
  }

.button-label {
  padding: var(--space-x1);
}

.button--nav {
  position: fixed;
  top: 5em;
  z-index: 100;
}


.container__statistic {
  display: flex;
  justify-content: space-evenly;
  margin-bottom: var(--space-x6);
}

.container__statistic__item {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px;
  width: 42%;
}

.container__statistic__item--top {
  padding: 1em;
}

.container__statistic__item--bottom {
  box-shadow: rgba(0, 0, 0, 0.06) 0px 2px 4px 0px;
  padding: 0;
}

.statistic-image {
  width: 100%;
  display: flex;
}

.statistic-number {

}

.statistic-description {
  margin: 0;
  padding-bottom: 1em;
}

.statistic-date {
  font-size: var(--step-down-2);
  margin: 0;
}


#square {
  width: 100px;
  height: 100px;
  background: #2196F3;
}

#circle {
  width: 100px;
  height: 100px;
  background: #F44336;
  border-radius: 50%
}

#triangle {
  width: 0;
  height: 0;
  border-left: 50px solid transparent;
  border-right: 50px solid transparent;
  border-bottom: 100px solid #26A69A;
}

.shape {
  margin: 1em;
}

.section__services__item {
  flex-basis: 31%;
}


.tile_image {
  display: flex;
  border-style: none;
  width: 100%;
  background-color: grey;
  margin-bottom: var(--space-x2);
}

.button--secondary {
  border: solid 1px rgb(0, 122, 255);
  color: rgb(0, 122, 255);
  padding: 0.5em;
  border-radius: 4px;
}

.button--secondary:hover {
  background-color: rgb(0, 122, 255);
  color: #fff;
  padding: 0.5em;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
}

.chip-container {
  display: inline-flex;
  align-items: center;
  background-color: rgb(236, 236, 236);
  border-radius: 2em;
  padding: 0.3em;
  padding-right: 0.5em;
  margin-right: 0.2em;
  margin-top: 0.4em;
  

}

.chip-image {
  height: 1.5em;
  width: 1.5em;
  border-radius: 1em;
  background-color: rgb(184, 184, 184);
  margin-right: 0.3em;
}

.chip-label {
  font-size: var(--step-down-1);

}

.shapes {
  display: flex;
}

.cloudera {
  background-image: url("img/cloudera.png");
  background-size: contain;
}

.kafka {
  background-image: url("img/kafka.png");
  background-size: contain;
}

.airflow {
  background-image: url("img/airflow.png");
  background-size: contain;
}

.docker {
  background-image: url("img/docker.png");
  background-size: contain;
}

.kubernetes {
  background-image: url("img/kubernetes.png");
  background-size: contain;
}

.terraform {
  background-image: url("img/terraform.png");
  background-size: contain;
}

.ansible {
  background-image: url("img/ansible.png");
  background-size: contain;
}

.jenkins {
  background-image: url("img/jenkins.png");
  background-size: contain;
}

.python {
  background-image: url("img/python.png");
  background-size: contain;
}


.scala {
  background-image: url("img/scala.png");
  background-size: contain;
}

.aws {
  background-image: url("img/aws.png");
  background-size: contain;
}

.gcp {
  background-image: url("img/gcp.png");
  background-size: contain;
}

.splunk {
  background-image: url("img/splunk.png");
  background-size: contain;
}

.elasticsearch {
  background-image: url("img/elasticsearch.png");
  background-size: contain;
}

.logstash {
  background-image: url("img/logstash.png");
  background-size: contain;
}

.kibana {
  background-image: url("img/kibana.png");
  background-size: contain;
}