/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  height: 100svh;

  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("/assets/hero/custom-development.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: 120px;
}


#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;
    }
  }
}
  
.software-intro {
  border-top: 4px solid var(--tab-blue);
  border-bottom: 4px solid var(--tab-blue);
}

.software-intro h2 {
  font-size: 1.75rem;
}

.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/ri-check-double-line.svg");
  float: left;
  margin-left: -26px;
  padding-right: 12px;
  padding-top: 2px;
}

@media (max-width: 768px) {
  .software-intro h2 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# Custom Services
--------------------------------------------------------------*/

.custom-services .icon-box {
  padding-top: 30px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 10px;
  border-radius: 6px;
  background: #fff;
  transition: ease-in-out 0.3s;
  border: 2px solid #C8C8C8;
}


.custom-services .icon-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.25);
}


.custom-services .icon-box i {
  color: var(--tab-blue);
  font-size: 40px;
}

.custom-services .icon-box .icon {
 color: white;
}

.custom-services .icon-box h3 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--tab-orange);
}

.custom-services .icon-box p {
  font-size: 1rem;
}

/*--------------------------------------------------------------
# Platforms
--------------------------------------------------------------*/

.platforms .icon-box {
  width: 150px;
  height: 150px;
  padding: 0px;
  padding-top: 10px;  
  margin: 0px;
  margin-top: 15px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 50%;
  border: 2px solid #DCDCDC;
}

.platforms .icon-box h4 {
  font-weight: 500;
  font-size: 1.125rem;
  color: black;
  padding: 0;
  margin: -10px;
}


.platforms .icon-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.25);
}

.platforms .icon {
  width: 96px;
  height: 96px;
  align-self: center;
}

.platforms .icon i {
  font-size: 80px;
  line-height: 1;
  color: #2d405f;
}

/*--------------------------------------------------------------
# Message
--------------------------------------------------------------*/

.top-piece {
  --top: radial-gradient(calc(10px + 50px) at 50% calc(100% + 10px),#0000 98%,#000);
  -webkit-mask: var(--top);
          mask: var(--top);
}

.bottom-piece {
  --bottom: 
   linear-gradient(#000 0 0) bottom/100% calc(100% - 50px) no-repeat,
   radial-gradient(farthest-side,#000 98%,#0000) top/100px 100px no-repeat;
  -webkit-mask: var(--bottom);
          mask: var(--bottom);
  margin-top: -40px;
}
