/* Global Styles */

html,
body {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Source Sans Pro","Helvetica Neue",Helvetica,Arial,sans-serif;
}

.text-vertical-center {
    display: table-cell;
    text-align: center;
    vertical-align: middle;
}

.text-vertical-center h1 {
    margin: 0;
    padding: 0;
    font-size: 4.5em;
    font-weight: 700;
}
.text-vertical-center #header {
    margin: 0;
    padding: 0;
    font-size: 4.5em;
    font-weight: 700;
    animation: fade;
    animation-duration: 5s;
    animation-iteration-count: 1;
}
nav ul li a {
    font-family: 'Comfortaa';
}

/* Custom Button Styles */

.btn-dark {
    border-radius: 0;
    color: #fff;
    background-color: rgba(0,0,0,0.4);
}

.btn-dark:hover,
.btn-dark:focus,
.btn-dark:active {
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

.btn-light {
    border-radius: 0;
    color: #333;
    background-color: rgb(255,255,255);
}

.btn-light:hover,
.btn-light:focus,
.btn-light:active {
    color: #333;
    background-color: rgba(255,255,255,0.8);
}
.cursor {
    cursor: pointer;
}
.cursor:hover {
    transform: scale(1.1);
    transition-duration: 0.75s;
}
.hov {
    opacity: 0.65;
    -webkit-transition: all 0.8s ease 0s;
    -moz-transition: all 0.8s ease 0s;
    -ms-transition: all 0.8s ease 0s;
    -o-transition: all 0.8s ease 0s;
    transition: all 0.8s ease 0s;
}
.hov:hover {
    opacity: 1.0;
    /*box-shadow: 0vw 0vw 2vw #7EA8CD;*/
}
#scroll-abt {
    -webkit-transition: all 1.2s ease 0s;
    -moz-transition: all 1.2s ease 0s;
    -ms-transition: all 1.2s ease 0s;
    -o-transition: all 1.2s ease 0s;
    transition: all 1.2s ease 0s;
}
#scroll-abt:hover {
    /*background: rgba(68,68,68, 0.4);*/
    background: rgba(0,0,0, 0.06);
    color: #000;
    border-radius: 25px;
    transform: scale(1.1);
}

/* Custom Horizontal Rule */


@keyframes fade {
        from {opacity: 0.0;}
        to {opacity: 1.0;}
}


/* Blinking Cursor */
.typed-cursor{
    /*font-family: inherit;
    font-size: 2em;*/
    opacity: 1;
    color: transparent;
    -webkit-animation: blink 0.7s infinite;
    -moz-animation: blink 0.7s infinite;
    -ms-animation: blink 0.7s infinite;
    -o-animation: blink 0.7s infinite;
    animation: blink 0.7s infinite;
}
@keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-webkit-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
@-moz-keyframes blink{
    0% { opacity:1; }
    50% { opacity:0; }
    100% { opacity:1; }
}
/* Blinking Cursor ends here. */

hr.small {
    max-width: 100px;
}

/* Side Menu */

#sidebar-wrapper {
    z-index: 9999;
    position: fixed;
    top: -100%;
    right: 0;
    width: 250px;
    height: 0%;
    transform: translateY(100%);
    overflow-y: auto;
    background: #222;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -ms-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

.sidebar-nav {
    position: absolute;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    text-indent: 20px;
    line-height: 40px;
}

.sidebar-nav li a {
    display: block;
    text-decoration: none;
    color: #999;
}

.sidebar-nav li a:hover {
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.2);
}

.sidebar-nav li a:active,
.sidebar-nav li a:focus {
    text-decoration: none;
}

.sidebar-nav > .sidebar-brand {
    height: 55px;
    font-size: 18px;
    line-height: 55px;
}

.sidebar-nav > .sidebar-brand a {
    color: #999;
}

.sidebar-nav > .sidebar-brand a:hover {
    color: #fff;
    background: none;
}

#menu-toggle {
    z-index: 1;
    position: fixed;
    top: 0;
    right: 0;
}

#sidebar-wrapper.active {
    right: 0;
    width: 250px;
    height: 100%;
    -webkit-transition: all 0.75s ease 0s;
    -moz-transition: all 0.75s ease 0s;
    -ms-transition: all 0.75s ease 0s;
    -o-transition: all 0.75s ease 0s;
    transition: all 0.75s ease 0s;
}

.toggle {
    margin: 5px 5px 0 0;
}

/* Header */

.header {
    display: table;
    position: relative;
    width: 100%;
    height: 100%;
    background: url(../img/bg.jpg) no-repeat center center scroll;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* About */

.about {
    padding: 50px 0;
}
.inline {
    display: inline-block;
}

/* Services */

.services {
    padding: 50px 0;
    background: url(http://wall.rimbuz.com/wp-content/uploads/Black-Texture-Wallpaper-Themes-HD.jpg) no-repeat center center scroll;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

.service-item {
    margin-bottom: 30px;
}

/* Callout */

.callout {
    display: table;
    width: 100%;
    height: 400px;
    color: #fff;
    background: url(../img/callout.jpg) no-repeat center center scroll;
    -webkit-background-attachment: fixed;
    -moz-background-attachment: fixed;
    -o-background-attachment: fixed;
    background-attachment: fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
}

/* Portfolio */

.portfolio {
    padding: 50px 0;
}

.portfolio-item {
    cursor: pointer;
    overflow: hidden;
    margin-bottom: 30px;
    -webkit-transition: 2s;
    -moz-transition: 2s;
    -ms-transition: 2s;
    -ms-transition: 2s;
    transition: 2s;
}

.img-portfolio {
    cursor: pointer;
    opacity: 0.8;
    margin: 0 auto;
    position: relative;
    transition: 1.5s;
    -o-transition: 1.5s;
    -moz-transition: 1.5s;
    -webkit-transition: 1.5s;
}

.portfolio-desc {
    left: 25%;
    top: 15%;
    height: 50%;
    width: 50%;
    position: absolute;
    padding-bottom: -45px;
    opacity: 0.0;
    font-family: 'Josefin Sans', sans-serif;
    background: transparent;
    -webkit-transition: 2s;
    -moz-transition: 2s;
    -ms-transition: 2s;
    -ms-transition: 2s;
    transition: 2s;
    cursor: pointer;
}

.portfolio-item:hover .img-portfolio {
    opacity: 0.1;
    z-index: 4444;
    box-shadow: 0vw 0vw 2vw #ccc;
    -webkit-transform: scale(1.03);
    -moz-transform: scale(1.03);
    -ms-transform: scale(1.03);
    -o-transform: scale(1.03);
    transform: scale(1.03);
}

.portfolio-item:hover .portfolio-desc {
    opacity: 1.0;
    z-index: 5555;
}
/* Call to Action */

.call-to-action {
    padding: 50px 0;
}

.call-to-action .btn {
    margin: 10px;
}

/* Map */

.map {
    height: 500px;
}

@media(max-width:768px) {
    .map {
        height: 75%;
    }
}

.map iframe {
    pointer-events: none;
}

/* Footer */

footer {
    padding: 100px 0;
    background: #bbb;
}

#to-top {
  display: none;
  position: fixed;
  bottom: 5px;
  right: 5px;
}
* a:hover{
    text-decoration: none;
    color: inherit;
}
@media (max-width: 440px) {
    #sidebar-wrapper.active {
        width: 100%;
    }
    .sidebar-nav {
        width: 100%;
        text-align: center;
    }
    .sidebar-nav > .sidebar-brand {
        text-align: left;
    }
    #homebtn{
        margin-top: 25%;
    }
}