
/** about-section **/

.about-section{
  position: relative;
  padding: 120px 0px;
}

.image_block_1 .image-box{
  position: relative;
  display: block;
  padding-left: 100px;
  margin-right: 100px;
  padding-bottom: 100px;
}

.image_block_1 .image-box img{
  width: 100%;
}

.image_block_1 .image-box .image-2{
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 50%;
}

.image_block_1 .image-box .image-2 img{
  border-radius: 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
}

.image_block_1 .image-box .shape{
  position: absolute;
  left: 100px;
  bottom: 95px;
  width: 270px;
  height: 275px;
  background-repeat: no-repeat;
}

.image_block_1 .image-box .text{
  position: absolute;
  top: 130px;
  left: -118px;
  font-size: 18px;
  line-height: 28px;
  color: #d2d3d7;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  transform: rotate(-90deg);
}

.image_block_1 .image-box .video-btn{
  position: absolute;
  right: 70px;
  bottom: 40px;
}

.image_block_1 .image-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  line-height: 120px;
  font-size: 30px;
  color: #ffffff;
  text-align: center;
  border-radius: 50%;
}

.image_block_1 .image-box .video-btn a:after, 
.image_block_1 .image-box .video-btn a:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(239, 162, 134, 0.6);
  box-shadow: 0 0 0 0 rgba(239, 162, 134, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.image_block_1 .image-box .video-btn a:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.image_block_1 .image-box .image-1{
  position: relative;
  display: block;
  overflow: hidden;
}

.image_block_1 .image-box .image-1:before{
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, .3)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.image_block_1 .image-box:hover .image-1:before {
  -webkit-animation: shine 1s;
  animation: shine 1s;
}

.content_block_1 .content-box{
  position: relative;
  display: block;
}

.content_block_1 .content-box .text{
  position: relative;
  display: block;
  margin-bottom: 40px;
}

.content_block_1 .content-box .inner-box{
  position: relative;
  display: block;
  padding-left: 300px;
}

.content_block_1 .content-box .inner-box .image-box{
  position: absolute;
  left: 0px;
  top: 1px;
  width: 270px;
  height: 120px;
}

.content_block_1 .content-box .inner-box .image-box img{
  width: 100%;
}

.content_block_1 .content-box .inner-box .inner h5{
  position: relative;
  display: block;
  padding-left: 70px;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 18px;
  min-height: 56px;
}

.content_block_1 .content-box .inner-box .inner h5 i{
  position: absolute;
  left: 0px;
  top: 1px;
  font-size: 55px;
  line-height: 55px;
}

.about-section .content_block_1 .content-box{
  margin-right: 20px;
  margin-top: -13px;
}

.content_block_1 .content-box .sec-title{
  margin-bottom: 11px;
}

.content_block_1 .content-box .signature{
  position: relative;
  display: block;
  margin-top: 41px;
}/** video-section **/

.video-section{
  position: relative;
  width: 100%;
  padding: 115px 0px 120px 0px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
}

.video-section:before{
  position: absolute;
  content: '';
  background-color: #52547c;
  width: 100%;
  height: 100%;
  left: 0px;
  top: 0px;
  opacity: 0.2;
}

.video-section .inner-box h2{
  position: relative;
  display: block;
  font-size: 82px;
  line-height: 99px;
  color: #fff;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 53px;
}

.video-section .inner-box .video-btn a{
  position: relative;
  display: inline-block;
  width: 170px;
  height: 170px;
  line-height: 170px;
  font-size: 50px;
  color: #ffffff;
  background-color: #52547c;
  text-align: center;
  border-radius: 50%;
}

.video-section .inner-box .video-btn a:after, 
.video-section .inner-box .video-btn a:before {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-animation-delay: .9s;
  animation-delay: .9s;
  content: "";
  position: absolute;
  -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  -webkit-animation: ripple 3s infinite;
  animation: ripple 3s infinite;
  -webkit-transition: all .4s ease;
  transition: all .4s ease;
}

.video-section .inner-box .video-btn a:after {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

.video-section .sec-title i{

}

.video-section .sec-title h6{
  color: #fff;
}

.video-section .sec-title{
  margin-bottom: 21px;
}

.video-section:after{
  position: absolute;
  content: '';
  width: 350px;
  height: 400px;
  right: -320px;
  top: -50px;
  border-radius: 50%;
}

.video-section{
  overflow: hidden;
}/** testimonial-section **/

.testimonial-section{
  position: relative;
  padding: 115px 0px 120px 0px;
}

.testimonial-section .sec-title{
  margin-bottom: 54px;
}

.testimonial-block-one .inner-box{
  position: relative;
  display: block;
  border: 1px solid #edeef2;
  background-color: #fff;
  padding: 50px 30px 50px 30px;
}

.testimonial-block-one .inner-box .icon-box{
  position: relative;
  display: inline-block;
  width: 70px;
  height: 70px;
  line-height: 80px;
  text-align: center;
  font-size: 30px;
  opacity: 0.2;
  margin-bottom: 19px;
  transition: all 500ms ease;
}

.testimonial-block-one .inner-box:hover .icon-box{
  opacity: 1;
}

.testimonial-block-one .inner-box .icon-box:before{
  position: absolute;
  content: '';
  width: 70px;
  height: 70px;
  left: 0px;
  top: 0px;
  background-repeat: no-repeat;
}

.testimonial-block-one .inner-box .review-box{
  position: absolute;
  top: 60px;
  right: 30px;
  text-align: right;
}

.testimonial-block-one .inner-box .review-box .rating li{
  position: relative;
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
}

.testimonial-block-one .inner-box .review-box span{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 14px;
  color: #83838b;
}

.testimonial-block-one .inner-box .text{
  position: relative;
  margin-bottom: 45px;
}

.testimonial-block-one .inner-box .text h3{
  font-size: 24px;
  line-height: 40px;
}

.testimonial-block-one .inner-box .text h3 span{

}

.testimonial-block-one .inner-box .author-box{
  position: relative;
  display: block;
  padding: 5px 0px 4px 90px;
  min-height: 70px;
}

.testimonial-block-one .inner-box .author-box .author-thumb{
  position: absolute;
  left: 0px;
  top: 0px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box .author-thumb img{
  width: 100%;
  border-radius: 50%;
}

.testimonial-block-one .inner-box .author-box h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 5px;
}

.testimonial-block-one .inner-box .author-box .designation{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #83838b;
}

.testimonial-section.alternat-2{
  position: relative;
}

.testimonial-section.alternat-2:before{
  position: absolute;
  content: '';
  width: 100%;
  height: 435px;
  left: 0px;
  top: 0px;
}

.testimonial-section.alternat-2 .sec-title h6{
  color: #fff;
}

.testimonial-section.alternat-2 .sec-title i{
  color: rgba(0, 0, 0, 0.1);
}

.testimonial-section.testimonial-page .testimonial-block-one .inner-box{
  margin-bottom: 30px;
}

.testimonial-section.testimonial-page .more-btn{
  padding-top: 40px;
}/** pricing-section **/

.pricing-section {
  position: relative;
  padding: 115px 0px 120px 0px;
}

.pricing-section .sec-title{
  margin-bottom: 54px;
}

.pricing-block-one .pricing-table{
  position: relative;
  display: block;
  overflow: hidden;
  text-align: center;
}

.pricing-block-one .pricing-table .table-header{
  position: relative;
  width: 100%;
  padding-top: 120px;
}

.pricing-block-one .pricing-table .table-header .bg-layer{
  position: absolute;
  left: 0px;
  top: 0px;
  right: 0px;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.pricing-block-one .pricing-table .table-header h5{
  position: relative;
  display: block;
  font-size: 16px;
  line-height: 26px;
  background-color: #edeef2;
  padding: 7px 15px;
  transition: all 500ms ease;
}

.pricing-block-one .pricing-table:hover .table-header h5{
  color: #fff;
  background-color: #52547c;
}

.pricing-block-one .pricing-table .table-content{
  position: relative;
  padding: 39px 0px 50px 0px;
  border: 1px solid #edeef2;
  border-top: none;
}

.pricing-block-one .pricing-table .table-content h2{
  display: block;
  font-size: 48px;
  line-height: 58px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  margin-bottom: 36px;
}

.pricing-block-one .pricing-table .table-content .featured-list li{
  position: relative;
  display: block;
  margin-bottom: 30px;
}

.pricing-block-one .pricing-table .table-content .featured-list li span{
  position: relative;
  display: inline-block;
  font-size: 16px;
  color: #83838b;
  padding-left: 22px;
}

.pricing-block-one .pricing-table .table-content .featured-list li:last-child{
  margin-bottom: 0px;
}

.pricing-block-one .pricing-table .table-content .featured-list li.light span{
  opacity: 0.5;
}

.pricing-block-one .pricing-table .table-content .featured-list li i{
  font-size: 10px;
  left: 0px;
  top: 0px;
  position: absolute;
}

.pricing-block-one .pricing-table .table-content .featured-list{
  padding-bottom: 41px;
}

.pricing-block-one .pricing-table .table-content .theme-btn{
  padding: 16px 39px;
}

.pricing-section.alternate-2 .pricing-block-one .pricing-table .table-header{
  padding-top: 0px;
}

.pricing-section.alternate-2 .pricing-block-one .pricing-table .table-header h5{
  padding: 18px 15px;
}