/* FontFace used */

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    src: local('Open Sans Semibold'), local('OpenSans-Semibold'), url('/assets/fonts/MTP_ySUJH_bn48VBG8sNShampu5_7CjHW5spxoeN3Vs.woff2') format('woff2');
}

@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 800;
    src: local('Open Sans Extrabold'), local('OpenSans-Extrabold'), url('/assets/fonts/EInbV5DfGHOiMmvb1Xr-hhampu5_7CjHW5spxoeN3Vs.woff2') format('woff2');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 100;
    src: local('Roboto Thin'), local('Roboto-Thin'), url('/assets/fonts/vzIUHo9z-oJ4WgkpPOtg13YhjbSpvc47ee6xR_80Hnw.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 300;
    src: local('Roboto Light'), local('Roboto-Light'), url('/assets/fonts/Hgo13k-tfSpn0qi1SFdUfbO3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    src: local('Roboto'), local('Roboto-Regular'), url('/assets/fonts/CrYjSnGjrRCn0pd9VQsnFOvvDin1pK8aKteLpeZ5c0A.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 500;
    src: local('Roboto Medium'), local('Roboto-Medium'), url('/assets/fonts/RxZJdnzeo3R5zSexge8UUbO3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 700;
    src: local('Roboto Bold'), local('Roboto-Bold'), url('/assets/fonts/d-6IYplOFocCacKzxwXSOLO3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 900;
    src: local('Roboto Black'), local('Roboto-Black'), url('/assets/fonts/mnpfi9pxYH-Go5UiibESIrO3LdcAZYWl9Si6vvxL-qU.woff') format('woff');
}


/* preloader */

#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff url('/assets/images/preloader.gif') no-repeat center center;
}


/* Logo anim */

.logo {
    top: -15px;
    position: relative;
    font-family: "Roboto", sans-serif;
}

.box {
    width: 45px;
    height: 45px;
    border: 1px solid transparent rgba(0, 0, 0, .7);
    border-radius: 10px;
    background: #4aa3df;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 45px;
    text-align: center;
    font-style: italic;
    top: 42px;
    position: relative;
    -webkit-animation: test 2s;
    animation: test 2s;
}

.box:after {
    content: "";
    display: block;
    height: 90%;
    width: 1px;
    background: #fff;
    top: -42px;
    right: -55px;
    position: relative;
    -webkit-animation: expand 2s;
    animation: expand 2s;
}

.text {
    color: #fff;
    padding-left: 70px;
    font-weight: 300;
    font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 45px;
    position: relative;
    -webkit-animation: fade 2.5s;
    animation: fade 2.5s;
}

@-webkit-keyframes expand {
    0% {
        height: 0;
    }
    40% {
        height: 0;
    }
    60% {
        height: 80%;
    }
}

@keyframes expand {
    0% {
        height: 0;
    }
    40% {
        height: 0;
    }
    60% {
        height: 80%;
    }
}

@-webkit-keyframes test {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        left: 39%;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        left: 39%;
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        left: 39%;
    }
    100% {
        left: 0%;
    }
}

@keyframes test {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        left: 39%;
    }
    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
        left: 39%;
    }
    60% {
        -webkit-transform: scale(1);
        transform: scale(1);
        left: 39%;
    }
    100% {
        left: 0%;
    }
}

@-webkit-keyframes fade {
    0% {
        opacity: 0;
    }
    65% {
        opacity: 0;
        padding-left: 70px;
    }
    100% {
        opacity: 1;
        padding-left: 80px;
    }
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    65% {
        opacity: 0;
        padding-left: 70px;
    }
    100% {
        opacity: 1;
        padding-left: 80px;
    }
}


/* end logo anim */


/* btn down */

.btn-circle {
    width: 50px;
    height: 50px;
    margin-top: 2px;
    padding: 5px 10px;
    border: 2px solid #fff;
    border-radius: 100%!important;
    font-size: 28px;
    color: #fff!important;
    text-align: center;
    vertical-align: middle;
    position: relative;
    background: 0 0;
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.btn-circle:hover,
.btn-circle:focus {
    outline: 0;
    color: #fff;
    background: rgba(255, 255, 255, .1);
}

.btn-circle i.animated {
    -webkit-transition-property: -webkit-transform;
    -webkit-transition-duration: 1s;
    -moz-transition-property: -moz-transform;
    -moz-transition-duration: 1s;
}

.btn-circle:hover i.animated {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -moz-animation-timing-function: linear;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
    50% {
        -moz-transform: scale(1.2);
        transform: scale(1.2);
    }
    100% {
        -moz-transform: scale(1);
        transform: scale(1);
    }
}


/*scroll down */

.scrolldown {
    position: relative;
    left: 50%;
    bottom: -60%;
    border: 2px solid #fff;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    margin-left: -25px;
    display: block;
    z-index: 10;
    text-align: center;
}

.scrolldown span {
    position: relative;
    color: #fff;
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

@-webkit-keyframes drop {
    0% {
        top: 0px;
        opacity: 0;
    }
    30% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}

@keyframes drop {
    0% {
        top: 0px;
        opacity: 0;
    }
    30% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 25px;
        opacity: 0;
    }
}


/* navbar */

.navbar-brand {
    line-height: 22px;
    font-family: "Roboto", sans-serif;
    font-size: 17px;
    margin-top: -40px;
}

.navbar-custom .nav li a {
    -webkit-transition: background .3s ease-in-out;
    -moz-transition: background .3s ease-in-out;
    transition: background .3s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
}

.navbar-custom .nav li.active a:hover {
    color: #fff;
}

.navbar-nav {
    float: center;
    color: #444;
    margin: 0;
    font-family: Roboto, 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 18px;
    line-height: 45px;
    font-weight: 300;
    text-rendering: optimizeLegibility;
    text-rendering: geometricPrecision;
    -ms-font-smooth: always;
    -ms-font-smoothing: antialiased;
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    -webkit-font-smoothing: subpixel-antialiased;
    display: block;
}

.navbar-nav {
    float: right;
}

.navbar {
    background: transparent;
    border: none;
    box-shadow: none;
    color: white;
    z-index: 100;
    margin-bottom: 0;
    border-radius: 0;
    padding-top: 20px;
    -o-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

.navbar-inverse .navbar-toggle,
.navbar-toggle:focus,
.navbar-toggle:active,
.navbar-toggle:hover {
    border-color: transparent;
    background-color: transparent;
    box-shadow: none;
}

div[aria-expanded="true"]>a {
    background-color: rgba(0, 0, 0, 0.8);
}

.navbar-toggle button {
    border-color: transparent;
}

.navbar .navbar-brand {
    padding: 15px 15px;
}

.navbar-brand {
    border-bottom: transparent solid 1px;
}

.navbar .navbar-brand img {
    width: 150px;
    height: auto;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

a,
a:active,
a:focus {
    background: transparent;
    outline: none;
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: transparent;
}

.navbar .navbar-nav li {
    margin-left: 10px;
}

.navbar .navbar-nav li a {
    color: #fff;
    background: transparent;
}

.navbar .navbar-nav li a:before,
.navbar .navbar-nav li a:after {
    content: '';
    border-bottom: solid 1px #4aa3df;
    position: absolute;
    bottom: 0;
    width: 0;
    -webkit-transition: width 0.2s ease;
    transition: width 0.2s ease;
}

.navbar .navbar-nav li a:before {
    left: 0;
}

.navbar .navbar-nav li a:after {
    right: 0;
}

.navbar .navbar-nav li a:hover:before,
.navbar .navbar-nav li a:hover:after {
    width: 50%;
}


/*
.navbar-collapse {
 background-color: rgba(0,0,0,.75);
}
*/

section {
    border-bottom: 3px solid rgb(0, 0, 0) transparent;
}

body {
    overflow-x: scroll;
    overflow-y: scroll;
    /*overflow: auto;*/
    -webkit-overflow-scrolling: touch;
    background-image: radial-gradient(ellipse at top, white, #bdc3c7 80%);
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    background-size: 100%;
    background-size: cover;
    box-shadow: 20px 100px 10px black;
    color: rgba(#3e3e3e, 0.8);
}

.mt-block-line {
    background: rgba(119, 119, 119, 0.5);
    width: 100px;
    height: 1px;
    margin: 30px auto;
}

.mt-block-line-white {
    background: white;
    width: 100px;
    height: 1px;
    margin: 30px auto;
}

.mt-top-row-home-white {
    margin-top: 160px;
    text-align: center;
    color: white;
}

.mt-top-row-white {
    margin-top: 10%;
    text-align: center;
    color: white;
}

.mt-top-row-white h1 {
    font-size: 250%;
}

.mt-top-row {
    margin-top: 10%;
    text-align: center;
}

.mt-top-row h1 {
    font-size: 250%;
}

.mt-margin-top {
    margin-top: 30px;
}

.mt-padding-top {
    padding-top: 20px;
}

.bold {
    font-weight: bold;
}

.center {
    text-align: center;
}

.title {
    margin-top: 100px;
    font-size: 300%;
}

.footer {
    background-color: #B0D1FB;
    padding-top: 70px;
    width: 100%;
}

.mt-margin-bottom {
    margin-bottom: 30px;
}


/*HOME */

#home {
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(44, 62, 80, 0.3)), url('/assets/images/23.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    background-position: right center;
    background-size: 100%;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
}

.mt-top-container-home {
    left: 0;
    position: relative;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    background: rgba(0, 0, 0, 0.3);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiZmBg6AZiDiBWZ4YyQMCOCcYA4kMAAQYAHyYCCUdxidgAAAAASUVORK5CYII=);
}

.mt-sub-head-white p {
    color: white;
}

.mt-nav-next-white {
    margin-top: 50px;
    text-align: center;
    color: white;
}

#services {
    background-image: radial-gradient(ellipse at top, white, #bdc3c7 70%);
    width: 100%;
    height: 100%;
    background-position: center center;
    background-size: 100%;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    position: relative;
}


/* Skills */

.chart {
    display: inline-block;
    height: 140px;
    /*140*/
    margin: 20px 0;
    /* 50*/
    position: relative;
    text-align: center;
    width: 140px;
}

.chart canvas {
    left: 0;
    position: absolute;
    top: 0;
}

.percent {
    display: inline-block;
    font-size: 25px;
    font-weight: 300;
    line-height: 140px;
    z-index: 2;
}

.percent:after {
    content: "%";
    font-size: 50%;
    margin-left: 0.1em;
}

#skills {
    color: white;
    background-image: linear-gradient( rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.7)), url('/assets/images/20.jpg');
    background-size: 100%;
    background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    position: relative;
    width: 100%;
    height: 100%;
}


/* CONTACT CONTAINER */

#contact {
    background-image: url('/assets/images/17.jpg');
    filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    position: relative;
    background-position: center, center;
    background-size: cover;
    width: 100%;
    height: 100%;
}

.mt-container-contact {
    left: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    background: rgba(0, 0, 0, 0.3);
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAMAAAADCAYAAABWKLW/AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiZmBg6AZiDiBWZ4YyQMCOCcYA4kMAAQYAHyYCCUdxidgAAAAASUVORK5CYII=);
}

.mt-connect-form-row {
    padding-top: 20px;
}

.btn {
    color: #777777;
}

.form-control {
    font-size: 125%;
}

.mt-fa-button {
    color: #13456C;
}


/* TOP NAV SCROLL DOWN
.scroll-down-link {
	width: 50px;
	height: 50px;
	border-width: 2px;
	border-style: solid;
	border-color: white;
	border-radius: 50%;
	padding-top: 4px;
	margin: auto;
}

#scrolldown {
    position: relative;
    color: #fff;
    -webkit-animation-name: drop;
    -webkit-animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    -webkit-animation-delay: 0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-play-state: running;
    animation-name: drop;
    animation-duration: 1s;
    animation-timing-function: linear;
    animation-delay: 0s;
    animation-iteration-count: infinite;
    animation-play-state: running;
}

.mt-scroll-down-link a {
	font-size: 200%;
	color: white;
}*/

.mt-scroll-up-link {
    margin: auto;
    text-align: center;
    position: fixed;
    display: none;
    z-index: 999;
    bottom: 1em;
    right: 1em;
}

.mt-scroll-up-link a {
    font-size: 200%;
    color: darkgray;
}

.mt-scroll-up-link:hover {
    border-color: #B0D1FB;
}

.mt-scroll-up-link:hover a {
    color: #B0D1FB;
}


/* BUTTON */

.btn-outline {
    border: solid 1px #fff;
    background-color: transparent;
    color: #fff;
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.3);
    border: solid 1px #fff;
    color: #fff;
}


/* STICKY NAV */

.nav--sticky {
    background: -ms-linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
    background: -webkit-linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
    background: -moz-linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
    background: -o-linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
    background: linear-gradient(rgba(0, 0, 0, 0.60), rgba(0, 0, 0, 0.60));
    padding-top: 0;
}


/* FEEDBACK FORM */

.container-feedback {
    margin-top: 75px;
    z-index: 100;
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

textarea {
    resize: none;
    height: 35px;
}

.input-group .form-control {
    z-index: auto;
}

.input-group-addon {
    background: #D8E1E4;
    border: 2px solid #D8E1E4;
    padding: 6px 15px;
    font-weight: 700;
}

.form-control {
    background: #FFF;
    border: 1px solid #D8E1E4;
    font-size: 12px;
    padding: 0 15px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4;
}

.form-control:focus {
    border-color: rgba(135, 135, 135, 0.7);
}

.input-lg,
.form-horizontal .form-group-lg .form-control {
    height: 38px;
    font-size: 13px;
}

.input-sm,
.form-horizontal .form-group-sm .form-control {
    font-size: 11px;
    height: 30px;
}

textarea.form-control {
    padding: 15px;
    max-width: 100%;
    min-width: 100%;
}


/* Services */

.iconbox {
    border-bottom: 1px solid #d4d4d4;
    text-align: center;
    padding: 30px 20px;
    margin: 0 0 20px;
}

.iconbox-icon {
    margin: 0 0 15px;
    font-size: 32px;
    color: #4aa3df/* #222;*/
}

.iconbox-title {
    margin: 0 0 10px;
    padding: 0;
    COLOR: #777;
}

.iconbox-desc {
    COLOR: #777;
}


/******************************/


/*** FOOTER ***/


/******************************/

#footer {
    bottom: 5px;
    font-family: 'Roboto', Trebuchet MS, Arial, Helvetica, sans-serif;
    letter-spacing: 2px;
    padding: 18px 0;
    position: fixed;
    text-align: center;
    width: 100%;
    z-index: 70;
    text-shadow: 1px 5px 20px #000;
    color: #333;
    font-family: "Roboto", Trebuchet MS, Arial, Helvetica, sans-serif;
    font-weight: 300;
    line-height: 20px;
}

#footer ul {
    padding: 0 40px;
}

#footer li a {
    display: block;
    margin: 0 22px 0 0;
}

#footer li a:hover {
    text-decoration: underline;
}

#footer li {
    display: inline-block;
    position: relative;
}

#footer ol,
ul {
    list-style: outside none none;
}