/* Hero Block */

.saw-hero-block {
  display: flex;
flex-direction: column-reverse;
}
.saw-hero-title {
  background-color: rgba(38, 19, 111, 1.00);
  color: white;
  display: flex;
  flex-direction: column;
  padding: 0 2%;
  text-align: center;
  width: 96%;
}
.saw-hero-title h1 {
  font-size: 15vw;
  margin: 4% 0 0;
}
.saw-hero-title h2 {
  font-size: 6vw;
  margin: 1% 0;
}
.saw-description {
  align-self: center;
  width: 95%;
}
/* Saw Page Navigation */
.saw-page-nav {
  align-self: center;
  display: flex;
  flex-flow: row nowrap;
  margin-top: 1%;
  width: 80%;
}
.nav-button {
  border: 1px solid rgba(255, 255, 255, 1.00);
  color: inherit;
  margin: 1%;
  padding: 5px 15px 5px 15px;
  text-align: center;
  transition: all 0.1s linear;
  width: 30%;
}
.nav-button:hover {
  background-color: rgba(255, 255, 255, 1.00);
  color: rgba(38, 19, 111, 1.00);
  cursor: pointer;
}
/* Learn More Banner */
.learnmore_banner {
  align-self: center;
  background-color: rgba(21, 155, 122, 1.00);
  color: rgba(255, 255, 255, 1.00);
  letter-spacing: 2px;
  margin: 2%;
  padding: 10px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.1s linear;
  vertical-align: middle;
  width: 80%;
}
.learnmore_banner:hover {
  background-color: rgba(255, 255, 255, 1.00);
  color: rgba(21, 155, 122, 1.00);
  cursor: pointer;
  font-weight: 600;
}
.swiper {
  border-top: thick solid rgba(38, 19, 111, 1);
  height: auto;
  width: 100%;
}
.swiper-button-next {
  display: none;
}
.swiper-button-prev {
  display: none;
}
/* Vido Styles */
.video-container {
  background-color: rgba(113, 112, 112, 1.00);
  padding: 1% 0;
  width: 100%;
}
.video-container video {
  background-color: rgb(0, 0, 0);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  display: block;
  height: auto;
  margin: 0 auto;
  width: 100%;
}
.video-container iframe {
  background-color: rgb(0, 0, 0);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  display: block;
  margin: 0 auto;
  width: 100%;
  aspect-ratio: 16 / 9;
}
/* Features */
.saw-features {
  margin-top: 1%;
  padding: 0 2%;
}
.saw-features-block {
  align-items: center;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
}
.saw-features-card {
  align-items: center;
  aspect-ratio: 16/7;
  background-color: rgba(255, 255, 255, 1.00);
  border: thin solid rgba(191, 191, 191, 1.00);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  margin: 2%;
}
.features-card-h1 {
  background-color: rgb(38, 19, 111);
  width: 100%;
}
.saw-features-card h1 {
  color: rgba(255, 255, 255, 1.00);
  font-size: 5vw;
  text-align: center;
}
.features-card-half-container {
  align-items: center;
  display: flex;
  justify-content: space-around;
}
.features-card-half {
  width: 50%;
}
.features-card-half img {
  width: 100%;
}
.features-card-half p {
  padding-left: 5%;
}
/* Specs Block */
.saw-spec {
  border-top: solid medium rgba(38, 19, 111, 1.00);
  display: inline-block;
  margin: 10px 0 20px;
  width: 100%;
}
.saw-spec h3 {
  font-size: 6vw;
  margin: auto;
  padding: 10px;
  text-align: center;
}
.saw-spec table {
  border-collapse: collapse;
  margin: 0 2%;
}
.saw-spec td, .saw-spec th {
  border: 1px solid rgba(200, 200, 200, 1.00);
  font-weight: normal;
  padding: 8px;
  text-align: left;
}
.saw-spec th {
  background-color: rgba(21, 155, 122, 0.2);
}
.tooltip {
  display: inline-block;
  position: relative;
}
.tooltip .tooltiptext {
  background-color: black;
  border-radius: 6px;
  color: rgba(255, 255, 255, 1.00);
  left: 50%;
  margin-left: -160px;
  padding: 5px;
  position: absolute;
  text-align: center;
  bottom: 110%;
  visibility: hidden;
  width: 180px;
  z-index: 1;
}
.tooltip .tooltiptext::after {
  border-color: black transparent transparent transparent;
  border-style: solid;
  border-width: 5px;
  content: "";
  margin-left: -15px;
  position: absolute;
  left: 90%;
  top: 100%;
}
.tooltip:hover .tooltiptext {
  visibility: visible;
}