@import url('https://fonts.googleapis.com/css?family=Istok+Web:400,700');

.homepage {
  font-family: 'Istok Web', sans-serif;
  font-size: 18px;
  overflow-x: hidden;
}

.homepage a:not(.button):hover {
  color: #20A0DB;
}

.banner-wrapper {
  position: relative;
}

.banner-wrapper .slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: 10px;
}

.banner-wrapper .slider-arrow img {
  height: 30px;
  width: auto;
}

.banner-wrapper .slider-arrow.prev {
  left: 10px;
}

.banner-wrapper .slider-arrow.next {
  right: 10px;
}


/* banner/slider styles */
.banner {
  min-width: 960px;
  width: 100%;
  height: 400px;
  background-color: #20A0DB;
}

.banner .slide .image {
  position: relative;
  height: 400px;
  background: #ddd;
  width: 63%;
  float: left;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.banner .slide .text {
  position: relative;
  height: 400px;
  width: 37%;
  /*max-width: 550px;*/
  float: left;
  padding: 50px;
  box-sizing: border-box;
  z-index: 2;

  /* flexbox to display content at bottom */
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-flow: row wrap;
    -ms-flex-wrap: wrap;
  flex-wrap: wrap;
    -webkit-align-items: flex-end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.banner .slide .text .text-inner {
  padding-right: 30%;
}

.banner .slide .text p {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 30px;
  color: #fff;
  /*max-width: 256px;*/
}

.banner .slide .text::after {
  position: absolute;
  right: 20%;
  top: 0;
  content: " ";
  background-color: #49C8F5;
  opacity: .5;
  height: 400px;
    width: 100%;
    transform: skewX(-40deg);
    z-index: -1;
    overflow: hidden;
}

.banner .button {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  margin-top: 8px;
  font-size: 16px;
  padding: 6px 16px 4px;
}

.banner .button:hover, .banner .button:active {
  color: #49C8F5;
  background-color: #fff;
}

.banner .ie-badge {
  position: absolute;
  left: 0;
  top: 40px;
  background-color: #fff;
  padding: 10px 25px;
  box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,0.6);
    -o-box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.banner .ie-badge img {
  width: 65px;
  height: 65px;
  display: block;
  margin: 0 auto;
}

/* individual slide styles */
.banner .slide.nurses {
  font-size: 28px;
    line-height: 1.25em;
}

.banner .slide .text.small p{
  font-size: 22px;
    line-height: 1.25;
}


/* buttons */
 .button {
  line-height: 1;
  padding: 4px 14px;
 }

/* generic container styles */
.inner {
    width: 100%;
    min-width: 960px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0px;
}

.third {
  width: 33%;
  float: left;
  margin: 0;
  padding: 0 30px;
  box-sizing: border-box;
  text-align: center;
 }

 /* home-feature */
.home-feature {
  color: #fff;
  padding: 20px 0 35px;
  margin-bottom: 30px;
}

.home-feature .inner {
  width: 90%;
  max-width: none;

  /* flexbox to make all .third same height */
  display: -webkit-box;
  display: -moz-box;
  display: box;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  box-lines: multiple;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -moz-box-align: stretch;
  box-align: stretch;
  -webkit-align-items: stretch;
  -moz-align-items: stretch;
  -ms-align-items: stretch;
  -o-align-items: stretch;
  align-items: stretch;
  -ms-flex-align: stretch;
}

.home-feature .third {
  width: calc(33% - 40px);
  box-sizing: border-box;
  position: relative;
  padding: 13% 20px 20px;
  margin: 0 20px;
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 0;
}

.home-feature .third .bg {
  background-size: cover;
  background-position: center;
  position: absolute;
  content: '';
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

.home-feature .third .bg:after {
  content: '';
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,.4);
  pointer-events: none;
  transition: all 0.5s ease;
}

.home-feature .third:hover .bg:after {
  background-color: rgba(0,0,0,.2);
}

.home-feature .content {
  position: absolute;
  bottom: 20px;
}

.home-feature h2 {
  font-size: 22px;
  padding: 0;
  margin: 0;
}

.home-feature p {
  font-size: 14px;
  line-height: 21px;
  margin: 0 0 10px;

}

.home-feature .button {
  background-color: #49C8F5;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  padding: 6px 16px 4px;
}

.home-feature .button:hover, .home-feature .button:active {
  background-color: #fff;
  color: #49C8F5;
}

.home-feature .icon {
  width: 90px;
  height: 90px;
}

/* white container */
.white-container {
  text-align: center;
}

.white-container .inner {
  padding: 30px 60px;
}

.white-container h1 {
  color: #20A0DB;
  font-size: 36px;
  margin-bottom: 14px;
}

.white-container p {
  color: #6D6E71;
  margin-bottom: 18px;
  line-height: 30px;
}

.white-container .button {
  color: #6D6E71;
  border: 2px solid #6D6E71;
  text-decoration: none;
  text-align: center;
    padding: 3px 16px 1px;
}

.white-container .button:hover, .white-container .button:active {
  background-color: #6D6E71;
  color: #fff;
}
