/*********************************************Element level styling*************************************************/

html {
  width: 100%;
  height: 100%;
  font-family: 'Source Sans Pro', sans-serif;
}

body {
  width: 100%;
  height: 100%;
  color: #000
}

ul {
  list-style: none;
  margin:0;
  padding:0;
  margin:10px;
}

/**********************************************Imported styles overrides*************************************************/

.content-band {
  padding-top: 30px;
  padding-bottom:30px;
}

.content-band .section-body p {
  margin: 0
}

/**********************************************Reusable Styles*************************************************/

.text-accent {
  color: #24b1ca
}

.text-grey {
  color: #fff
}

.custom-list li:before {
  display:inline-block;
  width:0;
  height:0;
  border-top:solid transparent;
  border-bottom:solid transparent;
  border-left:solid #24b1ca;
  border-width:5px;
  content:' ';
  margin-right:5px;
}

/**********************************************Section level styling****************************************************/

.navbar-custom {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 110px;
  margin-bottom: 0;
  background-color:#24b1ca;
  color: white;
  border-color: #24b1ca;
  text-align: center;
  flex-shrink: 0;
}

.logo-container {
  padding: 1rem;
}

.contact-anchor {
  padding: 0 1rem;
}

.contact-anchor:hover {
  color:unset;
}

.contact-anchor:focus {
  color: unset;
  text-decoration: none;
}

.headline {
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-1-tagline {
  font-weight: 700;
}

.ntap-logo {
  height: 2.5rem;
  margin-left: 1rem;
}

.carousel-container {
  width: 100%;
}

.carousel-indicators {
  bottom: 0;
}


.carousel-inner > .item > img,
  .carousel-inner > .item > a > img {
      width: 80%;
      margin: auto;
      box-shadow: 10px 10px 5px #ccc; -moz-box-shadow: 10px 10px 5px #ccc; -webkit-box-shadow: 10px 10px 5px #ccc; -khtml-box-shadow: 10px 10px 5px #ccc;

  }

#section1 #myCarousel .item {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%
}

#section1 #myCarousel .item .item-inner .item-info .screen-shot-icon {
    height: 60px;
    width: auto;
    padding: 10px
}

#section1 #myCarousel .item .item-inner .item-img {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    padding-top:300px;
}


#section1 #myCarousel .carousel-caption h2 {
    margin-top: 0;
    font-family: 'Source Sans Pro', sans-serif;

}

#section1 #myCarousel .carousel-control.right {
    width: 5%;
    background-image: url(../img/misc_icons/NEXT.png);
    background-repeat: no-repeat;
    background-position: center center
}

#section1 #myCarousel .carousel-control.left {
    width: 5%;
    background-image: url(../img/misc_icons/PREVIOUS.png);
    background-repeat: no-repeat;
    background-position: center center
}

hr.style-two {
  border: 0;
  height: 1px;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0), #24b1ca, rgba(0, 0, 0, 0));
}

.description-container {
  display: grid;
  grid-template-columns: auto;
  grid-template-rows: auto;
  align-items: center;
  row-gap: 3rem;
  column-gap: 1rem;
  margin: 0 auto;
}

.section2-container-item {
  width: 300px;
  margin: 0 auto;
}

.section2-tagline {
  width: 300px;
  margin: 0 auto;
}

#section3 {
  padding: 3rem;
}

.feature-container {
  display: flex;
  flex-direction: column;
  max-width: 800px;
  margin: 0 auto;
  gap: 4rem;
}

.feature-list {
  width: 300px;
  margin: 0 auto;
}

.check-item {
  display: flex;
  align-items: center;
  padding-bottom:20px
}

.checkmark {
  padding-right:20px;
}

.custom-list li {
  margin-bottom: 1rem;
  text-align: start;
}

#footer {
  background-color: #24b1ca;
  font-size: 12px;
}

#footer .copyright {
    padding-top: 20px
}

@media screen and (min-width: 650px) {
  .navbar-custom {
    flex-direction: row;
    justify-content: space-between;
    height: 100px;
  }

  #carousel_container {
    width: 60%;
    min-width: 600px;
  }

  .description-container {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 5rem auto;
    width: 70%;
    min-width: 600px;
    max-width: 900px;
  }

  .description-container img {
    width: 90%;
    max-width: 400px;
  }

  .section2-tagline {
    grid-column-start: 1;
    grid-column-end: 3;
    width: unset;
  }

  .hard-hat-img {
    grid-column-start: 2;
  }

  .second-description {
    grid-row-start: 3;
  }

  .section2-container-item {
    width: unset;
  }

  .feature-container {
    flex-direction: row;
  }

  .feature-list {
    width: 50%;
  }
}