@-webkit-keyframes example {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes example {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.notificationPane {
  display: none;
  z-index: 99;
  position: fixed;
  top: 20%;
  right: 0;
  max-width: 50%;
  border-left: 5px solid #cd5360;
  background: #f5f3f0;
  padding: 0.1rem 0.5rem;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-animation-name: example;
  animation-name: example;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.notificationPane h1,
.notificationPane h2,
.notificationPane h3,
.notificationPane h4,
.notificationPane h5,
.notificationPane h6 {
  text-align: left;
  font-weight: 100;
  color: #438496;
  font-size: 1rem;
  margin-bottom: 10px;
}

.notification-close {
  font-size: 0.8rem;
  cursor: pointer;
  color: #333;
  text-align: right;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.notification-close:hover {
  color: #cd5360;
}

/*a:focus {
  outline: 3px solid #cd5360 !important;
}*/

.bannerWrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #252525;
  height: 500px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}

.bannerWrapper p {
  color: #fdfdfd;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 1rem;
}

.bannerWrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0.2;
}

.fix-width {
  max-width: 1300px;
  margin: 0 auto;
}

/*main {
  padding-top: 50px;
}

main h2 {
  text-transform: uppercase;
  color: #b37d4e;
  font-size: 2rem;
  margin-bottom: 2rem;
}*/

.isd-items,
.isd-items-invert {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.isd-items h3 {
  text-align: center;
}

.isd-item-box {
  cursor: pointer;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #fdfdfd;
  border-top: 4px solid #b37d4e;
  margin: 10px;
  padding: 10px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.7s;
  transition: all 0.7s;
}

.isd-item-box:hover {
  border-color: #cd5360;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1), 0 3px 8px rgba(0, 0, 0, 0.2);
}

.isd-item-box a {
  color: #333;
}

.isd-item-box .fa {
  text-align: center;
  font-size: 1.5rem;
  display: block;
  color: #438496;
}

.isd-items-invert .isd-item-box {
  background: #f5f3f0;
}

.isd-items-invert .isd-item-box {
  padding: 0;
}

.isd-items-invert .isd-items-text {
  padding: 10px;
}

.isd-items-invert .isd-item-box img {
  width: 100%;
}

.contentPane .DnnModule:nth-child(even) {
  background: #fdfdfd;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  padding: 1rem;
  margin: 50px 0;
}

/* Success Stories */

#isd-stories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-shadow: 0px -2px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0px -2px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  height: 500px;
}

.isd-story-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.isd-story-wrapper.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.isd-story {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.isd-story img {
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  opacity: 0.2;
}