/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

#hero {
  width: 100%;
  height: 100vh;
  height: 100svh;

  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url("/assets/hero/hero-middleware.webp");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  position: relative;
}

#hero .container {
  padding-top: 110px;
}


#hero h1 {
  text-align: left;
  margin-left: 40px;
  margin-bottom: 10px;
  font-size: var(--tab-hero-h1-lg);
  font-weight: 700;
  color: white;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.8);
}

#hero h2 {
  text-align: left;
  color: white;
  margin-left: 40px;
  font-size: var(--tab-hero-h2-lg);
  font-weight: 500;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero {
    height: 100vh;
  }

  #hero .container {
    padding-top: 60px;
  }

  #hero h1 {
    font-size: var(--tab-hero-h1-sm);
    line-height: var(--tab-hero-h1-line-sm);
  }

  #hero h2 {
    font-size: var(--tab-hero-h2-sm);
    line-height: var(--tab-hero-h2-line-sm);
  }
}

@supports (-webkit-touch-callout: none) {
  @media only screen {
    #hero {
      background-attachment: scroll;
    }
  }
}

.middleware-info {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Why TAB Software
--------------------------------------------------------------*/

.technologies .info-box {
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.25);
  height: 100%;
  padding: 30px 30px;
  text-align: left;
  transition: 0.3s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: 6px solid var(--tab-green);
  font-size: 1.0rem;
}

.technologies .info-box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.25);
}


.technologies .info-box i {
  float: left;
  color: var(--tab-blue);
  font-size: 48px;
  line-height: 0;
  text-shadow: 4px 4px 5px rgba(0, 0, 0, 0.1);
}

.technologies .info-box h3 {
  font-size: 1.125rem;
  margin-left: 80px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--tab-blue);
}

.technologies .info-box p {
  font-size: 1.0rem;
  margin-left: 80px;
}

.top-section {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 50px), 50% 100%, 0 calc(100% - 50px));
}

.bottom-section {
  clip-path: polygon(0 0, 50% 50px, 100% 0, 100% 100%, 0 100%);
  margin-top: -40px;
}

/*--------------------------------------------------------------
# Why TAB Software
--------------------------------------------------------------*/

.middleware {
  border-top: 4px solid #5399EA;
}

.middleware .info-box {
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.25);
  height: 100%;
  padding: 30px 30px;
  text-align: left;
  transition: 0.3s;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  border-top: 6px solid var(--tab-blue);

  font-size: 1.0rem;
  background-color: white;
}

.middleware .info-box:hover {
  box-shadow: 0px 0 30px rgba(1, 41, 112, 0.25);
}


.middleware .info-box i {
  float: left;
  color: var(--tab-blue);
  font-size: 40px;
  line-height: 0;
}

.middleware .info-box h2 {
  padding-top: 0px;
  padding-bottom: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--tab-blue);
}

.middleware .info-box p {
  padding-top: 10px;
  font-size: 1.0rem;
}

/*
.checked-list ul {
  padding-top: 10px;
}
*/

.checked-list li {
  display: block;
  font-size: 1.0rem;
  padding-bottom: 8px;
}

.checked-list li:last-child {
  padding-bottom: 0px;
}

.checked-list li:before {

  content: url("/assets/svg/check-circle-fill.svg");
  float: left;
  margin-left: -26px;
  padding-right: 12px;
  padding-top: 2px;
}

/*
.middleware .info-box ul {
  padding-top: 10px;
}

.middleware .info-box li {
  display: block;
  font-size: 1.0rem;
  padding-bottom: 8px;
}

.middleware .info-box li:last-child {
  padding-bottom: 0px;
}

.middleware .info-box li:before {

  content: url("/assets/svg/check-circle-fill.svg");
  float: left;
  margin-left: -24px;
  padding-right: 10px;
  padding-top: 2px;
}
*/