/*
  * Template Name  = Pixel
  * File name   = main.css
  * Description = Pixel | Elegant & Creative Template
  * Author      = _9Themr
  * Support     = kodecreate@gmail.com
  * Version     = 1.0
*/


/*------------------------------------------------------

  CSS Table Of Contents:


    0.1) BASIC RESET
    1.9) All Navigation Styling Here
    2.9) Sections Layout Presets
    3.9) Section Titles Presets
    4.9) HOME SECTION STYLING
    5.9) CLIENTS SECTION STYLING
    6.9) FEATURED SERVICES SECTION STYLING
    7.9) PORTFOLIO WORK SECTION STYLING
    8.5) Footer Styling

---------------------------------------------------------*/


/* 1) BASIC RESET
====================== */

body {
    font: 400 14px/21px 'Open Sans', sans-serif, Helvetica, Arial, sans-serif;
    font-size: 1em;
    line-height: 1.625em;
    overflow-x: hidden;
    color: #0c0c0c;
    background-color: #fff;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    -moz-osx-font-smoothing: grayscale;
}

::-moz-selection {
    color: #3a3532;
    background: #a4fba6;
}

::selection {
    color: #3a3532;
    background: #a4fba6;
}

* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    user-drag: none;
    -webkit-font-smoothing: antialiased;
}

*,
*::after,
*::before {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    margin: 0 0 21px;
}


/*
 Links
 -------------------------
 */

a {
    text-decoration: none;
    color: #4f81bd;
}

a:hover,
a:focus {
    text-decoration: none;
    outline: 0;
}

@media screen and (min-width: 768px) {
    a {
        -webkit-transition: all .3s cubic-bezier(0, 0, .58, 1);
        transition: all .3s cubic-bezier(0, 0, .58, 1);
    }
}


/*
 HEADINGS PRESETS
-------------------------
*/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-top: 11px;
    font-variant-ligatures: common-ligatures;
}

h1,
h2,
h3 {
    margin-bottom: 7px;
}

h4,
h5,
h6 {
    margin-bottom: 11px;
}


/* Body Content */

h1 {
    font-size: 4em;
    line-height: 1em;
    /* 1em = 16px */
}

h2 {
    font-size: 2.8em;
    line-height: 1.2em;
    /* 1em = 16px */
}

h3 {
    font-size: 2em;
    line-height: 1.5em;
    /* 1em = 16px */
}

h4 {
    font-size: 1.3em;
    line-height: 1.3em;
    /* 1em = 16px */
}

h5 {
    font-size: 1em;
    line-height: 1.5em;
    /* 1em = 16px */
}

h6 {
    font-size: .8em;
    line-height: 2.5em;
    /* 1em = 16px */
}

@media all and (max-width: 767px) {
    h1 {
        font-size: 2.8em;
        line-height: 1.15em;
    }
    h2 {
        font-size: 2em;
        line-height: 1.4em;
    }
    h3 {
        font-size: 1.4em;
        line-height: 1.6em;
    }
}

html {
    font-size: 100%;
}

@media all and (max-width: 768px) {
    html {
        font-size: 87.5%;
    }
}

strong {
    font-weight: 600;
}

blockquote {
    font-size: 1.2em;
    line-height: 1.25;
    /* 20px / 16px */
    margin: 3em 0;
    /* 25px / 20px */
    border: 0;
}

blockquote p {
    margin-bottom: 30px;
}

blockquote footer {
    font-size: 13px;
    font-weight: 400;
}

ul,
ol {
    list-style: none;
}

input:focus,
textarea:focus {
    outline: none;
}

hr {
    margin-top: 0;
    margin-bottom: 0;
    border-top: 1px solid #eeeef7;
}


/*! TYPOGRAPHY PRESETS */

.font-uppercase {
    text-transform: uppercase;
}

.font-bold {
    font-weight: bold;
}

.font-italic {
    font-weight: italic;
}

.font-print {
    font-size: .6875em;
}

.font-strikethrough {
    text-decoration: line-through;
    opacity: .5;
}

.font-underline {
    text-decoration: underline;
}


/** FONTS **/

.font-1 {
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

.font-2 {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif !important;
}

.font-3 {
    font-family: 'Montserrat', Arial, Helvetica, sans-serif !important;
}

.font-4 {
    font-family: 'Ubuntu', sans-serif !important;
}

.font-5 {
    font-family: 'Lato', sans-serif;
}


/** POSITIONING ELEMENTS PRESETS **/

body {
    overflow-x: hidden;
}

.pos-relative {
    position: relative;
}

.pos-absolute {
    position: absolute;
}

.pos-top {
    top: 0;
}

.pos-bottom {
    bottom: 0;
}

.pos-right {
    right: 0;
}

.pos-left {
    left: 0;
}


/* Vertical Align */

.vertical-align {
    position: relative;
    z-index: 350;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.vertical-align.absolute {
    position: absolute;
    z-index: 900;
    width: 100%;
}

.vertical-content {
    display: table;
    width: 100%;
    height: 100%;
}

.vertical-content-center {
    z-index: 5;
    display: table-cell;
    width: 100%;
    padding: 0 15px;
    text-align: center;
    vertical-align: middle;
}

.no-vertical-align {
    position: relative;
    z-index: 300;
}

.inline-block {
    display: inline-block;
}

.display-block {
    display: block;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}


/**! 5. ELEMENT PRESETS **/

.height-100,
.height-90,
.height-80,
.height-70,
.height-60,
.height-50,
.height-40,
.height-30,
.height-20,
.height-10 {
    height: auto;
    padding: 5.014em 0;
}

@media all and (max-width: 767px) {
    .height-100,
    .height-90,
    .height-80,
    .height-70,
    .height-60,
    .height-50,
    .height-40,
    .height-30,
    .height-20,
    .height-10 {
        height: auto;
        padding: 4.061em 0;
    }
}

@media all and (min-height: 620px) and (min-width: 767px) {
    .height-10 {
        height: 10vh;
    }
    .height-20 {
        height: 20vh;
    }
    .height-30 {
        height: 30vh;
    }
    .height-40 {
        height: 40vh;
    }
    .height-50 {
        height: 50vh;
    }
    .height-60 {
        height: 60vh;
    }
    .height-70 {
        height: 70vh;
    }
    .height-80 {
        height: 80vh;
    }
    .height-90 {
        height: 90vh;
    }
    .height-100 {
        height: 100vh;
    }
}


/**! 6. IMAGES PRESETS **/

img {
    max-width: 100%;
    margin-bottom: 1.6em;
}

.img-fullwidth {
    width: 100%;
}

.parallax {
    overflow: hidden;
}


/**! 7. Colors **/

body {
    background: #f8f8f8;
}

.color-white {
    color: #fff;
}

.color-dark {
    color: #232323;
}

.bg-dark {
    background: #232323;
}

.bg-grey {
    background: #eee;
}

.bg-white {
    background: #fff;
}

.bg-white p,
.bg-white span,
.bg-white ul,
.bg-white a:not(.btn) {
    color: #767676;
}

.bg-white h1,
.bg-white h2,
.bg-white h3,
.bg-white h4,
.bg-white h5,
.bg-white h6,
.bg-white i {
    color: #232323;
}

.color-facebook {
    color: #3b5998;
}

.color-twitter {
    color: #00aced;
}

.color-googleplus {
    color: #dd4b39;
}

.color-instagram {
    color: #125688;
}

.color-pinterest {
    color: #cb2027;
}

.color-dribbble {
    color: #ea4c89;
}

.color-behance {
    color: #053eff;
}

.bg-facebook {
    color: #fff;
    background: #3b5998;
}

.bg-twitter {
    color: #fff;
    background: #00aced;
}

.bg-googleplus {
    color: #fff;
    background: #dd4b39;
}

.bg-instagram {
    color: #fff;
    background: #125688;
}

.bg-pinterest {
    color: #fff;
    background: #cb2027;
}

.bg-dribbble {
    color: #fff;
    background: #ea4c89;
}

.bg-behance {
    color: #fff;
    background: #053eff;
}


/*  SOME USEFUL BOOTSTRAP 3 BUIT-IN CLASSES
.text-left           { text-align: left; }
.text-right          { text-align: right; }
.text-center         { text-align: center; }
.text-justify        { text-align: justify; }
.text-nowrap         { white-space: nowrap; }


.text-lowercase      { text-transform: lowercase; }
.text-uppercase      { text-transform: uppercase; }
*/


/**! 8. Buttons **/

.btn-1 {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 12px;
    line-height: 1.625em;
    margin-top: 30px;
    padding-top: .65em;
    padding-right: 3.25em;
    padding-bottom: .65em;
    padding-left: 3.25em;
    -webkit-transition: .1s linear;
    -moz-transition: .1s linear;
    transition: .1s linear;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(35, 35, 35, .8);
    border: 1px solid #232323;
    border-width: 2.3px;
    border-color: rgba(35, 35, 35, .3);
    border-radius: 100px;
    background: transparent;
}

.btn-1:hover {
    color: rgba(35, 35, 35, .8);
    border-color: rgba(35, 35, 35, .7);
}

.btn-1:focus,
.btn-1:visited,
.btn-1:active {
    color: rgba(35, 35, 35, .8);
    border-color: rgba(35, 35, 35, .9);
}

.btn-underline {
    font-family: 'Montserrat', 'Helvetica', 'Arial', sans-serif;
    font-size: 12px;
    line-height: 1.625em;
    margin-top: 30px;
    -webkit-transition: .1s linear;
    -moz-transition: .1s linear;
    transition: .1s linear;
    letter-spacing: 1px;
    color: rgba(35, 35, 35, .8);
    border-width: 2.3px;
    border-color: rgba(35, 35, 35, .3);
    border-bottom: 1px solid #232323;
    background: transparent;
}

.btn-underline:hover {
    color: rgba(35, 35, 35, .8);
    border-color: rgba(35, 35, 35, .7);
}

.btn-underline:focus,
.btn-underline:visited,
.btn-underline:active {
    color: rgba(35, 35, 35, .8);
    border-color: rgba(35, 35, 35, .9);
}


/**!  Icons **/

.icon-small {
    font-size: 2em;
}

.icon-large {
    font-size: 4em;
}


/**!  OVERLAYS **/

.overlay:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    opacity: .4;
    background: #606c88;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to bottom, #000, #333);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to bottom, #000, #333);
}

.overlay-2:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    background-color: rgba(0, 0, 0, .5);
}

.overlay h1,
.overlay h2,
.overlay h3,
.overlay h4,
.overlay h5,
.overlay h6,
.overlay .big-icon,
.overlay .fact-number,
.overlay .section-title,
.overlay .section-title-heading,
.overlay p {
    color: #3a3532;
}

#page {
    position: relative;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100%;
    background: #fff;
}

hr.line {
    width: 90%;
    height: 1px;
    border: 0;
    background: #e9e9e9;
}


/*
   Page Preloader
 --------------------------------
*/

.loader-mask {
    position: fixed;
    z-index: 99999999;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #1d1d1e;
}

.loader img {
    font-size: 45px;
    position: absolute;
    top: 48%;
    left: 50%;
}


/*
   2) All Navigation Styling Here
 ==============================
*/

.nav .open a,
.nav .open a:focus,
.nav .open a:hover {
    background-color: transparent;
}

.nav li a:hover,
.nav li a:focus {
    text-decoration: none;
    background-color: transparent;
}

.main-nav {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif !important;
    font-size: 12px;
    font-weight: 600;
    position: relative;
    z-index: 1000;
    width: 100%;
    height: 90px;
    margin-bottom: 0;
    padding-top: 20px;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    text-align: left;
    letter-spacing: 1px;
}

.main-nav .inner-nav {
    float: right;
    margin-top: -3px;
}

.nav-white {
    background-color: #fff;
}

.nav-transition {
    -webkit-transition: all .4s cubic-bezier(.000, .000, .580, 1.000);
    transition: all .4s cubic-bezier(.000, .000, .580, 1.000);
}

.nav-transparent {
    position: fixed !important;
    border-bottom: 0 !important;
    background-color: transparent !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}


/*
   Navbar logo styling
----------------------
*/

.navbar {
    min-height: 40px;
    margin-bottom: 10px;
    border: 0 solid transparent;
}

.brand-logo {
    position: relative;
    z-index: 1;
    float: left;
    margin-left: 10%;
}

.brand-logo a {
    display: block;
}

.brand-logo img {
    width: 320px;
    margin-top: 20px;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    opacity: .9;
}

.brand-logo img.dark-logo {
    width: 320px;
    visibility: hidden;
    margin-top: -5px;
    opacity: 0;
}

.navbar-brand {
    padding: 0;
}


/*
   DropDown Menu
----------------------
*/

.dropdown-toggle i {
    font-size: 9px;
    margin-top: 5px;
    margin-left: 6px;
}

.main-nav .dropdown-menu {
    font-size: 11px;
    display: block;
    visibility: hidden;
    padding: 10px 5px;
    -webkit-transition: all .6s ease;
    transition: all .6s ease;
    letter-spacing: .5px;
    opacity: 0;
    border: 0;
    border-radius: 5px !important;
    background-color: rgba(255, 255, 255, 1);
}

.main-nav .dropdown-menu {
    font-size: 11px;
    visibility: hidden;
    letter-spacing: .5px;
}

.main-nav .dropdown-menu li a {
    display: inline-block;
    width: 100%;
    padding: 5px 0;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
    opacity: .77;
    color: #888 !important;
}

.dropdown-menu li.sub-menu:after {
    font-family: FontAwesome;
    font-size: 10px;
    position: absolute;
    top: 12px;
    right: 15px;
    content: '\f105';
    opacity: .5;
    color: #333;
}

.classic-dropdown .dropdown-menu {
    min-width: 200px;
}

.classic-dropdown .dropdown-menu li a {
    margin: 5px 30px;
}

.sub-menu {
    position: relative;
}

.sub-menu:hover > .dropdown-menu {
    margin-top: 0;
}

.sub-menu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -6px;
    margin-left: -1px;
}

.main-nav .dropdown:hover > ul.dropdown-menu {
    visibility: visible;
    transition-delay: 0s;
    opacity: 1;
}


/*
 Navbar social links & nav toggle button
------------------------------------------
*/

.navbar-social {
    margin-top: 23px;
    margin-right: 50px;
    padding-left: 30px;
}

.navbar-social {
    float: right;
}

.navbar-social ul li {
    float: left;
    padding: 10px;
}

.navbar-social ul li a {
    font-size: 13px;
    color: #000;
}

.navbar-social .btn-1 {
    font-size: 11px !important;
    padding-top: .85em;
    padding-right: 2.25em;
    padding-bottom: .85em;
    padding-left: 2.25em;
    color: #fff;
    border: 1px solid #fff;
    border-width: 2px;
    background: transparent;
}

.navbar-social .btn-1:hover {
    opacity: .8;
}

.navbar-social .btn-1:focus,
.navbar-social .btn-1:visited,
.navbar-social .btn-1:active {
    opacity: .7;
}


/*
 Navbar styling when shrinken
------------------------------------------
*/

.menu-shrink {
    position: fixed !important;
    top: 0;
    right: 0;
    left: 0;
    height: 75px !important;
    padding-top: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 50, .09);
    -moz-box-shadow: 0 0 15px rgba(0, 0, 50, .09);
    box-shadow: 0 0 15px rgba(0, 0, 50, .09);
}

.menu-shrink .navbar-toggle {
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

.menu-shrink .brand-logo img {
    width: 250px;
    margin-top: 0px;
}

.menu-shrink .brand-logo img.dark-logo {
    visibility: visible;
    margin-top: -1px;
    opacity: .9;
}

.menu-shrink .brand-logo img.white-logo {
    width: 0;
    height: 0;
    opacity: 0;
}

.menu-shrink .navbar-social ul li a {
    font-size: 12px;
}

.menu-shrink.main-nav.nav-white .inner-nav > ul > li > a,
.menu-shrink.main-nav.nav-white .navbar-toggle i {
    color: #777;
}

.menu-shrink.main-nav .dropdown-menu li a {
    color: #888 !important;
}

.menu-shrink.main-nav.nav-white .inner-nav > ul > li > a:hover,
.menu-shrink.main-nav.nav-white .inner-nav > ul > li > a:focus,
.menu-shrink.main-nav.nav-white .navbar-toggle i:hover,
.menu-shrink.main-nav.op-nav.nav-white .inner-nav > ul > li.active > a {
    color: #000;
}

.menu-shrink.main-nav .inner-nav ul > li a > span:after,
.menu-shrink.main-nav .inner-nav ul > li a > span:before {
    background-color: #000;
}

.menu-shrink.main-nav .navbar-social .btn-1 {
    color: rgba(35, 35, 35, .8);
    border: 1px solid #232323;
    border-color: rgba(35, 35, 35, .3);
}

.menu-shrink.main-nav .navbar-social .btn-1:hover {
    color: rgba(35, 35, 35, .7);
    border-color: rgba(35, 35, 35, .7);
}

.menu-shrink.main-nav .navbar-social .btn-1:focus,
.menu-shrink.main-nav .navbar-social .btn-1:visited,
.menu-shrink.main-nav .navbar-social .btn-1:active {
    color: rgba(35, 35, 35, .8);
    border-color: rgba(35, 35, 35, .8);
}


/*
 Inner Nav Styling + Border bottom animation
----------------------------------------------
*/

.inner-nav ul > li a {
    position: relative;
    display: block;
    transition-delay: 0;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-duration: .65;
}

.inner-nav ul > li a > span {
    position: relative !important;
    display: block;
}

.inner-nav ul > li a > span:after,
.inner-nav ul > li a > span:before {
    position: absolute;
    bottom: 28px;
    left: 0;
    display: block;
    width: 50%;
    height: 1.5px;
    content: '';
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-duration: .8s;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    transform: scale(0, 1);
    -webkit-transform-origin: 0 50%;
    transform-origin: 0 50%;
    background-color: #fff;
}

.inner-nav ul > li a > span:after {
    left: 50%;
    transition-delay: 0s;
    transition-timing-function: cubic-bezier(.19, 1, .22, 1);
    transition-duration: .6s;
    -webkit-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    -moz-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    /*! transform:scale(0,1) */
}

.inner-nav ul > li a:active > span:after,
.inner-nav ul > li a:active > span:before,
.inner-nav ul > li a:focus > span:after,
.inner-nav ul > li a:focus > span:before,
.inner-nav ul > li a:hover > span:after,
.inner-nav ul > li a:hover > span:before {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}

.main-nav.nav-white .inner-nav > ul > li > a,
.main-nav.nav-white .navbar-toggle i {
    color: #fff;
}

.main-nav.nav-white .inner-nav > ul > li > a:hover,
.main-nav.nav-white .inner-nav > ul > li > a:focus,
.main-nav.nav-white .navbar-toggle i:hover,
.main-nav.op-nav.nav-white .inner-nav > ul > li.active > a {
    color: #fff;
}

.main-nav .inner-nav > ul > li > a {
    line-height: 90px;
    display: block;
    padding: 0 15px;
}


/*
 Nav toggle styles
----------------------------------------------
*/

.navbar-toggle {
    float: right;
    margin: 0;
    padding: 0;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.navbar-toggle button {
    height: 100%;
    border: 0;
    background-color: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #3e3e3e;
}


/*
 Right Nav Styles
----------------------------------------------
*/

.right-nav {
    font-size: 16px;
}

.right-nav > ul {
    padding: 0;
}

.right-nav ul li {
    float: left;
    list-style: none;
}


/*
 Responsive Navbar Styles
----------------------------------------------
*/

@media (max-width: 991px) {
    .hide-tablet {
        display: none;
    }
    /* Bootstrap Collapsing Breakpoint*/
    .navbar-social {
        float: none;
    }
    .navbar-toggle {
        display: block;
    }
    .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 0 0 rgba(255, 255, 255, .1);
    }
    .navbar-collapse.collapse {
        display: none!important;
    }
    .navbar-nav {
        float: none!important;
        margin: 7.5px -15px;
    }
    .navbar-nav > li {
        float: none;
    }
    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }
    .navbar-collapse.collapse.in {
        display: block!important;
    }
    .collapsing {
        overflow: hidden!important;
    }
    .navbar-collapse.collapse {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }
    /* Menu */
    .main-nav {
        height: auto;
    }
    .menu-shrink {
        height: auto!important;
    }
    .nav-white.nav-transparent {
        background-color: rgba(255, 255, 255, .6) !important;
    }
    .nav-white .custom-collapse ul li a {
        color: #999;
    }
    .custom-collapse {
        overflow-x: hidden;
        width: 100%;
        max-height: 350px;
    }
    .custom-collapse ul li > a {
        padding: 10px 15px !important;
    }
    .main-nav .custom-collapse > ul > li > a {
        line-height: 20px !important;
    }
    .custom-collapse .navbar-nav .open .dropdown-menu {
        padding: 0;
    }
    .main-nav .dropdown.open > .dropdown-menu {
        display: block;
    }
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: 300px;
        margin: 0 auto;
        margin-top: 0;
        text-align: center;
        border: 0;
        background-color: transparent;
        -webkit-box-shadow: none;
        box-shadow: none;
    }
    .main-nav .dropdown-menu li a {
        opacity: 1 !important;
        color: #fff !important;
    }
    .classic-dropdown .dropdown-menu li a {
        margin: 3px 20px;
    }
    .navbar-nav .open .dropdown-menu li:not(.sub-menu) {
        margin-left: 50px;
    }
    .main-nav .dropdown-menu {
        display: none;
        visibility: visible;
        width: 100%;
        transform: translateY(0);
        opacity: 1;
    }
    .main-nav .dropdown-menu {
        visibility: visible;
    }
    .dropdown-menu li.sub-menu:after {
        top: 18px;
        right: 70px;
    }
}


/*xs Mobile Screen (Large) */

@media screen and (max-width: 767px) {
    .hide-mobile {
        display: none;
    }
    .float-none-xs {
        float: none !important;
    }
}


/* End Mobile Screen*/


/*xs Mobile Screen (small) */

@media screen and (max-width: 480px) {
    /* Menu */
    .main-nav .inner-nav > ul > li > a {
        padding: 0 10px;
    }
}


/*
  Sections Layout Presets
 ==========================
*/

.section {
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 55px;
}

.section-grey {
    overflow: hidden;
    padding-top: 55px;
    padding-bottom: 55px;
    background: #f7f7f7;
}

@media (min-width: 768px) {
    .section {
        padding-top: 80px;
        padding-bottom: 80px;
    }
    .section-grey {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 992px) {
    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }
    .section-grey {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}

@media (min-width: 1200px) {
    .section {
        padding-top: 150px;
        padding-bottom: 150px;
    }
    .section-grey {
        padding-top: 150px;
        padding-bottom: 150px;
    }
}

.small-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.small-section-grey {
    padding-top: 40px;
    padding-bottom: 40px;
    background: #eee;
}

@media (min-width: 768px) {
    .small-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .small-section-grey {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (min-width: 992px) {
    .small-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .small-section-grey {
        padding-top: 60px;
        padding-bottom: 60px;
    }
}

@media (min-width: 1200px) {
    .small-section {
        padding-top: 70px;
        padding-bottom: 70px;
    }
    .small-section-grey {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}


/*  Section Titles Presets
============================ */

.section-title {
    margin-bottom: 10px;
    padding-bottom: 40px;
    text-align: center;
}

.section-title h1 {
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 300;
    color: #3a3532;
}

.section-title span {
    font-weight: 700;
}

.section-title p {
    font-family: 'Raleway', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    position: relative;
    width: 700px;
    margin: 0 auto;
    margin-top: 8px !important;
    color: #6b6d6f;
}


/*  HOME SECTION STYLING
============================ */

.home-section {
    position: relative;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.bg-cover {
    position: fixed;
    top: 0;
    left: 0;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    background-size: cover;
}

.parallax-1 {
    position: relative;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: 50% 0;
    background-size: cover;
}

.bg-1 {
    background-image: url('../img/bg/bg-1.jpg');
}

.bg-2 {
    background-image: url('../img/bg/bg-2.jpg');
}

.bg-3 {
    background-image: url('../img/bg/bg-3.jpg');
}

.vid-player {
    position: fixed;
    z-index: -4;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.vid-player video {
    position: absolute;
    z-index: -100;
    right: 0;
    bottom: 0;
    width: auto;
    min-width: 100%;
    height: auto;
    min-height: 100%;
}

.full-screen {
    width: 100%;
    height: 100vh;
    /* Following is the bug fix for "vh" unit in iOS7 */
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
    .full-screen {
        height: 1024px;
    }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
    .full-screen {
        height: 768px;
    }
}

@media only screen and (device-aspect-ratio: 40/71) and (orientation: portrait) {
    .full-screen {
        height: 568px;
    }
}

@media only screen and (device-aspect-ratio: 40/71) and (orientation: landscape) {
    .full-screen {
        height: 320px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: portrait) {
    .full-screen {
        height: 480px;
    }
}

@media only screen and (min-device-width: 320px) and (max-device-width: 480px) and (device-aspect-ratio: 2/3) and (orientation: landscape) {
    .full-screen {
        height: 320px;
    }
}

.home-title {
    position: relative;
    margin-left: 10%;
    text-align: left;
}

.home-title h3 {
    margin-bottom: 20px;
    color: #fff;
}

.home-title h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.250em;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    margin-top: 0;
    text-transform: none;
    color: #fff;
}

.home-title p {
    font-weight: 400;
    line-height: 1.6;
    margin-top: 10px;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: #fff;
}

.home-title .btn-1 {
    font-size: 11px !important;
    padding-top: .85em;
    padding-right: 2.25em;
    padding-bottom: .85em;
    padding-left: 2.25em;
    color: #333;
    border: 1px solid #fff;
    border-width: 2.25px;
    background: #fff;
}

.home-title .btn-1:hover {
    opacity: .8;
}

.home-title .btn-1:focus,
.home-title .btn-1:visited,
.home-title .btn-1:active {
    opacity: .7;
}

.social-links li {
    display: inline-block;
    margin-left: 10px;
    list-style: none;
}

.social-links a {
    font-size: 16px;
    color: rgba(0, 0, 0, .8);
}


/* Case study Section Styling
=================================== */

.study-text {
    float: left;
    width: 70%;
    margin-top: 45%;
    color: #fff;
}

.study-text h3 {
    margin-bottom: 25px;
}

.study-text h1 {
    font-family: 'Signika', sans-serif;
    font-size: 52px;
    font-weight: 700;
    cursor: pointer;
    text-transform: none;
}

.study-text p {
    line-height: 1.5;
    margin-top: 15px;
    margin-bottom: 15px;
}

.study-text p.tags {
    font-weight: 800;
    word-spacing: 5px;
}

img.study-img {
    width: 550px;
    margin-top: 40%;
    margin-right: 0 !important;
    margin-bottom: 0;
    cursor: pointer;
}


/* Services Section Styling
=================================== */

.services {
    padding-bottom: 150px;
}

.services .features {
    margin-top: 20px;
    text-align: center;
}

.services .features i {
    font-size: 36px;
    margin-bottom: 20px;
    color: #999;
}

.services .features h3 {
    font-family: 'Montserrat', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700;
    letter-spacing: normal;
    color: #333;
}

.services .features p {
    font-family: 'Raleway', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.72em;
    margin-top: 10px;
    color: #888;
}


/* Clients Testimonials Section Styling
========================================== */

.testimonials-clients {
    width: 800px;
    margin: 0 auto;
}

.testimonials-clients ul li {
    list-style: none;
}

.overflow-hidden {
    overflow: hidden !important;
}

.testimony {
    padding: 60px;
    text-align: center;
}

.testimony p {
    font-size: 18px;
    font-weight: 200 !important;
    line-height: 28px;
    position: relative;
    color: #6b6d6f;
}

.testimony p span {
    font-weight: bold;
    color: #333;
}

.avatar-text {
    font-size: 12px;
    margin-top: 10px;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.text-small {
    font-size: 10px;
    font-style: italic;
}

.quote-testimony:before {
    font-size: 100px;
    position: absolute;
    top: 64px;
    left: 48%;
    display: block;
    content: '“';
    text-align: center;
    color: #000;
}

.avatar {
    margin-top: 20px;
    border: 2px solid #fff;
    border-radius: 50%;
}

.avatar img {
    width: 50px !important;
}

.quote-testimony {
    display: block;
    padding-top: 95px;
}

.grey-text {
    color: #999 !important;
}


/* Call to action section
=================================== */

.call-action {
    position: relative !important;
    text-align: center;
    color: #fff;
}

.call-action h1 {
    font-size: 26px;
    font-weight: 800 !important;
    margin-top: 15px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.call-action p {
    font-size: 14px;
    margin-bottom: 3%;
    letter-spacing: 1px;
}

.call-action .btn-1 {
    color: #333;
    border-color: #fff;
    background: #fff;
}

.call-action .btn-1:hover {
    opacity: .8;
}


/*  Clients logo
=================================== */

.clients .client-logo {
    padding-top: 15px;
    padding-bottom: 15px;
    text-align: center;
}

.clients .client-logo a img {
    height: 120px;
}

.clients {
    text-align: center;
}

.clients a {
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    opacity: .7;
}

.clients a:hover {
    opacity: 1;
}


/* Footer Styling
=================================== */

.footer {
    position: relative;
    z-index: 1;
    width: 100%;
    background: #fff;
}

.footer p {
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: 14px;
    line-height: 22px;
}

.footer .widget {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #888;
}

.footer .widget-logo img {
    width: 100%;
}

.footer .copyright {
    margin-top: 13px;
    letter-spacing: 1px;
}

.footer .widget-title {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 14px !important;
    font-weight: 700;
    margin-bottom: 35px;
    text-transform: uppercase;
    color: #000;
}

.widget ul li {
    padding-top: 10px;
    list-style: none;
}

.widget ul li:first-child {
    padding-top: 0;
}

.widget a {
    text-decoration: none;
    color: #888;
}

.widget .post-date {
    font-family: 'Montserrat', Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 500;
}

.widget ul li a {
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: 14px;
    font-weight: 600;
}

.widget address {
    font-family: 'Raleway', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 20px;
}

.footer .social-links li a i {
    font-size: 16px;
}

.footer-links {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: right;
}

.footer-links li {
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-size: 12px;
    display: inline-block;
    margin: 5px 5px;
}


/* Back To Top Styling
  --------------------------------------------------------- */

#scroll-top {
    font-size: 14px;
    line-height: 25px;
    position: fixed;
    z-index: 1000;
    right: 17px;
    bottom: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-align: center;
    opacity: 0;
    border: 0 solid #fff;
    border-radius: 3px;
    background: #000;
}

#scroll-top.show {
    opacity: 1;
}
