ul.ul-v.contact-1 {
    color: #333;
}

h2.h2-md.mb30 {
    color: #333;
}

textarea.form-control.form-message.message-cl {
    margin-top: 5px;
}

.subtitle {
    font-weight: 500 !important;
}

.cd-main-header {
    position: relative;
    z-index: 1;
    height: 50px;
    background: #343642;
}

.cd-main-header::after {
    /* clearfix */
    content: '';
    display: table;
    clear: both;
}

.cd-main-header__logo {
    float: left;
    margin: 4px 0 0 5%;
    /* reduce logo size on mobile and make sure it is left aligned with the transform-origin property */
    -webkit-transform-origin: 0 50%;
    -ms-transform-origin: 0 50%;
    transform-origin: 0 50%;
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    transform: scale(0.8);
}

.cd-main-header__logo img {
    display: block;
}

.logout {
    font: 500 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    /* -webkit-transition: color .2s; */
    transition: color .2s;
    padding: 5px 10px;
    background-color: #3cb44a;
    border-radius: 40px;
}

.cd-main-nav {
    float: right;
    margin-right: 5%;
    width: 44px;
    height: 100%;
    background: url("../img/cd-icon-menu.svg") no-repeat center center;
    cursor: pointer;
}

.cd-main-nav__list {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
}

.cd-main-nav__list.cd-main-nav__list--is-visible {
    -webkit-transform: translateY(50px);
    -ms-transform: translateY(50px);
    transform: translateY(50px);
}

.cd-main-nav__item {
    display: block;
    height: 50px;
    line-height: 50px;
    padding-left: 5%;
    background: #292a34;
    border-top: 1px solid #3b3d4b;
    color: #FFF;
}

@media only screen and (min-width: 768px) {
    .cd-main-header {
        height: 80px;
    }

    .cd-main-header__logo {
        margin: 20px 0 0 5%;
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

    .cd-main-nav {
        /* reset style */
        width: auto;
        height: auto;
        background: none;
        cursor: auto;
    }

    .cd-main-nav__list {
        /* reset style */
        position: static;
        width: auto;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        line-height: 80px;
    }

    .cd-main-nav__list.cd-main-nav__list--is-visible {
        /* reset style */
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
    }

    .cd-main-nav__list li {
        display: inline-block;
        margin-left: 1em;
    }

    .cd-main-nav__list li:nth-last-child(2) {
        margin-left: 2em;
    }

    .cd-main-nav__item {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent;
    }

    .cd-main-nav__item.cd-main-nav__item--signin,
    .cd-main-nav__item.cd-main-nav__item--signup {
        padding: .6em 1em;
        border-radius: 50em;
    }

    .cd-main-nav__item.cd-main-nav__item--signin {
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .cd-main-nav__item.cd-main-nav__item--signup {
        background-color: #3cb44a;
        border-color: transparent;
    }
}

@media only screen and (max-width:768px) {

    .cd-main-nav__item.cd-main-nav__item--signin,
    .cd-main-nav__item.cd-main-nav__item--signup {
        padding: .6em 1em;
        border-radius: 50em;
    }

    .cd-main-nav__item.cd-main-nav__item--signin {
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .cd-main-nav__item.cd-main-nav__item--signup {
        background-color: #3cb44a;
        border-color: transparent;
    }

    .cd-main-nav__item {
        display: inline-block;
        height: auto;
        line-height: normal;
        background: transparent;
    }
}

/* -------------------------------- 
x sigin/signup popup 
-------------------------------- */
.cd-signin-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(52, 54, 66, 0.9);
    z-index: 10;
    overflow-y: auto;
    cursor: pointer;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.3s, visibility 0.3s;
    transition: opacity 0.3s, visibility 0.3s;
}

.cd-signin-modal.cd-signin-modal--is-visible {
    visibility: visible;
    opacity: 1;
}

.cd-signin-modal__container {
    position: relative;
    width: 90%;
    max-width: 600px;
    background: #FFF;
    margin: 8em auto 4em;
    cursor: auto;
    border-radius: 0.25em;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
}

.cd-signin-modal--is-visible .cd-signin-modal__container {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}

.cd-signin-modal__switcher {
    margin: 0;
    list-style: none;
    padding: 0;
}

.cd-signin-modal__switcher:after {
    /* clearfix */
    content: "";
    display: table;
    clear: both;
}

.cd-signin-modal__switcher li {
    width: 50%;
    float: left;
    text-align: center;
}

.cd-signin-modal__switcher li:first-child a {
    border-radius: .25em 0 0 0;
}

.cd-signin-modal__switcher li:last-child a {
    border-radius: 0 .25em 0 0;
}

.cd-signin-modal__switcher a {
    display: block;
    width: 100%;
    height: 50px;
    line-height: 50px;
    background: #d2d8d8;
    color: #809191;
}

.cd-signin-modal__switcher a.cd-selected {
    background: #FFF;
    color: #505260;
}

@media only screen and (min-width: 600px) {
    .cd-signin-modal__container {
        margin: 10em auto;
    }

    .cd-signin-modal__switcher a {
        height: 70px;
        line-height: 70px;
    }
}

@media only screen and (min-width: 1024px) {
    .cd-signin-modal__container {
        margin: 4em auto;
    }
}

.cd-signin-modal__form {
    padding: 1.4em;
}

.cd-signin-modal__fieldset {
    position: relative;
    margin: 1.4em 0;
}

.cd-signin-modal__fieldset:first-child {
    margin-top: 0;
}

.cd-signin-modal__fieldset:last-child {
    margin-bottom: 0;
}

.cd-signin-modal__label {
    font-size: 1.4rem;
}

.cd-signin-modal__label.cd-signin-modal__label--image-replace {
    /* replace text with an icon */
    display: inline-block;
    position: absolute;
    left: 15px;
    top: 36%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 20px;
    width: 20px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    color: transparent;
    background-repeat: no-repeat;
    background-position: 50% 0;
}

.cd-signin-modal__label.cd-signin-modal__label--username {
    background-image: url("../img/cd-icon-username.svg");
}

.cd-signin-modal__label.cd-signin-modal__label--email {
    background-image: url("../img/cd-icon-email.svg");
}

.cd-signin-modal__label.cd-signin-modal__label--password {
    background-image: url("../img/cd-icon-password.svg");
}

.cd-signin-modal__input {
    margin: 0;
    padding: 0;
    border: 1px solid #d2d8d8 !important;
    border-radius: 0.25em;
}

.cd-signin-modal__input.cd-signin-modal__input--full-width {
    width: 100%;
}

.cd-signin-modal__input.cd-signin-modal__input--has-padding {
    padding: 12px 20px 12px 50px;
}

.cd-signin-modal__input.cd-signin-modal__input--has-border {
    border: 1px solid #d2d8d8;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.cd-signin-modal__input.cd-signin-modal__input--has-border:focus {
    border-color: #cbd9a9;
    -webkit-box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
    box-shadow: 0 0 5px rgba(52, 54, 66, 0.1);
    outline: none;
}

.cd-signin-modal__input.cd-signin-modal__input--has-error {
    border: 1px solid #d76666;
}

.cd-signin-modal__input[type=submit] {
    padding: 16px 0;
    cursor: pointer;
    background-color: #3cb44a;
    border-color: transparent;
    color: #FFF;
    font-weight: bold;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.cd-signin-modal__input[type=submit]:hover,
.cd-signin-modal__input[type=submit]:focus {
    background-color: #6dbb77;
    border-color: transparent;
    outline: none;
}

.cd-signin-modal__hide-password {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    padding: 6px 15px;
    border-left: 1px solid #d2d8d8;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: #343642;
}

.cd-signin-modal__error {
    display: inline-block;
    position: absolute;
    left: -5px;
    bottom: -35px;
    background: rgba(215, 102, 102, 0.9);
    padding: .8em;
    z-index: 2;
    color: #FFF;
    font-size: 1.3rem;
    border-radius: 0.25em;
    /* prevent click and touch events */
    pointer-events: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0.2s;
    transition: opacity 0.2s 0s, visibility 0s 0.2s;
}

.cd-signin-modal__error::after {
    /* triangle */
    content: '';
    position: absolute;
    left: 22px;
    bottom: 100%;
    height: 0;
    width: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid rgba(215, 102, 102, 0.9);
}

.cd-signin-modal__error.cd-signin-modal__error--is-visible {
    opacity: 1;
    visibility: visible;
    -webkit-transition: opacity 0.2s 0s, visibility 0s 0s;
    transition: opacity 0.2s 0s, visibility 0s 0s;
}

@media only screen and (min-width: 600px) {
    .cd-signin-modal__form {
        padding: 2em;
    }

    .cd-signin-modal__fieldset {
        margin: 2em 0;
    }

    .cd-signin-modal__fieldset:first-child {
        margin-top: 0;
    }

    .cd-signin-modal__fieldset:last-child {
        margin-bottom: 0;
    }

    .cd-signin-modal__input.cd-signin-modal__input--has-padding {
        padding: 16px 20px 16px 50px;
    }

    .cd-signin-modal__input[type=submit] {
        padding: 16px 0;
    }
}

.cd-signin-modal__message {
    padding: 1.4em 1.4em 0;
    font-size: 1.4rem;
    line-height: 1.4;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .cd-signin-modal__message {
        padding: 2em 2em 0;
    }
}

.cd-signin-modal__bottom-message {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: -30px;
    text-align: center;
    font-size: 1.4rem;
}

.cd-signin-modal__bottom-message a {
    color: #FFF;
    text-decoration: underline;
}

.cd-signin-modal__close {
    /* form X button on top right */
    display: block;
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0;
    top: -40px;
    background: url("../img/cd-icon-close.svg") no-repeat center center;
    color: transparent;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

@media only screen and (min-width: 1170px) {
    .cd-signin-modal__close {
        display: none;
    }
}

.cd-signin-modal__block {
    display: none;
}

.cd-signin-modal__block.cd-signin-modal__block--is-selected {
    display: block;
}




/*---------- TABLE OF CONTENT ----------*
    Global Styles
    Navigation
    Hero
    Overlays
    Typography
    Global Responsive Styles
    Buttons
    Spacing Shortcodes
    Colors
    Centering Shortcodes
    Services
    Parallax
    Icon Sizes
    Preloader
    Blog
    Portfolio
    Features
    Lists
    Social
    Pricing Plans
    Google Maps
    Progress Circles
    Video Embeds
    Process Boxes
    Our Numbers
    Contact Form
    Testimonials
    Owl Carousel
    Split Screen
    Clients
    Footer
    Iconsmind
    Team
    Tabs
/*----------  ----------*/
body {
    color: #686868;
    background-color: #fff;
    font: 400 14px/1.6em 'Nunito Sans', sans-serif;
}

::selection {
    background: rgba(0, 0, 0, .16)
}

::-moz-selection {
    background: rgba(0, 0, 0, .16)
}

a {
    /* //color: inherit; */
    -webkit-transition: all .2s;
    transition: all .2s;
}

a:hover {
    cursor: pointer;
    color: initial;
}

section {
    background-position: center center;
}

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

a:focus {
    color: inherit;
}

.container.container-fullwidth {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
    margin: 0 auto;
}

input {
    color: #686868;
}

@-webkit-keyframes slideDown {
    0% {
        transform: translateY(-70px)
    }

    100% {
        transform: translateY(0px)
    }
}

@keyframes slideDown {
    0% {
        transform: translateY(-70px)
    }

    100% {
        transform: translateY(0px)
    }
}

button:focus {
    outline: none;
}

.bg-4 {
    background-image: url(../img/backgrounds/bg-4.jpg)
}

/*-- Columns Five --*/
.col-xs-15,
.col-sm-15,
.col-md-15,
.col-lg-15 {
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 10px;
}

@media (min-width: 768px) {
    .col-sm-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 992px) {
    .col-md-15 {
        width: 20%;
        float: left;
    }
}

@media (min-width: 1200px) {
    .col-lg-15 {
        width: 20%;
        float: left;
    }
}

hr.separator {
    width: 100%;
    border-top: none;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

hr.separator.separator-white {
    border-bottom: 1px solid rgba(255, 255, 255, .09);
}

.height100 {
    height: 100%;
}

.width100 {
    width: 100%;
}

.container.fluid-container {
    width: 100%;
    margin: 0;
    padding: 0 5%;
}

.container.fluid-container>.row {
    margin: 0;
}


/*---------- NAVIGATION BAR ----------*/
nav.navbar {
    border: none;
    border-radius: 0px;
    z-index: 9999999;
}

@media (min-width: 1024px) {
    nav.navbar {
        z-index: 9;
        margin-bottom: 0px;
        border: none;
        height: 80px;
        width: 100%;
    }

    nav.nav-collapsed {
        animation: slideDown .5s;
    }
}

.logo-img {
    display: flex;
    align-items: center;
}

.logo-img img {
    max-width: 140px;
    max-height: 50px;
}

nav.navbar ul.ul-h.nav-menu {
    margin: 0;
    display: inline-block;
}

nav.navbar ul.ul-h.nav-menu>li {
    padding: 0 8px;
}

nav.navbar .container.fluid-container {
    position: relative;
}

nav.navbar .container.fluid-container,
nav.navbar .container.fluid-container .row,
nav.navbar .container.fluid-container .row>div,
nav.navbar .container.fluid-container ul.ul-h.nav-menu {
    height: 100%;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu {
    display: table;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu.nav-menu-left {
    float: left;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu.nav-menu-right {
    float: right;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu>li {
    display: table-cell;
    vertical-align: middle;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu.nav-social.nav-social-right {
    float: right;
}

nav.navbar .container.fluid-container ul.ul-h.nav-menu.nav-social.nav-social-left {
    float: left;
}

nav.navbar .container.fluid-container .hero-logo {
    position: absolute;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

nav.navbar .container.fluid-container .hero-logo-left {
    position: absolute;
    z-index: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: left;
}

nav.navbar .container.fluid-container .hero-logo-right {
    position: absolute;
    z-index: -1;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: right;
}


/*-- NAVIGATION BAR Dropdown --*/
li.dropdown a i {
    position: relative;
    bottom: 1px;
    font-size: 8px;
    padding-left: 3px;
}

.dropdown-menu {
    display: block;
    position: absolute;
    top: 95%;
    left: -100%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    float: left;
    min-width: 220px;
    padding: 30px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #000;
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: opacity .25s, visibility .25s;
    transition: opacity .25s, visibility .25s;
}

.dropdown-menu.dd-menu2 {
    min-width: 150px;
    display: none;
    left: 0%;
}

li.dropdown.active.open ul.dropdown-menu.dd-menu2,
li.dropdown.open ul.dropdown-menu.dd-menu2 {
    display: block;
}

li.dropdown ul.dropdown-menu>li {
    padding: 5px 0;
}

li.dropdown ul.dropdown-menu>li a {
    background-color: transparent;
    color: #aeaeae;
    font: 400 14px/1.6em 'Nunito Sans', sans-serif;
    padding: 0 20px;
}

li.dropdown ul.dropdown-menu>li a:hover {
    background-color: transparent;
    color: #fff;
}

li.dropdown:hover ul.dropdown-menu {
    visibility: visible;
    opacity: 1;

}

/*-- NAVIGATION BAR Collapsed --*/
.navbar-collaps {
    display: none;
}

@media (max-width: 1024px) {
    nav.navbar.navbar-collaps {
        display: block;
        position: fixed;
        z-index: 9999;
        height: 65px;
        width: 100%;
        border: 0px;
        border-radius: 0px;
        top: 0;
        margin: 0;
        border-bottom: 1px solid rgba(0, 0, 0, .05);
    }
}

.collapsed-hero-logo {
    height: 100%;
    position: relative;
    left: 0;
}

.collapsed-hero-logo .logo-img {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.collapsed-logo {
    padding-left: 0px;
}


@media (max-width: 1024px) {
    .res-logo-title p {
        margin-bottom: 0px;
    }

    .res-logo-title p a {
        color: #D51E22;
        /* font-size: 11px;
        font-weight: 800; */
        font-size: 10px !important;
        font-weight: bold !important;
        font: 500 10px/1 'Montserrat', sans-serif;
    }

    .navbar.sticky {
        min-height: 70px !important;
    }


    .navbar.sticky .res-contain {
        background-color: #000000d9 !important;
    }

    .collapsed-logo .col-sm-4.col-xs-6 {
        padding-left: 0px;
    }

    .navbar-collaps .hamburger-btn .icon-bar {
        background-color: #ffffff !important;
    }

    .collapsed-dropdown ul li a {
        color: #ffffff !important;
    }

    nav.navbar.transparent-white {
        background-color: unset !important;
        border-bottom: unset !important;

    }

    .res-contact-details {
        width: 53%;
    }

    .res-toggle-btn {
        width: 13.666667%;
    }

    .collapsed-hero-logo .logo-img img {
        max-width: 90px !important;
    }

}

/*-  Hamburger Menu -*/
.hamburger-menu {
    position: absolute;
    right: 8%;
    top: 54%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.hamburger-btn {
    border: none;
    height: 100%;
    padding: 0;
    margin: 0;
}

.navbar-collaps .hamburger-btn .icon-bar {
    display: block;
    width: 19px;
    height: 2px;
    background-color: #000;
}

.hamburger-btn .icon-bar+.icon-bar {
    margin-top: 3px;
}

.navbar-collaps .hamburger-btn:focus,
.navbar-collaps .hamburger-btn:hover {
    background-color: transparent;
}

.hamburger-btn {
    border: none;
    background: transparent !important;
}

.hamburger-btn:hover {
    background: transparent !important;
}

.hamburger-btn .icon-bar {
    width: 19px;
    transition: transform 0.3s;
}

.hamburger-btn .top-bar {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 14% 20%;
    transform-origin: 14% 20%;
}

.hamburger-btn .middle-bar {
    opacity: 0;
}

.hamburger-btn .bottom-bar {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 8% 60%;
    transform-origin: 8% 60%;
}

.hamburger-btn.clicked .top-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

.hamburger-btn.clicked .middle-bar {
    opacity: 1;
}

.hamburger-btn.clicked .bottom-bar {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

/*-- Collapsed Menu Dropdown --*/
.collapsed-dropdown {
    display: none;
    background-color: #000;
    padding: 15px 5%;
    width: 20%;
}

.collapsed-dropdown ul.ul-v {
    margin: 0;
}

.collapsed-dropdown ul.ul-v>li {
    padding: 8px 0;
}

.collapsed-dropdown ul.ul-v>li a:hover {
    color: #fff;
}

.collapsed-dropdown ul.ul-v>li a:focus {
    color: #aeaeae;
}

.collapsed-dropdown ul.ul-v>li.dropdown ul.dropdown-menu-collapsed {
    display: none;
    padding: 18px 0 5px 0;
    margin: 0;
    background-color: #000;
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    list-style: none;
    max-height: 250px;
    overflow-y: auto;
}

ul.dropdown-menu-collapsed li {
    padding-left: 10px;
}

/*-- Transparent White Navigation Bar --*/
nav.navbar.transparent-white {
    background-color: #0000007a;
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, .2);
    width: 100%;
}

nav.navbar.transparent-white.navbar-fixed {
    position: fixed;
}

nav.navbar.transparent-white.navbar-static {
    position: static;
}

nav.navbar.transparent-white ul.ul-h.nav-menu>li>a {
    font: 500 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    -webkit-transition: color .2s;
    transition: color .2s;
}

nav.navbar.transparent-white ul.ul-h.nav-menu.nav-social li a i {
    font-size: 11px;
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid rgba(255, 255, 255, .5);
}

nav.navbar.transparent-white ul.ul-h.nav-menu>li>a:hover {
    color: rgba(255, 255, 255, .6);
}

nav.navbar.transparent-white .logo-white {
    display: none;
}

/*- Collapsed -*/
@media (min-width: 1351px) {
    nav.navbar.transparent-white.nav-collapsed {
        position: fixed;
        height: 70px;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
    }

    nav.navbar.transparent-white.nav-collapsed ul.ul-h.nav-menu>li>a {
        letter-spacing: .5px;
        font-weight: 600;
        color: rgba(255, 255, 255, .85);
    }

    nav.navbar.transparent-white.nav-collapsed ul.ul-h.nav-menu.nav-social li a i {
        font-size: 11px;
        padding-right: 5px;
        margin-right: 5px;
        border-right: 1px solid rgba(0, 0, 0, .2);
    }

    nav.navbar.transparent-white.nav-collapsed ul.ul-h.nav-menu>li>a:hover {
        color: rgba(0, 0, 0, .6);
    }

    nav.navbar.transparent-white.nav-collapsed .logo-white {
        display: none;
    }

    nav.navbar.transparent-white.nav-collapsed .logo-black {
        display: initial;
    }
}

/*-- Transparent Black Navigation Bar --*/
nav.navbar.transparent-black {
    background-color: transparent;
    position: absolute;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

nav.navbar.transparent-black.navbar-fixed {
    position: fixed;
}

nav.navbar.transparent-black.navbar-static {
    position: static;
}

nav.navbar.transparent-black ul.ul-h.nav-menu>li>a {
    font: 600 10px/1 'Montserrat', sans-serif;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .85);
    text-transform: uppercase;
    -webkit-transition: color .2s;
    transition: color .2s;
}

nav.navbar.transparent-black ul.ul-h.nav-menu.nav-social li a i {
    font-size: 11px;
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid rgba(0, 0, 0, .2);
}

nav.navbar.transparent-black ul.ul-h.nav-menu>li>a:hover {
    color: rgba(0, 0, 0, .6);
}

nav.navbar.transparent-black .logo-white {
    display: none;
}

/*- Collapsed -*/
@media (min-width: 1351px) {
    nav.navbar.transparent-black.nav-collapsed {
        position: fixed;
        height: 70px;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
    }

    nav.navbar.transparent-black.nav-collapsed ul.ul-h.nav-menu>li>a {
        letter-spacing: .5px;
        font-weight: 600;
        color: rgba(0, 0, 0, .85);
    }

    nav.navbar.transparent-black.nav-collapsed ul.ul-h.nav-menu.nav-social li a i {
        font-size: 11px;
        padding-right: 5px;
        margin-right: 5px;
        border-right: 1px solid rgba(0, 0, 0, .2);
    }

    nav.navbar.transparent-black.nav-collapsed ul.ul-h.nav-menu>li>a:hover {
        color: rgba(0, 0, 0, .6);
    }

    nav.navbar.transparent-black.nav-collapsed .logo-white {
        display: none;
    }

    nav.navbar.transparent-black.nav-collapsed .logo-black {
        display: initial;
    }
}

/*-- White Navigation Bar --*/
nav.navbar.navbar-white {
    background-color: #fff;
    position: absolute;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}

nav.navbar.navbar-white.navbar-fixed {
    position: fixed;
}

nav.navbar.navbar-white.navbar-static {
    position: static;
}

nav.navbar.navbar-white ul.ul-h.nav-menu>li>a {
    font: 600 10px/1 'Montserrat', sans-serif;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .85);
    text-transform: uppercase;
    -webkit-transition: color .2s;
    transition: color .2s;
}

nav.navbar.navbar-white ul.ul-h.nav-menu.nav-social li a i {
    font-size: 11px;
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid rgba(0, 0, 0, .2);
}

nav.navbar.navbar-white ul.ul-h.nav-menu>li>a:hover {
    color: rgba(0, 0, 0, .6);
}

nav.navbar.navbar-white .logo-white {
    display: none;
}

/*- Collapsed -*/
@media (min-width: 1351px) {
    nav.navbar.navbar-white.nav-collapsed {
        position: fixed;
        height: 70px;
        background-color: #fff;
        border-bottom: 1px solid rgba(0, 0, 0, .07);
    }

    nav.navbar.navbar-white.nav-collapsed ul.ul-h.nav-menu>li>a {
        letter-spacing: .5px;
        font-weight: 600;
        color: rgba(0, 0, 0, .85);
    }

    nav.navbar.navbar-white.nav-collapsed ul.ul-h.nav-menu.nav-social li a i {
        font-size: 11px;
        padding-right: 5px;
        margin-right: 5px;
        border-right: 1px solid rgba(0, 0, 0, .2);
    }

    nav.navbar.navbar-white.nav-collapsed ul.ul-h.nav-menu>li>a:hover {
        color: rgba(0, 0, 0, .6);
    }

    nav.navbar.navbar-white.nav-collapsed .logo-white {
        display: none;
    }

    nav.navbar.navbar-white.nav-collapsed .logo-black {
        display: initial;
    }
}

/*-- Black Navigation Bar --*/
nav.navbar.navbar-black {
    background-color: #000;
    position: absolute;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

nav.navbar.navbar-black.navbar-fixed {
    position: fixed;
}

nav.navbar.navbar-black.navbar-static {
    position: static;
}

nav.navbar.navbar-black ul.ul-h.nav-menu>li>a {
    font: 500 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    -webkit-transition: color .2s;
    transition: color .2s;
}

nav.navbar.navbar-black ul.ul-h.nav-menu.nav-social li a i {
    font-size: 11px;
    padding-right: 5px;
    margin-right: 5px;
    border-right: 1px solid rgba(255, 255, 255, .3);
}

nav.navbar.navbar-black ul.ul-h.nav-menu>li>a:hover {
    color: rgba(255, 255, 255, .6);
}

nav.navbar.navbar-black .logo-black {
    display: none;
}

/*- Collapsed -*/
@media (min-width: 1351px) {
    nav.navbar.navbar-black.nav-collapsed {
        position: fixed;
        height: 70px;
        background-color: #000;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
    }

    nav.navbar.navbar-black.nav-collapsed ul.ul-h.nav-menu>li>a {
        letter-spacing: 1px;
        font-weight: 500;
        color: rgba(255, 255, 255, 1);
    }

    nav.navbar.navbar-black.nav-collapsed ul.ul-h.nav-menu.nav-social li a i {
        font-size: 11px;
        padding-right: 5px;
        margin-right: 5px;
        border-right: 1px solid rgba(255, 255, 255, .3);
    }

    nav.navbar.navbar-black.nav-collapsed ul.ul-h.nav-menu>li>a:hover {
        color: rgba(255, 255, 255, .6);
    }

    nav.navbar.navbar-black.nav-collapsed .logo-black {
        display: none;
    }

    nav.navbar.navbar-black.nav-collapsed .logo-white {
        display: initial;
    }
}




/*---------- HERO ----------*/

/*-- Hero Fullscreen --*/
.hero-fullscreen {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

@media all and (max-width: 992px) {
    .hero-fullscreen {
        height: auto;
    }

    .hero-fullscreen .container {
        padding-top: 0;
        top: 0;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
    }
}

/*-- Hero Half Screen --*/
.hero-50 {
    height: 50vh;
}

/*-- Hero Fullwidth --*/
.hero-fullwidth {
    height: 70vh;
    position: relative;
}

.hero-fullwidth.parallax>.background-image,
.hero-50.parallax>.background-image {
    height: 100%;
    top: 0;
}

.parallax.no-top .background-image {
    top: 0;
}

@media all and (max-width: 992px) {

    .hero-fullwidth,
    .hero-50 {
        height: auto;
    }

    .hero-fullscreen .container {
        padding-top: 0;
        top: 0;
        transform: none;
        -moz-transform: none;
        -webkit-transform: none;
    }
}

/* Hero Slider */
.owl-hero-slider,
.owl-hero-slider .owl-stage-outer,
.owl-hero-slider .owl-wrapper-outer,
.owl-hero-slider .owl-height,
.owl-hero-slider .owl-stage,
.owl-hero-slider .owl-wrapper,
.owl-hero-slider .owl-item {
    height: 100% !important;
}

.owl-hero-slider .slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    height: 100% !important;
}

.owl-hero-slider .owl-item img {
    display: none;
}

/*-- Hero Video --*/
.hero-video {
    background-color: transparent;
    position: relative;
    overflow: hidden;
}

.video-background {
    background: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
}

@media (max-width: 481px) {
    .video-background {
        position: absolute;
    }

    .collapsed-dropdown {
        width: 30%;
    }
}

.video-foreground,
.video-background iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

@media (min-aspect-ratio: 16/9) {
    .video-foreground {
        height: 300%;
        top: -100%;
    }
}

@media (max-aspect-ratio: 16/9) {
    .video-foreground {
        width: 300%;
        left: -100%;
    }
}

@media (max-width: 992px) {
    .video-background {
        display: none;
    }

}

.hero-content {
    position: relative;
    z-index: 1;
    display: table;
    height: 100%;
    width: 100%;
}

.hero-content .container {
    display: table-cell;
    vertical-align: middle;
    padding: 120px 0;
}

#hero .hero-content,
#hero .content-container {
    padding-top: 80px;
}




/*---------- OVERLAYS ----------*/

/*-- Overlay White --*/
.overlay-white:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 3;
}

[data-overlay-light="1"]:before {
    background-color: rgba(255, 255, 255, .1)
}

[data-overlay-light="2"]:before {
    background-color: rgba(255, 255, 255, .2)
}

[data-overlay-light="3"]:before {
    background-color: rgba(255, 255, 255, .3)
}

[data-overlay-light="4"]:before {
    background-color: rgba(255, 255, 255, .4)
}

[data-overlay-light="5"]:before {
    background-color: rgba(255, 255, 255, .5)
}

[data-overlay-light="6"]:before {
    background-color: rgba(255, 255, 255, .6)
}

[data-overlay-light="7"]:before {
    background-color: rgba(255, 255, 255, .7)
}

[data-overlay-light="8"]:before {
    background-color: rgba(255, 255, 255, .8)
}

[data-overlay-light="9"]:before {
    background-color: rgba(255, 255, 255, .9)
}

/*-- Overlay Black --*/
.overlay-black:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    z-index: 1;
}

[data-overlay-dark="1"]:before {
    background-color: rgba(0, 0, 0, .1)
}

[data-overlay-dark="2"]:before {
    background-color: rgba(0, 0, 0, .2)
}

[data-overlay-dark="3"]:before {
    background-color: rgba(0, 0, 0, .3)
}

[data-overlay-dark="4"]:before {
    background-color: rgba(0, 0, 0, .4)
}

[data-overlay-dark="5"]:before {
    background-color: rgba(0, 0, 0, .5)
}

[data-overlay-dark="6"]:before {
    background-color: rgba(0, 0, 0, .6)
}

[data-overlay-dark="7"]:before {
    background-color: rgba(0, 0, 0, .7)
}

[data-overlay-dark="8"]:before {
    background-color: rgba(0, 0, 0, .8)
}

[data-overlay-dark="9"]:before {
    background-color: rgba(0, 0, 0, .9)
}




/*---------- TYPOGRAPHY ----------*/
h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

/*-- H1 --*/
.h1-xl {
    font: 800 90px/.9em 'Montserrat';
    letter-spacing: -4px;
}

.h1-lg {
    font: 400 130px/1 'Peace Sans';
    letter-spacing: .5px;
    text-transform: uppercase;
}

.h1-md {
    font: 400 110px/1 'Peace Sans';
    letter-spacing: .5px;
    text-transform: uppercase;
}

.h1-sm {
    font: 400 90px/1 'Peace Sans';
    letter-spacing: normal;
    text-transform: uppercase;
}

/*-- H2 --*/
.h2-lg {
    font: 600 65px/1.2em 'Montserrat';
    letter-spacing: -1px;
}

.h2-md {
    font: 600 45px/1.2em 'Montserrat';
}

.black .h2-md {
    letter-spacing: -1px;
}

.h2-sm {
    font: 600 25px/1.2em 'Montserrat';
}

/*-- H3 --*/
.h3-lg {
    font: 600 28px/1.1em 'Montserrat', sans-serif;
    letter-spacing: -.5px;
}

.h3-md {
    font: 600 22px/1.1em 'Montserrat', sans-serif;
    letter-spacing: -.5px;
}

.h3-sm {
    font: 600 16px/1.1em 'Montserrat', sans-serif;
    letter-spacing: 0px;
}

/*-- H4 --*/
.h4-lg {
    font: 400 38px/1.1em 'Nunito Sans', sans-serif;
}

.h4-md {
    font: 400 32px/1.1em 'Nunito Sans', sans-serif;
    letter-spacing: -.5px;
}

.h4-sm {
    font: 400 26px/1.1em 'Nunito Sans', sans-serif;
}

/*-- H5 --*/
.h5-lg {
    font: 300 20px/1.55em 'Nunito Sans', sans-serif;
}

.h5-md {
    font: 200 18px/1.65em 'Nunito Sans', sans-serif;
}

.h5-sm {
    font: 400 15px/1.65em 'Nunito Sans', sans-serif;
}

.black .h5-md {
    font-weight: 400;
}

.uppercase {
    text-transform: uppercase;
}

p {
    font: 400 14px/1.6em 'Nunito Sans', sans-serif;
}

.white p,
.black p {
    font-weight: 300;
}

.no-letter-spacing {
    letter-spacing: normal;
}

.subheading {
    font: 600 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    -webkit-transition: color .2s;
    transition: color .2s;

}

.black .subheading {
    color: rgba(0, 0, 0, .85);
}

.white .subheading {
    letter-spacing: 2px;
    font-weight: 500;
}

.hero-subheading {
    font: 500 10px/1 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
}

.black .hero-subheading {
    font-weight: 600;
    letter-spacing: 3px;
    color: rgba(0, 0, 0, .85);
}

.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

@media (max-width: 1200px) {
    .h5-lg {
        font-size: 17px;
    }

    .h1-xl {
        font-size: 85px;
        letter-spacing: -2px;
    }

    .h1-lg {
        font-size: 85px;
    }

    .h1-md {
        font-size: 70px;
    }

    .h2-lg {
        font-size: 50px;
        letter-spacing: normal;
    }
}

@media (max-width: 992px) {
    .lead.h5-md {
        font-size: 16px;
    }

    .h2-lg {
        font-size: 30px;
        letter-spacing: normal;
    }

    .h1-xl {
        font-size: 50px;
        letter-spacing: -1px;
    }

    .h1-lg,
    .h1-md,
    .h1-sm {
        font-size: 40px;
    }

    .h2-md {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    h5.lead br {
        display: none;
    }
}




/*---------- RESPONSIVE GLOBAL STYLES ----------*/

/* Medium Screens*/
@media (max-width: 992px) {
    .text-center-md {
        text-align: center;
    }

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

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

    .hidden-md,
    p.hidden-md {
        display: none;
    }

    .block-md {
        width: 100%;
    }
}

/* Small Screens */
@media (max-width: 768px) {
    .text-center-sm {
        text-align: center;
    }

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

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

    .hidden-sm,
    p.hidden-sm {
        display: none;
    }

    .block-sm {
        width: 100%;
    }
}

/* Extra Small Screens */
@media (max-width: 576px) {
    .text-center-xs {
        text-align: center;
    }

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

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

    .hidden-xs,
    p.hidden-xs {
        display: none;
    }

    .block-xs {
        width: 100%;
    }
}




/*---------- BUTTONS ----------*/
.btn {
    font: 600 10.5px/1 'Montserrat', sans-serif;
    display: inline-block;
    padding: 17px 37px 17px 37px;
    margin: 5px;
    text-transform: uppercase;
    border: 1px solid transparent;
    border-radius: 50px;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.btn:focus,
.btn:active,
.btn:active:focus {
    outline: none;
    box-shadow: none;
}

.btn-hero {
    background-color: #3cb44a;
    letter-spacing: 1.5px;
    color: #fff;
    font-weight: 500;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.btn-hero:hover {
    color: #fff;
    background-color: rgba(190, 208, 148, 0.4);
}

.btn-hero.alt:hover {
    color: #000;
    font-weight: 600;
    letter-spacing: 1px;
    background-color: rgba(255, 255, 255, .95);
}

.btn-hero:focus {
    color: #fff;
}

.btn-black {
    background-color: rgba(0, 0, 0, 1);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1.5px;
}

.btn-black:hover {
    color: #fff;
    background-color: #3cb44a;
}

.btn-black:focus {
    color: #fff;
}

.btn-white {
    background-color: rgba(255, 255, 255, .95);
    color: rgba(0, 0, 0, .85);
    border-color: rgba(255, 255, 255, .12);
    letter-spacing: .5px;
}

.btn-white:hover {
    color: #fff;
    font-weight: 500;
    border-color: transparent;
    background-color: #3cb44a;
}

.btn-white:focus {
    color: #000;
}

.btn-white:active {
    color: #fff;
}

.btn-ghost-black {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .15);
    color: rgba(0, 0, 0, .85);
    -webkit-transition: all .2s;
    transition: all .2s;
    letter-spacing: 1px;
}

.btn-ghost-black:hover {
    color: rgba(255, 255, 255, 1);
    background-color: #000;
    font-weight: 500;
}

.btn-ghost-black.alt:hover {
    color: rgba(0, 0, 0, 1);
    background-color: #f2f4ec;
    font-weight: 600;
    border-color: transparent;
}

.btn-ghost-white {
    background-color: transparent;
    font-weight: 500;
    border: 1px solid #ffffff5e;
    color: rgba(255, 255, 255, .95);
    -webkit-transition: all .2s;
    transition: all .2s;
    letter-spacing: 1.5px;
}

.btn-ghost-white:hover {
    color: rgba(255, 255, 255, .85);
    background-color: #3cb44a;
    border-color: transparent;
}

.btn-ghost-white:active,
.btn-ghost-white:focus {
    color: #fff;
    background-color: transparent;
    border-color: rgba(255, 255, 255, .12);
}

.btn-p-gray {
    text-decoration: underline;
}

.btn-p-gray:hover {
    text-decoration: underline;
    color: #000;
}

.btn-rounded {
    border-radius: 4px;
    padding: 17px 32px 17px 32px;
}

.btn-square {
    border-radius: 0;
}

.btn-fullwidth {
    width: 100%;
}




/*---------- SPACING SHORTCODES ----------*/

/*-- Padding --*/
.p0 {
    padding: 0px
}

.p5 {
    padding: 5px
}

.p10 {
    padding: 10px
}

.p15 {
    padding: 15px
}

.p20 {
    padding: 20px
}

.p30 {
    padding: 30px
}

.p40 {
    padding: 40px
}

.p50 {
    padding: 50px
}

.p60 {
    padding: 60px
}

.p70 {
    padding: 70px
}

.p80 {
    padding: 80px
}

.p90 {
    padding: 90px
}

.p100 {
    padding: 100px
}

.p110 {
    padding: 110px
}

.p120 {
    padding: 120px
}

.p130 {
    padding: 130px
}

.p140 {
    padding: 140px
}

.p150 {
    padding: 150px
}

/*-- Padding Top --*/
.pt0 {
    padding: 0px
}

.pt5 {
    padding-top: 5px
}

.pt10 {
    padding-top: 10px
}

.pt15 {
    padding-top: 15px
}

.pt20 {
    padding-top: 20px
}

.pt30 {
    padding-top: 30px
}

.pt40 {
    padding-top: 40px
}

.pt50 {
    padding-top: 50px
}

.pt60 {
    padding-top: 60px
}

.pt70 {
    padding-top: 70px
}

.pt80 {
    padding-top: 80px
}

.pt90 {
    padding-top: 90px
}

.pt100 {
    padding-top: 100px
}

.pt110 {
    padding-top: 110px
}

.pt120 {
    padding-top: 120px
}

.pt130 {
    padding-top: 130px
}

.pt140 {
    padding-top: 140px
}

.pt150 {
    padding-top: 150px
}

/*-- Padding Bottom --*/
.pb0 {
    padding-bottom: 0px
}

.pb5 {
    padding-bottom: 5px
}

.pb10 {
    padding-bottom: 10px
}

.pb15 {
    padding-bottom: 15px
}

.pb20 {
    padding-bottom: 20px
}

.pb30 {
    padding-bottom: 30px
}

.pb40 {
    padding-bottom: 40px
}

.pb50 {
    padding-bottom: 50px
}

.pb60 {
    padding-bottom: 60px
}

.pb70 {
    padding-bottom: 70px
}

.pb80 {
    padding-bottom: 80px
}

.pb90 {
    padding-bottom: 90px
}

.pb100 {
    padding-bottom: 100px
}

.pb110 {
    padding-bottom: 110px
}

.pb120 {
    padding-bottom: 120px
}

.pb130 {
    padding-bottom: 130px
}

.pb140 {
    padding-bottom: 140px
}

.pb150 {
    padding-bottom: 150px
}

/*-- Padding Left --*/
.pl0 {
    padding-left: 0px
}

.pl5 {
    padding-left: 5px
}

.pl10 {
    padding-left: 10px
}

.pl15 {
    padding-left: 15px
}

.pl20 {
    padding-left: 20px
}

.pl30 {
    padding-left: 30px
}

.pl40 {
    padding-left: 40px
}

.pl50 {
    padding-left: 50px
}

.pl60 {
    padding-left: 60px
}

.pl70 {
    padding-left: 70px
}

.pl80 {
    padding-left: 80px
}

.pl90 {
    padding-left: 90px
}

.pl100 {
    padding-left: 100px
}

.pl110 {
    padding-left: 110px
}

.pl120 {
    padding-left: 120px
}

.pl130 {
    padding-left: 130px
}

.pl140 {
    padding-left: 140px
}

.pl150 {
    padding-left: 150px
}

/*- Padding Left % -*/
.pl5p {
    padding-left: 5%
}

.pl10p {
    padding-left: 10%
}

.pl15p {
    padding-left: 15%
}

.pl20p {
    padding-left: 20%
}

.pl25p {
    padding-left: 25%
}

.pl30p {
    padding-left: 30%
}

.pl35p {
    padding-left: 35%
}

.pl40p {
    padding-left: 40%
}

.pl45p {
    padding-left: 45%
}

.pl50p {
    padding-left: 50%
}

/*-- Padding Right --*/
.pr0 {
    padding-right: 0px
}

.pr5 {
    padding-right: 5px
}

.pr10 {
    padding-right: 10px
}

.pr15 {
    padding-right: 15px
}

.pr20 {
    padding-right: 20px
}

.pr30 {
    padding-right: 30px
}

.pr40 {
    padding-right: 40px
}

.pr50 {
    padding-right: 50px
}

.pr60 {
    padding-right: 60px
}

.pr70 {
    padding-right: 70px
}

.pr80 {
    padding-right: 80px
}

.pr90 {
    padding-right: 90px
}

.pr100 {
    padding-right: 100px
}

.pr110 {
    padding-right: 110px
}

.pr120 {
    padding-right: 120px
}

.pr130 {
    padding-right: 130px
}

.pr140 {
    padding-right: 140px
}

.pr150 {
    padding-right: 150px
}

/*- Padding Right % -*/
.pr5p {
    padding-right: 5%
}

.pr10p {
    padding-right: 10%
}

.pr15p {
    padding-right: 15%
}

.pr20p {
    padding-right: 20%
}

.pr25p {
    padding-right: 25%
}

.pr30p {
    padding-right: 30%
}

.pr35p {
    padding-right: 35%
}

.pr40p {
    padding-right: 40%
}

.pr45p {
    padding-right: 45%
}

.pr50p {
    padding-right: 50%
}

/*-- Negative Margins --*/
.mt-5 {
    margin-top: -5px
}

.mt-10 {
    margin-top: -10px
}

.mt-15 {
    margin-top: -15px
}

.mb-5 {
    margin-bottom: -5px
}

.mb-10 {
    margin-bottom: -10px
}

.mb-15 {
    margin-bottom: -15px
}

.ml-5 {
    margin-left: -5px
}

.ml-10 {
    margin-left: -10px
}

.ml-15 {
    margin-left: -15px
}

.mr-5 {
    margin-right: -5px
}

.mr-10 {
    margin-right: -10px
}

.mr-15 {
    margin-right: -15px
}

/*-- Margin Auto --*/
.m-auto {
    margin-left: auto;
    margin-right: auto;
    float: none;
}

/*-- Margin --*/
.m0 {
    margin: 0px
}

.m5 {
    margin: 5px
}

.m10 {
    margin: 10px
}

.m15 {
    margin: 15px
}

.m20 {
    margin: 20px
}

.m30 {
    margin: 30px
}

.m40 {
    margin: 40px
}

.m50 {
    margin: 50px
}

.m60 {
    margin: 60px
}

.m70 {
    margin: 70px
}

.m80 {
    margin: 80px
}

.m90 {
    margin: 90px
}

.m100 {
    margin: 100px
}

.m110 {
    margin: 110px
}

.m120 {
    margin: 120px
}

.m130 {
    margin: 130px
}

.m140 {
    margin: 140px
}

.m150 {
    margin: 150px
}

/*-- Margin Top --*/
.mt0 {
    margin-top: 0
}

.mt5 {
    margin-top: 5px
}

.mt10 {
    margin-top: 10px
}

.mt15 {
    margin-top: 15px
}

.mt20 {
    margin-top: 20px
}

.mt30 {
    margin-top: 30px
}

.mt40 {
    margin-top: 40px
}

.mt50 {
    margin-top: 50px
}

.mt60 {
    margin-top: 60px
}

.mt70 {
    margin-top: 70px
}

.mt80 {
    margin-top: 80px
}

.mt90 {
    margin-top: 90px
}

.mt100 {
    margin-top: 100px
}

.mt110 {
    margin-top: 110px
}

.mt120 {
    margin-top: 120px
}

.mt130 {
    margin-top: 130px
}

.mt140 {
    margin-top: 140px
}

.mt150 {
    margin-top: 150px
}

/*-- Margin Bottom --*/
.mb0 {
    margin-bottom: 0
}

.mb5 {
    margin-bottom: 5px
}

.mb10 {
    margin-bottom: 10px
}

.mb15 {
    margin-bottom: 15px
}

.mb20 {
    margin-bottom: 20px
}

.mb30 {
    margin-bottom: 30px
}

.mb40 {
    margin-bottom: 40px
}

.mb50 {
    margin-bottom: 50px
}

.mb60 {
    margin-bottom: 60px
}

.mb70 {
    margin-bottom: 70px
}

.mb80 {
    margin-bottom: 80px
}

.mb90 {
    margin-bottom: 90px
}

.mb100 {
    margin-bottom: 100px
}

.mb110 {
    margin-bottom: 110px
}

.mb120 {
    margin-bottom: 120px
}

.mb130 {
    margin-bottom: 130px
}

.mb140 {
    margin-bottom: 140px
}

.mb150 {
    margin-bottom: 150px
}

/*-- Margin Left --*/
.ml0 {
    margin-left: 0
}

.ml5 {
    margin-left: 5px
}

.ml10 {
    margin-left: 10px
}

.ml15 {
    margin-left: 15px
}

.ml20 {
    margin-left: 20px
}

.ml30 {
    margin-left: 30px
}

.ml40 {
    margin-left: 40px
}

.ml50 {
    margin-left: 50px
}

.ml60 {
    margin-left: 60px
}

.ml70 {
    margin-left: 70px
}

.ml80 {
    margin-left: 80px
}

.ml90 {
    margin-left: 90px
}

.ml100 {
    margin-left: 100px
}

.ml110 {
    margin-left: 110px
}

.ml120 {
    margin-left: 120px
}

.ml130 {
    margin-left: 130px
}

.ml140 {
    margin-left: 140px
}

.ml150 {
    margin-left: 150px
}

/*-- Margin Right --*/
.mr0 {
    margin-right: 0
}

.mr5 {
    margin-right: 5px
}

.mr10 {
    margin-right: 10px
}

.mr15 {
    margin-right: 15px
}

.mr20 {
    margin-right: 20px
}

.mr30 {
    margin-right: 30px
}

.mr40 {
    margin-right: 40px
}

.mr50 {
    margin-right: 50px
}

.mr60 {
    margin-right: 60px
}

.mr70 {
    margin-right: 70px
}

.mr80 {
    margin-right: 80px
}

.mr90 {
    margin-right: 90px
}

.mr100 {
    margin-right: 100px
}

.mr110 {
    margin-right: 110px
}

.mr120 {
    margin-right: 120px
}

.mr130 {
    margin-right: 130px
}

.mr140 {
    margin-right: 140px
}

.mr150 {
    margin-right: 150px
}




/*---------- COLORS ----------*/

/*-- Global Colors --*/
.white {
    color: #fff
}

.black {
    color: #000
}

.gray {
    color: #aeaeae;
}

.dark {
    color: rgba(0, 0, 0, .85)
}

.lightgray {
    color: rgba(255, 255, 255, .95)
}

/*-- Background Colors --*/
.bg-black {
    background-color: #000;
}

.bg-dark {
    background-color: rgba(0, 0, 0, .96);
}

.bg-primary {
    background-color: #0db8ca;
}

.bg-gray {
    background-color: #f2f4ec;
}

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




/*---------- CENTERING SHORTCODES ----------*/
.flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.flex-column {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: column wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.flex-reverse {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row-reverse wrap;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-align-items: center;
    align-items: center;
}

.flexAlign {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;
}

.flexAlign.justify-none {
    -webkit-justify-content: initial;
    justify-content: initial;
}

.vertical-align {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-flow: row wrap;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
}

@media (min-width: 992px) {
    .vertical-align {
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        flex-flow: row wrap;
        -webkit-align-items: center;
        align-items: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.align-vertical {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    flex-flow: row wrap;
    -webkit-justify-content: center;
    justify-content: center;

}

.content-container {
    position: relative;
    z-index: 2;
    height: 100%;
    width: 100%;
    text-align: center;
}

.content {
    position: relative;
    padding-top: 100px;
    padding-bottom: 100px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media (max-width: 992px) {
    .content {
        top: 0%;
        -webkit-transform: none;
        -o-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        transform: none;
    }
}

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

.inline {
    display: inline;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.fixed {
    position: fixed;
}




/*---------- SERVICES ----------*/
.service-container {
    margin: 25px 0;
    box-shadow: 0px 0px 35px rgba(0, 0, 0, .07);
    -webkit-transition: all .2s;
    transition: all .2s;
}

.service-container:hover {
    box-shadow: 0px 15px 50px rgba(0, 0, 0, .1);
}

.service-container:hover i {
    bottom: 10px;
}

.service-desc {
    /* padding: 45px; */
    padding: 35px 20px 0 20px;
    min-height: 250px;
    background-color: #fff;
}

.service-desc a h5 {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.service-desc a h5:hover {
    color: rgba(0, 0, 0, .5);
}

.service-bg {
    /* height: 180px; */
    width: 100%;
    background-attachment: fixed;
    background-size: cover;
    background-position: top;
    display: table;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.service-bg i {
    display: table-cell;
    position: relative;
    bottom: 0px;
    vertical-align: middle;
    -webkit-transition: all .2s;
    transition: all .2s;
}

/*---------- SERVICE PAGE ----------*/
@media (max-width: 992px) {
    .servicePage .row.flexAlign {
        display: initial;
    }
}




/*---------- PARALLAX ----------*/
.parallax {
    position: relative;
    overflow: hidden
}

.parallax .container {
    position: relative;
    z-index: 2;
}

.parallax .background-image {
    height: 100vh;
    top: -50vh;
    -webkit-transition: opacity 0.9s ease;
    -moz-transition: opacity 0.9s ease;
    transition: opacity 0.9s ease;
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
}

.hero-fullscreen .background-image {
    top: 0;
}

@media all and (max-width: 1024px) {
    .parallax .background-image {
        top: 0 !important;
        -webkit-transform: none !important;
        -moz-transform: none !important;
        transform: none !important;
        height: 100%;
    }
}

.background-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-size: cover !important;
    background-position: 50% 50% !important;
    z-index: 1;
    opacity: 1;
    background-color: #000;
}

.background-image img {
    display: none
}

img {
    max-width: 100%;
}

a.add-another {
    font-size: 32px;
    margin-top: 32px;
    margin-left: 16px;
}

a.add-another:hover {
    color: #000;
}

.pt-50 {
    padding-top: 50px;
}

/*---------- ICON SIZES ----------*/
i.x1 {
    font-size: 5px;
}

i.x2 {
    font-size: 10px;
}

i.x3 {
    font-size: 20px;
}

i.x4 {
    font-size: 30px;
}

i.x5 {
    font-size: 50px;
}

i.x6 {
    font-size: 70px;
}

i.x7 {
    font-size: 80px;
}

i.x8 {
    font-size: 90px;
}

i.x9 {
    font-size: 100px;
}

i.x10 {
    font-size: 110px;
}




/*---------- PRELOADER ----------*/
.preloader {
    background-color: #fff;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000000000;
    z-index: 99999999;
    opacity: 1;
    -webkit-transition: opacity .3s;
    -moz-transition: opacity .3s;
    transition: opacity .3s;
}

.preloader div {
    position: absolute;
    top: 50%;
    margin: 0 auto;
    position: relative;
    text-indent: -9999em;
    top: 50%;
    height: 50px;
    width: 50px;
    position: relative;
    margin: -25px auto 0 auto;
    display: block;

    border-top: 2px solid rgba(255, 255, 255, 0.2);
    border-right: 2px solid rgba(255, 255, 255, 0.2);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    border-left: 2px solid #fff;

    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateY(50%);
    -webkit-animation: load9 1.1s infinite linear;
    animation: load9 1.1s infinite linear;
}

.preloader div,
.preloader div:after {
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

@-webkit-keyframes load9 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes load9 {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}




/*---------- BLOG ----------*/
.blog-post {
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .065);
    margin: 30px 0;
}

/*-- Blog Pagination --*/
.blog-pagination {
    margin-top: 25px;
}

.blog-pagination>ul.ul-h>li {
    font: 600 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(0, 0, 0, .85);
    margin: 0;
}

.blog-pagination>ul.ul-h>li.active {
    color: rgba(0, 0, 0, .35);
}

.blog-pagination>ul.ul-h>li.prev {
    margin-right: 10px;
}

.blog-pagination>ul.ul-h>li.next {
    margin-left: 10px;
}

.blog-pagination>ul.ul-h>li.prev a,
.blog-pagination>ul.ul-h>li.next a {
    transition: color .2s;
}

.blog-pagination>ul.ul-h>li.prev a:hover,
.blog-pagination>ul.ul-h>li.next a:hover {
    color: rgba(0, 0, 0, .55);
}

.blog-pagination>ul.ul-h>li.prev i {
    margin-right: 5px;
}

.blog-pagination>ul.ul-h>li.next i {
    margin-left: 5px;
}

/*-- Blog Post Video --*/
.blog-post.blog-post-video>.blog-post-preview {
    position: relative;
}

.blog-post.blog-post-video>.blog-post-preview i {
    font-size: 40px;
    color: rgba(255, 255, 255, 1);
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.blog-post.blog-post-video>.blog-post-preview i:hover {
    color: rgba(255, 255, 255, .6);
}

.blog-post>.blog-post-preview {
    max-height: 260px;
    overflow: hidden;
}

.blog-post>.blog-post-description {
    padding: 45px;
    min-height: 325px;
    max-height: 325px;
    overflow: hidden;
}

.blog-post>.blog-post-description>.blog-post-category {
    margin-bottom: 10px;
}

.blog-post>.blog-post-description>.blog-post-category a span {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.blog-post>.blog-post-description>.blog-post-category a span:hover {
    color: rgba(0, 0, 0, .6);
}

.blog-post>.blog-post-description>.blog-post-title {
    margin-bottom: 10px;
}

.blog-post>.blog-post-description>.blog-post-title h3 {
    color: rgba(0, 0, 0, 1);
    transition: color .2s;
}

.blog-post>.blog-post-description>.blog-post-title h3:hover {
    color: rgba(0, 0, 0, .7);
}

.blog-post>.blog-post-description>p {
    color: #000;
}

/*-- Boxed 1 Column Preview Image Height --*/
.col-md-12 .blog-post>.blog-post-preview {
    max-height: 500px;
    overflow: hidden;
}

/*-- Boxed 1 Column Text Padding --*/
.col-md-12 .blog-post>.blog-post-description {
    padding: 45px 15%;
}

.blog-post>.blog-post-preview img {
    min-width: 100%;
}

/*-- Boxed 2 Columns Text Padding --*/
.col-md-6 .blog-post>.blog-post-description {
    padding: 45px 15%;
}

.owl-carousel[class*="owl-blog"]>.owl-stage-outer>.owl-stage>.owl-item>div {
    padding: 0 10px;
}

/*-- BLOG SINGLE POST STYLES --*/
.blog-post-list.blog-post-single+.blog-post-single.blog-post-list {
    margin-top: 40px;
}

.blog-post-single>.blog-post-preview {
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.blog-post-single>.blog-post-description>.blog-post-category a span {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.blog-post-single>.blog-post-description>.blog-post-category a span:hover {
    color: rgba(0, 0, 0, .6);
}

.blog-post-single>.blog-post-description {
    margin-bottom: 40px;
    text-align: center;
}

.blog-post-single>.blog-post-description>.blog-post-category {
    margin-bottom: 0px;
}

.blog-post-single>.blog-post-description>.blog-post-title {
    color: rgba(0, 0, 0, 1);
    padding: 0 15%;
}

.blog-post-single>.blog-post-text p {
    color: rgba(0, 0, 0, 1);
}

.blog-post-single>.blog-post-bottom {
    margin: 40px 0 0 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, .07);
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.blog-post-single>.blog-post-bottom .post-share>ul {
    margin: 0;
}

.blog-post-single>.blog-post-bottom .post-share ul>li>a>i {
    font-size: 11px;
}

.blog-post-single>.blog-post-bottom .post-share ul>li>a {
    color: rgba(0, 0, 0, 1);
    -webkit-transition: color .2s;
    transition: color .2s;
}

.blog-post-single>.blog-post-bottom .post-share ul>li>a:hover {
    color: rgba(0, 0, 0, .5);
}

.blog-post-single>.blog-post-bottom .post-date {
    text-align: right;
}

@media (max-width: 492px) {
    .blog-post-single>.blog-post-bottom .post-date {
        margin-top: 10px;
    }
}

.blog-post-single>.blog-post-commentcount {
    margin: 0 0 40px 0;
    padding: 30px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
    text-align: center;
}

.blog-post-single>.blog-post-commentcount h5 {
    cursor: pointer;
}

.blog-post-single>.blog-post-commentcount h5.hide-comments {
    display: none;
}

.blog-post-single>.blog-post-commentcount h5:hover {
    color: rgba(0, 0, 0, .6);
}

/*-- BLOG POST LIST STYLES --*/
.blog-post-list {
    padding: 55px 55px 10px 55px;
    border: 1px solid rgba(0, 0, 0, .07);
}

.blog-post-list>.blog-post-bottom {
    border-bottom: 0px;
}

/*-- Post Comments--*/
.blog-post-comments {
    margin-bottom: 40px;
    display: none;
}

.blog-post-comments>.blog-post-comment {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .07);
}

.blog-post-comments>.blog-post-comment p {
    color: rgba(0, 0, 0, 1);
}

.blog-post-comments>.blog-post-comment+.blog-post-comment {
    margin-top: 20px;
}

.blog-post-comments>.blog-post-comment>.blog-post-comment-avatar {
    margin-right: 20px;
    height: 60px;
    width: 60px;
    float: left;
}

.blog-post-comments>.blog-post-comment>.author_date_comment {
    margin-left: 80px;
}

.blog-post-comments>.blog-post-comment>.author_date_comment .blog-post-comment-author {
    margin-bottom: 5px;
}

.blog-post-comments>.blog-post-comment>.author_date_comment .blog-post-comment-date {
    margin-bottom: 15px;
}

.blog-post-comments>.blog-post-comment>.author_date_comment .blog-post-comment-date i {
    margin-right: 5px;
}

/*-- Post Comment Form--*/
.post-comment-form {
    margin-top: 30px;
    text-align: initial;
}

@media (max-width: 992px) {
    .post-comment-form {
        margin-bottom: 30px;
    }
}

.post-comment-form form input+input,
.post-comment-form form input+textarea {
    margin-top: 10px;
}

.post-comment-form form input,
.post-comment-form form textarea {
    display: block;
    width: 100%;
    padding: 15px 20px;
    border: none;
    background-color: rgb(242, 244, 236);
}

.post-comment-form form input::-webkit-input-placeholder,
.post-comment-form form textarea::-webkit-input-placeholder {
    color: inherit;
}

.post-comment-form form input.form-your-email,
.post-comment-form form input.form-your-website {
    width: 49.5%;

}

.post-comment-form form input.form-your-email {
    float: left;
    margin-right: 1%;
}

@media (max-width:992px) {

    .post-comment-form form input.form-your-email,
    .post-comment-form form input.form-your-website {
        width: 100%;
    }

    .post-comment-form form input.form-your-email {
        float: initial;
        margin-right: initial;
    }
}

.post-comment-form form textarea.form-your-comment {
    height: 150px;
    resize: vertical;
    overflow: auto;
}

/*-- Post Sidebar--*/
.blog-post-sidebar .widget-box+.widget-box {
    margin-top: 25px;
}

.blog-post-sidebar>.widget-box {
    text-align: center;
    padding: 55px;
    border: 1px solid rgba(0, 0, 0, .07);
}

.blog-post-sidebar>.widget-box>.widget-title {
    margin-bottom: 20px;
}

/*- Widget - Recent Posts -*/
.blog-post-sidebar>.widget-box.recent-posts>.recent-post+.recent-post {
    margin-top: 40px;
}

.blog-post-sidebar>.widget-box.recent-posts>.recent-post h3 {
    color: #000;
}

.blog-post-sidebar>.widget-box.recent-posts>.recent-post .recent-post-preview {
    margin: 10px 0;
}

/*- Widget - Categories -*/
.blog-post-sidebar>.widget-box.categories>.blog-category+.blog-category {
    margin-top: 10px;
}

/*- Widget - Archives -*/
.blog-post-sidebar>.widget-box.archives>.archive-date+.archive-date {
    margin-top: 10px;
}

/*- Widget - Meta -*/
.blog-post-sidebar>.widget-box.meta>.meta-link+.meta-link {
    margin-top: 10px;
}

/*-- Blog Articles Nav --*/
.blog-articles-nav {
    position: relative;
}

.blog-articles-nav>div {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.blog-articles-nav div a h5:hover {
    color: rgba(0, 0, 0, .6);
}

.blog-articles-nav .prev-post {
    left: 0;
    z-index: 1;
}

.blog-articles-nav .all-posts {
    left: 0;
    right: 0;
    text-align: center;
    z-index: 0;
}

.blog-articles-nav .next-post {
    right: 0;
    z-index: 1;
}




/*---------- PORTFOLIO ----------*/
ul.portfolio-filters {
    margin-bottom: 30px;
    padding-left: 0;
}

.portfolio-filters li {
    display: inline-block;
    cursor: pointer;
    font: 600 10px/1 'Montserrat', sans-serif;
    color: rgba(0, 0, 0, .85);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    background-color: transparent;
    padding: 7px 13px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
}

.portfolio-filters li:hover {
    color: rgba(0, 0, 0, .5);
}

.portfolio-filters li.active {
    cursor: default;
    color: rgba(0, 0, 0, .5);
}

.portfolio-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 0;
}

/*-- Gap 0 --*/
.portfolio [data-gap="0"] {
    padding: 0
}

[data-gap="0"] .portfolio-forester .portfolio-item {
    margin-bottom: 0
}

[data-gap="0"] .portfolio-forester>div {
    padding: 0
}

[data-gap="0"] .portfolio-filters {
    margin-bottom: 0
}

/*-- Gap 10 --*/
.portfolio [data-gap="10"] {
    padding: 5px
}

[data-gap="10"] .portfolio-forester .portfolio-item {
    margin-bottom: 0
}

[data-gap="10"] .portfolio-forester>div {
    padding: 0 5px;
    margin: 5px 0
}

[data-gap="10"] .portfolio-filters {
    margin-bottom: 0
}

/*-- Gap 15 --*/
.portfolio [data-gap="15"] {
    padding: 10px
}

[data-gap="15"] .portfolio-forester .portfolio-item {
    margin-bottom: 0
}

[data-gap="15"] .portfolio-forester>div {
    padding: 0 10px;
    margin: 10px 0
}

[data-gap="15"] .portfolio-filters {
    margin-bottom: 0
}

/*-- Gap 20 --*/
.portfolio [data-gap="20"] {
    padding: 20px
}

[data-gap="20"] .portfolio-forester .portfolio-item {
    margin-bottom: 0
}

[data-gap="20"] .portfolio-forester>div {
    padding: 0 20px;
    margin: 20px 0
}

[data-gap="20"] .portfolio-filters {
    margin-bottom: 0
}

.portfolio-item {
    border-radius: 0;
}

.gallery-title-absolute {
    position: absolute;
    top: 47px;
    left: 20px;
    right: 0;
}

@media (max-width: 992px) {
    .gallery-title-absolute {
        position: absolute;
        top: 38px;
        left: 1px;
        right: 0;
    }
}

.portfolio-item img {
    max-width: 100%;
    width: 100%;
}

.portfolio-forester.lightbox>div a {
    cursor: zoom-in;
}

.lightbox>div a {
    cursor: zoom-in;
}

/*-- Portfolio Caption Style 1 --*/
.portfolio-forester>div[data-caption-style="1"] .portfolio-item img {
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.portfolio-forester>div[data-caption-style="1"] .portfolio-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform .8s;
    transition: transform .8s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption {
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    -webkit-transition: all .15s;
    transition: all .15s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption:hover {
    background-color: rgba(255, 255, 255, 1);
    -webkit-transition: background-color .3s;
    transition: background-color .2s;
    transition-delay: .2s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption .caption-desc {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption:hover .caption-desc {
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    transition-delay: .4s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption .caption-desc .caption-btn {
    display: inline-block;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.portfolio-forester>div[data-caption-style="1"] .item-caption .caption-desc .caption-btn:hover {
    opacity: .5;
}

/*-- Portfolio Caption Style 2 --*/
.portfolio-forester>div[data-caption-style="2"] .portfolio-item img {
    -webkit-transition: transform .3s;
    transition: transform .3s;
}

.portfolio-forester>div[data-caption-style="2"] .portfolio-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform .8s;
    transition: transform .8s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption {
    position: absolute;
    z-index: 2;
    background-color: rgba(255, 255, 255, 0);
    width: 100%;
    height: 100%;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption:hover {
    background-color: rgba(255, 255, 255, .95);
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption .caption-desc {
    position: absolute;
    width: 100%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption:hover .caption-desc {
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption .caption-desc .project-title p {
    padding: 0 25%;
    padding-top: 8px;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption .caption-btn {
    position: absolute;
    width: 100%;
    bottom: 25px;
    opacity: 0;
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption:hover .caption-btn {
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption .caption-btn h5 {
    display: inline-block;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.portfolio-forester>div[data-caption-style="2"] .item-caption .caption-btn h5:hover {
    opacity: .5;
}

/*-- Portfolio Caption Style 3 --*/
.portfolio-forester>div[data-caption-style="3"] .portfolio-item img {
    -webkit-transition: transform .5s;
    transition: transform .5s;
}

.portfolio-forester>div[data-caption-style="3"] .portfolio-item:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: transform 1s;
    transition: transform 1s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption {
    position: absolute;
    z-index: 2;
    background-color: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    -webkit-transition: background-color .15s;
    transition: background-color .15s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption:hover {
    background-color: rgba(0, 0, 0, 0);
    -webkit-transition: background-color .3s;
    transition: background-color .3s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption .caption-desc {
    position: absolute;
    color: #fff;
    bottom: 20px;
    left: 40px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 1;
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption:hover .caption-desc {
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption .caption-desc .project-title p {
    padding: 0 25%;
    padding-top: 8px;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption .caption-btn {
    position: absolute;
    width: 100%;
    bottom: 25px;
    opacity: 0;
    -webkit-transition: opacity .1s;
    transition: opacity .1s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption:hover .caption-btn {
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption .caption-btn h5 {
    display: inline-block;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.portfolio-forester>div[data-caption-style="3"] .item-caption .caption-btn h5:hover {
    opacity: .5;
}

/*-- Portfolio Project Page 1 --*/
.projectPage ul.ul-h li {
    padding: 0 15px;
}




/*---------- FEATURES ----------*/

/*! -- Features Style 1 -- */
.feature-container {
    margin: 55px 0;
}

.feature-icon {
    float: left;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.feature-desc {
    padding-left: 90px;
    text-align: left;
}

.feature-container:hover .feature-icon {
    opacity: .5;
}

/*! -- Features Style 2 -- */
.feature-container-2 {
    margin: 55px 0;
    padding: 0px 30px;
}

.feature-icon-2 {
    padding-bottom: 30px;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.feature-desc-2 {
    text-align: center;
}

.feature-container-2:hover .feature-icon-2 {
    opacity: .5;
}

/* Query Form */

.form-horizontal .form-group.d-block {
    display: block;
}

.form-group.conditional {
    margin-top: 2px;
}

.conditional.other-form .form-group input {
    width: 110px;
}

#user-details input.form-control[disabled] {
    background-color: #fff;
    cursor: auto;
}

#user-details input.form-control {
    text-align: center;
}

#user-details .form-group,
#user-details-needed .form-group {
    display: inline-grid;
}

#user-details,
#user-details-needed,
#contact {
    margin-bottom: 1rem;
}

.row.disp-added-row {
    margin-top: 50px;
    margin-bottom: 30px;
}

.table-responsive.disp-added {
    margin: auto;
    width: 93.2%;
}

@media screen and (max-width: 700px) {
    .table-responsive.disp-added {
        display: block;
    }
}

.table-responsive.disp-added thead tr th {
    text-align: center;
}


/*---------- ACCORDIONS ----------*/
.panel-group {
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 0;
}

.panel-group .panel {
    margin-bottom: 10px;
    border: transparent;
    border-radius: 0px;
    box-shadow: none;
}

.panel-group .panel+.panel {
    margin-top: 0px;
}

.panel-default>.panel-heading {
    color: #666;
    background-color: transparent;
    padding: 0;
}

.panel-title,
.panel-title.collapsed,
.panel-title:not(.collapsed):before,
.panel-title.collapsed:before {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    transition: all 0.3s;
}

.panel-heading i {
    margin-right: 5px;
    font-size: 12px
}

.panel-title:hover {
    cursor: pointer;
}

.panel-body {
    padding: 20px 30px;
}

.panel-body p {
    margin: 0;
}

.panel-group .panel-heading+.panel-collapse .panel-body {
    border: none;
    background: none;
}

.panel-title {
    position: relative;
    text-transform: none;
    border: none;
    border-radius: 0;
    width: 100%;
    text-align: left;
    padding: 20px 24px;
    color: #000;
    background-color: rgba(0, 0, 0, .05);
}

.panel-title i {
    position: absolute;
    right: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.panel-title.collapsed {
    border-radius: 0px;
}

.panel-title:focus {
    outline: none !important;
}




/*---------- LISTS ----------*/
ul.list-group-white li {
    border: 1px solid rgba(255, 255, 255, .09);
}

ul.list-group-white li+li {
    border-top: 0px;
}

ul.list-group li {
    background-color: transparent;
}

ul.list-group-gray li {
    background-color: rgba(0, 0, 0, .03);
}

/*-- Unordered Vertical List --*/
ul.ul-v {
    padding: 0;
    list-style: none;
}

ul.ul-v>li {
    padding: 3px 0;
}

ul.ul-v>li i {
    margin-right: 12px;
}

/*-- Unordered Horizontal List --*/
ul.ul-h {
    padding: 0;
    list-style: none;
}

ul.ul-h>li {
    padding: 0 3px;
    display: inline-block;
}




/*---------- SOCIAL ----------*/
a.get-connected:hover {
    color: initial;
}

.social-container-icon {
    padding-bottom: 20px;
}

.social-container-icon i {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.social-container-icon:hover i {
    color: rgba(0, 0, 0, .75);
}

@media (max-width: 992px) {
    .social-container {
        padding: 20px 0;
    }
}




/*---------- PRICING PLANS ----------*/
.plan-container {
    background-color: rgba(0, 0, 0, .04);
    padding: 50px;
}

.plan-container .plan-name {
    margin-bottom: 20px;
}

.plan-container ul {
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .plan-container {
        margin: 45px 0;
    }
}




/*---------- GOOGLE MAPS ----------*/
#map {
    height: 400px;
    width: 100%;
}




/*---------- PROGRESS CIRCLES --------*/
.progress-svg {
    display: block;
    margin: 0 auto;
    overflow: hidden;
    -webkit-transform: rotate(-90deg) rotateX(180deg);
    transform: rotate(-90deg) rotateX(180deg);
    width: 180px;
    height: 180px;
}

.progress-svg circle {
    stroke-dashoffset: 0;
    -webkit-transition: stroke-dashoffset 0.8s cubic-bezier(.42, 0, .58, 1);
    transition: stroke-dashoffset 0.8s cubic-bezier(.42, 0, .58, 1);
    stroke: #111;
    stroke-width: 2px;
}

.progress-svg .bar {
    stroke: #f0f0f0;
    stroke-width: 4px;
}

.progress--circles.white .progress-circle .progress-svg .bar {
    stroke: #111;
}

.progress--circles.white .progress-circle .progress-svg circle {
    stroke: #f0f0f0;
}

.progress-circle {
    position: relative;
    margin: 80px 20px;
    -webkit-transform: translate3d(0px, 0px, 0px);
    -moz-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.progress-circle:after {
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    top: 50%;
    font: 200 18px/1.65em 'Nunito Sans', sans-serif;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    content: attr(data-circle-percent) "%";
}

.progress-circles.black .progress-circle:after {
    color: #000;
}

.progress-circles.white .progress-circle:after {
    color: #fff;
}

.progress-circle:before {
    position: absolute;
    top: 200px;
    left: 50%;
    font: 200 18px/1.65em 'Nunito Sans', sans-serif;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    content: attr(data-circle-text);
}

.progress--circles.black .progress-circle:before {
    font-weight: 300;
}




/*---------- VIDEO EMBEDS ----------*/
a[class*='popup'] i.white {
    -webkit-transition: color .2s;
    transition: color .2s;
}

a[class*='popup']:hover i.white {
    color: rgba(255, 255, 255, .5)
}

a[class*='popup'] i.black {
    -webkit-transition: color .2s;
    transition: color .2s;
}

a[class*='popup']:hover i.black {
    color: rgba(0, 0, 0, .5)
}

.video-embed-wrap {
    position: relative;
    padding-bottom: 55%;
    overflow: hidden;
    max-width: 100%;
}

.video-embed-wrap.video-fw-30vh {
    height: 50vh;
    padding-bottom: initial;
}

.video-embed-wrap iframe,
.video-embed-wrap object,
.video-embed-wrap embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}




/*---------- PROCESS BOXES ----------*/
.process-container {
    margin: 55px 0;
    padding: 40px 40px 70px 40px;
    border: 1px solid rgba(0, 0, 0, .05);
}

.process-container-title {
    margin-bottom: 30px;
}

.process-container-name {
    margin-bottom: 5px;
}




/*---------- OUR NUMBERS ----------*/
.number-counter {
    margin-bottom: 10px;
}

.number-counter-desc h5 {
    margin: 0;
}

.number-counter-title {
    margin-bottom: 5px;
}

.our-numbers-wrap {
    margin: 35px 0;
}




/*---------- CONTACT FORM ----------*/
.form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 10px 8px;
    font: 400 14px/1.6em 'Nunito Sans', sans-serif;
    color: #000;
    background-color: rgb(201, 203, 194);
    background-image: none;
    border: none;
    border-radius: 2px;
    box-shadow: none;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.form-horizontal .form-group {
    margin-right: 0;
    margin-left: 0;
    display: inline-grid;
}

textarea.form-message {
    max-width: 100%;
}

.form-control:focus {
    border-color: transparent;
    /*background-color: rgba(0, 0, 0, .05);*/
    background-color: rgb(200, 202, 194);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: none;
    border: 2px solid #00000060;
}

ul.ul-h.contact-1 li {
    padding: 0 30px 0 0;
}

ul.ul-v.contact-1 li {
    padding: 0 0 30px 0;
}

.contact-info-icon {
    display: inline-block;
    padding-right: 10px;
    margin-right: 10px;
    border-right: 1px solid rgba(0, 0, 0, .12);
}

.contact-info-body {
    display: inline-block;
}

/*-- Contact Form Message Popup --*/
.panel-danger {
    border-color: rgba(0, 0, 0, .1);
}

.panel {
    margin: 20px 0;
    background-color: transparent;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.panel ul {
    list-style: none;
    padding: 0;
}

.panel-danger>.panel-heading {
    color: #000000;
    background-color: #ffffff;
    border-color: rgba(0, 0, 0, .1);
}

.message .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 0px;
    text-align: center;
}

.animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-delay: .2s;
}

/*-- Contact Form Black --*/
.contact-form-black .form-control {
    display: block;
    width: 100%;
    height: 44px;
    padding: 10px 18px;
    font: 400 14px/1.6em 'Nunito Sans', sans-serif;
    color: #333;
    background-color: rgba(255, 255, 255, .04);
    background-image: none;
    border: 1px solid rgb(72, 72, 72);
    ;
    border-radius: 0px;
    box-shadow: none;
    -webkit-transition: all .2s;
    transition: all .2s;
}

.contact-form-black .form-control:focus {
    background-color: rgba(255, 255, 255, .035);
}

/*- Contact Form Black Message Popup -*/
.contact-form-black .panel-title {
    color: #fff;
    padding: 10px 0;
    background-color: rgba(255, 255, 552, .05);
}

.contact-form-black .panel-body {
    padding: 15px;
    background-color: rgba(255, 255, 255, .05);
    color: #494849;
}

.contact-form-black .panel-danger>.panel-heading {
    background-color: red;
}




/*---------- TESTIMONIALS ----------*/
.testimonial-wrap {
    text-align: center;
    padding: 0 20%;
}

.testimonal-wrap .testimonial-quote h5 em {
    padding-right: 5px;
}

.testimonial-wrap .testimonial-avatar {
    margin-bottom: 40px;
}

.testimonial-wrap .testimonial-avatar img {
    text-align: center;
    width: auto;
    height: auto;
    margin: auto;
}




/*---------- OWL CAROUSEL ----------*/
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #6c7773;
}

.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    margin: 5px 4px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: all .3s;
    transition: all .3s;
    border-radius: 30px;
}




/*---------- SPLIT SCREEN ----------*/
.container.container-fullwidth.split-screens [class*='col-'] {
    padding: 0;
    max-width: 100%;
}

.container.container-fullwidth.split-screens [class*='col-'] img {
    width: 100%;
    max-width: 100%;
}

.container.container-fullwidth.split-screens [class*='col-'] .text-box {
    padding: 0 20%;
}

.container.container-fullwidth.split-screens [class*='col-'] .img-box img {
    max-height: 550px;
}

.container.container-fullwidth.split-screens [class*='col-'] .text-box h2 {
    margin-bottom: 35px;
}

@media (max-width: 1500px) {
    .container.container-fullwidth.split-screens [class*='col-'] .text-box {
        padding: 7% 20%;
    }

    .container.container-fullwidth.split-screens [class*='col-'] .text-box h2 {
        margin-bottom: 10px;
    }

    .container.container-fullwidth.split-screens [class*='col-'] .img-box {
        text-align: center;
    }

    .container.container-fullwidth.split-screens [class*='col-'] .img-box img {
        max-width: 981px;
        margin: auto;
    }
}

@media (max-width: 991px) {
    .container.container-fullwidth.split-screens [class*='col-'] .text-box {
        padding: 7% 10%;
        text-align: center;
    }
}




/*---------- CLIENTS----------*/
.owl-carousel.owlClients .owl-item img {
    width: auto;
    margin: auto;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
}

.owl-carousel.owlClients .owl-item img:hover {
    opacity: .5;
}




/*---------- FOOTER ----------*/
footer ul {
    padding: 0;
}

/*-- Footer Black 1 --*/
.footer-black-1 {
    background-color: rgba(0, 0, 0, 1);
}

.footer-black-1 ul.nav-menu li {
    padding: 0 30px 0 0;
}

.footer-black-1 ul.nav-menu li a {
    color: rgba(255, 255, 255, 1);
    font: 500 10px/1 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.footer-black-1 ul.nav-menu li:hover a {
    color: rgba(255, 255, 255, .5);
}

@media (max-width: 576px) {
    .footer-black-1 ul.nav-menu.width100-sm li {
        width: 100%;
        padding: 0 0 30px 0;
    }
}

.footer-black-1 ul.footer-contact-info {
    margin: 20px 0;
}

.footer-black-1 ul.footer-contact-info li {
    padding: 0 20px 0 0;
}

/*-- Footer White 1 --*/
.footer-white-1 {
    background-color: rgba(255, 255, 255, 1);
}

.footer-white-1 ul.nav-menu li {
    padding: 0 30px 0 0;
}

.footer-white-1 ul.nav-menu li a {
    font: 600 10px/1 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: rgba(0, 0, 0, .85);
    -webkit-transition: color .2s;
    transition: color .2s;
}

.footer-white-1 ul.nav-menu li:hover a {
    color: rgba(0, 0, 0, .5);
}

@media (max-width: 576px) {
    .footer-white-1 ul.nav-menu.width100-sm li {
        width: 100%;
        padding: 0 0 30px 0;
    }
}

.footer-white-1 ul.footer-contact-info {
    margin: 20px 0;
}

.footer-white-1 ul.footer-contact-info li {
    padding: 0 20px 0 0;
}

/*-- Footer Black 2 --*/
.footer-black-2 {
    background-color: #000;
}

.footer-black-2 ul.social-icons li {
    padding: 5px;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.footer-black-2 ul.social-icons li:hover {
    opacity: .5;
}

.footer-black-2 ul.social-icons li a i {
    color: rgba(255, 255, 255, 1);
    font-size: 12px;
}

/*-- Footer White 2 --*/
.footer-white-2 {
    background-color: rgba(255, 255, 255, 1);
}

.footer-white-2 ul.social-icons li {
    padding: 5px;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}

.footer-white-2 ul.social-icons li:hover {
    opacity: .5;
}

.footer-white-2 ul.social-icons li a i {
    color: rgba(0, 0, 0, 1);
    font-size: 12px;
}

/*---------- Login Signup Modals ----------*/
.modal-content {
    border-radius: 0px;
}

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

.modal-header {
    border-bottom: 0px;
}

.modal-header button.close {
    margin: 0px;
}

.modal-footer {
    border-top: 0px;
}




/*---------- ICONSMIND ----------*/
.iconsmind-icon {
    margin-bottom: 15px;
}

.iconsmind-classes p {
    font-size: 11px;
}

.iconsmind-icon i {
    font-size: 40px;
    color: #000;
    opacity: .95;
}

.iconsmind-classes .row .col-md-2 {
    margin: 25px 0;
}




/*---------- TABS ----------*/
.nav-tabs-center {
    display: inline-block;
}

.nav-tabs>li {
    float: left;
    margin: 0 15px 10px 15px;
}

.nav-tabs {
    border-bottom: none;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    margin: 0;
    background-color: transparent;
    border: transparent;
    border-bottom-color: transparent;
}

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

/*-- Icon Tabs --*/
ul#iconTabs li.active a span {
    color: #000;
    -webkit-transition: all .4s;
    transition: all .4s;
}

ul#iconTabs li a span {
    -webkit-transition: all .2s;
    transition: all .2s;
}

ul#iconTabs li a span:hover {
    color: #000;
}

ul#iconTabs li a {
    color: #cfcfcf;
}

ul#iconTabs li a span.icon-tab {
    display: block;
    font-size: 65px;
    padding-bottom: 15px;
}

@media (max-width: 992px) {
    ul#iconTabs li a span.icon-tab {
        font-size: 45px;
    }

    ul#iconTabs.nav-tabs>li {
        margin: 0 0px 10px 0px;
    }

    ul#iconTabs.nav-tabs>li>a {
        padding: 10px 10px;
    }
}

.nav-tabs>li>a {
    margin: 0;
    border: transparent;
    border-radius: 0;
}

.nav-tabs>li>a:hover {
    border-color: transparent;
    background-color: transparent;
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #000;
    cursor: default;
}




/*---------- DEMOS ----------*/
@media (max-width: 992px) {
    #demos .row>div {
        margin: 40px 0;
    }
}

#demos .row>div {
    -webkit-transition: all .3s;
    transition: all .3s;
}

#demos .row>div:hover {
    -webkit-transform: translateY(-2%);
    transform: translateY(-2%);
    opacity: .8;
}




/*---------- HANDY ELEMENTS ----------*/
.handy-elements .element-box {
    border: 1px solid rgba(0, 0, 0, .07);
    padding: 50px 30px;
    position: relative;
    margin-bottom: 20px;
}

.handy-elements .row>div {
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .handy-elements .row>div {
        margin: 20px 0;
    }
}

.sidenav_mobile {
    display: none;
}

@media (max-width: 992px) {
    nav.sidebar {
        display: none;
    }

    .sidenav_mobile {
        display: block;
    }

    nav.navbar.navbar-inverse {
        z-index: 9;
    }

    #myNavbar {
        overflow-y: hidden;
    }
}

.handy-elements .element-box i {
    position: absolute;
    text-align: center;
    left: 0;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: color .2s;
    transition: color .2s;
}

.handy-elements .element-box {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.handy-elements .element-box:hover i {
    color: rgba(0, 0, 0, .5);
}

/* Loader */
.overlay {
    background: #0b0c0c !important;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.5;
    z-index: 99999;
    text-align: center;
    font-size: 25px;
    vertical-align: middle;
    line-height: 25;
    color: #fff;
}

.welcome-dropdown {
    display: block;
    position: absolute;
    top: 65%;
    left: -40%;
    z-index: 1000;
    visibility: hidden;
    opacity: 0;
    float: left;
    min-width: 160px;
    padding: 30px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: right;
    list-style: none;
    background-color: #000000e3;
    border: 0px;
    border-radius: 0px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: opacity .25s, visibility .25s;
    transition: opacity .25s, visibility .25s;
}

.sidebar-sticky {
    margin: 20px 0px;
}

nav.sidebar {
    background-color: #f2f2f2;
    padding: 0px;
}

.active {
    color: #333;
}

.owl-stage .active {
    color: #eee;
}

.sidebar-sticky li.nav-item {
    border-bottom: 1px solid #bdbdbd;
    margin: 0px 15px;
}

.nav>li>a:hover {
    background-color: inherit;
}

/* Image Upload and Preview*/
.product-upload {
    position: relative;
    max-width: 205px;
    margin: 20px auto;
}

.product-upload .product-edit {
    position: absolute;
    right: 12px;
    z-index: 1;
    top: 10px;
}

.product-upload .product-edit input {
    display: none;
}

.product-upload .product-edit input+label {
    display: inline-block;
    width: 34px;
    height: 34px;
    margin-bottom: 0;
    border-radius: 100%;
    background: #FFFFFF;
    border: 1px solid transparent;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.12);
    cursor: pointer;
    font-weight: normal;
    transition: all 0.2s ease-in-out;
}

.product-upload .product-edit input+label:hover {
    background: #f1f1f1;
    border-color: #d6d6d6;
}

.product-upload .product-edit input+label:after {
    content: "\f040";
    font-family: 'FontAwesome';
    color: #757575;
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
}

.product-upload .product-preview {
    width: 192px;
    height: 192px;
    position: relative;
    border-radius: 100%;
    border: 6px solid #F8F8F8;
    box-shadow: 0px 2px 4px 0px rgba(0, 0, 0, 0.1);
}

.product-upload .product-preview>div {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.product_img {
    margin: auto;
}

/* Image Upload & Preview Ends */
.add-new-product,
.add-new-screen,
.add-new-gallery {
    border-radius: 5px;
    float: right;
    padding: 10px;
}

.screen_img,
.product_img,
.gallery_img {
    width: 120px;
    height: 120px;
    margin: 0 auto;
}

.imagetd {
    min-width: 150px;
}

@media (max-width: 768px) {

    .screen_img,
    .product_img,
    .gallery_img {
        width: 70px;
        height: 70px;
        margin: 0 auto;
    }

    .imagetd {
        min-width: 100px;
    }

    table#order_notes_section {
        display: inline-table;
        word-break: break-word;
    }

    .add-button-info {
        margin-top: 30px;
    }

}

.navbar.sticky.transparent-white.nav-collapsed {
    position: fixed;
    background: #000000d9;
}

.product_modal .modal-dialog {
    top: 10vh;
}

.product_modal .modal-content {
    padding: 20px;
}

.product_modal .modal-header h4 {
    font-weight: 600;
}

.product_modal .modal-body div:nth-child(1) {
    padding: 0px;
}

.product_modal .modal-body img {
    box-shadow: 0px 0px 5px;
}

table.sortable th:not(.sorttable_sorted):not(.sorttable_sorted_reverse):not(.sorttable_nosort):after {
    content: " \25B4"
}

span.info {
    background: #33302c;
    padding: 2px 7px 1px 3px;
    border-radius: 50%;
    font-size: 10px;
    color: #fff;
}

.error {
    border: 2px solid #ff0707 !important;
}

.logo_title {
    position: absolute;
    top: 54%;
    width: 100%;
    text-align: center;
    transform: translateY(-50%);
}

.add-button-info {
    display: block;
}


.contact-us-main {
    border-bottom: 0.5px solid black;
    padding-bottom: 30px;
}

.contact-us-main h2 {
    font-weight: 400;
    text-transform: uppercase;
    margin-bottom: unset;
}

.contact-us-main .head-border {
    border: 3px solid black;
    width: 50px;
    margin: 20px auto 30px auto;
}

.contact-us-sec {
    border-top: 0.5px solid black;
}

.contact-info-body .subheading {
    font-size: 16px;
    font-weight: 600;
    text-transform: unset;
    margin-top: 30px;
}

.contact-info-body p {
    font-size: 13px;
}

.hero-content .h1-xl {
    color: #D51E22;
}

.map-section iframe {
    width: 90%;
    height: 201px;
}

.bottom-logo {
    display: flex;
    justify-content: center;
}


.bottom-logo img {
    max-width: 150px;
    margin: 0px;
}

a:hover {
    color: inherit !important;
}

.screen_link {
    color: #D51E22;
}

.screen_link:hover {
    color: #D51E22 !important;
}

.hero-logo-main {
    height: 122px;
    /* margin-right: 15px; */
}

.homenew_img {
    height: 100px;
    margin-top: 20px;
}

.header-contact-us {
    display: flex;
    justify-content: end;
    align-items: end;
}

.header-contact-us a {
    color: #D51E22;
    font: 500 10px/1 'Montserrat', sans-serif;
    letter-spacing: 1px;
    font-size: 11px;

}

.header-contact-us a:hover {
    color: #D51E22 !important;
}

.header-contact-us a {
    font-weight: bold;
    font-size: 16px;
}

.hero-logo .with-tree-logo {
    max-width: 200px !important;
    max-height: 80px;
}

.product_background {
    background: black;
}

.button-background {
    background-color: #D51E22;
    border: 1px solid #D51E22;
    color: white;
    font-weight: 600;
}

.button-background:active,
.button-background:focus,
.button-background:hover {
    background-color: #D51E22;
    border: 1px solid #D51E22;
    color: white;
    font-weight: 600;
}