﻿
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,700');

body {
    background: #ffffff;
    font-family: 'Roboto', sans-serif;
    overflow-x: hidden;
}

html, body {
    width: 100%;
    height: 100%;
}

/*---------------------------------------
  TYPOGRAPHY              
-----------------------------------------*/

h1,
h2,
h3,
h4,
h5,
h6,
.font-heading {
    font-family: "Poppins", sans-serif;
    color: #000;
}

h1 {
    font-size: 40px;
    font-weight: 200;
    line-height: 50px;
}

h2 {
    font-size: 30px;
    line-height: 40px;
    margin-top: 0;
}

h3 {
    font-size: 20px;
    font-weight: bold;
    line-height: 32px;
}

h4 {
    color: #505050;
    font-size: 18px;
    line-height: 28px;
}

p {
    color: #757575;
    font-size: 16px;
    font-weight: 300;
    line-height: 29px;
    letter-spacing: 0.5px;
}

.base-tlinks {
    text-indent: -9999px;
    height: 0;
    line-height: 0;
    font-size: 0;
    overflow: hidden;
}
/*---------------------------------------
  BUTTONS               
-----------------------------------------*/

.base-section-btn {
    margin: 32px 0 0 0;
    padding: 0;
}

    .base-section-btn a,
    .base-section-btn button {
        line-height: 45px;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px;
        color: #ffffff;
        font-weight: normal;
    }

        .base-section-btn a span,
        .base-section-btn button span {
            position: relative;
            display: inline-block;
            font-size: 18px;
            font-weight: normal;
            letter-spacing: 0.5px;
            padding: 0 25px;
            background: #4dc47d;
            border-radius: 1px;
            -webkit-transition: -webkit-transform 0.3s;
            -moz-transition: -moz-transform 0.3s;
            transition: transform 0.3s;
            -webkit-transform-origin: 50% 0;
            -moz-transform-origin: 50% 0;
            transform-origin: 50% 0;
            -webkit-transform-style: preserve-3d;
            -moz-transform-style: preserve-3d;
            transform-style: preserve-3d;
        }

.csstransforms3d .base-section-btn a span::before,
.csstransforms3d .base-section-btn button span::before {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    border-radius: 1px;
    color: #ffffff;
    padding: 0 25px;
    content: attr(data-hover);
    -webkit-transition: background 0.3s;
    -moz-transition: background 0.3s;
    transition: background 0.3s;
    -webkit-transform: rotateX(-90deg);
    -moz-transform: rotateX(-90deg);
    transform: rotateX(-90deg);
    -webkit-transform-origin: 50% 0;
    -moz-transform-origin: 50% 0;
    transform-origin: 50% 0;
}

.base-section-btn a:hover span,
.base-section-btn a:focus span,
.base-section-btn button:hover span,
.base-section-btn button:focus span {
    /*-webkit-transform: rotateX(90deg) translateY(-22px);
    -moz-transform: rotateX(90deg) translateY(-22px);
    transform: rotateX(90deg) translateY(-22px);*/
    background-color:#358857;
}

.csstransforms3d .base-section-btn a:hover span::before,
.csstransforms3d .base-section-btn a:focus span::before,
.csstransforms3d .base-section-btn button:hover span::before,
.csstransforms3d .base-section-btn button:hover span::before {
    background: #000000;
}


/*---------------------------------------
  GENERAL               
-----------------------------------------*/

html {
    -webkit-font-smoothing: antialiased;
}

a {
    color: #3397b8;
    -webkit-transition: 0.5s;
    transition: 0.5s;
}

    a:hover, a:active, a:focus {
        /*color: #000000;*/
        outline: none;
    }

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    *:before,
    *:after {
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #252525;
}

.base-section-title {
    position: relative;
    padding-bottom: 22px;
}

.base-parallax-section {
    background-attachment: fixed !important;
    background-size: cover !important;
}

#about, #project,
#team, #contact, footer {
    background: #ffffff;
}

#about,
#team, #contact {
    padding-top: 100px;
    padding-bottom: 100px;
    text-align: center;
}


/*---------------------------------------
  PRE LOADER              
-----------------------------------------*/

.base-preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
}

.base-spinner {
    border: 1px solid transparent;
    border-radius: 5px;
    position: relative;
}

    .base-spinner:before {
        content: '';
        box-sizing: border-box;
        position: absolute;
        top: 50%;
        left: 50%;
        width: 45px;
        height: 45px;
        margin-top: -10px;
        margin-left: -10px;
        border-radius: 50%;
        border: 1px solid #959595;
        border-top-color: #ffffff;
        animation: base-spinner .9s linear infinite;
    }

@-webkit-@keyframes base-spinner {
    to {
        transform: rotate(360deg);
    }
}

@keyframes base-spinner {
    to {
        transform: rotate(360deg);
    }
}


/*---------------------------------------
  MENU             
-----------------------------------------*/

.base-custom-navbar {
    margin-bottom: 0;
    background-color: rgba(0,0,0,0.5);
    padding: 20px 0;
}

    .base-custom-navbar .base-navbar-brand {
        color: #f9f9f9;
        font-weight: normal;
        font-size: 25px;
    }

    .base-custom-navbar .base-nav li a {
        font-size: 16px;
        font-weight: normal;
        color: #f9f9f9;
        letter-spacing: 0.5px;
        -webkit-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s;
        padding: 0;
        margin: 15px 20px;
        text-transform: uppercase;
    }

    .base-custom-navbar .base-navbar-nav > li > a:hover,
    .base-custom-navbar .base-navbar-nav > li > a:focus {
        background-color: transparent;
        color: #ffffff;
    }

    .base-custom-navbar .base-navbar-nav li a:after {
        content: "";
        position: absolute;
        display: block;
        width: 0px;
        height: 2px;
        margin: auto;
        background: transparent;
        transition: width .3s ease, background-color .3s ease;
    }

    .base-custom-navbar .base-navbar-nav li a:hover:after,
    .base-custom-navbar .base-nav li.active > a:after {
        background: #ffffff;
        color: #ffffff;
        width: 100%;
    }

    .base-custom-navbar .base-nav li.active > a {
        background-color: transparent;
        color: #ffffff;
    }

    .base-custom-navbar .base-navbar-toggle {
        border: none;
        padding-top: 10px;
    }

    .base-custom-navbar .base-navbar-toggle {
        background-color: transparent;
    }

        .base-custom-navbar .base-navbar-toggle .base-icon-bar {
            background: #ffffff;
            border-color: transparent;
        }

@media(min-width:768px) {
    .base-custom-navbar {
        background: 0 0;
    }

        .base-custom-navbar.top-nav-collapse {
            background: rgba(0,0,0,0.5);
            padding: 15px 0;
        }
}


/*---------------------------------------
  HOME             
-----------------------------------------*/

#home {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100vh;
    position: relative;
    padding-top: 10em;
}

    #home h1 {
        color: #ffffff;
        font-size: 6em;
        line-height: 1.2em;
    }

    #home p {
        color: rgba(250,250,250,0.7);
    }

    #home .base-overlay {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0,0,0,0.75);

        /*background: url(../images/videoBg.jpg) no-repeat center center;*/
        /*opacity: 0.5;*/
    }

    #home video {
        position: fixed;
        /*top: 50%;
        left: 50%;*/
        min-width: 100%;
        min-height: 100%;
        width: auto;
        height: auto;
        z-index: -100;
        /*transform: translateX(-50%) translateY(-50%);*/
        background-size: cover;
        transition: 1s opacity;
        top: 0px;
    }


/*---------------------------------------
  ABOUT              
-----------------------------------------*/

#about {
    padding-top: 200px;
    padding-bottom: 150px;
}

.base-about-info h3 {
    font-size: 14px;
    letter-spacing: 12px;
    text-transform: uppercase;
    margin: 0;
}


/*---------------------------------------
  PROJECT              
-----------------------------------------*/

.base-project-item {
    overflow: hidden;
    position: relative;
    margin-bottom: 25px;
    padding: 0;
    vertical-align: middle;
    text-align: center;
}

.base-project-overlay {
    background: rgba(0,0,0,0.5);
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

.base-project-info {
    padding: 12em 0;
}

.base-project-item img {
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

.base-project-item:hover img {
    transform: scale(1.1);
}

.base-project-overlay h1 {
    color: #ffffff;
    margin: 0;
}

.base-project-overlay h3 {
    color: #d9d9d9;
    font-size: 14px;
    letter-spacing: 0.2px;
    margin-top: 0;
}

.base-project-item:hover .base-project-overlay {
    opacity: 1;
}


/*---------------------------------------
   TEAM             
-----------------------------------------*/

#team .base-item {
    display: block;
    width: 100%;
    margin-bottom: 22px;
}

#team h3,
#team p {
    margin: 0;
}

.base-team-item {
    overflow: hidden;
    position: relative;
    margin-top: 34px;
    margin-bottom: 16px;
}

    .base-team-item img {
        -webkit-transition: all ease-in-out 0.4s;
        transition: all ease-in-out 0.4s;
    }

    .base-team-item:hover img {
        transform: scale(1.1);
    }

.base-team-overlay {
    background: rgba(0,0,0,0.5);
    opacity: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

    .base-team-overlay .base-social-icon {
        position: relative;
        top: 45%;
    }

        .base-team-overlay .base-social-icon li a {
            background: #ffffff;
            color: #191919;
            width: 35px;
            height: 35px;
            line-height: 35px;
            text-align: center;
        }

.base-team-item:hover .base-team-overlay {
    opacity: 1;
}


/*---------------------------------------
  CONTACT             
-----------------------------------------*/

#contact {
    background: url('../images/contact-bg.jpg') 50% 0 repeat-y fixed;
    background-size: cover;
    background-position: center center;
}

#contact-form {
    padding-top: 22px;
}

#contact .text-success,
#contact .base-text-danger {
    display: none;
    padding: 0 0 5px 20px;
}

#contact .base-form-control {
    border: none;
    box-shadow: none;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 22px;
    -webkit-transition: all ease-in-out 0.4s;
    transition: all ease-in-out 0.4s;
}

    #contact .base-form-control:focus {
        border-color: #d9d9d9;
    }

#contact input {
    height: 55px;
    line-height: 45px;
}

#contact .base-section-btn {
    margin: 5px 0 0 0;
}

#contact button#cf-submit {
    background: transparent;
    border: none;
    padding: 0;
    line-height: 50px;
}

/*---------------------------------------
  Blog           
-----------------------------------------*/

.post-entry {
    margin-bottom: 60px;
}

    .post-entry .post-text .post-meta {
        color: #ccc;
        font-size: 13px;
        display: block;
        margin-bottom: 10px;
    }

    .post-entry .post-text h3 {
        font-size: 20px;
        color: #000000;
    }

        .post-entry .post-text h3 a {
            color: #000000;
        }

            .post-entry .post-text h3 a:hover {
                text-decoration: none;
                color: #2d71a1;
            }

    .post-entry .post-text .readmore {
        color: #2d71a1;
    }

.sidebar-box {
    margin-bottom: 30px;
    padding: 25px;
    font-size: 15px;
    width: 100%;
    float: left;
    background: #fff;
}

    .sidebar-box *:last-child {
        margin-bottom: 0;
    }

    .sidebar-box h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }

.categories li,
.sidelink li {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted gray("300");
    list-style: none;
}

    .categories li:last-child,
    .sidelink li:last-child {
        margin-bottom: 0;
        border-bottom: none;
        padding-bottom: 0;
    }

    .categories li a,
    .sidelink li a {
        display: block;
    }

        .categories li a span,
        .sidelink li a span {
            position: absolute;
            right: 0;
            top: 0;
            color: #ccc;
        }

    .categories li.active a,
    .sidelink li.active a {
        color: #000000;
        font-style: italic;
    }

.comment-form-wrap {
    clear: both;
}

.comment-list {
    padding: 0;
    margin: 0;
}

    .comment-list .children {
        padding: 50px 0 0 40px;
        margin: 0;
        float: left;
        width: 100%;
    }

    .comment-list li {
        padding: 0;
        margin: 0 0 30px 0;
        float: left;
        width: 100%;
        clear: both;
        list-style: none;
    }

        .comment-list li .vcard {
            width: 80px;
            float: left;
        }

            .comment-list li .vcard img {
                width: 50px;
                border-radius: 50%;
            }

        .comment-list li .comment-body {
            float: right;
            width: calc(100% - 80px);
        }

            .comment-list li .comment-body h3 {
                font-size: 20px;
            }

            .comment-list li .comment-body .meta {
                text-transform: uppercase;
                font-size: 13px;
                letter-spacing: .1em;
                color: #ccc;
            }

            .comment-list li .comment-body .reply {
                padding: 5px 10px;
                background: #e6e6e6;
                color: #000000;
                text-transform: uppercase;
                font-size: 14px;
            }

                .comment-list li .comment-body .reply:hover {
                    color: #000000;
                    background: #e3e3e3;
                }

.search-form {
    background: #f7f7f7;
    padding: 10px;
}

    .search-form .form-group {
        position: relative;
    }

        .search-form .form-group input {
            padding-right: 50px;
        }

    .search-form .icon {
        position: absolute;
        top: 50%;
        right: 20px;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
    }



/*---------------------------------------
  FOOTER              
-----------------------------------------*/

footer {
    padding-top: 120px;
    padding-bottom: 120px;
}

    footer h4 {
        padding-top: 12px;
    }

    footer a {
        color: #757575;
    }

    footer .base-copyright-text {
        padding-top: 42px;
    }


/*---------------------------------------
  SOCIAL ICON             
-----------------------------------------*/

.base-social-icon {
    position: relative;
    padding: 0;
    margin: 0;
    text-align: center;
}

    .base-social-icon li {
        display: inline-block;
        list-style: none;
    }

        .base-social-icon li a {
            border-radius: 100%;
            color: #292929;
            cursor: pointer;
            font-size: 18px;
            text-decoration: none;
            -webkit-transition: all ease-in-out 0.3s;
            transition: all ease-in-out 0.3s;
            text-align: center;
            position: relative;
            margin: 4px 8px 0 8px;
        }

            .base-social-icon li a:hover {
                -webkit-transform: scale(1.2);
                transform: scale(1.2);
            }


/*---------------------------------------
  MOBILE RESPONSIVE              
-----------------------------------------*/

@media (max-width: 992px) {
    #home h1 {
        font-size: 4em;
        line-height: normal;
    }
}

@media (max-width: 980px) {
    h1 {
        font-size: 30px;
        line-height: inherit;
    }

    #home {
        padding-top: 0em;
    }

    #about {
        padding-top: 120px;
        padding-bottom: 100px;
    }

    .base-project-info {
        padding: 4em 0;
    }

    footer {
        text-align: center;
    }

        footer .base-social-icon {
            margin-top: 32px;
        }
}

@media (max-width: 770px) {
    #home h1 {
        font-size: 3.5em;
    }
}

@media (max-width: 767px) {
    .base-custom-navbar {
        padding: 10px 0;
    }

        .base-custom-navbar .base-nav li a {
            display: inline-block;
            line-height: 15px;
            margin-bottom: 0;
        }

        .base-custom-navbar .base-nav li:last-child a {
            margin-bottom: 5px;
        }

    .base-project-info {
        padding: 10em 0;
    }

    .base-footer-info {
        padding: 22px 0 22px 0;
    }
}


@media (max-width: 580px) {
    h1 {
        font-size: 26px;
    }

    #home {
        height: 100vh;
    }

    .base-about-info h3 {
        font-size: 12px;
        letter-spacing: 6px;
    }

    .base-project-info {
        padding: 5em 0;
    }
}
