/** intro-section **/

.intro-section{
  position: relative;
}

.intro-section .upper-content{
  position: relative;
  background: #fff;
  margin-top: -60px;
  z-index: 1;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.intro-section .upper-content .single-column{
  position: relative;
  display: block;
  padding: 48px 50px 54px 50px;
}

.intro-section .upper-content .single-column:before{
  position: absolute;
  content: '';
  background: #8db6d6;
  width: 1px;
  height: 245px;
  top: 50px;
  right: 0px;
  transition: all 500ms ease;
}

.intro-section .upper-content .single-column:after{
  position: absolute;
  content: '';
  width: 100%;
  height: 0%;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: -1;
  transition: all 500ms ease;
}

.intro-section .upper-content .single-column:hover:after{
  height: 100%;
  top: 0px;
}

.intro-section .upper-content .single-column:last-child .single-item .inner-box:before{
  display: none;
}

.intro-section .upper-content .single-item .inner-box .icon-box{
  position: relative;
  display: block;
  font-size: 100px;
  line-height: 100px;
  color: transparent !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  margin-bottom: 12px;
  transition: all 500ms ease;
}

.intro-section .upper-content .single-column:hover .icon-box{
  background: #fff;
}

.intro-section .upper-content .single-item .inner-box h3{
  position: relative;
  display: block;
  margin-bottom: 13px;
}

.intro-section .upper-content .single-item .inner-box h3 a{
  display: inline-block;
  color: #222;
}

.intro-section .upper-content .single-column:hover h3,
.intro-section .upper-content .single-column:hover h3 a,
.intro-section .upper-content .single-column:hover p{
  color: #fff !important;
}

.intro-section .upper-content .single-item .inner-box h3 a:hover{

}

.intro-section .lower-content{
  position: relative;
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  padding: 93px 0px 94px 0px;
}

.intro-section .lower-content .sec-title{
  margin-bottom: 27px;
}
.intro-section .lower-content .text p{
	margin-bottom: 22px;
}

.intro-section .lower-content .text a{
  position: relative;
  display: inline-block;
}

.intro-section .lower-content .text a i{
  position: relative;
  font-size: 12px;
  margin-right: 10px;
}

.intro-section .lower-content .text a span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  transition: all 500ms ease;
}

.intro-section .lower-content .text a:hover span{
	border-bottom: 1px solid;
}

.intro-section .lower-content .text{
  position: relative;
  display: block;
  margin-top: 18px;
}

