* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  padding-top: 80px;
  background-color: #fff;
}

img {
  max-width: 100%;
  object-fit: cover;
  border-radius: 7px;
}

h2 {
  text-transform: uppercase;
}

.app-items li {
  font-size: 1.6em;
  line-height: 1.5;
}

.section {
  background: #fff;
  padding: 2rem 1rem;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.flex>div {
  text-align: center;
}

.flex.fourth {
  justify-content: space-around;
}

.flex.fourth>div {
  flex-basis: 25%;
}

.flex.third>div {
  flex-basis: 32%;
}

.flex.half>div {
  flex-basis: 48%;
}

.nm-img {
  margin: 0.25rem 0;
  border-radius: 7px;
}

.circular {
  width: 100%;
  max-width: 290px;
  max-height: 163px;
  border-radius: 10px !important;
  background-size: contain !important;
  opacity: 0.8;
}

.circular:hover {
  opacity: 1.0;
}

.app-button {
  font-size: 0.75rem;
  letter-spacing: 1px;
  margin-top: 2rem;
}

@media (max-width: 850px) {
  .flex.fourth>div {
    flex-basis: 33%;
  }
}

@media (max-width: 620px) {

  .flex.third>div,
  .flex.fourth>div {
    flex-basis: 48%;
  }

  .flex.third>div.nm-img {
    flex-basis: 49%;
  }
}

@media (max-width: 440px) {
  .flex {
    display: block;
  }
}

.flex2 {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: nowrap;
  align-items: center;
}

@media (min-width: 1180px) {
  .flex2>div {
    flex-basis: 50%;
    text-align: left;
  }
}

@media (max-width: 1180px) {
  .flex2 {
    flex-wrap: wrap-reverse;
  }
}

.popup-video {
  opacity: 0.8;
}

.popup-video:hover {
  opacity: 1.0;
}