@charset "utf-8";


section {

  font-weight: light;
}

h3 {
  font-family: nimbus-sans-extended, sans-serif;
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.double-image-description {
  text-transform: uppercase;
}

.btn {
  font-family: nimbus-sans-extended, sans-serif;
  font-weight: 900;
  font-size: 12px;
  box-sizing: content-box;
  padding: 16px 22px;
  background-color: white;
  color: black;
  text-transform: uppercase;
  border-radius: 0px;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin-top: 8px;
}

.row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}

.column {
  display: flex;
  flex-direction: column;
  flex-basis: 100%;
  overflow: hidden;
  color: white;
  background-color: black;
}

.first-column, .second-column {
  height: 500px;
  position: relative;
}

.fixed-column {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 100%;
  overflow: hidden;
  color: white;
  background-color: black;
  height: 500px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

.scroll-column {
  position: relative;
  color: black;
  display: flex;
  flex-direction: column;
  flex: 100%;
  overflow: hidden;
}

.scroll-column .content {
  padding: 30px;
  margin: 55px auto;
  max-width: 650px;
}

.background-image {
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: cover;
  background-position: center;
  transition: all 0.4s ease;
}

.background-image-single {
  height: 100%;
  width: 100%;
  position: absolute;
  background-size: cover;
  background-position: center top;
  transition: all 0.4s ease;
}

/*
.vertical {
  writing-mode: vertical-lr;
  text-orientation: upright;
  letter-spacing: 0.5em;
}

.top-left {
  position: absolute;
  top: 30px;
  left: 30px;
}
*/

.bottom-left {
  position: absolute;
  bottom: 30px;
  left: 30px;
}

.slide-body {
  font-size: 14px;
  line-height: 1.3;
  max-width: 280px;
  letter-spacing: 0.03em;
  max-height: 0px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.second-column:hover .background-image {
  transform: scale(1.2);
  opacity: 0.5;
}

.first-column:hover .background-image,
.first-column:hover .background-image-single {
  transform: scale(1.2);
  opacity: 0.5;
}

.second-column:hover .slide-body {
  max-height: 123px;
}

.first-column:hover .slide-body {
  max-height: 123px;
}

@media screen and (min-width: 800px) {
  .column {
    flex: 1;
  }
  
  .first-column, .second-column {
    height: 650px;
  }
}

@media screen and (min-width: 800px) {
  .fixed-column, .scroll-column {
    flex: 50%;
  }

  .fixed-column {
    position: -webkit-sticky;
    position: sticky;
    top: 80px;
    height: calc(100vh - 80px);
    height: -o-calc(100vh - 80px); /* opera */
    height: -webkit-calc(100vh - 80px); /* google, safari */
    height: -moz-calc(100vh - 80px); /* firefox */
  }
}

.about-text {
  text-transform: none;
}



/*
---------------------------------------------------------------------
PRODUCT TECH SPECS
---------------------------------------------------------------------
*/

.double-section-techspecs {
  display: flex;
  flex-wrap: wrap;
  background-color: #f9f9f9;
  padding: 35px;
}

.double-section-techspecs h3 {
  font-family: "DIN Next", sans-serif;
  font-size: 14px;
  letter-spacing: 1px;
}

.column-techspecs {
  flex: 1;
  padding: 120px 50px;
}

.color-bar {
  width: 27%;
  display: inline-block;
  border-top: solid 4px #cfcfcf;
  padding: 6px 0;
}

.color-bar-select {
  border-top: solid 4px #2bcbd9;
}

.middle {
  margin: 0 25px;
}

.inline-tab {
  display: inline-block;
}

.inline-tab-2 {
  margin-left: 65px;
}

.inline-tab-3 {
  float: right;
}

.tech-weight {
  font-size: 50px;
  font-weight: light;
  margin: 0;
}

.tech-super {
  vertical-align: top;
}

.tech-unit {
  margin: 0;
}

@media screen and (max-width: 1000px) {
  .double-section-techspecs {
    flex-direction: column;
    padding: 0;
    margin-bottom: 60px;
  }
  
  .column-techspecs {
    padding: 60px 25px;
  }
  
  .middle {
    margin: 0 6px;
  }
  
  .color-bar {
  	width: 31%;
  }
}