/*
|
| Portfolio Styles CSS
|
*/
html,
body,
header,
#intro {
    height: 50vh;
}

#intro {
    background: url("../img/portfolio/portfolio.jpg") no-repeat bottom center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

.top-nav-collapse {
    background-color: #1a1c20;
}

@media (max-width: 768px) {
    .navbar:not(.top-nav-collapse) {
        background-color: #24355C;
    }
}

@media (min-width: 800px) and (max-width: 850px) {
    .navbar:not(.top-nav-collapse) {
        background-color: #24355C;
    }
}

#typed {
    color: #fff;
}

.typed-cursor {
    color: #bce9ff;
}

.contact-page-icon {
    color: #ffffff;
    background: #ffffff;
    border-style: solid;
    border-width: 0px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 500px;
    font-size: 24px;
    display: inline-block;
}

.contact-page-icon-low {
    color: #ffffff;
    background: #ffffff;
    border-color: #333333;
    border-width: 1px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-radius: 500px;
    font-size: 16px;
    display: inline-block;
}

.cont_first {
    padding-bottom: 30px !important;
}

.shortcode-single-image-wrap.aligncenter, .shortcode-single-image-wrap.alignnone {
    margin-left: auto !important;
    margin-right: auto !important;
}

.shortcode-single-image-wrap {
    margin-bottom: 0;
    max-width: 100%;
}

.alignnone {
    float: none;
    margin: 61px auto -71px;
}

.alignnone .shortcode-single-image {
    text-align: center;
}

.photos {
    text-align: center;
    display: inline-block;
    border-radius: 50%;
    width: 300px;
    height: 300px;
    background-image: url('../img/about/about.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: 2px 2px 3px 0px #0000008f;
}

.sub-heading {
    color: #1ebbf0 !important;
    background: -webkit-linear-gradient(left, #1ebbf0 30%, #39dfaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    box-sizing: border-box;
    margin: 0 auto;
}

.sub-extra {
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 5px;
    font-weight: 700;
}

.about-title {
    font-weight: bold;
    font-size: 20px;
    line-height: 30px;
    margin: 0 0 20px 0;
    padding: 0;
    clear: none;
    color: #333;
}

.about-text {
    font: normal 14px/25px "Roboto", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #85868c;
    text-align: justify;
}

.content-padding {
    /*padding-left: 25px;
    padding-right: 25px;*/
}

.skill-label {
    display: block;
    margin-bottom: 8px;
    color: #333;
    font-size: 13px;
    line-height: 23px;
}

.vc_single_bar {
    border-radius: 1px;
    height: 13px;
    margin-bottom: 10px;
    -webkit-box-shadow: none;
    box-shadow: none;
    background: #f7f7f7;
    position: relative;
}

.vc_bar {
    background: #1ebbf0;
    background: -webkit-linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%);
    background: linear-gradient(135deg, #1ebbf0 30%, #39dfaa 100%);
    color: #fff;
    border-radius: 1px;
    animation: none;
}

.vc_single_bar .vc_bar {
    display: block;
    position: absolute;
    height: 100%;
    background-color: #e0e0e0;
    width: 0%;
    top: 0;
    left: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: width 1s linear;
    -moz-transition: width 1s linear;
    -webkit-transition: width 1s linear;
    -o-transition: width 1s linear;
}

.freel {
    width: 100%;
    position: relative;
    margin-top: 25px;
    height: 0;
}

.freel span {
    position: absolute;
    font-size: 14px;
    left: 54px;
    top: 10px;
    color: #111;
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}

.preloader-wave-effect {
    height: 70px;
    float: left;
    /*position: absolute;*/
    left: 0;
    top: -5px;
}

.preloader-wave-effect:before,
.preloader-wave-effect:after {
    -webkit-animation: 1.6s linear 0s normal none infinite running preloader-wave;
    animation: 1.6s linear 0s normal none infinite running preloader-wave;
    border-radius: 100%;
    content: "";
    height: 50px;
    position: absolute;
    width: 50px;
}

.available .preloader-wave-effect:before,
.available .preloader-wave-effect:after {
    background: #2dcc70 none repeat scroll 0 0;
}

.notavailable .preloader-wave-effect:before,
.notavailable .preloader-wave-effect:after {
    background: #e74c3c none repeat scroll 0 0;
}

.preloader-wave-effect:after {
    -webkit-animation-delay: -0.8s;
    animation-delay: -0.8s;
}

@-webkit-keyframes preloader-wave {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

@keyframes preloader-wave {
    0% {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-transform: scale(0, 0);
        transform: scale(0, 0);
    }
    100% {
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
    }
}

.uavc-list-icon-wrapper.ult-adjust-bottom-margin {
    margin-bottom: 35px;
}


.uavc-icons, .uavc-icons *, .uavc-list-icon, .uavc-list-icon * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.uavc-list-icon ul:last-child {
    margin: 0 !important;
}

.uavc-list-icon ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 0 30px !important;
    position: relative !important;
}

.uavc-list-icon li {
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    clear: both !important;
    line-height: 1.6em;
    overflow: visible;
}

.uavc-list-content {
    display: table;
    width: 100%;
    margin-bottom: 7px;
}

.uavc-list-content .aio-icon {
    display: inline-block;
    margin: 0;
    padding: 0;
}

.aio-icon, .vc_row .aio-icon {
    display: inline-block;
    font-size: 32px;
    height: 2em;
    width: 2em;
    text-align: center;
    line-height: 2em;
    -moz-box-sizing: content-box !important;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
}

.aio-icon i {
    line-height: inherit;
    font-size: inherit;
}

.uavc-list-desc {
    font-size: 18px;
    line-height: 28px;
}

.uavc-list-content span.uavc-list-desc {
    display: table-cell;
    padding: 0;
    margin: 0;
    vertical-align: middle;
    width: 100%;
}

.aio-icon.none {
    background: none !important;
    color: #333333;
    border-color: #333333;
    border-width: 1px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    border-radius: 500px;
    font-size: 20px;
    display: inline-block;
}

.font-style-contact {
    font-family: 'Roboto';
    font-weight: 700;
    color: #333333;
}

.about-widget a {
    color: #333333;
    border: 1px solid #333333;
}

.about-widget a:hover {
    border: none;
}

.back-alter {
    background: rgba(170, 170, 170, 0.1);
}

.header-services {
    font: normal bold 34px/44px "Roboto", Helvetica, Arial, Verdana, sans-serif;
    text-align: center;
    font-weight: bold;
    font-size: 30px;
    line-height: 40px;
    padding: 0;
    margin: 0 0 10px 0;
    clear: none;
    color: #333;
    text-transform: none;
    word-spacing: normal;
}

.heading-spacer {
    margin: 0 auto;
    padding: 0;
    position: relative;
    overflow: hidden;
}

.line_only {
    margin-bottom: 55px;
    height: 3px;
    text-align: center;
    width: 100%;
}

.headings-line {
    border-style: solid;
    border-bottom-width: 3px;
    width: 100px;
    margin: 0px auto;
    -webkit-border-image: -webkit-linear-gradient(left, #1ebbf0 30%, #39dfaa 100%);
    border-image: linear-gradient(left, #1ebbf0 30%, #39dfaa 100%);
    border-image-slice: 1;
    border-color: #1ebbf0 !important;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    display: block;
    max-width: 100%;
    text-align: center;
}

.subheader-services {
    font: normal bold 34px/44px "Roboto", Helvetica, Arial, Verdana, sans-serif;
    font-weight: bold;
    margin: 0 0 20px 0;
    font-size: 18px;
    line-height: 28px;
    padding: 0;
    color: #333;
    text-transform: none;
}

.services-text {
    padding-bottom: 20px !important;
    margin-bottom: 0;
    font: normal 15px/27px "Roboto", Helvetica, Arial, Verdana, sans-serif;
    word-spacing: normal;
    color: #85868c;
}

.lists {
    margin: 0;
    list-style: disc;
}

.lists li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    list-style: none;
}

.lists li:before {
    background: #1ebbf0;
    background: -webkit-linear-gradient(135deg,#1ebbf0 30%,#39dfaa 100%);
    background: linear-gradient(135deg,#1ebbf0 30%,#39dfaa 100%);
    color: #fff;
    background-color: #1ebbf0;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.lists li:first-child:before, .lists li:first-child:after {
    top: 6.5px;
    margin-top: 0;
}

.lists li:before, .lists li:after {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    content: "";
    top: 6.5px;
    margin-top: 0;
}

.lists li:first-child:after {
    background-position: center center;
}

.lists li:after {
    top: 6.5px;
    margin-top: 0;
    height: 14px;
    content: "\f007";
    font-family: icomoon-the7-font;
    speak: none;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    font-size: 7px;
    line-height: 14px;
    text-align: center;
    color: #fff;
}
