/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 60vh;

  background-image: linear-gradient(40deg,
      hsl(205deg 85% 41%) 0%,
      hsl(206deg 83% 40%) 21%,
      hsl(207deg 82% 39%) 30%,
      hsl(208deg 82% 38%) 39%,
      hsl(208deg 80% 38%) 46%,
      hsl(210deg 79% 37%) 54%,
      hsl(210deg 78% 36%) 61%,
      hsl(211deg 77% 35%) 69%,
      hsl(212deg 75% 35%) 79%,
      hsl(213deg 74% 34%) 100%);
}

#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.25);
}

#hero h2 {
  text-align: left;
  color: white;
  margin-left: 40px;
  font-size: var(--tab-hero-h2-lg);
  font-weight: 500;
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.25);
}

@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;
    }
  }
}

.dotnet-intro {
  border-bottom: 4px solid var(--tab-orange);
}

.dotnet-intro h2 {
  font-size: 1.75rem;
}

@media (max-width: 768px) {
  .dotnet-intro h2 {
    font-size: 1.25rem;
  }
}

/*--------------------------------------------------------------
# .NET Services
--------------------------------------------------------------*/
.net-services {
  background: #2d405f;
  padding-bottom: 80px;
}

.net-services .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
}

.net-services .icon-box:hover {
  transform: scale(1.05);
}

.net-services .icon {
  margin-bottom: 15px;
}

.net-services .icon i {
  font-size: 3rem;
  line-height: 1;
  color: #2d405f;
  background: #eff2f8;
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.net-services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 1.125rem;
}

.net-services .title a {
  color: #2d405f;
  transition: 0.3s;
}

.net-services .title a:hover {
  color: #4e6fa4;
}

.net-services .description {
  font-size: 1rem;
  line-height: 28px;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Why TAB Software
--------------------------------------------------------------*/

.why-dotnet .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.25rem;
  background-color: white;
}

.why-dotnet .info-box h2 {
  padding-top: 0px;
  padding-bottom: 10px;
  font-size: 1.125rem;
  font-weight: bold;
  border-bottom: 2px solid var(--tab-blue);
}

.why-dotnet .info-box p {
  padding-top: 10px;
  font-size: 1.0rem;
}

.why-dotnet .info-box ul {
  padding-top: 10px;
  list-style-type: none;
  padding-right: 15px;
}

.why-dotnet .info-box li {
  font-size: 1.0rem;
  padding-bottom: 8px;
}

.why-dotnet .info-box li:last-child {
  padding-bottom: 0px;
}


.list-item {
  padding-right: 10px;
}

/*--------------------------------------------------------------
# Message
--------------------------------------------------------------*/

#message h3 {
  color: black;
  background: white;
  font-size: 1.25rem;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  letter-spacing: 0.5px;
  border-top: 4px solid var(--tab-green);
  border-bottom: 4px solid var(--tab-green);
  padding: 40px;
  text-shadow: 2px 2px 3px rgba(128, 128, 128, 0.25);
  box-shadow: 0px 0 5px rgba(1, 41, 112, 0.25);
}

.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;
}

.top-section-2 {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% calc(100% - 50px), 0 100%);
}

.bottom-section-2 {
  clip-path: polygon(0 50px, 50% 0, 100% 50px, 100% 100%, 0 100%);
  margin-top: -40px;
}


/*--------------------------------------------------------------
# .NET Services
--------------------------------------------------------------*/

.dotnet-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;
}


.dotnet-services .icon-box:hover {
  box-shadow: 0px 0 10px rgba(1, 41, 112, 0.25);
}


.dotnet-services .icon-box i {
  color: var(--tab-blue);
  font-size: 4rem;
}

.dotnet-services .icon-box .icon {
  width: 96px;
  height: auto;
}

.dotnet-services .icon-box h4 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.125rem;
  border-bottom: 2px solid var(--tab-blue);

}

.dotnet-services .icon-box h5 {
  font-weight: 700;
  margin-top: 15px;
  margin-bottom: 15px;
  padding-bottom: 5px;
  font-size: 1.0rem;
  border-bottom: 2px solid var(--tab-orange);

}

.dotnet-services .icon-box p {
  font-size: 1.0rem;
}



/*--------------------------------------------------------------
# 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;
}

.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;
}


.section-title h3 {
  font-size: 1.25rem;
}