/* =======================================================================
Hermosa - One page Parallax Theme
======================================================================= */

/*
    1. TYPOGRAPHY
    2. GLOBAL STYLES
    3. NAVIGATION
    4. HEADER
    5. SERVICES
    6. ABOUT
    7. FACTS
    8. LETS TALK
    9. WORK
    10. PRICES
    11. TESTIMONIALS
    12. BLOG
    13. CONTACT
    14. CLIENT
    15. FOOTER
    16. CONTACT PAGE
*/

/*---------------------------------------
  1. TYPOGRAPHY                
-----------------------------------------*/

/* FONTS */
@import url('https://fonts.googleapis.com/css?family=Dosis');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400');

/* --------------------------------------
  2. GLOBAL STYLES
-----------------------------------------*/
body {
    background: #FFF;
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
    font-size: 15px;
    overflow-x: hidden;
    color: #212121;
}

ul, ol {
    padding: 0;
    margin: 0;
}

li {
    list-style: none;
    line-height: 25px;
    padding-left: 10px;
}

a {
    color: #337ab7;
}

    a:hover {
        text-decoration: none;
    }

    a:focus {
        text-decoration: none;
    }

p, span, h1, h2, h3, h4, h5, a {
    margin: 0;
    letter-spacing: 0.5px;
    line-height: 27px;
}

img {
    max-width: 100%;
    height: auto;
}

.clear {
    clear: both;
}

.sections {
    padding: 120px 0;
}
/* SECTION TITLE */
.sec-title {
    text-align: center;
    margin: 60px 0;
}

    .sec-title h4 {
        font-weight: 300;
        font-size: 40px;
        margin-bottom: 30px;
    }

        .sec-title h4 span {
            font-weight: 600;
        }

    .sec-title p {
        font-weight: 300;
        color: #6f6f6f;
        letter-spacing: 1px;
        font-size: 13.5px;
        width: 50%;
        margin: 0 auto;
    }

/* PRELOADER */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: #fff;
    z-index: 9999999999999;
}

.load-circle {
    margin: 45vh auto;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid #e8e8e8;
    border-top: 2px solid #212121;
    -webkit-animation: rotate 1.2s infinite linear;
    animation: rotate 1.2s infinite linear;
}

@-webkit-keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* --------------------------------------
  3. NAVIGATION
-----------------------------------------*/
.navbar-fixed-top {
    background: 0 0;
    border-bottom: 1px solid #CCCCCC;
    border-radius: 0;
    z-index: 9;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #FAFAFA;
    color: #333;
    padding: 5px 0;
}

    .navbar-fixed-top .navbar-nav > li {
        font-size: 16px;
        margin: 30px 20px;
        font-weight: 400;
        cursor: pointer;
        position: relative;
    }

        .navbar-fixed-top .navbar-nav > li:last-child {
            margin-right: 14px;
        }

        .navbar-fixed-top .navbar-nav > li > a {
            color: rgba(30, 30, 30, 0.95);
            margin: 0;
            padding: 0;
            text-transform: uppercase;
            font-size: 12px;
            letter-spacing: 1px;
            font-weight: 400;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
        }

            .navbar-fixed-top .navbar-nav > li > a:focus {
                background: transparent;
            }

            .navbar-fixed-top .navbar-nav > li > a:hover {
                background: transparent;
                color: rgba(30, 30, 30, 0.60);
            }

    .navbar-fixed-top .logo {
        font-size: 22px;
        font-weight: 700;
        line-height: 36px;
        padding-top: 24px;
    }

        .navbar-fixed-top .logo span {
            color: #212121;
            font-weight: 300;
        }

        .navbar-fixed-top .logo, .navbar-fixed-top .logo:focus, .navbar-fixed-top .logo:hover {
            font-weight: 700;
            font-size: 22px;
            display: inline-block;
        }

.fixed {
    background: #FFF;
    padding: 0;
    position: fixed;
    -webkit-box-shadow: 0 0 13px #ddd;
    -moz-box-shadow: 0 0 13px #ddd;
    -o-box-shadow: 0 0 13px #ddd;
    -ms-box-shadow: 0 0 13px #ddd;
    box-shadow: 0 0 13px #ddd;
    transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -ms-transition: all 0.4s ease-in-out;
}

    .fixed .logo span {
        color: #555;
    }

    .fixed .navbar-nav > li > a {
        color: #555;
    }

    .fixed .logo {
        padding-top: 25px;
    }

.navbar-toggle .icon-bar {
    background: #FFF;
}

/* --------------------------------------
  4. HEADER
-----------------------------------------*/
.s-header {
    height: 80px;
    width: 100%;
    position: fixed;
    left: auto;
    top: 0px;
    bottom: auto;
    z-index: 999;
    border-style: none;
    border-width: 0px;
    background: none;
}

    .s-header .header-overlay {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background: rgba(0,0,0,.2);
    }

    .s-header .middle-c {
        color: #FFF;
        position: absolute;
        width: 100%;
        top: 52%;
        left: 0;
        -webkit-transform: translate(0,-50%);
        -moz-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        -o-transform: translate(0,-50%);
        transform: translate(0,-50%);
    }

        .s-header .middle-c .capt {
            margin-top: 50px;
        }

        .s-header .middle-c h1 {
            font-weight: 600;
            font-size: 60px;
            letter-spacing: 4px;
            display: block;
            color: #fff;
            line-height: 45px;
            text-transform: uppercase;
        }

        .s-header .middle-c h3 {
            margin: 39px 0 35px 0;
            font-size: 13.5px;
            font-weight: 300;
            color: #fff;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .s-header .middle-c .header-btn {
            margin-top: 20px;
            display: inline-block;
        }

        .s-header .middle-c a {
            margin: 0 15px;
            display: inline-block;
            font-size: 11.5px;
            padding: 10.5px 40px;
            border: 1px solid #fff;
            background: #FFF;
            font-weight: 400;
            letter-spacing: 2px;
            border-radius: 999px;
            -webkit-border-radius: 999px;
            -moz-border-radius: 999px;
            -o-border-radius: 999px;
            -ms-border-radius: 999px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            text-transform: uppercase;
            color: #212121;
        }

            .s-header .middle-c a:hover {
                color: #fff;
            }

.banner {
    display: block;
    background: rgba(48,167,233,1);
    border-style: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    border-radius: 0px;
    width: 100%;
    height: 480px;
    position: relative;
}

    .banner h1 {
        font-weight: 600;
        margin: 20px 0;
        font-size: 40px;
        letter-spacing: 4px;
        display: block;
        color: #fff;
        line-height: 45px;
        text-transform: uppercase;
    }

    .banner h3 {
        margin: 15px 0;
        font-size: 14px;
        font-weight: 300;
        color: #fff;
        letter-spacing: 2px;
    }

    .banner a {
        margin: 25px 10px;
        display: inline-block;
        font-size: 11.5px;
        padding: 10.5px 40px;
        border: 1px solid #fff;
        background: #FFF;
        font-weight: 400;
        letter-spacing: 2px;
        border-radius: 999px;
        -webkit-border-radius: 999px;
        -moz-border-radius: 999px;
        -o-border-radius: 999px;
        -ms-border-radius: 999px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        text-transform: uppercase;
        color: #212121;
    }

        .banner a:hover {
            color: #fff;
            background: green;
            border-color: green;
        }

    .banner li {
        color: #fff;
        line-height: 25px;
    }

/* --------------------------------------
  5. SERVICES
-----------------------------------------*/
.services-items .service-box {
    text-align: center;
    padding: 40px 20px;
}

.service-box .serv-icon span,
.service-box .serv-icon i {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    border: 1px solid #f2f4ec;
    border-radius: 50%;
    line-height: 75px;
    background: #f2f4ec;
    color: #212121;
    font-size: 30px;
    -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;
}

.service-box .serv-content h3 {
    font-size: 16px;
    margin: 0 0 20px 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.service-box .serv-content p {
    color: #6f6f6f;
    font-size: 13.5px;
}

.services-items .service-box:hover span,
.services-items .service-box:hover i {
    color: #FFF;
}

/* --------------------------------------
  6. ABOUT
-----------------------------------------*/
.about-s .about-pic {
    background-image: url('../img/young-woman-with-tatoos-taking-photos-of-busy-street.jpg');
    background-size: cover;
    background-attachment: fixed;
    min-height: 542px;
}

.about-s .about-content {
    padding: 30px;
    background: #212121;
    text-align: left;
    min-height: 542px;
    position: relative;
}

    .about-s .about-content .icon,
    .about-s .about-content i {
        position: absolute;
        right: 30px;
        bottom: 30px;
        font-size: 120px;
        color: #ededed;
        opacity: 0.05;
    }

    .about-s .about-content .about-bord {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 0;
        -webkit-transform: translate(0,-50%);
        -moz-transform: translate(0,-50%);
        -ms-transform: translate(0,-50%);
        -o-transform: translate(0,-50%);
        transform: translate(0,-50%);
        color: #FFF;
        padding: 50px;
    }

        .about-s .about-content .about-bord h5 {
            letter-spacing: 4px;
            margin-bottom: 15px;
            text-transform: uppercase;
            font-size: 12px;
            font-weight: 600;
            position: relative;
            display: inline-block;
        }

            .about-s .about-content .about-bord h5:after {
                content: '';
                opacity: 0.5;
                width: 0%;
                height: 40%;
                position: absolute;
                left: 0;
                top: 14px;
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
                -o-transition: all 0.3s ease-in-out;
                -ms-transition: all 0.3s ease-in-out;
            }

    .about-s .about-content:hover .about-bord h5:after,
    .about-s .about-content:focus .about-bord h5:after {
        width: 100%;
    }

    .about-s .about-content .about-bord h2 {
        font-size: 28px;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .about-s .about-content .about-bord p {
        color: #AAB2BD;
        font-size: 14px;
    }

/* --------------------------------------
  7. FACTS
-----------------------------------------*/
.facts .fact-item {
    text-align: center;
    font-family: 'Dosis', sans-serif;
}

.facts .counting-icon i,
.facts .counting-icon span {
    font-size: 50px;
    padding-top: 5px;
}

.facts h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0;
}

.facts .count {
    padding: 25px 0;
    display: inline-block;
    font-size: 35px;
    font-family: 'Dosis', sans-serif;
    letter-spacing: 3px;
}

    .facts .count:before {
        content: '+';
    }

/* --------------------------------------
  8. LETS TALK
-----------------------------------------*/
.lets-talk {
    background-color: rgba(0,0,0,.4);
    background-blend-mode: overlay;
    background-image: url('../img/photo-album-historically-mages.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    text-align: center;
}

    .lets-talk p {
        margin-bottom: 35px;
        color: #fff;
    }

    .lets-talk h4 {
        margin-bottom: 35px;
        font-size: 45px;
        letter-spacing: 1.5px;
        color: #FFF;
    }

    .lets-talk a {
        position: relative;
        display: inline-block;
        font-size: 16px;
        margin-top: 10px;
        color: #fff;
        padding: 10px 50px 10px 50px;
        text-align: center;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
    }

        .lets-talk a:hover {
            background: transparent;
        }

/* --------------------------------------
  9. WORK
-----------------------------------------*/
.work {
    padding: 120px 0 110px 0;
}

    .work .filter-work {
        margin: 0 auto;
        text-align: center;
        margin-bottom: 45px;
    }

        .work .filter-work a {
            color: #212121;
            cursor: pointer;
            line-height: 27px;
            text-transform: uppercase;
            font-family: 'Dosis', sans-serif;
            letter-spacing: 2px;
            font-size: 14px;
            margin: 0 10px;
            -webkit-transition: ease-out .2s;
            -moz-transition: ease-out .2s;
            -o-transition: ease-out .2s;
            transition: ease-out .2s;
            padding: 7px 14px;
        }

        .work .filter-work .is-checked {
            color: #FFF;
        }

    .work .work-item {
        padding: 0 0px 20px 17px;
        width: 33%;
    }

    .work .work-caption {
        position: relative;
    }

        .work .work-caption img {
            height: auto;
            width: 100%;
            max-width: 100%;
        }

        .work .work-caption .overlay {
            position: absolute;
            top: 0;
            left: 0;
            -webkit-transition: ease-out .3s;
            -moz-transition: ease-out .3s;
            -o-transition: ease-out .3s;
            transition: ease-out .3s;
            width: 100%;
            height: 100%;
            opacity: 0;
            background:;
        }

            .work .work-caption .overlay:focus {
                outline: none;
            }

            .work .work-caption .overlay span {
                color: #FFF;
            }

    .work .work-item:hover .overlay {
        opacity: 1;
    }

    .work .work-caption .info-content {
        position: absolute;
        bottom: 30px;
        left: 0;
        right: 0;
        text-align: center;
    }

        .work .work-caption .info-content h4 {
            color: #FFF;
            font-size: 14px;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-family: 'Dosis', sans-serif;
        }

    .work .work-caption:focus,
    .work .work-item:focus,
    .work .work-caption img:focus,
    .work .work-caption a:focus {
        outline: none;
    }

.white-popup {
    position: relative;
    background: #fff;
    width: auto;
    max-width: 1100px;
    margin: 0 auto;
}

    .white-popup div {
        padding: 30px;
        text-align: center;
    }

        .white-popup div h3 {
            margin-bottom: 25px;
            text-align: center;
            font-family: 'Dosis', sans-serif;
            font-size: 18px;
            font-weight: 400;
            color: #000;
        }

        .white-popup div p {
            font-size: 14px;
            text-align: left;
            line-height: 27px;
        }

    .white-popup img {
        width: 100%;
        height: auto;
    }

.mfp-close {
    left: 0;
}

    .mfp-close:hover {
        color: #FFF;
    }

.mfp-close-btn-in .mfp-close {
    color: #FFF;
}

.work img {
    margin: 25px 0;
}

/* --------------------------------------
  10. PRICES
-----------------------------------------*/
.price {
    background: #f2f4ec;
}

.price-table .item {
    background: #FFF;
    padding: 50px;
    position: relative;
    overflow: hidden;
}

.price .item .type {
    margin: 0 0 50px;
    font-family: 'Dosis', sans-serif;
    text-transform: uppercase;
}

    .price .item .type h5 {
        font-size: 25px;
        letter-spacing: 3px;
    }

.price .item .mount {
    margin: 0 0 50px;
}

    .price .item .mount h3 {
        font-size: 60px;
        font-weight: 700;
    }

        .price .item .mount h3 span {
            font-size: 20px;
            font-weight: 400;
            padding-right: 5px;
        }

.price .item .features {
    margin: 0 0 50px;
    width: 100%;
}

    .price .item .features p {
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #f2f4ec;
        color: #6f6f6f;
        font-size: 14px;
    }

        .price .item .features p:last-child {
            border-width: 0;
            margin-bottom: 0;
        }

.price .item .order a {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 7px;
    width: 90%;
    display: inline-block;
    background: #FFF;
    letter-spacing: .5px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    background: #212121;
    border: 1px solid #212121;
    color: #FFF;
}

    .price .item .order a:hover {
        color: #212121;
        background: transparent;
    }

.price .best .order a:hover {
    background: transparent;
}

.price .best .item {
    background-image: url('../img/pattern/patt.png');
    background-position: 0 0;
    background-repeat: repeat;
}

/* --------------------------------------
  11. TESTIMONIALS
-----------------------------------------*/
.testimonials {
    background-color: rgba(0,0,0,.7);
    background-blend-mode: overlay;
    background-image: url('../img/sunrise-jung-dong-jin-sea-man-friends-photo.jpg');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
}

    .testimonials .title p {
        color: #fff;
    }

    .testimonials .icon {
        font-size: 45px;
        display: inline-block;
        margin-bottom: 45px;
        color: #fff;
    }

.testimonial-box {
    margin: 0 auto;
    float: none;
    padding-left: 30px;
}

    .testimonial-box p {
        color: #fff;
        font-size: 14px;
        font-weight: 400;
        line-height: 27px;
        margin-bottom: 20px;
        letter-spacing: 1.5px;
    }

    .testimonial-box h3 {
        letter-spacing: 3px;
        font-family: 'Dosis', sans-serif;
        font-size: 14px;
        margin-bottom: 45px;
        font-weight: 700;
    }

.t-item .testimonial-box h3 span {
    position: relative;
    text-transform: none;
    display: block;
    letter-spacing: .5px;
    color: #AAB2BD;
    font-style: italic;
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 0;
}

.owl-theme .owl-dots .owl-dot span {
    width: 11px;
    height: 11px;
    margin: 0 8px;
    background: transparent !important;
    border: 2px solid #fff !important;
}

.owl-theme .owl-dots .owl-dot:focus {
    outline: none;
}

.owl-theme .owl-dots .active span {
    background: #fff !important;
}

/* --------------------------------------
  12. BLOG
-----------------------------------------*/
.blog-item {
    color: #212121;
    padding: 35px;
    position: relative;
    border: 1px solid #e6e6e6;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
}

    .blog-item .post-meta {
        font-size: 13px;
        color: #6f6f6f;
    }

        .blog-item .post-meta ul li {
            display: inline-block;
        }

            .blog-item .post-meta ul li:first-child::after {
                content: '|';
            }

    .blog-item .post-title {
        margin: 20px 0;
    }

        .blog-item .post-title a h3 {
            transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
        }

        .blog-item .post-title h3 {
            font-size: 17px;
            font-weight: 400;
        }

    .blog-item .post-content p {
        color: #6f6f6f;
        font-size: 14px;
    }

    .blog-item .cleartop {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid #e6e6e6;
    }

        .blog-item .cleartop .link {
            float: left;
        }

            .blog-item .cleartop .link a {
                font-weight: 400;
                font-size: 14px;
                position: relative;
                display: inline-block;
            }

                .blog-item .cleartop .link a:hover {
                    color: #212121;
                }

                .blog-item .cleartop .link a:after {
                    content: '';
                    opacity: 0.5;
                    width: 0%;
                    height: 34%;
                    position: absolute;
                    left: 0;
                    top: 15px;
                    transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                    -o-transition: all 0.3s ease-in-out;
                    -ms-transition: all 0.3s ease-in-out;
                }

                .blog-item .cleartop .link a:hover::after {
                    width: 100%;
                }

        .blog-item .cleartop .comment {
            float: right;
            font-weight: 400;
            font-size: 14px;
            color: #6f6f6f;
        }

/* --------------------------------------
  13. CONTACT
-----------------------------------------*/
.contact {
    background: #f2f4ec;
}

.contact-form {
    padding: 0;
}

    .contact-form span {
        margin-bottom: 5px;
        font-weight: 400;
    }

    .contact-form textarea,
    .contact-form input {
        width: 100%;
        float: left;
        font-size: 16px;
        padding: 10px;
        border: none;
        background: #FFF;
        border: 1px solid #e1e4ea;
        color: #111;
        font-family: 'Dosis', sans-serif;
        -webkit-transition: ease-out .3s;
        -moz-transition: ease-out .3s;
        -o-transition: ease-out .3s;
        transition: ease-out .3s;
    }

.contact-item {
    margin-bottom: 30px;
}

    .contact-item input:focus,
    .contact-item textarea:focus {
        outline: none;
    }

    .contact-item .button {
        width: 100%;
        padding: 10px 60px;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -ms-transition: all .3s;
        margin-bottom: 0;
        background: transparent;
        font-size: 15px;
        color: #FFF;
    }

        .contact-item .button:hover {
            background: transparent;
        }

    .contact-item .parsley-required {
        font-family: 'Dosis', sans-serif;
        color: #a94442;
        float: left;
        margin: 7px 0 0 0;
    }

.parsley-type {
    font-family: 'Dosis', sans-serif;
    color: #a94442;
    float: left;
    margin: 7px 0 0 0;
}

.contact-info {
    margin-top: 60px;
    text-align: center;
}

.contact .item i,
.contact .item .icon {
    font-size: 35px;
    margin-bottom: 20px;
}

.contact .item h5 {
    font-size: 13px;
    margin-top: 2.5px;
}

/* --------------------------------------
  14. CLIENT
-----------------------------------------*/
.clients .client-logo {
    border-bottom: 1px solid #dedede;
    border-right: 1px solid #dedede;
    text-align: center;
    padding: 15px 0;
}

.second-row .client-logo {
    border-bottom: none;
}

.client-logo:first-child {
    border-left: none;
}

.client-logo:last-child {
    border-right: none;
}

/* --------------------------------------
  15. FOOTER
-----------------------------------------*/
footer {
    background: #111;
    padding: 30px 0;
}

    footer .social-icon span {
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 50%;
        -moz-border-radius: 50%;
        -o-border-radius: 50%;
        -ms-border-radius: 50%;
        -webkit-border-radius: 50%;
        color: #888;
        background: #171717;
        transition: all .3s;
        -webkit-transition: all .3s;
        -moz-transition: all .3s;
        -o-transition: all .3s;
        -ms-transition: all .3s;
        display: inline-block;
        margin: 0 7px;
    }

    footer .social-icon a:hover span {
        color: #FFF;
    }

    footer .logo {
        font-size: 30px;
        font-weight: 700;
        letter-spacing: 2.5px;
    }

        footer .logo span {
            color: #fff;
            font-weight: 300;
        }

        footer .logo,
        footer .logo:focus,
        footer .logo:hover {
            font-weight: 700;
            font-size: 28px;
            display: inline-block;
        }

.sub-footer {
    text-align: center;
    padding: 20px 0;
    border-top: 2px solid #151515;
    background: #111;
}

    .sub-footer span {
        color: #7e7e7e;
        margin-top: 0;
        display: inline-block;
        font-family: 'Dosis', sans-serif;
    }

        .sub-footer span a {
            color: #7e7e7e;
        }

            .sub-footer span a:hover {
                color: #fff;
                text-decoration: underline;
            }

/* --------------------------------------
  16. CONTACT PAGE
-----------------------------------------*/
.contact-p {
    background: #fafafa;
}

.contact-f {
    float: none;
    text-align: center;
    background: #FFF;
    margin: 80px auto;
    padding: 60px 30px;
    -webkit-box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
    -moz-box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
    box-shadow: 0 5px 7px 0 rgba(0,0,0,0.20);
}

    .contact-f h3 {
        font-size: 19px;
        margin-top: 30px;
    }

.contact-success i {
    color: #8cc152;
}

.contact-nosuccess i {
    color: #e9573f;
}

.footer .f-co a {
    color: #232323;
}

.mb20 {
    margin-bottom: 20px;
}

.mb60 {
    margin-bottom: 60px;
}

.download a {
    border-radius: 20px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    padding: 7px;
    margin: 20px 0;
    width: 200px;
    display: inline-block;
    background: #FFF;
    letter-spacing: .5px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    -ms-transition: all .5s;
    transition: all .5s;
    background: #3BAFDA;
    border: 1px solid #3BAFDA;
    color: #FFF;
    text-align: center;
}

    .download a:hover {
        background: transparent;
        color: #3BAFDA;
    }

/*------------------
 c) Video box
--------------------*/
.video-box {
    border-radius: 10px;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 30px;
}

.video-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    right: 50%;
    display: inline-block;
    border-radius: 50%;
    background: #fff;
    color: #333;
    width: 100px;
    height: 100px;
    opacity: 0.8;
    -webkit-transform: translate3d(-45%, -45%, 0);
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
}

    .video-play-icon:before {
        font-family: FontAwesome;
        font-size: 24px;
        content: "\f04b";
    }

    .video-play-icon:hover {
        opacity: 1;
    }

    .video-play-icon:active {
        width: 90px;
        height: 90px;
    }

.video-sm {
    min-height: 440px;
}

.video-md {
    min-height: 450px;
}

.video-lg {
    min-height: 550px;
}


.video-play {
    display: none;
    z-index: 20;
    width: 882px;
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -540px;
    margin-top: -320px;
}

.video-bg {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 10;
    background-color: rgba(0,0,0,0.8);
}
