/* ================= Form Style ==================== */

/*
Default Form Style
--------------------------------------------*/
input[type=text], 
input[type=password], 
input[type=email], 
input[type=url], 
input[type=time], 
input[type=date], 
input[type=datetime-local], 
input[type=tel], 
input[type=number], 
input[type=search], 
textarea.materialize-textarea {
    border-bottom: 1px solid #9b9b9b;
    font-size: 14px !important;
}

input[type=text]:focus:not([readonly]), 
input[type=password]:focus:not([readonly]), 
input[type=email]:focus:not([readonly]), 
input[type=url]:focus:not([readonly]), 
input[type=time]:focus:not([readonly]), 
input[type=date]:focus:not([readonly]), 
input[type=datetime-local]:focus:not([readonly]), 
input[type=tel]:focus:not([readonly]), 
input[type=number]:focus:not([readonly]), 
input[type=search]:focus:not([readonly]), 
textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #03a9f4;
    box-shadow: 0 1px 0 0 #03a9f4; 
}

input[type=text]:focus:not([readonly]) + label, 
input[type=password]:focus:not([readonly]) + label, 
input[type=email]:focus:not([readonly]) + label, 
input[type=url]:focus:not([readonly]) + label, 
input[type=time]:focus:not([readonly]) + label, 
input[type=date]:focus:not([readonly]) + label, 
input[type=datetime-local]:focus:not([readonly]) + label, 
input[type=tel]:focus:not([readonly]) + label, 
input[type=number]:focus:not([readonly]) + label, 
input[type=search]:focus:not([readonly]) + label, 
textarea.materialize-textarea:focus:not([readonly]) + label {
    color: #03a9f4 !important; 
}

textarea.materialize-textarea {
    min-height: 60px !important;
}


/*
White Form Style
------------------------------------------*/
.white-form input[type=text], 
.white-form input[type=password], 
.white-form input[type=email], 
.white-form input[type=url], 
.white-form input[type=time], 
.white-form input[type=date], 
.white-form input[type=datetime-local], 
.white-form input[type=tel], 
.white-form input[type=number], 
.white-form input[type=search], 
.white-form textarea.materialize-textarea {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.white-form input[type=text]:focus:not([readonly]), 
.white-form input[type=password]:focus:not([readonly]), 
.white-form input[type=email]:focus:not([readonly]), 
.white-form input[type=url]:focus:not([readonly]), 
.white-form input[type=time]:focus:not([readonly]), 
.white-form input[type=date]:focus:not([readonly]), 
.white-form input[type=datetime-local]:focus:not([readonly]), 
.white-form input[type=tel]:focus:not([readonly]), 
.white-form input[type=number]:focus:not([readonly]), 
.white-form input[type=search]:focus:not([readonly]), 
.white-form textarea.materialize-textarea:focus:not([readonly]) {
    border-bottom: 1px solid #fff;
    box-shadow: 0 1px 0 0 #fff; 
}

.white-form .input-field label,
.white-form input[type=text]:focus:not([readonly]) + label, 
.white-form input[type=password]:focus:not([readonly]) + label, 
.white-form input[type=email]:focus:not([readonly]) + label, 
.white-form input[type=url]:focus:not([readonly]) + label, 
.white-form input[type=time]:focus:not([readonly]) + label, 
.white-form input[type=date]:focus:not([readonly]) + label, 
.white-form input[type=datetime-local]:focus:not([readonly]) + label, 
.white-form input[type=tel]:focus:not([readonly]) + label, 
.white-form input[type=number]:focus:not([readonly]) + label, 
.white-form input[type=search]:focus:not([readonly]) + label, 
.white-form textarea.materialize-textarea:focus:not([readonly]) + label {
    color: #fff !important; 
}




/* -----------------------------------------------------------------
Feature Accordion
--------------------------------------------------------------------*/
.feature-accordion.panel-group .panel+.panel {
    margin-top: 10px;
}
.feature-accordion .panel {
    box-shadow: none;
    border:0;
    border-radius: 0;
    background: transparent;
}
.feature-accordion .panel .panel-heading {
    position: relative;
    padding: 0;
}
.feature-accordion .panel-title a{
    display: block;
    color: #fff;
    padding: 16px;
    border-radius: 4px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12)
}


/*color change*/
.feature-accordion.brand-accordion .panel-title a{
    background-color: #03a9f4;
}
.feature-accordion.pink-accordion .panel-title a{
    background-color: #ed145b;
}
.feature-accordion.purple-accordion .panel-title a{
    background-color: #673ab7;
}
.feature-accordion.red-accordion .panel-title a{
    background-color: #F6483F;
}
.feature-accordion .panel-title a.collapsed{
	color: #202020;
    background-color: #eee;
    box-shadow: none;
}
.feature-accordion .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border: 0;
}
.feature-accordion .panel-body {
    padding: 15px 0;
}


/*
Accordion Icon
-----------------------------------------------------------------------------------*/
.icon .panel .panel-heading a:after {
    font-family: 'FontAwesome';
    font-size: 24px;
    width: 50px;
    height: 99%;
    line-height: 48px;
    text-align: center;
    position: absolute;
    top: 0;
    right: 0;
}


/*Angle Icon*/
.angle-icon .panel .panel-heading a:after {
    content: "\f107";
}
.angle-icon .panel .panel-heading a.collapsed:after {
    content: "\f105";
}


/*Plus Icon*/
.plus-icon .panel .panel-heading a:after {
    content: "\f068";
}
.plus-icon .panel .panel-heading a.collapsed:after {
    content: "\f067";
}


/* -----------------------------------------------------------------
Flat Accordion
-------------------------------------------------------------------- */
.flat-accordion {
	padding: 30px;
}
.flat-accordion .panel {
    box-shadow: none;
    border:0;
    border-radius: 0;
}
.flat-accordion .panel .panel-heading {
    position: relative;
    padding: 0;
    background-color: transparent;
}
.flat-accordion .panel-title {
    font-weight: 500;
}
.flat-accordion .panel-title a{
    display: block;
    color: #03a9f4;
    padding: 10px 0;
}

/*color change*/
.flat-accordion.brand-accordion .panel-title a{
    color: #03a9f4;
}
.flat-accordion.pink-accordion .panel-title a{
    color: #ed145b;
}
/*add any color you wish with .(colorName)-accordion class*/

.flat-accordion .panel-title a.collapsed{
	color: #202020;
}

.flat-accordion .panel-body {
    padding: 15px 0;
}


/*
Solid Background Style
------------------------------------------------------------------------*/
.flat-accordion.solid-bg .panel {
    background-color: transparent;
}
.flat-accordion.solid-bg .panel-title a{
    color: #fff;
}
.flat-accordion.solid-bg .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: rgba(255, 255, 255, 0.5);;
}
.flat-accordion.solid-bg .panel-body {
    color: #fff;
}



/* ----------------------------------------------------------------------
Career Page
------------------------------------------------------------------------*/
.career-cover .reason {
    display: block;
    font-size: 18px;
    font-weight: 500;
    color: #dfdfdf;
    position: relative;
    z-index: 10;
    margin-bottom: 100px;
}
.career-cover h2 {
  font-size: 55px;
}
.project-carousel .number {
    display: block;
    width: 60px;
    height: 60px;
    font-weight: 700;
    line-height: 58px;
    color: #03a9f4;
    border: 2px solid #03a9f4;
    margin: 0 auto 40px;
}
.project-carousel.owl-theme .owl-dots .owl-dot span {
    margin: 5px 4px;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease; 
}
.project-carousel.owl-theme .owl-dots .owl-dot.active span, 
.project-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #03a9f4;
}
.project-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 25px;
}
@media (min-width:768px)  {
    .project-carousel.owl-theme .owl-controls {
        margin-top: 100px;
    }
}
@media screen and (max-width: 768px) {
    .career-cover .reason {
        margin-bottom: 30px;
    }
    .project-carousel .number {
        margin: 0 auto 20px;
    }
    .career-cover h2 {
      font-size: 30px;
    }
    .padding-top-160 {
        padding-top: 120px;
    }
}
.project-carousel h2{
    font-size: 55px;
    line-height: 60px;
}
.project-carousel.style-one h2{
    font-size: 35px;
    line-height: 36px;
}
.project-carousel .btn{
    border-radius: 30px;
    margin-top: 20px;
}
.project-carousel.style-two{
    text-align: center;
}
.project-carousel.style-two .btn{
    margin-bottom: 30px;
}
@media(max-width: 991px){
    .project-carousel .carousel-item{
        text-align: center;
    }
    .project-carousel .carousel-item .btn{
        margin-bottom: 40px;
    }
}

/*Job menu*/
.joblist-wrapper .job-menu{
    padding: 0;
    margin: 0;
}
.job-menu > li{
    position: relative;
    overflow: hidden;
    margin-bottom: 20px !important;
    -webkit-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    -moz-box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.job-menu li:last-child{
    margin-bottom: 0px !important;
}
.job-menu > li a{
    display: block;
    padding: 25px 30px;
    color: #202020;
    background: #fff;
}
.job-menu > li a:hover{
    background-color: #03a9f4;
}
.job-menu > li a:hover,
.job-menu > li a:hover .category,
.job-menu > li a:hover .designation {
    color: #fff;
}
.job-menu .category,
.job-menu .designation {
  display: block;
  font-weight: 700;
}

.job-menu .category{
  font-size: 13px;
  text-transform: uppercase;
  color: #03a9f4;
}
.job-menu .designation {
  font-size: 24px;
  margin-bottom: 0;
}
.job-menu li:hover .category{
    opacity: 1;
    -webkit-animation: moveFromTop 300ms ease-in-out;
    -moz-animation: moveFromTop 300ms ease-in-out;
    -ms-animation: moveFromTop 300ms ease-in-out;
}
.job-menu li:hover .designation{
    opacity: 1;
    -webkit-animation: moveFromBottom 300ms ease-in-out;
    -moz-animation: moveFromBottom 300ms ease-in-out;
    -ms-animation: moveFromBottom 300ms ease-in-out;
}
@-webkit-keyframes moveFromBottom {
    from {
        opacity: 0;
        -webkit-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromBottom {
    from {
        opacity: 0;
        -moz-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromBottom {
    from {
        opacity: 0;
        -ms-transform: translateY(200%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
}

@-webkit-keyframes moveFromTop {
    from {
        opacity: 0;
        -webkit-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -webkit-transform: translateY(0%);
    }
}
@-moz-keyframes moveFromTop {
    from {
        opacity: 0;
        -moz-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -moz-transform: translateY(0%);
    }
}
@-ms-keyframes moveFromTop {
    from {
        opacity: 0;
        -ms-transform: translateY(-200%);
    }
    to {
        opacity: 1;
        -ms-transform: translateY(0%);
    }
}
/*joblist category page*/
.joblist-cat-wrapper{
    margin-bottom: 80px;
}

.agency-content-wrapper .default-block .icon-block {
    padding: 0 !important;
    margin-bottom: 30px
}
.agency-wrapper .vc_figure,
.agency-wrapper .vc_single_image-wrapper,
.agency-wrapper .vc_figure img{
    width:100%;
}

@media(min-width: 1367px){
    .agency-content-wrapper{
        padding: 80px 120px !important;
    }
    .agency-content-wrapper .default-block .icon-block {
        padding: 0 !important;
    }
}

@media only screen and (min-width : 992px) and (max-width : 1366px) {
    .agency-content-wrapper{
        padding: 0 80px !important;
    }
}

@media (max-width : 991px) {
    .agency-content-wrapper{
        padding: 50px !important;
    }
}



/*------------------------------------------------------------------
Job single page
-------------------------------------------------------------------*/
.job-details-wrapper{
    padding: 100px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -ms-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    -o-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.job-details-wrapper ul,
.job-details-wrapper ol{
    padding-left: 18px;
}
@media(max-width: 767px){
    .job-details-wrapper{
        padding: 20px;
    }
}

/*Apply Page*/
.custom-upload.btn {
    background-color: #fff;
    color: #999999;
    padding: 9px 12px;
    font-size: 14px;
    text-align: center;
    width: 45%;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid #e2e2e2;
    box-shadow: none;
}
.custom-upload.btn:hover{
    color: #ffffff;
}
.file-field {
    position: relative
}
.file-field .file-path-wrapper {
    overflow: hidden;
    padding-left: 10px;
}
.file-field input.file-path {
    width: 100%;
    height: 48px;
}
.file-field .btn,.file-field .btn-large {
    float: left;
}
.file-field span{
    cursor: pointer;
}
.file-field input[type=file] {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    margin: 0;
    padding: 0;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0)
}




/*------------------------------------------------------------------
Alert
-------------------------------------------------------------------*/
.alert {
    border-radius: 2px !important;
    -webkit-transition: box-shadow 0.3s;
    -moz-transition: box-shadow 0.3s;
    -ms-transition: box-shadow 0.3s;
    transition: box-shadow 0.3s;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.alert i {
    font-size: 25px;
    margin-right: 10px;
    float: left;
}


/*
Alert Border Style
-------------------------------------------------*/

.info-border {
    /*border-color: #31708f;*/
    color: #31708f;
    background-color: #d9edf7;
}
.success-border {
    /*border-color: #00c03b;*/
    color: #00c03b;
    background-color: #effdda;
}
.warning-border {
    /*border-color: #ff9c00;*/
    color: #ff9c00;
    background-color: #fff8ca;
}
.danger-border {
    /*border-color: #ff0000;*/
    color: #ff0000;
    background-color: #fff3f3;
}


/*
Alert Dark Style
------------------------------------------------- */
.info-dark {
    color: #fff;
    background-color: #31708f;
}
.success-dark {
    color: #fff;
    background-color: #00c03b;
}
.warning-dark {
    color: #fff;
    background-color: #ff9c00;
}
.danger-dark {
    color: #fff;
    background-color: #ff0000;
}



/*
Alert Icon Style
-------------------------------------------------*/
.alert.icon {
    position: relative;
    padding-left: 70px
}
.alert.icon i {
    position: absolute;
    color: #fff;
    height: 100%;
    width: 55px;
    top: 0;
    left: 0;
    text-align: center;
    font-size: 25px;
    line-height: 55px;
    margin-right: 0;
    float: none;
}
.info-icon {
    border-color: #31708f;
    color: #31708f;
}
.info-icon i {
    background: #31708f;
}
.success-icon {
    border-color: #00c03b;
    color: #00c03b;
}
.success-icon i {
    background: #00c03b;
}
.warning-icon {
    border-color: #ff9c00;
    color: #ff9c00;
}
.warning-icon i {
    background: #ff9c00;
}
.danger-icon {
    border-color: #ff0000;
    color: #ff0000;
}
.danger-icon i {
    background: #ff0000;
}

/*
Alert Icon Light Background Style
-------------------------------------------------*/
.info-icon.light-bg {
    background-color: #d9edf7; 
}
.success-icon.light-bg {
    background-color: #effdda; 
}
.warning-icon.light-bg {
    background-color: #fff8ca; 
}
.danger-icon.light-bg {
    background-color: #fff3f3; 
}


/*
Alert With Extra Information
-------------------------------------------------*/
.alert-box {
    padding: 0;
    display: table;
    color: #fff;
    position: relative;
}
.alert-box .icon-wrap {
    display: table-cell;
    vertical-align: middle;
    width: 150px;
    text-align: center;
}
.alert-box .icon-wrap i {
    float: none;
    margin: 0;
}
.alert-box .info-wrap {
    padding: 30px;
}
.alert-box .info-wrap strong {
    display: block;
    font-size: 16px;
    margin-bottom: 10px;
}
.info-box {
    background-color: #1db2ff;
}
.info-box .icon-wrap {
    background-color: #00a8ff;
}
.success-box {
    background-color: #08e11d;
}
.success-box .icon-wrap {
    background-color: #00d114;
}
.warning-box {
    background-color: #f9be31;
}
.warning-box .icon-wrap {
    background-color: #ffb400;
}
.danger-box {
    background-color: #ff3535;
}
.danger-box .icon-wrap {
    background-color: #ff0000;
}

/*close button*/
.alert-box .close {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #fff;
    opacity: 1;
    font-size: 25px;
}

@media (max-width: 767px) {
    .alert-box .icon-wrap {
        width: 50px;
    }
}





/* ----------------------------------------------------------------
Standard blog
-----------------------------------------------------------------*/

.grid-blog .post-wrapper {
    margin-bottom: 30px;
}

/*
Common Input Style for Widget
--------------------------------------------------------------*/
.widget input[type=text], 
.widget input[type=password], 
.widget input[type=email], 
.widget input[type=url], 
.widget input[type=time], 
.widget input[type=date], 
.widget input[type=datetime-local], 
.widget input[type=tel], 
.widget input[type=number]{
    border: 1px solid #eee;
    height: 60px;
    padding: 6px 20px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/*
Twitter Feed Widget
--------------------------------------------------------*/
.widget_tt_twitter {
    padding: 30px;
    background-color: #55acee;
    color: #fff;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
}
.widget_tt_twitter i {
    display: block;
    font-size: 50px;
    margin-top: 25px;
    margin-bottom: 35px;
}
.widget_tt_twitter a {
    color: #fff;
    font-weight: 700;
}
.widget_tt_twitter a:hover {
    color: #ed145b;
}

.twitter-widget.owl-theme .owl-dots .owl-dot.active span, 
.twitter-widget.owl-theme .owl-dots .owl-dot:hover span {
    background: #1870b2;
}


/*
Latest News Card Style
----------------------------------------------------*/
.b-info h2{
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase;
}
.b-info p{
    line-height: 33px;
}
.b-info .btn i{
    margin-right: 10px;
}
.b-info .btn{
    padding: 11px 22px;
    box-shadow: none;
    color: #101010;
    background-color: transparent;
    border: 1px solid #e8e8e8;
}
.b-info .btn:hover,
.b-info .btn:focus {
    background-color: #03a9f4;
    border: 1px solid transparent;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.latest-news-card .card {
    margin: 0 5px 30px 5px;
    box-shadow: none;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
.latest-news-card .card:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}

.latest-news-card .card .card-content {
    border: 1px solid #e8e8e8;
    border-top: 1px solid transparent;
    transition: all 0.3s ease-out;
}
.latest-news-card .card:hover .card-content {
    border: 1px solid transparent;
}
.latest-news-card .card .entry-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    margin: 0;
    cursor: pointer;
}

.latest-news-card .card-reveal {
    color: #fff;
    padding: 20px;
}

/*change overlay color*/
.latest-news-card .card-reveal.overlay-blue {
    background-color: rgba(3, 169, 244, 0.95);
}
.latest-news-card .card-reveal.overlay-pink {
    background-color: rgba(237, 20, 91, 0.95);
}


.latest-news-card .card-reveal .close-button i{
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 14px;
}
.latest-news-card .card-reveal .posted-on {
    display: block;
    color: #fff;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.latest-news-card .card-reveal .entry-title {
    line-height: 28px;
    margin-bottom: 20px;
}

.latest-news-card .card-reveal .entry-title a,
.latest-news-card .card-reveal .posted-on a{
    color: #fff;
}
.latest-news-card .card-reveal .readmore {
    color: #fff;
    font-weight: 700;
}

.blog-carousel.owl-carousel .owl-item {
    padding: 8px 0;
}

/*Carousel Control*/
.blog-carousel.owl-theme .owl-controls {
    margin-top: 35px;
}
.blog-carousel.owl-theme .owl-dots .owl-dot.active span, 
.blog-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #03a9f4;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
@media (max-width: 991px){
    .b-info,
    .latest-news-card .card {
        margin-bottom: 30px;
    }
}
.blog-card-style{
    margin-bottom: 100px;
}
.blog-card-style .card{
    margin-bottom: 30px;
}

/*
Latest Featured News Style
----------------------------------------------------*/
.blog-wrapper.latest-featured-news{
    margin-bottom: 30px;
}
.latest-featured-news .featured-news{
    padding: 0;
    border: 0;
    margin-bottom: 30px;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}
.latest-featured-news .thumb-wrapper{
    margin: 0;
}
.latest-featured-news .thumb-wrapper img{
    width: 100%;
}
.latest-featured-news .featured-news .blog-content {
    padding: 25px 36px;
    border: 1px solid #eee;
}
.latest-featured-news.medium-post .featured-news .blog-content{
    padding: 16px 16px;
    
}
.latest-featured-news .featured-news:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.latest-featured-news .featured-news:hover .blog-content{
    border: 1px solid transparent;
}

@media ( max-width: 479px) {
    .latest-featured-news .featured-news .blog-content {
        padding: 25px 20px;
    }
}
.latest-featured-news .entry-title {
    font-size: 18px;
    line-height: 25px;
    text-transform: capitalize;
    font-weight: 500;
    margin: 0;
}
.latest-featured-news .featured-news .entry-title {
    margin-bottom: 12px;
}
.latest-featured-news.small-post .featured-news .entry-title {
    margin-bottom: 5px;
}
.latest-featured-news.medium-post .featured-news .entry-title {
    margin-bottom: 0;
}
.latest-featured-news .entry-title a{
    color: #202020; 
}
.latest-featured-news .entry-title a:hover{
    color: #03a9f4; 
}
.latest-featured-news .blog-content .entry-meta {
    margin-bottom: 18px;
}
.latest-featured-news .blog-content a.readmore {
    font-weight: 500;
    color: #999;
    display: inline-block;
    margin-top: 15px;
}
.latest-featured-news .blog-content a.readmore:hover {
    color: #03a9f4;
}
.latest-featured-news .entry-meta li .zilla-likes::before,
.latest-featured-news .entry-meta li i{
    margin-right: 5px;
}
.latest-featured-news .entry-meta li a{
    color: #999999;
}
.latest-featured-news .entry-meta li .zilla-likes:hover::before,
.latest-featured-news .entry-meta li a:hover{
    color: #03a9f4;
}

.latest-featured-news .has-post-thumbnail .entry-header::before, 
.latest-featured-news .format-gallery .featured-wrapper .entry-header::before{
    display: none;
}


/*
Featured List Style
----------------------------------------------------*/
.featured-list-news .post-wrapper {
    padding: 0;
    border: 0;
    margin-bottom: 30px;
}
.featured-list-news .thumb-wrapper{
    margin: 0;
}

.featured-list-news .featured-news .blog-content {
    padding: 25px 36px;
    background-color: #f7f7f7;
}

@media ( max-width: 479px) {
    .featured-list-news .featured-news .blog-content {
        padding: 25px 20px;
    }
}

.featured-list-news .entry-title {
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 500;
    margin-bottom: 5px;
}

.featured-list-news .entry-title a{
    color: #202020; 
}
.featured-list-news .blog-content a.readmore {
    font-weight: 500;
    color: #999;
}
.featured-list-news .entry-title a:hover,
.featured-list-news .blog-content a.readmore:hover {
    color: #03a9f4; 
}

.featured-list-news .blog-content .entry-meta li {
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
    padding-right: 10px;
}
.featured-list-news .blog-content .entry-meta li:last-child {
    border-right: 0;
    padding-right: 0;
}


/*
List Article Common Style
---------------------------------------------------------------*/
.post-wrapper.list-article {
    background-color: #f7f7f7;
    overflow: hidden;
    position: relative;
}
.post-wrapper.list-article .thumb-wrapper {
    float: left;
    z-index: 100;
}

@media (max-width: 479px) {
    .post-wrapper.list-article .thumb-wrapper {
        float: none;
    }
}

.post-wrapper.list-article .blog-content {
    padding: 20px 25px;
    overflow: hidden;
    position: relative;
    z-index: 100;
}
.post-wrapper.list-article .blog-content p{
    margin-bottom: 5px;
}

.post-wrapper.list-article a.readmore{
    font-weight: 500;
    color: #999;
}

.post-wrapper.list-article .hover-overlay {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -moz-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -ms-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -o-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
}

.post-wrapper.list-article:hover .hover-overlay {
    width: 100%;
}

.latest-news-card .card-content .entry-title,
.latest-featured-news .list-article .entry-title{
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.post-wrapper.list-article:hover,
.post-wrapper.list-article:hover .entry-meta li a,
.post-wrapper.list-article:hover .entry-title a,
.post-wrapper.list-article:hover a.readmore,
.latest-featured-news .list-article .blog-content a.readmore:hover,
.post-wrapper.list-article:hover .entry-title {
    color: #fff;
}

.latest-featured-news .list-article .blog-content .entry-meta{
    margin-bottom: 10px;
}

.list-article .entry-meta li{
    text-transform: uppercase;
    font-size: 11px;
    line-height: 12px;
}

.latest-featured-news .featured-news.list-article:hover .blog-content,
.latest-featured-news .featured-news.list-article .blog-content{
    border: 0;
}



/*
List Blog Style
----------------------------------------------------*/
.list-news .post-wrapper {
    padding: 0;
    border: 0;
    margin-bottom: 30px;
}
.list-news .thumb-wrapper{
    margin: 0;
}
.list-news .entry-header {
    position: relative;
    margin-bottom: 32px;
}
.list-news .entry-header::after {
    content: "";
    width: 24px;
    height: 2px;
    background-color: #e040fb;
    position: absolute;
    bottom: -15px;
    left: 0;
}
.post-wrapper.list-article:hover .entry-header::after {
    background-color: #fff;
}

.list-news .entry-title {
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 500;
}

.list-news .entry-title a{
    color: #202020; 
}

.list-news .entry-meta li {
    font-size: 12px;
}

.list-news .blog-content p {
    line-height: 25px;
    margin-bottom: 20px;
}



/*
Full Width List Blog Style
----------------------------------------------------*/
.list-news.full-width-list .blog-content {
    padding: 24px 25px;
}


/*
Grid Blog Style two
----------------------------------------------------*/
.grid-style-two .post-wrapper.has-post-thumbnail .entry-header, 
.grid-style-two .format-gallery .featured-wrapper .entry-header{
    position: static;
    padding: 0;
}

.grid-style-two .has-post-thumbnail .entry-header::before, 
.grid-style-two .format-gallery .featured-wrapper .entry-header::before{

}

.grid-style-two .post-wrapper.has-post-thumbnail .entry-header .entry-title{
    margin-bottom: 15px;
}
.grid-style-two .post-wrapper.has-post-thumbnail .post-comments a,
.grid-style-two .post-wrapper.has-post-thumbnail .entry-header .entry-title a, 
.grid-style-two .format-gallery .featured-wrapper .entry-header .entry-title a{
    color: #202020;
}

.grid-style-two .post-wrapper.has-post-thumbnail .post-comments a:hover,
.grid-style-two .post-wrapper.has-post-thumbnail .entry-header .entry-title a:hover, 
.grid-style-two .format-gallery .featured-wrapper .entry-header .entry-title a:hover{
    color: #03a9f4;
}

.grid-style-two .has-post-thumbnail .entry-header::before, 
.grid-style-two .format-gallery .featured-wrapper .entry-header::before{
    display: none;
}

.grid-style-two .post-wrapper .post-comments{
    position: static;
    float: right;
}

.grid-style-two .post-wrapper .post-comments a::before, 
.grid-style-two .post-wrapper .post-comments span::before{
    position: static;
    margin-right: 5px;
}



/*
Grid News Hover Style
----------------------------------------------------*/
.grid-news-hover .post-wrapper {
    padding: 0;
    border: 0;
    margin-bottom: 30px;
}
.grid-news-hover .thumb-wrapper{
    margin: 0;
}
.grid-news-hover .entry-header{
    margin-bottom: 15px;
}
.grid-news-hover .blog-content {
    padding: 20px 25px 0;
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    -webkit-transition: border 0.4s;
    -moz-transition: border 0.4s;
    -ms-transition: border 0.4s;
    transition: border 0.4s;
}
.grid-news-hover .post-wrapper:hover .blog-content {
    border: 1px solid;
    border-color: #00aeef;
}
.grid-news-hover .post-date {
    width: 48px;
    height: 48px;
    background: #ed145b;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    text-align: center;
    position: absolute;
    top: 12px;
    left: 12px;
}
.grid-news-hover .post-date span{
    display: block;
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
}

.grid-news-hover .entry-title {
    font-size: 18px;
    line-height: 30px;
    text-transform: capitalize;
    font-weight: 500;
}
.grid-news-hover .entry-title a{
    color: #202020; 
}

.grid-news-hover .entry-meta li {
    font-size: 11px;
    line-height: 12px;
    text-transform: uppercase;
    border-right: 1px solid #e0e0e0;
    padding-right: 10px;
}
.grid-news-hover .entry-meta li:last-child {
    border-right: 0;
    padding-right: 0;
}

.grid-news-hover .entry-header-wrapper,
.grid-news-hover .entry-content {
    position: relative;
    z-index: 2;
}
.grid-news-hover .post-wrapper:hover,
.grid-news-hover .post-wrapper:hover .entry-meta li a,
.grid-news-hover .post-wrapper:hover .entry-title a {
    color: #fff;
}

.grid-news-hover .post-wrapper .hover-overlay {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 100px;
    height: 100px;
    z-index: 1;
    border-radius: 100%;
    -webkit-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -moz-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -ms-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    -o-transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);
    transition: all 0.3s cubic-bezier(0.39,0.575,0.56499,1);

    -webkit-transform: scale(0) translateZ(0);
    -moz-transform: scale(0) translateZ(0);
    -ms-transform: scale(0) translateZ(0);
    -o-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
}

.grid-news-hover .post-wrapper:hover:hover .hover-overlay {
    left: 0;
    bottom: 0;
    -webkit-transform: scale(15) translateZ(0);
    -moz-transform: scale(15) translateZ(0);
    -ms-transform: scale(15) translateZ(0);
    -o-transform: scale(15) translateZ(0);
    transform: scale(15) translateZ(0);
}

/*Internet Explorar Fixing*/
.ie9 .grid-news-hover .post-wrapper:hover .hover-overlay {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

/*
Grid News Hover Rounded Category Style
----------------------------------------------------*/
.grid-news-hover.rounded-category .blog-content {
    padding: 26px 25px 0;
}
.grid-news-hover.rounded-category .post-wrapper:hover .blog-content {
    border: 1px solid #512da8; /*border color should same with background color*/
}
.grid-news-hover.rounded-category .posted-in a {
    position: absolute;
    left: 50%;
    margin-left: -47px;
    bottom: -13px;
    padding: 0 20px;
    display: inline-block;
    color: #fff;
    background: #e040fb;
    font-size: 11px;
    line-height: 25px;
    font-weight: 500;
    text-transform: uppercase;
    border-radius: 30px;
    z-index: 100;
}
.grid-news-hover.rounded-category .posted-in a:hover {
    color: #e040fb;
    background-color: #fff;
}




/*------------------------------------------------------------------
Common featured boxes
-------------------------------------------------------------------*/
.featured-item,
.featured-item.hover-outline h2,
.featured-item.border-box h2,
.featured-item.flat-border-box h2,
.featured-item.flat-border-box .icon,
.featured-item.hover-outline .icon,
.featured-item.hover-outline .icon .colored,
.featured-item.hover-outline .desc {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.featured-item .icon {
    font-size: 30px; /*global font size*/
}
.featured-item .icon .material-icons {
    font-size: 40px;
    line-height: 40px;
}
.featured-item .desc p{
    margin: 0;
}
.featured-item h2 {
    font-weight: 500;
}

@media (max-width: 991px){
    .featured-item {
        margin-bottom: 30px;
    }
}
.seo-service-wrapper .seo-service{
    margin-bottom: 30px;
}
.seo-service-wrapper .seo-service h2,
.seo-service-wrapper .entry-content p{
    margin-bottom: 0;
}
.seo-service-wrapper .seo-service h2 a{
    color: #202020;
}
.seo-service-wrapper .entry-content{
    margin-top: 15px;
}

/*Seo service single page*/
.single-service-page .entry-title{
    margin: 30px 0 0;
    font-size: 24px;
}


/*------------------------------------------------------------------
Featured Box
-------------------------------------------------------------------*/
.featured-box {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.featured-wrapper .intro-header {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transition: -webkit-transform 0.35s;
    -moz-transition: -webkit-transform 0.35s;
    -ms-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0,-50%,0);
    -moz-transform: translate3d(0,-50%,0);
    -ms-transform: translate3d(0,-50%,0);
    transform: translate3d(0,-50%,0);
}
.featured-box:hover .featured-wrapper .intro-header {
    -webkit-transform: translate3d(0,-50%,0) translate3d(0,-60px,0);
       -moz-transform: translate3d(0,-50%,0) translate3d(0,-60px,0);
        -ms-transform: translate3d(0,-50%,0) translate2d(0,-60px,0);
            transform: translate3d(0,-50%,0) translate3d(0,-60px,0);
}
.featured-wrapper .intro-header i {
    font-size: 34px;
    margin-bottom: 25px;
}
.featured-wrapper .intro-header i[class^="flaticon-"] {
    margin-bottom: 10px;
    line-height: 55px;
}
.featured-wrapper .intro-header i[class^="flaticon-"]:before {
    font-size: 55px;
}
.featured-wrapper .intro-header i.material-icons {
    font-size: 40px;
}
.featured-wrapper .intro-header h2 {
    font-weight: 500;
}
.featured-box .content{
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    width: 100%;
    opacity: 0;
    -webkit-transform: translate3d(0,10px,0);
       -moz-transform: translate3d(0,10px,0);
        -ms-transform: translate3d(0,10px,0);
            transform: translate3d(0,10px,0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
       -moz-transition: opacity 0.35s, -webkit-transform 0.35s;
        -ms-transition: opacity 0.35s, -webkit-transform 0.35s;
                    transition: opacity 0.35s, transform 0.35s;
}
.featured-box:hover .content {
    opacity: 1;
    -webkit-transform: translate3d(0,0,0);
       -moz-transform: translate3d(0,0,0);
        -ms-transform: translate3d(0,0,0);
            transform: translate3d(0,0,0);
}
.featured-box:hover {
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

/*IE9 Fixing*/
.ie9 .featured-box .featured-wrapper .intro-header {
    top: 20%;
}

/*colored icon*/
.brand-icon {
    color: #03a9f4;
}
.pink-icon {
    color: #ed145b ;
}
.purple-icon {
    color: #9c27b0;
}
.deep-purple-icon {
    color: #673ab7;
}
.green-icon {
    color: #8bc34a;
}
.cyan-icon {
    color: #00bcd4;
}
.red-icon {
    color: #f6483f;
}
.yellow-icon {
    color: #f5c400;
}
.dark-icon {
    color: #202020;
}
.brand-hover:hover {
    background-color: #03a9f4 !important;
}
.pink-hover:hover {
    background-color: #ed145b !important;
}
.purple-hover:hover {
    background-color: #9c27b0 !important;
}
.deep-purple-hover:hover {
    background-color: #673ab7 !important;
}
.green-hover:hover {
    background-color: #8bc34a  !important;
}
.hover:hover i,
.hover:hover h2,
.hover:hover .content {
    color: #fff !important;
}
.hover:hover i {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    transition: all 0.4s ease;
}

/*icon hover change*/
.icon-hover:hover .icon{
    color: #fff !important;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.icon-hover:hover .colored{
    color: #fff !important;
}
.icon-hover-blue:hover .icon{
    background-color: #03a9f4;
}
.icon-hover-pink:hover .icon{
    background-color: #ed145b;
}
.icon-hover-purple:hover .icon{
    background-color: #9c27b0;
}
.icon-hover-green:hover .icon{
    background-color: #8bc34a;
}
.icon-hover-red:hover .icon{
    background-color: #f6483f;
}

/*Outline Square*/
.icon-outline .icon {
    border: 1px solid #e2e2e2;
}

/*Outline Circle*/
.icon-circle .icon {
    border-radius: 50%;
}

/*Outline Rotate*/
.icon-angle .icon {
    border-radius: 4px;
    margin-right: 40px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.icon-angle .icon i {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.icon-outline:hover .icon {
    border: 1px solid transparent;
}
.featured-item.icon-outline .material-icons {
    font-size: 34px;
    line-height: 66px;
}
.border-right {
    border-right: 1px solid #f1f1f1;
}


/* ----------------------------------------------------------------
Hover outline
-----------------------------------------------------------------*/
.featured-item.hover-outline {
    padding: 30px 20px;
}
.featured-item.hover-outline .icon {
    float: left;
    margin-right: 20px;
}
.featured-item.hover-outline .desc {
    overflow: hidden;
}
.featured-item.hover-outline:hover h2,
.featured-item.hover-outline:hover .icon,
.featured-item.hover-outline:hover .icon .colored,
.featured-item.hover-outline:hover .icon .brand-icon,
.featured-item.hover-outline:hover .desc {
    color: #fff !important;
}
.featured-item.hover-outline:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}


/* ----------------------------------------------------------------
Feature icon
-----------------------------------------------------------------*/
.featured-item.feature-icon .icon {
    float: left;
    margin-right: 20px;
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 68px;
    text-align: center;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.featured-item.feature-icon .desc {
    overflow: hidden;
}


/* ----------------------------------------------------------------
Feature icon Border Right
-----------------------------------------------------------------*/
.featured-item.feature-icon.border-right {
    border-right: 1px solid #eee;
    padding: 40px 25px;
}
.featured-item.feature-icon.border-right.last {
    border-right: 1px solid transparent;
}


/* ----------------------------------------------------------------
Feature Background
-----------------------------------------------------------------*/

.feature-background {
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}
.feature-background::before {
    content: "";
    background-color: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.feature-background .featured-item.feature-icon {
    margin-top: 0;
}

.fullwidth .featured-item.feature-icon .icon {
    border: 0;
    background-color: transparent;
    color: #fff;
    font-size: 40px;
}

.feature-background .featured-item.pink-hover:hover {
    background-color: #ed145b;
}
.feature-background .featured-item.purple-hover:hover {
    background-color: #673ab7;
}
.feature-background .featured-item.blue-hover:hover {
    background-color: #03a9f4;
}

/* ----------------------------------------------------------------
Border Box Style
-----------------------------------------------------------------*/

.featured-item.border-box {
    padding: 50px 20px;
    text-align: center;
    border: 1px solid #eee;
    background-color: #fff;
}
.no-gutter .featured-item.border-box {
    margin-left: -1px;
}
.featured-item.border-box h2 {
    margin-bottom: 20px;
}
.featured-item.border-box:hover h2,
.featured-item.border-box:hover .icon {
    color: #fff;
}
.featured-item.border-box:hover {
    color: #fff;
    border: 1px solid transparent;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


/* ----------------------------------------------------------------
Flat Border Box Style
-----------------------------------------------------------------*/
.featured-item.flat-border-box {
    padding: 40px 35px;
    border: 1px solid #e2e2e2;
}
.featured-item.flat-border-box .icon {
    color: #202020;
    margin-bottom: 30px;
}
.featured-item.flat-border-box h2 {
    margin-bottom: 25px;
}
.featured-item.flat-border-box .desc p {
    margin-bottom: 30px;
}

.featured-item.flat-border-box .readmore {
    color: #999;
    font-weight: 700;
}
.featured-item.flat-border-box .readmore:hover {
    color: #03a9f4;
}
.featured-item.flat-border-box .readmore i {
    padding: 0;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: padding .3s;
    -moz-transition: padding .3s;
    transition: padding .3s;
}
.featured-item.flat-border-box .readmore:hover i {
    opacity: 1;
    visibility: visible;
    padding-left: 10px;
}
.featured-item.flat-border-box:hover h2,
.featured-item.flat-border-box:hover .icon {
    color: #673ab7;
}
.featured-item.flat-border-box:hover {
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (max-width: 991px) {
    .featured-item.flat-border-box {
        margin-bottom: 30px;
    } 
}
.featured-item img {
    width: inherit !important;
    margin: 0 auto;
}

/* ----------------------------------------------------------------
Featured Plus Box Style
-----------------------------------------------------------------*/
/*.featured {
    overflow: hidden;
}*/
.featured li {
    float: left;
    position: relative;
    padding: 65px 35px 60px;
    text-align: center;
}
.featured.plus-box .icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 20px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
}
.featured.plus-box .icon i.material-icons {
    line-height: 70px;
}
.featured.plus-box .desc h2 {
    margin-bottom: 20px;
}
.featured.plus-box .featured-item:hover .icon {
    color: #03a9f4;
}

/*Grid Style*/
.featured.grid-2 li {
    width: 50%;
}
.featured.grid-3 li {
    width: 33.33%;
}
.featured.grid-4 li {
    width: 25%;
}
.featured.grid-5 li {
    width: 20%;
}
.featured.grid-6 li {
    width: 16.66%;
}

@media screen and (max-width: 991px) {
    .featured.grid-3 li, 
    .featured.grid-4 li, 
    .featured.grid-5 li, 
    .featured.grid-6 li {
        width: 33.33%;
    }
}

@media screen and (max-width: 767px) {
    .featured.grid-2 li, 
    .featured.grid-3 li, 
    .featured.grid-4 li, 
    .featured.grid-5 li, 
    .featured.grid-6 li {
        width: 50%;
    }
}

@media screen and (max-width: 479px) {
    .featured.grid-2 li, 
    .featured.grid-3 li, 
    .featured.grid-4 li, 
    .featured.grid-5 li, 
    .featured.grid-6 li {
        width: 100%;
    }
}

.featured.plus-box li:after,
.featured.plus-box li:before {
    content: '';
    position: absolute;
}
.featured.plus-box li:before {
    height: 100%;
    top: 0;
    right: -2px;
    border-right: 1px solid #eee;
}
.featured.plus-box li:after  {
    width: 100%;
    height: 0;
    top: auto;
    right: 0;
    bottom: -1px;
    border-bottom: 1px solid #eee;
}


/* ----------------------------------------------------------------
Feature Intro
-----------------------------------------------------------------*/
.featured-intro {
    padding: 70px 30px;
}
.featured-intro .icon {
    color: #6fc673;
    margin-bottom: 30px;
}
.featured-intro h2 {
    font-size: 25px;
    font-weight: 400;
    margin-bottom: 25px;
}
.featured-intro.dark-bg h2,
.featured-intro.dark-bg {
    color: #fff;
}
.featured-intro.light-gray-bg h2,
.featured-intro.light-gray-bg {
    color: #202020;
}


/* ----------------------------------------------------------------
Feature Presention
-----------------------------------------------------------------*/
.feature-presentation .featured-item.feature-icon .icon {
    width: 70px;
    height: 70px;
    font-size: 25px;
    line-height: 68px;
    border: 1px solid #e0e0e0;
}
.feature-presentation .featured-item.feature-icon .icon .material-icons {
    font-size: 35px;
    line-height: 68px;
}
.feature-presentation .featured-item.feature-icon:hover .icon {
    border: 1px solid transparent;
}
.feature-presentation .featured-item.feature-icon .material-icons {
    line-height: 58px;
}
@media (min-width: 768px) {
    .featured-item.feature-icon.right-icon {
        text-align: right;
    }
    .featured-item.feature-icon.right-icon .icon {
        float: right;
        margin-right: 0;
        margin-left: 20px;
    }
}


/* ----------------------------------------------------------------
SEO Featured Service
-----------------------------------------------------------------*/
.seo-service img {
    width: 100% !important;
}
.seo-service .desc {
    padding: 30px 20px;
    background-color: #f5f5f5;
    position: relative;
    overflow: hidden;
}
.seo-service .bg-overlay {
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 130px;
    height: 130px;
    background-color: #03a9f4;
    z-index: 1;
    border-radius: 100%;
    -webkit-transform: scale(0) translateZ(0);
    -moz-transform: scale(0) translateZ(0);
    -ms-transform: scale(0) translateZ(0);
    -o-transform: scale(0) translateZ(0);
    transform: scale(0) translateZ(0);
    -webkit-transition: all 0.5s cubic-bezier(0.39,0.575,0.56499,1);
    -moz-transition: all 0.5s cubic-bezier(0.39,0.575,0.56499,1);
    -ms-transition: all 0.5s cubic-bezier(0.39,0.575,0.56499,1);
    -o-transition: all 0.5s cubic-bezier(0.39,0.575,0.56499,1);
    transition: all 0.5s cubic-bezier(0.39,0.575,0.56499,1);
}
.seo-service:hover .bg-overlay {
    right: 0;
    bottom: 0;
    -webkit-transform: scale(10) translateZ(0);
    -moz-transform: scale(10) translateZ(0);
    -ms-transform: scale(10) translateZ(0);
    -o-transform: scale(10) translateZ(0);
    transform: scale(10) translateZ(0);
}
/*Internet Explorar Fixing*/
.ie9 .seo-service:hover .bg-overlay {
    width: 100%;
    height: 100%;
    border-radius: 0;
}

.seo-service .learn-more {
    color: #fff;
    font-size: 16px;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 10;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translate(0%, 100px);
    -moz-transform: translate(0%, 100px);
    -ms-transform: translate(0%, 100px);
    -o-transform: translate(0%, 100px);
    transform: translate(0%, 100px);
    -webkit-transition: 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
    -moz-transition: 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
    -ms-transition: 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
    -o-transition: 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
    transition: 0.5s cubic-bezier(0.87, -0.41, 0.19, 1.44);
}
.seo-service:hover .learn-more {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate(0%, -50%);
    -moz-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    -o-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
}


/*
Owl Carousel Customize
----------------------------------------------------------------*/
.featured-carousel .owl-item {
    padding: 20px 8px;
}
.owl-theme .owl-controls {
    margin-top: 20px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 13px;
    height: 13px;
    background: #dadada;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;    
}

/*colored dot*/
.brand-dot.owl-theme .owl-dots .owl-dot.active span, 
.brand-dot.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #03a9f4;
}





/* -----------------------------------------------------------------
Login Form
--------------------------------------------------------------------*/
.login-wrapper {
  position: relative;
  max-width: 460px;
  width: 100%;
  margin: 0 auto 100px;
}
.login-wrapper.active .card-wrapper:first-child {
  background: #f2f2f2;
  margin: 0 15px;
}
.login-wrapper.active .card-wrapper:nth-child(2) {
  background: #fbfbfb;
  margin: 0 10px;
}
.login-wrapper.active .card-wrapper.alt {
  top: 20px;
  right: 0;
  width: 100%;
  min-width: 100%;
  height: auto;
  border-radius: 5px;
  padding: 60px 0 40px;
  overflow: hidden;
}
.login-wrapper.active .card-wrapper.alt .toggle {
  position: absolute;
  top: 40px;
  right: -70px;
  box-shadow: none;
  -webkit-transform: scale(12);
  transform: scale(12);
  -webkit-transition: -webkit-transform .3s ease;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease;
}
.login-wrapper.active .card-wrapper.alt .toggle:before {
  content: '';
}
.login-wrapper.active .card-wrapper.alt .title,
.login-wrapper.active .card-wrapper.alt .input-container,
.login-wrapper.active .card-wrapper.alt .button-container {
  left: 0;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.login-wrapper.active .card-wrapper.alt .title {
  -webkit-transition-delay: .3s;
          transition-delay: .3s;
}
.login-wrapper.active .card-wrapper.alt .input-container {
  -webkit-transition-delay: .4s;
          transition-delay: .4s;
}
.login-wrapper.active .card-wrapper.alt .input-container:nth-child(2) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
}
.login-wrapper.active .card-wrapper.alt .input-container:nth-child(3) {
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
}
.login-wrapper.active .card-wrapper.alt .button-container {
  -webkit-transition-delay: .7s;
          transition-delay: .7s;
}

/* card-wrapper */
.card-wrapper {
  position: relative;
  background: #fff;
  border-radius: 5px;
  padding: 60px 0 40px 0;
  box-sizing: border-box;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card-wrapper:first-child {
  background: #fcfcfc;
  height: 10px;
  border-radius: 5px 5px 0 0;
  margin: 0 10px;
  padding: 0;
}
.card-wrapper .title {
  position: relative;
  z-index: 1;
  border-left: 5px solid #03a9f4;
  margin: 0 0 35px;
  padding: 10px 0 10px 50px;
  color: #03a9f4;
  font-size: 32px;
  font-weight: 500;
  text-transform: uppercase;
}
.card-wrapper .input-container {
  position: relative;
  margin: 0 60px 50px;
}
.card-wrapper.alt .input-container{
    margin: 0 60px 30px;
}
.card-wrapper .input-container input {
  outline: none;
  z-index: 1;
  position: relative;
  background: none;
  width: 100%;
  height: 60px;
  border: 0;
  color: #212121;
  font-size: 20px;
  font-weight: 400;
}
.card-wrapper .input-container input:focus ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card-wrapper .input-container input:focus ~ .bar:before, 
.card-wrapper .input-container input:focus ~ .bar:after {
  width: 50%;
}
.card-wrapper .input-container input:valid ~ label {
  color: #9d9d9d;
  -webkit-transform: translate(-12%, -50%) scale(0.75);
          transform: translate(-12%, -50%) scale(0.75);
}
.card-wrapper .input-container label {
  position: absolute;
  top: 0;
  left: 0;
  color: #757575;
  font-size: 20px;
  font-weight: 300;
  line-height: 60px;
  -webkit-transition: 0.2s ease;
  transition: 0.2s ease;
}
.card-wrapper .input-container .bar {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #757575;
  width: 100%;
  height: 1px;
}
.card-wrapper .input-container .bar:before, 
.card-wrapper .input-container .bar:after {
  content: '';
  position: absolute;
  background-color: #03a9f4;
  width: 0;
  height: 2px;
  -webkit-transition: .2s ease;
  transition: .2s ease;
}
.card-wrapper .input-container .bar:before {
  left: 50%;
}
.card-wrapper .input-container .bar:after {
  right: 50%;
}
.card-wrapper .button-container {
  margin: 0 60px;
  text-align: center;
}
.card-wrapper .footer {
    margin: 40px 0 0;
    font-size: 18px;
    font-weight: 300;
    text-align: center;
}
.card-wrapper .footer a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card-wrapper .footer a:hover {
  color: #03a9f4;
}
.card-wrapper.alt {
  position: absolute;
  top: 40px;
  right: -70px;
  z-index: 10;
  width: 140px;
  height: 140px;
  background: none;
  border-radius: 100%;
  box-shadow: none;
  padding: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}
.card-wrapper.alt .toggle {
  position: relative;
  background: #ed2553;
  width: 120px;
  height: 120px;
  border-radius: 100%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  color: #ffffff;
  font-size: 50px;
  line-height: 120px;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 550px) {
  .card-wrapper.alt .toggle {
      width: 80px;
      height: 80px;
      font-size: 34px;
      line-height: 80px;
  }

  .login-wrapper.active .card-wrapper.alt .toggle {
    -webkit-transform: scale(18);
    transform: scale(18);
  }

}
.card-wrapper.alt .toggle:before {
  content: '\f040';
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
.card-wrapper.alt .title,
.card-wrapper.alt .input-container,
.card-wrapper.alt .button-container {
  left: 100px;
  opacity: 0;
  visibility: hidden;
}
.card-wrapper.alt .title {
  position: relative;
  border-color: #fff;
  color: #fff;
}
.card-wrapper.alt .title .close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 60px;
  display: inline;
  color: #fff;
  font-size: 58px;
  font-weight: 400;
  filter: alpha(opacity=90);
  opacity: .9;
}

@media screen and (max-width: 450px) {
  .card-wrapper.alt .title .close {
      top: -8px;
      right: 20px;
  }
}
.card-wrapper.alt .title .close:before {
  content: '\00d7';
}
.card-wrapper.alt .input-container input {
  color: #fff;
}
.card-wrapper.alt .input-container input:focus ~ label {
  color: #fff !important;
}
.card-wrapper.alt .input-container input:focus ~ .bar:before, 
.card-wrapper.alt .input-container input:focus ~ .bar:after {
  background: #fff;
}
.card-wrapper.alt .input-container input:valid ~ label {
  color: #fff;
}
.card-wrapper.alt .input-container label {
  color: rgba(255, 255, 255, 0.8);
}
.card-wrapper.alt .input-container .bar {
  background: rgba(255, 255, 255, 0.8);
}
.card-wrapper.alt .button-container a.btn {
  position: relative;
  z-index: 10;
}

/*Customizing with Material CSS*/
.login-wrapper input[type=text]:focus:not([readonly]),
.login-wrapper input[type=password]:focus:not([readonly]) {
    border-bottom: 0;
    box-shadow: none;
}
.login-wrapper input[type=text],
.login-wrapper input[type=password] {
  margin: 0;
}
.login-wrapper .btn {
    height: 60px;
    font-size: 18px;
}
.login-wrapper .btn-lg {
    padding: 17px 38px;
}
.login-wrapper input[type="submit"] {
    background-color: transparent;
    border: 0;
    font-style: normal;
}
.login-wrapper input[type="submit"]:focus{
    outline: none;
    border: 0;
}
.login-wrapper .status{
    padding: 10px 10px 20px 60px;
    color: red;
    font-weight: 700;
}

/* Keyframes */
@-webkit-keyframes buttonFadeInUp {
  0% {
    bottom: 30px;
    opacity: 0;
  }
}
@keyframes buttonFadeInUp {
  0% {
    bottom: 30px;
    opacity: 0;
  }
}




/*------------------------------------------------------------------
Promo Box
-------------------------------------------------------------------*/
.promo-box {
    padding: 40px;
    display: block;
    width: 100%;
}
.promo-box,
.text-center .promo-btn,
.text-center .promo-btn a,
.full-width.promo-box .container {
    position: relative;
}
.text-center .promo-btn,
.text-center .promo-btn a,
.text-center .promo-info span,
.text-center .promo-info {
    display: inline-block;
}
.promo-info {
    padding-right: 200px;
}
.promo-info .promo-icon {
    background-color: #03a9f4;
    width: 73px;
    height: 73px;
    color: #fff;
    font-size: 30px;
    line-height: 73px;
    text-align: center;
    float: left;
    margin-right: 25px;
}
.promo-info .promo-icon.circle {
    border-radius: 50%;
}
.text-center .promo-info {
    padding-right: 0;
}
@media screen and (max-width: 767px) {
    .promo-info {
        padding-right: 0;
    }
}
.promo-info p {
    font-size: 16px;
    line-height: 24px;
    margin-top: 10px;
    margin-bottom: 0;
}
.promo-btn {
    position: absolute;
    right: 40px;
    top: 50%;
    margin-top: -25px;
}
@media screen and (max-width: 767px) {
    .promo-btn {
        margin-top: 0;
        position: relative;
        right: 0;
        top: 0;
        margin-top: 20px;
    }
}
.text-center .promo-info p {
    margin-bottom: 30px;
}
.promo-box.border-box {
    border: 1px solid #d7d7d7;
}
.promo-pattern {
    background-repeat: repeat;
    height: auto;
}
.promo-parallax {
    background-repeat: no-repeat;
    height: auto;
    background-attachment: fixed;
    background-size: cover;
}

@media (min-width: 992px) {
    .content-promo-box.banner {
        background-color: #f5f5f5;
    }
}

/*quote box*/
.quote-box .quote-intro {
    display: block;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.quote-box .author {
    font-size: 16px;
    line-height: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0;
}
.quote-box .author .role{
    display: block;
    font-size: 14px;
    font-weight: 400;
}




/*------------------------------------------------------------------
Slider
-------------------------------------------------------------------*/
/*use overlay on light background*/
.tp-overlay {
    background: rgba(0,0,0, 0.5);
    position: absolute; 
    left: 0; 
    right: 0; 
    top: 0; 
    bottom: 0;
    z-index: 1; /* required for IE */

    -webkit-transition: all 1s;
       -moz-transition: all 1s;
         -o-transition: all 1s;
            transition: all 1s;
}
.tp-overlay.purple-overlay {
    background-color: rgba(47, 30, 52, 0.75);
}
.rev-heading-intro {
    font: normal 42px 'Raleway', sans-serif;
}
.rev-heading {
    font: normal 60px 'Raleway', sans-serif;
}
.rev-subheading {
    font: normal 16px/1.5 'Raleway', sans-serif;
}
.rev-btn .btn {
    height: auto;
}

/*Landing Pages*/
.btn-download.app-download {
    color: #03a9f4;
    background-color: #fff;
    height: auto;
}
.btn-download.app-download:focus,
.btn-download.app-download:hover {
    color: #fff;
    background-color: #03a9f4;
}
.btn-download.book-download {
    color: #F44336;
    background: #fff;
    height: auto;
}
.btn-download.book-download:focus,
.btn-download.book-download:hover {
    color: #fff;
    background: #F44336;
}
.btn-download.app-download i,
.btn-download.book-download i {
    position: relative;
    top: -5px;
    line-height: 35px;
}
.btn-download.app-download span,
.btn-download.book-download span {
    display: inline-block !important;
}

/*Blog Hompage*/
.tp-caption.Newspaper-Title, 
.Newspaper-Title,
.tp-caption.Newspaper-Subtitle, 
.Newspaper-Subtitle,
.erinyen .tp-tab-desc,
.erinyen .tp-tab-title {
    font-family: 'Raleway', sans-serif!important;
}
.erinyen .tp-tab-title {
    color: #03a9f4 !important;
}




/*
Border Bottom Tab
------------------------------------------------------------*/
.vc_tta.vc_general .vc_tta-tab {
    position: relative;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-bottom-tab .vc_tta-tab::before {
    content: "";
    width: 1px;
    height: 20px;
    background-color: #eee;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    z-index: 10;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-bottom-tab .vc_tta-tab:last-child::before {
    display: none;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-bottom-tab .vc_tta-tab a {
    color: #bebebe;
    font-size: 16px;
    font-weight: 700;
    padding: 20px 30px !important;
    text-transform: capitalize;
    border: 0;
    border-radius: 0!important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-bottom-tab .vc_tta-tab.vc_active a {
	color: #202020;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-bottom-tab .vc_tta-tab.vc_active {
    border-bottom: 4px solid #03a9f4;
}


/*
Border Tabs Background
------------------------------------------------------------*/

.vc_tta.vc_general.vc_tta-style-border-tab-background .vc_tta-panel-body {
	padding: 0 !important
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-background .vc_tta-tab a {
    color: #fff !important;
    background-color: #03a9f4;
    text-transform: uppercase;
    text-align: center;
    border: 0 !important;
    border-radius: 0 !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-background .vc_tta-tab.vc_active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 3px solid #0072a5;
}

/*
Border Tabs Transparent, Border Box
------------------------------------------------------------*/
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-transparent .vc_tta-tab>a,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-box-tab .vc_tta-tab>a {
    color: #999;
    margin-right: -1px;
    padding: 16px 20px;
    text-align: center;
    text-transform: uppercase;
    border-radius: 0 !important;
    border: 1px solid #eee !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-transparent .vc_tta-tab:last-of-type>a,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-box-tab .vc_tta-tab:last-of-type>a {
	margin-right: 0;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-transparent .vc_tta-tab>a {
    background: #fff;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-transparent .vc_tta-tab.vc_active>a {
    color: #03a9f4;
}
.vc_tta.vc_general.vc_tta-style-border-tab-transparent .vc_tta-panel-body {
	padding: 0;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-tab-transparent .vc_tta-tab.vc_active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    border-bottom: 3px solid #03a9f4;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-box-tab .vc_tta-tab>a {
    background-color: #fafafa;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-border-box-tab .vc_tta-tab.vc_active>a {
	color: #03a9f4;
    background-color: #fff;
    border-bottom-color: transparent !important;
}
.vc_tta.vc_general.vc_tta-style-border-box-tab .vc_tta-panel.vc_active .vc_tta-panel-body {
    border: 1px solid #eee;
    margin-top: -12px;
}


/*
Icon, Round And Square Tabs
------------------------------------------------------------*/
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tab,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tab {
    border: 0;
    margin-right: 20px;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tabs-list,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tabs-list {
    text-align: center;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tab a {
    border-radius: 0 !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tab a {
    border-radius: 30px !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tab a,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tab a {
    color: #999;
    display: block;
    position: relative;
    font-size: 14px !important;
    padding: 10px 25px !important;
    border: 1px solid #eaeaea !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tab a:hover,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tab a:hover,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-square-tab .vc_tta-tab.vc_active a,
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-rounded-tab .vc_tta-tab.vc_active a {
    background-color: #03a9f4;
    color: #fff;
    border: 1px solid transparent !important;
}

/*icon-tab*/
.vc_tta.vc_general.vc_tta-style-icon-tab .vc_tta-panel-body {
	padding: 0 !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab .vc_tta-tabs-list> li+li {
	margin-left: 20px;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab .vc_tta-tab a {
    display: block;
    width: 85px;
    height: 85px;
    color: #03a9f4;
    background: #F6F6F6;
    border: 1px solid #eee !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab.vc_tta-shape-square .vc_tta-tab a {
    border-radius: 0 !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab.vc_tta-shape-rounded .vc_tta-tab a {
    border-radius: 6px !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab.vc_tta-shape-round .vc_tta-tab a {
    border-radius: 50% !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab .vc_tta-tab.vc_active a {
    color: #fff;
    background: #03a9f4;
    border:1px solid transparent !important;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-icon-tab li.vc_tta-tab a i{
    font-size: 40px;
    line-height: 55px;
}


/*
Vertical Tab
------------------------------------------------------------*/
.vc_tta-tabs.vc_tta-tabs-position-top.vc_tta-style-vertical-tab .vc_tta-tabs-container, 
.vc_tta-tabs.vc_tta-tabs-position-top.vc_tta-style-vertical-tab .vc_tta-tabs-list,
.vc_tta-tabs.vc_tta-tabs-position-top.vc_tta-style-icon-tab .vc_tta-tabs-container,
.vc_tta-tabs.vc_tta-tabs-position-top.vc_tta-style-icon-tab .vc_tta-tabs-list {
    overflow: inherit !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab .vc_tta-tabs-container {
    float: left !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab.vc_tta-controls-align-right .vc_tta-tabs-container {
    float: right !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab .vc_tta-tabs-list>li+li {
	margin-top: 1px;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab .vc_tta-tab {
    display: block !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab .vc_tta-tab a {
    color: #fff;
    border: 0 !important;
    background-color: #03a9f4;
    text-align: center;
    font-weight: 700;
    width: 260px;
    padding: 16px 20px !important;
    border-radius: 0 !important;
}
.vc_general.vc_tta.vc_tta-tabs.vc_tta-style-vertical-tab .vc_tta-tab.vc_active a {
    background-color: #ed145b;
    color: #ffffff;
    z-index: 10;
    box-shadow: 0 12px 15px 0 rgba(0, 0, 0, 0.24), 0 17px 50px 0 rgba(0, 0, 0, 0.19);
}

@media (min-width: 768px){
    /*equal width*/
    .tabs-grid-column-2 .vc_tta-tabs-container .vc_tta-tabs-list > li{
        width: 50%;
    }
    .tabs-grid-column-3 .vc_tta-tabs-container .vc_tta-tabs-list > li{
        width: 33.33333333%;
    }
    .tabs-grid-column-4 .vc_tta-tabs-container .vc_tta-tabs-list > li{
        width: 25%;
    }
}


@media(max-width: 767px){

	.vc_tta.vc_general .vc_tta-panel {
		margin-bottom: 2px;
	}
	.vc_tta.vc_general .vc_tta-panel-body {
		border: 1px solid #eee !important;
	}
	.vc_tta.vc_general .vc_tta-panel-body,
	.vc_tta.vc_general.vc_tta-style-icon-tab .vc_tta-panel-body,
	.vc_tta.vc_general.vc_tta-style-border-tab-background .vc_tta-panel-body {
		padding: 14px 20px !important;	
	}
	.vc_tta-panel .vc_tta-panel-heading {
		background-color: #f5f5f5;
		position: relative;
		z-index: 10;
	}
	.vc_tta-panel.vc_active .vc_tta-panel-heading {
		color: #fff !important;
		background-color: #03a9f4;
	}
	.vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
		color: #fff !important;
	}
}




/*------------------------------------------------------------------
Team Member
-------------------------------------------------------------------*/
/*Team Tab Style*/
.team-tab .nav-tabs {
    border-bottom: 0;
}
.team-tab .nav-tabs>li>a {
    padding: 0;
    border: 0;
}
.team-tab .nav-tabs>li>a, 
.team-tab .nav-tabs.nav-justified>li>a {
    margin-right: 15px;
}

.team-tab .nav-tabs>li.active>a, 
.team-tab .nav-tabs>li.active>a:focus, 
.team-tab .nav-tabs>li.active>a:hover, 
.team-tab .nav-tabs.nav-justified>.active>a, 
.team-tab .nav-tabs.nav-justified>.active>a:focus, 
.team-tab .nav-tabs.nav-justified>.active>a:hover {
    border: 0;
    position: relative;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.team-tab .nav-tabs>li.active>a::before {
    content: "";
    background-color: rgba(3, 169, 244, 0.9);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.team-tab .nav-tabs>li>a img {
    width: 100%;
}

.team-tab .panel-body{
    padding: 40px 0 0;
}

.team-tab .team-intro {
    padding-top: 35px;
}
.team-tab .team-intro h3{
    font-size: 30px;
    font-weight: 700;
    line-height: 50px;
    margin-bottom: 35px;
}
.team-tab .team-intro h3 small{
    font-size: 20px;
    font-weight: 400;
    color: #202020;
    display: block;
}
.team-intro p {
    margin-bottom: 30px;
}
.team-tab.nav-tabs>li>a, .nav-tabs.nav-justified>li>a {
    background: #ededed;
}

@media (min-width: 768px) and (max-width: 991px) {
    .team-tab .team-intro {
        padding-top: 0;
    }
}

/*Team Social Links*/
.team-social-links {
    margin: 0;
    padding: 12px 0;
    border-top: 1px solid #eee;
}
.team-social-links li a{
    width: 30px;
    height: 30px;
    font-size: 16px;
    line-height: 30px;
    display: block;
    color: #202020;
}
.team-social-links li a:hover{
    color: #03a9f4;
}


/*Tab to Accordion*/
@media (max-width: 767px){
    .team-tab .panel-body {
        padding: 0 30px;
    }
    .team-tab img {
        margin: 0 auto;
        width: 100%;
    }
    .team-tab .team-img img {
        display: none;
    }
    .team-social-links {
        border-top: 0;
    }
}



/*
Team Style Two
----------------------------------------------------------------*/
.team-wrapper {
    background: #fff;
    border: 1px solid #eee;
    margin-bottom: 30px;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}
.team-wrapper:hover {
    border: 1px solid transparent;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}
.team-wrapper img {
    width: 100%;
}

.team-title {
    padding: 28px 28px 0 28px;
}
.team-title h3 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}
.team-title h3 a {
    color: #202020;
}
.team-title h3 a:hover {
    color: #03a9f4;
}
.team-title span {
    display: block;
    font-size: 16px;
    color: #999;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.team-title p {
    color: #bcbcbc;
    -webkit-transition: color 0.3s;
    -moz-transition: color 0.3s;
    -ms-transition: color 0.3s;
    transition: color 0.3s;
}
.team-wrapper:hover .team-title p {
    color: #999;
}

/* ================= Progress bar ==================== */
.progress-section {
    position: relative;
}
.progress-title {
    display: block;
    margin-bottom: 8px;
}
.brand-bg {
    background-color: #03a9f4 !important;
}
.progress {
    box-shadow: none;
    background-color: #eee;
    height: 5px;
    overflow: visible;
    border-radius: 0;
    margin-bottom: 30px;
}
.progress-bar {
    box-shadow: none;
    text-align: right;
}

.progress-bar span {
    position: absolute;
    top: -32px;
    color: #999;
    font-size: 14px;
    display: inline-block;
}


/*Team single page*/
.single-member-page .team-tab .team-intro{
    padding-top: 0;
}

.more-member .section-intro{
    margin: 100px 0 60px;
    text-align: center;
}

.single-member-page .team-img img{
    margin: 0 auto;
}


/*------------------------------------------------------------------
Testimonial
-------------------------------------------------------------------*/
.thumb-carousel .icon {
    margin-bottom: 50px;
}
.thumb-carousel .testimonial-meta{
    font-weight: 700;
    margin-bottom: 30px;
}
.thumb-carousel .testimonial-meta span{
    color: #999;
    font-weight: 400;
}


/*
Circle Thumbnail Carousel
-------------------------------------------------------------*/
.circle-thumb .flex-control-thumbs li {
    width: 72px;
    float: none;
    margin: 0 15px;
}
.circle-thumb .flex-control-thumbs img {
    opacity: .1;
    border-radius: 50%;
}
.circle-thumb .flex-control-thumbs img.flex-active {
    opacity: 1;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
}


/*
Square Thumbnail Carousel
-------------------------------------------------------------*/
.square-thumb .content p {
    font-size: 18px;
}
.square-thumb .testimonial-meta {
    color: #202020;
    font-size: 18px;
    font-weight: 700;
}
.square-thumb .testimonial-meta span{
    display: block;
    color: #999;
    font-size: 14px;
    font-weight: 400;
}
.square-thumb .flex-control-thumbs li {
    width: 70px;
    float: none;
    margin: 0 2px;
}
.square-thumb .flex-control-thumbs img {
    opacity: .4;
}
.square-thumb .flex-control-thumbs img.flex-active {
    opacity: 1;
}
@media screen and (max-width: 370px) {
    .square-thumb .flex-control-thumbs li {
        width: 60px;
    }
}


/*
Logo Thumbnail Carousel
-------------------------------------------------------------*/
.logo-thumb .content p {
    font-size: 18px;
}
.logo-thumb .testimonial-meta {
    overflow: hidden;
    display: inline-block;
}
.logo-thumb .client-thumb {
    float: left;
    margin-right: 10px;
}
.logo-thumb .client-thumb img{
    width: 72px;
    height: 72px;
}
.logo-thumb .testimonial-meta {
    font-size: 22px;
    text-transform: uppercase;
}
.logo-thumb .client-info {
    float: left;
    margin-top: 10px;
}
.logo-thumb .testimonial-meta span{
    display: block;
    font-size: 14px;
    text-transform: capitalize;
}
.logo-thumb .flex-control-thumbs img {
    opacity: .4;
    padding: 20px 50px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.logo-thumb .flex-control-thumbs {
    padding: 20px 15px;
}
.logo-thumb .flex-control-thumbs li {
    border: 1px solid #eee;
    margin-left: -1px;
    margin-bottom: -1px;
    -webkit-transition: box-shadow 0.1s;
    -moz-transition: box-shadow 0.1s;
    -ms-transition: box-shadow 0.1s;
    transition: box-shadow 0.1s;
}
.logo-thumb .flex-control-thumbs img.flex-active {
    position: relative;
    z-index: 100;
    opacity: 1;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (max-width: 767px) {
    .logo-thumb .flex-control-thumbs {
        display: none;
    }
}


/*
flex-direction-nav icon appear on mobile devices
------------------------------------------------*/
.flex-direction-nav a:before {
    font-size: 25px;
    line-height: 40px;
    color: #03a9f4;
    text-shadow: none;
}


/*
Logo Thumbnail Right Carousel
-------------------------------------------------------------*/
.logo-thumb-right .content p {
    font-size: 18px;
} 
.logo-thumb-right .testimonial-meta {
    font-size: 22px;
    text-transform: uppercase;
}
.logo-thumb-right  .testimonial-meta span{
    display: block;
    font-size: 14px;
    text-transform: capitalize;
}
.logo-thumb-right .flex-control-thumbs img {
    opacity: .4;
    padding: 10px 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.logo-thumb-right .flex-control-thumbs {
    padding: 0 15px 20px;
}
.logo-thumb-right .flex-control-thumbs li {
    width: 33.33%;
    border: 1px solid #eee;
    margin-left: -1px;
    margin-bottom: -1px;
    -webkit-transition: box-shadow 0.1s;
    -moz-transition: box-shadow 0.1s;
    -ms-transition: box-shadow 0.1s;
    transition: box-shadow 0.1s;
}
.logo-thumb-right .flex-control-thumbs img.flex-active {
    position: relative;
    z-index: 100;
    opacity: 1;
    box-shadow: 0 8px 17px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
@media (min-width: 992px) {
    .logo-thumb-right .flex-viewport {
        width: 50%;
        float: left;
    }
    .logo-thumb-right .flex-control-nav {
        width: 50%;
        float: right;
        text-align: right;
    }
}


/*
Carousel Testimonial Style Two
---------------------------------------------------------------------------*/
.carousel-testimonial {
    padding: 40px;
    border-radius: 4px;
    height: inherit;
}
.carousel-testimonial .avatar{
    margin-bottom: 30px;
}
.carousel-testimonial .testimonial-meta{
    font-weight: 700;
    margin-bottom: 30px;
}
.carousel-testimonial .testimonial-meta span{
    color: #999;
    font-weight: 400;
}
.carousel-testimonial .carousel-control {
    top: auto;
    bottom: 20px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    color: #ddd;
    text-shadow: none;
    opacity: 1;
    background-image: none !important;
    filter: 0;
}
.carousel-testimonial .carousel-control.left {
    left: 50%;
    margin-left: -40px;
}
.carousel-testimonial .carousel-control.right {
    right: 50%;
    margin-right: -40px;
}
.carousel-testimonial .carousel-control:focus, 
.carousel-testimonial .carousel-control:hover {
    color: #03a9f4;
    opacity: 1;
}
.carousel-testimonial.brand-bg .carousel-control:focus, 
.carousel-testimonial.brand-bg .carousel-control:hover {
    color: #fff;
}
.carousel-testimonial .carousel-control.book:focus, 
.carousel-testimonial .carousel-control.book:hover {
    color: #F44336;
}

/*Gray Background Testimonial*/
.carousel-testimonial.gray-bg {
    background-color: #f9f9f9!important;
}


/*
Quote Carousel
------------------------------------------------------*/
.quote-carousel.owl-theme .owl-dots .owl-dot span {
    margin: 5px 4px;
    -webkit-transition: background 200ms ease;
    -moz-transition: background 200ms ease;
    transition: background 200ms ease;
}
.quote-carousel.owl-theme .owl-dots .owl-dot.active span, 
.quote-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #2ecc71;
}
.quote-carousel.owl-theme .owl-dots .owl-dot.active span {
    width: 25px;
}
.quote-carousel.owl-theme .owl-controls {
    margin-top: 50px;
}
.brand-bg .quote-carousel.owl-theme .owl-dots .owl-dot span {
    background: rgba(255, 255, 255, 0.5);
}
.brand-bg .quote-carousel.owl-theme .owl-dots .owl-dot.active span, 
.brand-bg .quote-carousel.owl-theme .owl-dots .owl-dot:hover span {
    background: #fff;
}


/*
Static Testimonial
--------------------------------------------------------*/
.client-testimonial {
    padding: 40px 80px 60px;
}
.client-testimonial .avatar {
    margin-bottom: 50px;
}
.client-testimonial .testimonial-meta {
    font-weight: 700;
}
.client-testimonial .testimonial-meta span{
    color: #999;
    font-weight: 400;
}
@media screen and (max-width: 767px) {
    .client-testimonial {
        padding: 30px 30px 50px;
    }
}


/*video-trigger*/
.video-wrapper {
    position: relative;
}
.video-wrapper img {
    width: 100%;
}
.video-wrapper .video-trigger {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    text-align: center;
    margin-top: -28px;
    color: #fff;
}
.video-wrapper a.popup-video .material-icons {
    font-size: 56px;
}

/*casestudy page*/
.video-trigger {
    font-size: 30px;
    line-height: 68px;
    font-weight: 700;
    color: #fff;
}
.video-trigger i.material-icons {
    font-size: 68px;
    color: #fff;
    margin: 0 20px;
    position: relative;
    top: 24px;
}
.video-triggerr i.material-icons {
    font-size: 68px;
    color: #fff;
    margin: 0 20px;
    position: relative;
}
.section-sub {
    margin: 0 auto;
    display: inline-block;
}
@media (min-width: 992px){
    .section-sub {
        width: 50%;
    }
}
@media screen and (max-width: 480px) {
    .video-trigger {
        font-size: 16px;
        line-height: 40px;
    }
    .video-trigger i.material-icons {
        font-size: 40px;
        margin: 0 5px;
        top: 15px;
    }
}