/* ==========================================================================

  iris.css

/* ========================================================================= */




/*-------------------------------- Animations ------------------------------*/
/* This page uses:
 *  - Scrollmagic, https://daneden.github.io/animate.css/
 *  - Animate CSS, which comes with a series of built-in css animations. 
 *    Reference: https://daneden.github.io/animate.css/
 * Note that links to both frameworks are included in the page header.
 *  
 */
 
.faded {  
    opacity: 0;
}

.invisible {
    visibility: hidden;
}

.paralax-bg {
    background-attachment: fixed;
}

/*-------------------------------- Colors ----------------------------------*/

  /* Teal */
  /* Teal */
 
  /* Blue */
  /* Blue */
 
  /* Purple */
  /* Purple */  
 
  /* Yellow */


/*-------------------------------- Intro -----------------------------------*/

.title-container {
  display: flex;
  width: 100%;
  justify-content: center;
  background-color: #5c2d6a;
  background-image: linear-gradient(to right,rgba(92,46,107,0) 0%,rgba(92,46,107,0.9) 50%,rgba(92,46,107,.90) 70%,rgba(92,46,107,0.6) 100%),url("https://www.bitovi.com/hubfs/case-study-iris/iris-bg.png"),url("https://www.bitovi.com/hubfs/case-study-iris/iris-bg-2.jpg");
  background-repeat: no-repeat,no-repeat,no-repeat;
  background-position: left top,center left,bottom right;    
  background-size: 100% 100%, auto 100%, auto 65%;  
  background-attachment: absolute;
  color: #fff;
  overflow: hidden;
  position: relative;
  padding-left: 20px;
  padding-right: 20px;
}
.title-intro {
  display: flex;
  width: 100%;
  max-width: 970px;
  padding-top: 80px;
}
.title-intro h1 {
  font-size: 6em;
  font-weight: 200;
  margin: 0;
  color: #FFF;
}
.title-intro h2 {
  margin: 0;
  margin-top: 40px;
  line-height: 1.5em;
  color: #FFF;
}
.title-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
  padding-right: 40px;
}

@media screen and (max-width: 768px) {
  .title-container {
    background-image: linear-gradient(to right,rgba(92,46,107,0) 20%,rgba(92,46,107,1) 100%),url("https://www.bitovi.com/hubfs/case-study-iris/iris-bg.png");
    background-repeat: no-repeat, no-repeat;
    background-position: top left, center center;
    background-size: auto auto, cover;
  }
  .title-intro {
    flex-direction: column;
    align-items: center;
  }
  .title-copy {
    padding-right: 0;
  }
}
/*-------------------------------- Summary    -------------------------------*/
.row-body.row-summary {
    padding-bottom: 40px;
}

.iris-logo {
    width: 150px;
    margin-bottom: 20px;
}

.light-bulb-container {
    text-align: center;
    color: #606B70;
    margin-top: 40px;
}
.light-bulb-icon-group {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 168px;
    height: 158px;
    text-align: center;
    position: relative;
    margin: 0 auto;
}
.light-bulb-icon-group .light-bulb-icon {
    fill: #7D8C93;
}
.light-bulb-halo-bg {
    stroke: #7D8C93;
    stroke-width: 5;
    stroke-linecap: round;
    position: absolute;
    top: 0;
    left: 0;
}
.light-bulb-halo-on {
    position: absolute;
    top: 0;
    left: 0;
    stroke-linecap: round;
}
.light-bulb-label {
    margin-top: 15px;
    line-height: 1.5;
}
.light-bulb-label:after {
    content: "Off";
    color: #7D8C93;
    display: block;
    font-style: italic;
    font-weight: 300;
}

/*
.light-bulb-icon--on .light-bulb-icon {
    border-width: 5px;
    border-color: #FFC107;   
    box-shadow: 0 0 15px #FFC107, inset 0 0 15px #FFC107;
    
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
transition: all 0.5s ease;

}*/

.light-bulb-icon--on .light-bulb-icon-group .light-bulb-icon {
    fill: #FFC107;
    fill-opacity: 0.8;
    
-webkit-transition: all 4s ease;
-moz-transition: all 4s ease;
-o-transition: all 4s ease;
-ms-transition: all 4s ease;
transition: all 4s ease;

}
.light-bulb-icon--on .light-bulb-icon-group .light-bulb-halo-on {
    stroke: #FFC107;
    stroke-width: 5;
}
.light-bulb-icon--on .light-bulb-icon-group .light-bulb-halo-on path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: dash 5s linear alternate infinite;
}

@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.light-bulb-icon--on .light-bulb-label:after {
   content: "80% Brightness"; 
}

/*-------------------------------- Lamps  -----------------------------------*/

.lamps-bg {
    background-image: url("/hubfs/case-study-iris/iris-lamps.jpg");
    background-color: #f3f0eb;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center top;
    padding-top: 100px;
    position: relative;
}
.lamps-overlay {
    background-color: #000;
    width: 100%;
    z-index: 1;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.7;
}
.lamps-bg--on .lamps-overlay {
    opacity: 0;
    
-webkit-transition: opacity 4s ease-out;
-moz-transition: opacity 4s ease-out;
-o-transition: opacity 4s ease-out;
-ms-transition: opacity 4s ease-out;
transition: opacity 4s ease-out;

}


/*-------------------------------- Open Source Quote -----------------------*/

.open-source-quote {
    background-image: url("https://www.bitovi.com/hubfs/case-study-iris/iris-open-source.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.open-source-quote blockquote {
    padding-bottom: 0;
    padding-top: 0;
    margin-bottom: 0;
    color: white;
    font-size: 26px;
}


/*-------------------------------- Docs & App Images -----------------------*/
.doc-app-images {
    display:flex;
    margin-bottom: 40px;
}
.doc-app-images img {
    box-shadow: -7px 0px 39px 0px rgba(0,0,0,0.3);
    height: 526px;
    border-radius: 4px;
}
.doc-app-images-col-2 {
    z-index: 1;
    margin-left: -7px;
}

/*-------------------------------- Devices Images  -------------------------*/
.row-bg {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  background: #23b9ab;
  background: linear-gradient(to bottom, rgba(40,154,205,1) 0%,rgba(35,185,171,1) 100%);
  position: absolute;
  z-index: -9;
  background-attachment: fixed;
}
.row-bg img {
  width: 100%;
  height: auto;
  filter: blur(40px);
  opacity: 0.5;
  transform: scale(1.2);
}
.row-dark {
  color: #fff;
}
.row-dark a,
.row-dark h3,
.primary-bg h3 {
   color: #fff; 
}

.image-container {
  box-shadow: inset 0 0 20px rgba(0,0,0,0.3);  
  margin-bottom: 50px;
  position: relative;
  width: 100%;
  height: 460px;
}
.image-container img {
    position: absolute;
}

.device-android {
    height: 140px;
    top: 0;
    left: 161px;
}
.device-iphone {
    height: 89px;
    top: 82px;
    left: 305px;
}
.device-ipad-horz {
    height: 160px;
    top: 0;
    right: 30px;
}
.device-ipad-vert {
    height: 297px;
    bottom: 0;
    left: 30px;
}
.device-desktop {
    height: 267px;
    bottom: 0;
    right: 20px;
}
#device-android {
    animation-delay: 0.2s;
}
#device-desktop {
    animation-delay: 1s;
}
#device-ipad-horz {
    animation-delay: 0.4s;
}
#device-ipad-vert {
    animation-delay: 0.7s;
}
/*-------------------------------- Flow Graphic -----------------------------*/
.flow-graphic {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.flow-graphic .box {
    border: 3px solid transparent;
    text-align: center;
    padding: 20px;
    line-height: 1.3;
    width: 240px;
    font-size: 22px;
    background: white;
}
.flow-graphic .box--1 {
    color: #1eab9e;
    border-color: #23b9ab;
    border-image-slice: 1;
}
.flow-graphic .box--2{
    color: #1eab9e;
    border-image: linear-gradient(to bottom, #23b9ab 0%, #289acd 100%);
    border-image-slice: 1;
}
.flow-graphic .box--3 {
    color: #1e89b9;
    border-color: #289acd;
}
.flow-graphic .box--4 {
    color: #9934B6;
    border-image: linear-gradient(to bottom, #289acd  0%, #9934B6 100%);
    border-image-slice: 1;
}

.flow-graphic .connector {
    height: 40px;
    width: 3px;
    position: relative;
    z-index: 1;
}
.flow-graphic .connector:before,
.flow-graphic .connector:after {
    content: "";
    position: absolute;
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    background-color: white;
    left: -6px;
}
.flow-graphic .connector:before {
    top: -8px;
}
.flow-graphic .connector:after {
    bottom: -8px;
}
.flow-graphic .connector-green {
    background-color: #23b9ab;
}
.flow-graphic .connector.connector-green:before,
.flow-graphic .connector.connector-green:after {
    border-color: #23b9ab;
}
.flow-graphic .connector-blue {
    background-color: #289acd;
}
.flow-graphic .connector.connector-blue:before,
.flow-graphic .connector.connector-blue:after {
    border-color: #289acd;
}

.flow-graphic .animate-box-1,
.flow-graphic .animate-box-2,
.flow-graphic .animate-box-3,
.flow-graphic .animate-box-4 {
   animation-duration: 1s;
}

.flow-graphic .animate-box-2 {
    animation-delay: 0.2s;
}
.flow-graphic .animate-box-3 {
    animation-delay: 0.4s;
}
.flow-graphic .animate-box-4 {
    animation-delay: 0.8s;
}

/*-------------------------------- Page Rows -------------------------------*/
.row-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-left: 20px;
  padding-right: 20px;
}
.row-container h3 {
  margin: 0;
  margin-bottom: 40px;
}
.row-container h4 {
  margin: 0;
  line-height: 1.6em;
  font-weight: 400;
}
.row-container p {
  margin-bottom: 40px;
}
.row-container p:last-child {
  margin-bottom: 0;
}
.dash-bg {
  position: relative;
}
.dash-bg:before {
  content: '';
  position: absolute;
  background: #000;
  top: 0;
  right: 40%;
  width: 100%;
  height: 70px;
  z-index: -9999;
  transform: rotate(-35deg);
}
.dash-bg:after {
  content: '';
  position: absolute;
  background: #ab1c1c;
  bottom: 0;
  left: 40%;
  width: 100%;
  height: 70px;
  z-index: -9999;
  transform: rotate(-35deg);
}

.row-body {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 970px;
  padding-top: 80px;
  padding-bottom: 80px;
}

.row-split {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
}
.row-body .row-content {
  display: flex;
  flex-direction: column;
  max-width: 70%;
  flex-basis: 70%;
  padding-right: 80px;
}
.row-body .row-img {
  display: flex;
  flex-direction: column;
  max-width: 30%;
  flex-basis: 30%;
  align-items: flex-end;
  justify-content: center;
}
.row-body .row-img img {
  max-width: 280px;
}
.row-body.row-closing {
    padding-bottom: 0;
}
#animate-screenshot {
    animation-duration: 2s;
}

@media screen and (max-width: 768px) {
  .row-split {
    flex-direction: column;
  }
  .row-body .row-content {
    flex-basis: 100%;
    max-width: 100%;
    padding-right: 0;
  }
  .row-body .row-img {
    flex-basis: 100%;
    max-width: 100%;
    align-items: center;
  }
}
/*-------------------------------- Background -----------------------------------*/
.gray-bg {
  background: #f2f2f2;
}
.primary-bg {
  background: #5c2d6a;
  color: #fff;
}
.gradient-bg {
  background: #f2f2f2;
  background: linear-gradient(to bottom, #f2f2f2 0%,#ffffff 100%);
}

p.web-container {
  position: relative;
}
p.web-container img {
  border-radius: 4px;
  width: 100%;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
p.web-container .top-image {
  position: absolute;
  right: -5%;
  bottom: 10%;
  width: 50%;
  height: auto;
}
p.image-container {
  display: flex;
  flex-direction: column;
  align-self: center;
  max-width: 600px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  overflow: hidden;
}
.bottom-line {
  border-bottom: 2px solid rgba(0,0,0,0.1);
  top: 1px;
}

#iris-casestudy .rounded-list li:before {
    background: #5c2d6a;
}




