
.service-area {}
  .service-area .left-content-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%; }
    .service-area .left-content-area .section-title-inner {
      margin-bottom: 0; }
      .service-area .left-content-area .section-title-inner .title {
        margin-bottom: 15px; 
        font-family: "roboto", sans-serif;
        letter-spacing: .5px;
        font-weight: 700;
        font-size: 36px;
        color: #38526d;
        text-transform: capitalize;
      }
      .title{
        font-family: "roboto", sans-serif;
        letter-spacing: .5px;
        font-weight: 700;
        font-size: 36px;
        color: #38526d;
        text-transform: capitalize;
      }
    .testimonialhead {
    margin: 20px;
    margin-bottom: 13px;
}
      .service-area .left-content-area .section-title-inner .btn-wrapper {
        margin-top: 37px; }
        .service-area .left-content-area .section-title-inner .btn-wrapper .btn-boxed {
          display: inline-block;
          width: 160px;
          height: 50px;
          line-height: 50px;
          text-align: center;
          font-size: 14px;
          color: #fff;
          background-color: #0051fa;
          border-radius: 5px;
          font-weight: 600;
          -webkit-transition: all 0.3s ease-in;
          -moz-transition: all 0.3s ease-in;
          -o-transition: all 0.3s ease-in;
          transition: all 0.3s ease-in;
          position: relative;
          z-index: 0; }
          .service-area .left-content-area .section-title-inner .btn-wrapper .btn-boxed:after {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: #f45455;
            content: '';
            z-index: -1;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in;
            -ms-transform: rotateY(90deg);
            /* IE 9 */
            -webkit-transform: rotateY(90deg);
            /* Chrome, Safari, Opera */
            transform: rotateY(90deg);
            border-radius: 5px; }
          .service-area .left-content-area .section-title-inner .btn-wrapper .btn-boxed:hover {
            color: #fff; }
            .service-area .left-content-area .section-title-inner .btn-wrapper .btn-boxed:hover:after {
              -ms-transform: rotateY(0deg);
              /* IE 9 */
              -webkit-transform: rotateY(0deg);
              /* Chrome, Safari, Opera */
              transform: rotateY(0deg); }

.single-service-box-item {
    text-align: center;
    background-color: #fff;
    border-radius: 5px;
    
    margin-bottom: 30px;
    padding: 0px 30px 32px 30px;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    z-index: 0;
    height: 300px;
}
  .single-service-box-item:after {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #2980b9;
    content: '';
    -ms-transform: translateX(-100%) translateY(-100%);
    /* IE 9 */
    -webkit-transform: translateX(-100%) translateY(-100%);
    /* Chrome, Safari, Opera */
    transform: translateX(-100%) translateY(-100%);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1; }
  .single-service-box-item:before {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #f6f6f6;
    content: '';
    -ms-transform: translateX(100%) translateY(100%);
    /* IE 9 */
    -webkit-transform: translateX(100%) translateY(100%);
    /* Chrome, Safari, Opera */
    transform: translateX(100%) translateY(100%);
    border-radius: 5px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in;
    z-index: -1; }
.single-service-box-item:hover {
    background-color: #1fbbdd;
}


    .single-service-box-item:hover:before, .single-service-box-item:hover:after {
      visibility: visible;
      opacity: 1;
      -ms-transform: translateX(0%) translateY(0%);
      /* IE 9 */
      -webkit-transform: translateX(0%) translateY(0%);
      /* Chrome, Safari, Opera */
      transform: translateX(0%) translateY(0%); }
    .single-service-box-item:hover .icon {
      color: #fff;
      -ms-transform: rotateY(360deg);
      /* IE 9 */
      -webkit-transform: rotateY(360deg);
      /* Chrome, Safari, Opera */
      transform: rotateY(360deg); }
    .single-service-box-item:hover .title {
      color: #fff; }
       .single-service-box-item:hover p {
      color: white; }
  .single-service-box-item .icon {
    font-size: 70px;
    line-height: 70px;
    margin-bottom: 10px;
    color: #f45455;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
  .single-service-box-item .title {
    font-size: 16px;
    line-height: 28px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }

/*-------------------------
    Projects Area
-------------------------*/
.recent-work-area {
  padding: 113px 0 120px 0;
  position: relative;
  z-index: 0; }
  .recent-work-area:after {
    position: absolute;
    right: -1px;
    top: 0;
    background-image: url(../img/bg/project-bg.html);
    background-repeat: no-repeat;
    height: 100%;
    width: 100%;
    content: '';
    background-position: right; }
  .recent-work-area .section-title {
    margin-bottom: 50px; }

.single-activity-item:hover .thumb .hover {
  visibility: visible;
  opacity: 1; }
  .single-activity-item:hover .thumb .hover .hover-inner .title, .single-activity-item:hover .thumb .hover .hover-inner p {
    -ms-transform: translateY(0px);
    /* IE 9 */
    -webkit-transform: translateY(0px);
    /* Chrome, Safari, Opera */
    transform: translateY(0px); }

.single-activity-item .thumb {
  position: relative; }
  .single-activity-item .thumb .hover {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-image: -moz-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -webkit-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -ms-linear-gradient(90deg, black 0%, rgba(255, 255, 255, 0) 100%);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s ease-in;
    -moz-transition: all 0.3s ease-in;
    -o-transition: all 0.3s ease-in;
    transition: all 0.3s ease-in; }
    .single-activity-item .thumb .hover .hover-inner {
      position: absolute;
      left: 0px;
      bottom: 0px;
      padding: 30px; }
      .single-activity-item .thumb .hover .hover-inner .title {
        font-size: 24px;
        line-height: 34px;
        color: #fff;
        font-weight: 600;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        -ms-transform: translateY(50px);
        /* IE 9 */
        -webkit-transform: translateY(50px);
        /* Chrome, Safari, Opera */
        transform: translateY(50px);
        -webkit-transition-delay: .2s;
        -o-transition-delay: .2s;
        transition-delay: .2s; }
      .single-activity-item .thumb .hover .hover-inner p {
        color: rgba(255, 255, 255, 0.7);
        margin-bottom: 0;
        -webkit-transition: all 0.3s ease-in;
        -moz-transition: all 0.3s ease-in;
        -o-transition: all 0.3s ease-in;
        transition: all 0.3s ease-in;
        -ms-transform: translateY(50px);
        /* IE 9 */
        -webkit-transform: translateY(50px);
        /* Chrome, Safari, Opera */
        transform: translateY(50px);
        -webkit-transition-delay: .3s;
        -o-transition-delay: .3s;
        transition-delay: .3s; }

.single-project-item {
  margin-bottom: 30px; }
  .single-project-item .thumb {
    position: relative;
    overflow: hidden; }
    .single-project-item .thumb:hover .hover {
      visibility: visible;
      opacity: 1; }
      .single-project-item .thumb:hover .hover ul li:first-child {
        -ms-transform: translateX(0px);
        /* IE 9 */
        -webkit-transform: translateX(0px);
        /* Chrome, Safari, Opera */
        transform: translateX(0px); }
      .single-project-item .thumb:hover .hover ul li:last-child {
        -ms-transform: translateX(0px);
        /* IE 9 */
        -webkit-transform: translateX(0px);
        /* Chrome, Safari, Opera */
        transform: translateX(0px); }
    .single-project-item .thumb .hover {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.6);
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      visibility: hidden;
      opacity: 0;
      -webkit-transition: all 0.3s ease-in;
      -moz-transition: all 0.3s ease-in;
      -o-transition: all 0.3s ease-in;
      transition: all 0.3s ease-in; }
      .single-project-item .thumb .hover ul {
        margin: 0;
        padding: 0;
        list-style: none; }
        .single-project-item .thumb .hover ul li {
          display: inline-block;
          margin: 0 5px;
          -webkit-transition: 0.5s ease-in-out;
          -moz-transition: 0.5s ease-in-out;
          -o-transition: 0.5s ease-in-out;
          transition: 0.5s ease-in-out; }
          .single-project-item .thumb .hover ul li:first-child {
            -ms-transform: translateX(-300px);
            /* IE 9 */
            -webkit-transform: translateX(-300px);
            /* Chrome, Safari, Opera */
            transform: translateX(-300px); }
          .single-project-item .thumb .hover ul li:last-child {
            -ms-transform: translateX(300px);
            /* IE 9 */
            -webkit-transform: translateX(300px);
            /* Chrome, Safari, Opera */
            transform: translateX(300px); }
          .single-project-item .thumb .hover ul li a {
            display: inline-block;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background-color: #fff;
            color: #0051fa;
            line-height: 50px;
            text-align: center;
            -webkit-transition: all 0.3s ease-in;
            -moz-transition: all 0.3s ease-in;
            -o-transition: all 0.3s ease-in;
            transition: all 0.3s ease-in; }
            .single-project-item .thumb .hover ul li a:hover {
              background-color: #0051fa;
              color: #fff; }
/*---------------------------
    Teastimonial Area
---------------------------*/
.testimonial-area {
  padding: 112px 0 120px 0; }
  .testimonial-area.testimonial-bg {
    background-image: url(../img/bg/testimonial-bg.html);
    background-size: cover; }
  .testimonial-area .section-title {
    margin-bottom: 50px; }

.single-testimonia-carousel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: start;
  align-self: flex-start; }
  .single-testimonia-carousel .thumb {
    margin-right: 30px; }
    .single-testimonia-carousel .thumb img {
      width: 80px;
      height: 80px;
      border-radius: 50%;
      -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 81, 250, 0.2);
      box-shadow: 0px 4px 10px 0px rgba(0, 81, 250, 0.2); }
  .single-testimonia-carousel .content {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1; }
    .single-testimonia-carousel .content p {
      font-size: 18px;
      line-height: 28px;
      color: #373a36; }
    .single-testimonia-carousel .content .name {
      font-size: 24px;
      line-height: 34px;
      font-weight: 600;
      margin-bottom: 0px; }
    .single-testimonia-carousel .content .designation {
      font-size: 14px;
      line-height: 24px;
      color: #f45455; }

.single-testimonial-item {
  background-color: #fff;
  padding: 25px 30px 30px 30px;
  margin-bottom: 30px; }
  .single-testimonial-item .author-meta {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-item-align: start;
    align-self: flex-start; }
    .single-testimonial-item .author-meta .thumb {
      margin-right: 20px;
      width: 80px;
      border-radius: 50%; }
      .single-testimonial-item .author-meta .thumb img {
        border-radius: 50%; }
    .single-testimonial-item .author-meta .content {
      padding-top: 5px; }
      .single-testimonial-item .author-meta .content .name {
        font-size: 22px;
        line-height: 32px;
        margin-bottom: 0px; }
  .single-testimonial-item .description {
    margin-bottom: 25px; }
    .single-testimonial-item .description p {
      margin-bottom: 0;
      font-size: 18px;
      line-height: 28px; }

