html {
  font-size: 150%;
}
body {
  -moz-hyphens: none;
  -ms-hyphens: none;
  hyphens: none;
}
.header {
  height: 85vh;
  min-height: 85vh;
}
.header-box {
  padding: 1.2em 0;
}
.logo,
.logo[src$=".svg"] {
  width: 230px;
}
.navmain {
  padding-bottom: 40px;
}
.text {
  max-width: 50%;
}

/* cols */
.cols {
  display: -webkit-flex;
  -webkit-align-items: flex-start;
  -webkit-justify-content: space-between;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  }
.cols-guttered {
  margin-left: -15px;
  margin-right: -15px;
}
.cols-guttered > * {
  padding-left: 15px;
  padding-right: 15px;
}
.cols-centered {
  -webkit-align-items: center;
  align-items: center;
}
.cols-end {
  -webkit-align-items: flex-end;
  align-items: flex-end;
}
.cols-wrap {
  -webkit-flex-wrap: wrap;
  flex-wrap: row wrap;
}
  .cols > * {
    -webkit-flex: 0 0 auto;
    flex: 0 0 auto;
    display: inline-block;
  }
  .cols-1-1 > * {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
    }
  .cols-1-1-1 > * {
    -webkit-flex-basis: 33.3333%;
    flex-basis: 33.3333%;
    }

  .cols-1-2 > *,
  .cols-2-1 > * {
    -webkit-flex-basis: 33.3333%;
    flex-basis: 33.3333%;
    }
  .cols-1-2 > * + *,
  .cols-2-1 > *:first-child {
    -webkit-flex-basis: 66.6666%;
    flex-basis: 66.6666%;
    }
  .cols-1-1-1-1 > * {
    -webkit-flex-basis: 25%;
    flex-basis: 25%;
    }
  .cols > .col-bottom {
    -webkit-align-self: flex-end;
    align-self: flex-end;
    }
  .cols > .col-centered {
    -webkit-align-self: center;
    align-self: center;
    }
  .col-order-1 {
    -webkit-order: 1;
    order: 1;
    }
  .col-order-2 {
    -webkit-order: 2;
    order: 2;
  }
  .col-order-3 {
    -webkit-order: 3;
    order: 3;
  }

  .col-max {
    -webkit-flex: 1 1 100%;
    flex: 1 1 100%;
  }

.aproject h3,
.slides img,
.slides p {
  padding-left: 0;
  padding-right: 0;
  width: 600px; 
}

@media (max-width: 1199px) {
  .cols {
    flex-wrap: wrap;
    row-gap: 30px;
  }
  .cols-1-1-1-1 > * {
    -webkit-flex-basis: 50%;
    flex-basis: 50%;
  }
}

@media (min-height: 1000px) {
  .aproject h3,
  .slides img,
  .slides p {
    width: 1000px; 
  }
}

@media (orientation: portrait) {
  .aproject h3,
  .slides img,
  .slides p {
    width: 100vh;
    max-width: 98vw; 
  }
}
