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

1. Wrapper / #wrapper 

    1.1 Boxed mode / .boxed

2. Header / #header
    2.1 Search / #search
    2.2 Social Icons / .social-icon

3. Main Menu / .menu-wrapper

4. Sticky Post (Featured Post) / #sticky

5. Content / Sidebar / .col-contentEntry Meta
    4.1 Post class left image / .left-image-post
    4.2 Standart Post / .standard-post
    4.4 Entry Meta (Meta data) / .entry-data
    4.6 Single Content / .single
    4.7 UI Post Content 

6. Comments / .comments

7. Widgets / #widget

8. Page Navi / #wp-pagenavi

9. Footer / #footer

10. Other style

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

/*------------------------------------------------------------------
[1. Wrapper / #wrapper]
*/
body {
    font: normal 14px/1.75 Roboto, sans-serif;
    letter-spacing: 0.25px;
    color: #333;
    font-weight: 300;
    background-color: #fff;
}

/* Preloader */
#preloader {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    position: fixed;
    background-color: #fff;
    z-index: 99999;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#status {
    position: absolute;
    left: 50%;
    top: 50%;
    margin: auto;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    margin-left: -25px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    background: #EC0B5B;
    animation: 1.15s infinite ease-in-out;
    -webkit-animation: 1.15s infinite ease-in-out;
    -moz-animation: 1.15s infinite ease-in-out;
    animation-name: loader;
    -webkit-animation-name: loader;
    -moz-animation-name: loader;
}

#status:before,
#status:after {
    animation: 1.15s infinite ease-in-out;
    -webkit-animation: 1.15s infinite ease-in-out;
    -moz-animation: 1.15s infinite ease-in-out;
}

#status:before,
#status:after {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

@keyframes loader {
    from {
        transform: scale(0);
        opacity: 1;
    }

    to {
        transform: scale(1);
        opacity: 0.5;
    }
}

@-ms-keyframes loader {
    from {
        -ms-transform: scale(0);
        opacity: 1;
    }

    to {
        -ms-transform: scale(1);
        opacity: 0.5;
    }
}

@-webkit-keyframes loader {
    from {
        -webkit-transform: scale(0);
        opacity: 1;
    }

    to {
        -webkit-transform: scale(1);
        opacity: 0.5;
    }
}

@-moz-keyframes loader {
    from {
        -moz-transform: scale(0);
        opacity: 1;
    }

    to {
        -moz-transform: scale(1);
        opacity: 0.5;
    }
}

.vc_column_container {
    padding-left: 0;
    padding-right: 0;
}

body.error404 footer {
    display: none;
}

body.error404 .top_block,
body.error404 .header {
    display: none;
}

body.error404 .tag_line_image .tag-body {
    padding: 60px 0 0 0;
}

body.error404 .main-content {
    margin: 0px;
    padding: 0px;
}

body.error404 h1 {
    font-size: 85px;
    font-weight: 400;
    line-height: 80px;
}

body.error404 .tag_line_image {
    margin: 0;
}

body.error404 a {
    color: #fff;
}

body.error404 form.searchform>div {
    padding: 10px 50px 10px 15px;
    height: 46px;
    background: #fff;
    position: relative;
    display: inline-block;
    margin: 0 auto 40px !important;
    max-width: 480px;
}

body.error404 form.searchform>div:focus {
    border-color: #ddd !important;
}

body.error404 form.searchform>div:before {
    position: absolute;
    content: "\f002";
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 17px;
    font: normal normal normal 16px/1 FontAwesome;
    top: 13px;
    color: #333;
}

body.error404 form.searchform label {
    display: none
}

body.error404 form.searchform input[name="s"] {
    float: left;
    padding: 0;
    width: 200px;
    height: 26px;
    border: none;
    font-weight: 300;
}

body.error404 form.searchform input[type="submit"] {
    position: relative;
    float: right;
    margin: -34px -48px 0 0px;
    padding: 0;
    width: 50px !important;
    height: 44px;
    border: none !important;
    text-indent: -9999px;
    background: transparent;
}

body.error404 p.copy-info {
    text-transform: none;
    font-size: 14px;
    font-weight: 300;
}

body.error404 .error-text {
    font-weight: 300;
    font-size: 24px;
}

body.error404 .error-text-two {
    font-weight: 300;
    font-size: 16px;
    margin-bottom: 50px;
}

.wrapper {
    margin: 0 auto;
    width: 100%;
    overflow: hidden;
    background: #fff;
    position: relative;
    z-index: 1;
}

body.vegas-container .wrapper {
    background: transparent;
}

body.vegas-container .main-content {
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 25px;
    line-height: 1.7;
    font-weight: 300;
    font-family: 'Roboto Slab', serif;
}

h4,
h5,
h6 {
    font-weight: 300;
}

.no-transform {
    text-transform: none;
}

p {
    margin: 0 0 25px;
}

input,
textarea {
    border: 1px solid #eee;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

input:focus,
textarea:focus {
    border-color: #ddd !important;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

label {
    font-weight: 400;
}

a {
    text-decoration: none;
    color: #333;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

a img {
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

section,
.section {
    position: relative;
    z-index: 992;
    padding-top: 100px;
    padding-bottom: 100px;
}

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

img {
    -webkit-filter: blur(0);
    filter: blur(0);
}

a,
img,
:focus,
input {
    outline: none !important;
}

a:hover,
a:focus {
    color: #EC0B5B;
    text-decoration: none;
}

a img:hover {
    opacity: .85;
}

.bypostauthor {
    display: inline-block;
}

.no-pad {
    padding: 0 !important;
    margin: 0 !important;
}

.no-pad-btm {
    padding-bottom: 0 !important;
}

.no-pad-top {
    padding-top: 0 !important;
}

button:hover {
    text-decoration: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    opacity: 0.65;
}

a:hover .fa {
    opacity: 1 !important;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.marg50 {
    margin-top: 50px;
    display: inline-block;
}

td,
th {
    padding: 15px;
    border: 1px solid #eee;
}

ul,
ol {
    margin-bottom: 1.5em;
}

.wrapper .pioneer_full_row_vc {
    width: 100%;
}

.wrapper.boxed .pioneer_full_row_vc {
    max-width: 1500px;
}

/*------------------------------------------------------------------
[1.1 WP Classes]
*/

.wp-caption {
    margin-bottom: 1.75em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0;
}

.wp-caption .wp-caption-text {
    color: #686868;
    font-size: 13px;
    font-style: italic;
    padding-top: 0.5384615385em;
}

.gallery-caption {
    color: #686868;
    display: block;
    font-size: 13px;
    font-style: italic;
    padding-top: 0.5384615385em;
}

.wp-block-image img {
    height: auto;
}

/*------------------------------------------------------------------
[2.0 Header / .header]
*/
.header {
    background: #fff;
    position: relative;
}

.logo {
    width: 100%;
    color: #fff;
    display: inline-block;
    margin-top: 10px;
}

.logo a {
    font-size: 28px;
    text-transform: capitalize;
    color: #333;
    line-height: 1;
}

.logo a span {
    position: relative;
    top: 4px;
    line-height: 1;
}

.logo-text {
    font-size: 31px;
    font-weight: 300;
    height: 50px;
    display: block;
    line-height: 50px;
    padding-left: 5px;
    font-family: Roboto Slab;
    letter-spacing: 1.5px;
    display: inline-block;
    color: #fff;
}

.navbar-custom.top-nav-collapse .logo-text {
    color: #333;
    font-size: 27px;
}

.logowhite {
    display: inline-block;
}

.logodark {
    display: none;
}

.navbar.top-nav-collapse .logowhite {
    display: none;
}

.navbar.top-nav-collapse .logodark {
    display: inline-block;
}

.navbar.top-nav-collapse .logo {
    padding-top: 0;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
    margin-top: 7px;
}

.logo a:hover,
.logo a:focus {
    text-decoration: none;
    color: #333;
}

.navbar .fa,
.navbar a .fa {
    opacity: 1 !important;
}

.navbar .fa {
    font-size: 16px;
    line-height: 1px;
    position: relative;
    top: -2px;
}

.navbar.transparent .logo a {
    color: #fff;
}

.navbar.transparent.top-nav-collapse .logo a {
    color: #333;
}



.pioneer_vc_button {
    outline: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-shadow: none;
    text-decoration: none;
    font-weight: 400;
    padding: 8px 25px;
}

.soc-area {
    margin: 35px 0px 10px 0;
    height: 30px;
    line-height: 30px;
}

.search-area form>div {
    padding: 10px 44px 10px 10px;
    height: 40px;
    border: 1px solid #eee;
    background: #fff;
}

.search-area form>div:before {
    position: absolute;
    color: #EC0B5B;
    content: "\e090";
    text-transform: none;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    font-size: 19px;
    font-family: 'Simple-Line-Icons';
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 19px;
}

.search-area form label {
    display: none
}

.search-area input[name="s"] {
    float: left;
    padding: 0;
    width: 100%;
    height: 20px;
    border: none;
    font-weight: 300;
    margin-top: -2px;
}

.search-area input[type="submit"] {
    position: relative;
    float: right;
    margin: -5px -39px 0 0;
    padding: 0;
    width: 30px !important;
    height: 30px;
    border: none !important;
    background: none !important;
    text-indent: -9999px;
}

.classic,
.classic2 {
    font-family: 'Roboto Slab';
    font-weight: normal !important;
    text-transform: capitalize;
    letter-spacing: 0;
    margin: 0 0 15px;
    transform: rotate(-3deg) !important;
    -moz-transform: rotate(-3deg) !important;
    -webkit-transform: rotate(-3deg) !important;
    opacity: .8;
    font-weight: normal;
}

.no-pad {
    padding: 0 !important;
    margin: 0 !important;
}

.intro h1.classic {
    font-size: 100px;
    line-height: 100px;
    margin-bottom: 35px;
}

.thin {
    font-weight: 100 !important;
}

.page-template-coming-soon .header {
    display: none;
}

.page-template-coming-soon footer {
    display: none;
}

/* NavBar */

n.navbar-fixed-top {
    border: none;
}

.navbar-custom {
    margin-bottom: 0;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
    border-bottom: 1px solid #eee;
    padding: 30px;
}






.navbar-custom.top-nav-collapse {
    background-color: #fff;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
    border-bottom: 1px solid #eee;
}

.navbar-custom.top-nav-collapse .nav>li>a {
    padding: 20px 15px;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}

.navbar-custom.top-nav-collapse .navbar-brand {
    padding-top: 16px;
}

.navbar-custom.top-nav-collapse .pioneer_woo_cart {
    padding: 17px 22px 17px 22px;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
    line-height: 1;
}

.navbar-custom.top-nav-collapse .cart_search_block .pioneer_woo_cart {
    padding: 0;
}

.navbar-custom.top-nav-collapse .container.full .pioneer_woo_cart {
    padding: 0px;
}

.navbar-custom.top-nav-collapse .container.full .cart_search_block>li {
    padding: 20px 15px;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}

.navbar-custom.top-nav-collapse .container.full .cart_search_block>li.menu-divider {
    padding: 0;
    margin-top: 21px;
    border-color: #ddd;
}


.navbar-custom.top-nav-collapse .navbar-brand .logodark {
    max-width: 160px;
    max-height: 20px;
}

.navbar-custom .navbar-brand i {
    vertical-align: middle;
}

.navbar-custom .navbar-brand:focus {
    outline: 0;
}

.navbar-custom .navbar-brand .navbar-toggle {
    padding: 4px 6px;
    font-size: 16px;
    color: #fff;
}

.navbar-custom .navbar-brand .navbar-toggle:focus,
.navbar-custom .navbar-brand .navbar-toggle:active {
    outline: 0;
}

.nav>li>a {
    padding: 18px;
    font-family: Roboto, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 13px;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
}

.navbar-custom .nav li a {
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.navbar-custom .nav li a:hover {
    outline: 0;
    background-color: transparent;
    cursor: pointer;
}

.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
    outline: 0;
    background-color: transparent;
}

.navbar-custom .nav li.active {
    outline: 0;
    background-color: transparent !important;
}

.navbar-custom .nav li.active a {
    color: #EC0B5B !important;
}

.navbar-custom .nav li.active a:hover {
    color: #EC0B5B;
}

.dropdown-menu {
    right: 0;
    left: auto;
    border: 0;
    border-radius: 0px;
    box-shadow: none;
    margin: 0;
    background-color: #fff;
    color: #fff;
    min-width: 230px !important;
    padding: 10px 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
}

.dropdown-menu>li>a {
    font-size: 13px;
    font-weight: 400;
    padding: 12px 20px;
    white-space: normal;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    -webkit-font-smoothing: antialiased;
}

.dropdown-menu>.active>a {
    color: #333 !important;
    background-color: transparent;
}

.dropdown-menu>.active>a:focus,
.dropdown-menu>.active>a:hover {
    background-color: transparent;
}

.nav .open>a {
    background-color: transparent;
    border-color: transparent;
}

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

.search-form {
    margin: 5px 10px;
    width: 250px;
    font-size: 14px;
}

.search-form .form-control {
    color: #ccc !important;
}

.search-button {
    width: 42px;
    height: 40px;
    line-height: 38px;
    margin-top: -22px;
    position: absolute;
    top: 50%;
    right: 12px;
    overflow: hidden;
    background: transparent;
    color: #888;
    border: none;
    outline: none;
}

.search-form {
    padding: 10px;
    width: 100%;
    border-bottom: #555;
    margin: 0;
}

.nav .badge {
    background-color: #EC0B5B;
    color: #fff;
    padding: 4px 5px 5px 6px;
    font-size: 11px;
    position: absolute;
    margin: -10px -5px;
    line-height: 1;
    border-radius: 50% !important;
}

.navbar-toggle {
    padding: 10px 0;
}

.navbar-toggle .icon-bar {
    width: 30px;
    border-radius: 0;
    background: #fff;
    height: 3px;
}

.top-nav-collapse .icon-bar {
    background: #333;
}

.vmenu {
    display: inline-block;
    margin: 0;
    padding: 0;
}

a.btn-nav .btn {
    margin-bottom: 0;
}

.navbar-custom .nav .dropdown-menu li a.btn-nav:hover {
    background-color: transparent;
}

.menu-divider {
    width: 1px;
    border-right: 1px solid #b3b3b3;
    line-height: 18px;
    margin: 23px 15px 0;
}

.dropdown-menu strong {
    padding: 20px 0 16px 18px;
    display: block;
    font-size: 13px;
    font-weight: 800;
    line-height: 1px;
    color: #333 !important;
}

.nav .active {
    height: auto !important;
}

.navbar-nav:not(.sm-collapsible) ul .caret {
    position: absolute;
    right: 0;
    margin-top: 6px;
    margin-right: 15px;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px dashed;
}

.navbar-nav:not(.sm-collapsible) ul a.has-submenu {
    padding-right: 30px;
}

.navbar-nav.sm-collapsible .caret,
.navbar-nav.sm-collapsible ul .caret {
    position: absolute;
    right: 0;
    margin: -25px 14px 0 0;
    padding: 0;
    width: 32px;
    height: 26px;
    line-height: 24px;
    text-align: center;
    border-width: 1px;
    border-style: solid;
}

.navbar-nav.sm-collapsible .caret:before {
    content: '+';
    font-family: monospace;
    font-size: 20px;
}

.navbar-nav.sm-collapsible .open>a>.caret:before {
    content: '-';
}

.navbar-nav.sm-collapsible a.has-submenu {
    padding-right: 50px;
}

.navbar-nav.sm-collapsible[data-sm-skip-collapsible-behavior] .caret,
.navbar-nav.sm-collapsible[data-sm-skip-collapsible-behavior] ul .caret {
    position: static;
    margin: 0 0 0 2px;
    padding: 0;
    width: 0;
    height: 0;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-bottom: 0;
    border-left: 4px solid transparent;
}

.navbar-nav.sm-collapsible[data-sm-skip-collapsible-behavior] .caret:before {
    content: '' !important;
}

.navbar-nav.sm-collapsible[data-sm-skip-collapsible-behavior] a.has-submenu {
    padding-right: 15px;
}

.navbar-nav span.scroll-up,
.navbar-nav span.scroll-down {
    position: absolute;
    display: none;
    visibility: hidden;
    height: 20px;
    overflow: hidden;
    text-align: center;
}

.navbar-nav span.scroll-up-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-top: 7px dashed transparent;
    border-right: 7px dashed transparent;
    border-bottom: 7px solid;
    border-left: 7px dashed transparent;
}

.navbar-nav span.scroll-down-arrow {
    position: absolute;
    top: -2px;
    left: 50%;
    margin-left: -8px;
    width: 0;
    height: 0;
    overflow: hidden;
    border-top: 7px dashed transparent;
    border-right: 7px dashed transparent;
    border-bottom: 7px solid;
    border-left: 7px dashed transparent;
    top: 6px;
    border-top: 7px solid;
    border-right: 7px dashed transparent;
    border-bottom: 7px dashed transparent;
    border-left: 7px dashed transparent;
}

.navbar-nav.sm-collapsible ul .dropdown-menu>li>a,
.navbar-nav.sm-collapsible ul .dropdown-menu .dropdown-header {
    padding-left: 35px;
}

.navbar-nav.sm-collapsible ul ul .dropdown-menu>li>a,
.navbar-nav.sm-collapsible ul ul .dropdown-menu .dropdown-header {
    padding-left: 45px;
}

.navbar-nav.sm-collapsible ul ul ul .dropdown-menu>li>a,
.navbar-nav.sm-collapsible ul ul ul .dropdown-menu .dropdown-header {
    padding-left: 55px;
}

.navbar-nav.sm-collapsible ul ul ul ul .dropdown-menu>li>a,
.navbar-nav.sm-collapsible ul ul ul ul .dropdown-menu .dropdown-header {
    padding-left: 65px;
}

.navbar-nav ul.sm-nowrap .current-menu-ancestor>a {
    color: #EC0B5B;
}

.navbar-nav ul.sm-nowrap .current-menu-ancestor li.current-menu-item a {
    color: #EC0B5B
}

.navbar-nav ul.sm-nowrap li.current-menu-item>a {
    color: #333;
    background: #f1f1f1;
}

.navbar-nav ul.sm-nowrap>li>a.has-submenu:after {
    font-family: FontAwesome;
    content: "\f105";
    position: absolute;
    right: 25px;
}

.navbar-nav ul.sm-nowrap>li.disable>a {
    padding: 20px 0 20px 18px;
    display: block;
    font-size: 14px;
    font-weight: 600;
    line-height: 1px;
    color: #333 !important;
    cursor: default;
    letter-spacing: 0.04em;
}

.navbar-nav ul.sm-nowrap>li.disable>a:hover {
    background: transparent;
}

.navbar-nav ul.sm-nowrap>li.new>a:after {
    content: 'new';
    padding: 3px 7px;
    text-transform: uppercase;
    display: inline;
    font-size: 75%;
    font-weight: 400;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #c00;
    margin-left: 5px;
}

.navbar-nav>li.menu-item-has-children>a.has-submenu:after {
    font-family: FontAwesome;
    content: "\f107";
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-size: 13px;
    position: absolute;
    right: 3px;
    top: 50%;
    margin-top: -6px;
    line-height: 1;
}

.navbar-nav.sm-collapsible ul.sm-nowrap>li>a {
    white-space: normal;
}

.navbar-right ul.dropdown-menu {
    left: auto;
    right: 0;
}

.dropdown-menu .fa {
    opacity: 0.5 !important;
    line-height: 13px !important;
}

.nav .fa {
    font-size: 16px;
    line-height: 1px;
}

.nav .fa-angle-down {
    font-size: 13px;
}

.nav .fa,
.nav a .fa {
    opacity: 1 !important;
}

.nav .fa-plus {
    font-size: 12px;
}


@media (min-width: 991px) {
    .search-form input {
        background: transparent;
        border: 0;
        width: 200px;
    }

    .navbar-custom {
        background: #fff;
        min-height: auto;
    }

    .navbar-custom .nav .dropdown-menu li a:hover {
        background-color: #f1f1f1;
        color: #333;
    }

    @-webkit-keyframes fadeInPheromone {
        0% {
            opacity: 0;
            transform: translate(0, -40px);
        }

        100% {
            opacity: 1;
            transform: translate(0, 0);
        }
    }

    @keyframes fadeInPheromone {
        0% {
            opacity: 0;
            transform: translate(0, -40px);
        }

        100% {
            opacity: 1;
            transform: translate(0, 0);
        }
    }

    li:hover ul.dropdown-menu {
        opacity: 1;
        -webkit-animation: fadeInPheromone 0.7s;
        animation: fadeInPheromone 0.7s;
        -webkit-animation-fill-mode: forwards;
        animation-fill-mode: forwards;
    }

    ul.nav li.dropdown:hover>ul.dropdown-menu {
        display: block;
    }

    .navbar-left {
        float: right !important;
    }


    li.columns-2 ul.dropdown-menu {
        left: 0 !important;
        padding: 20px 22px 25px;
    }

    li.columns-3 ul.dropdown-menu {
        left: 0 !important;
        padding: 20px 22px 25px;
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3;
        min-width: 760px !important;
    }

    li.columns-2 ul.dropdown-menu {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        min-width: 380px !important;
    }



    li.columns-3 ul.dropdown-menu>li {
        display: inline-block;
        width: 100%
    }

    li.columns-2 ul.dropdown-menu>li {
        display: inline-block;
        width: 100%
    }

    li.columns-2 ul.dropdown-menu {
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2;
        min-width: 380px !important;
    }

    li.columns2 .btn-white,
    li.columns3 .btn-white {
        margin-top: 12px;
        display: inline-block;
    }

    .navbar-fixed-top .caret,
    .navbar-fixed-top .open>.dropdown-menu {
        display: none;
    }

    .angle-right:after {
        float: right;
        font-family: 'fontawesome';
        content: "\f105";
        color: inherit;
        position: absolute;
        right: 20px;
    }
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse {
    max-height: 400px;
}

.navbar-collapse {
    float: right;
}

/*------------------------------------------------------------------
[2.1 Head Search / .head-search ]
*/
.head-search input[name="s"] {
    height: 50px;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 300;
    width: 100%;
    padding: 15px 45px 15px 15px;
    border-top: none;
}

.head-search input[name="s"]:focus {
    border: 1px solid #eee
}

.head-search input[type="submit"] {
    padding: 0;
    float: right;
    margin-top: -15px;
    position: relative;
    background: transparent;
    color: rgba(0, 0, 0, 0.54);
    border: none;
    width: 45px;
    height: 50px;
    margin-right: -14px;
}

.head-search input[type="submit"]:hover {
    background: transparent;
    transition: background 200ms linear;
}

.head-search span {
    float: right;
    margin-top: -35px;
    position: relative;
    margin-right: 15px;
}

.head-search span:before {
    font-family: "Ionicons";
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    content: "\f4a5";
    font-size: 20px;
    color: rgba(0, 0, 0, 0.54);
    position: relative;
    left: 33px;
}

.search-title {
    padding-top: 0px;
    margin-top: 0px;
}

/*------------------------------------------------------------------
[2.2 Icons Social / .icons-social ]
*/
.icons-social {
    display: block;
    float: right;
    /* overflow: hidden; */
    /* width: 198px; */
    height: 60px;
}

.icons-social a {
    float: left;
    transition: all 200ms linear;
    font-family: 'FontAwesome';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    width: 40px;
    height: 60px;
    text-align: center;
    line-height: 30px;
    line-height: 60px;
    background: #fff;
    color: #666;
}

.icons-social a:hover {
    transition: all 250ms linear;
    background: transparent;
    text-decoration: none;
}

/*------------------------------------------------------------------
[3. Main Menu /.menu-wrapper ]
*/

/*------------------------------------------------------------------
[5. Content / Sidebar /.col-content ]
*/

.wrap-content {
    margin-top: 0px;
}

.posts .widget-title {
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 0px;
    border-bottom: 1px solid #EC0B5B;
    display: inline-block;
    margin-bottom: -1px;
}

.posts .widget>h5 {
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 0px;
    border-bottom: 2px solid #EC0B5B;
    display: inline-block;
}

.posts .widget>h3:before,
.posts .widget>h5:before {
    border-bottom: 1px solid #eee
}

.posts .widget-line {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
}

.home .post-content p {
    margin-bottom: 15px;
}

.post-content>.entry-meta {
    display: none;
    padding: 0px !important;
    margin: 0px !important;
}

.has-post-thumbnail.standart-post .post-thumbnail a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 425px;
}

.img-slide a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 230px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.img-slide a:hover {
    opacity: 0.7;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.sidebar-left {
    float: right;
    margin-left: 8.33333333%;
}

.sidebar-right {
    float: left;
    margin-right: 8.33333333%;
}

.sidebar .widget-title {
    font-weight: 300;
    margin: 0;
    padding-bottom: 20px;
    font-size: 22px;
    position: relative;
}

.sidebar .widget-title:after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background: #EC0B5B;
    bottom: 0px;
    left: 0;
}

.sidebar .widget>h5 {
    margin-top: 0;
    margin-bottom: 1em;
    padding-bottom: 5px;
    text-transform: uppercase;
    font-size: 16px;
    padding-top: 0px;
    border-bottom: 2px solid #555;
    display: inline-block;
}

.widget_text img {
    width: 100%;
    height: auto;
}

.sidebar .widget>h3:before,
.sidebar .widget>h5:before {
    border-bottom: 1px solid #eee
}

.sidebar .widget-line {
    margin-bottom: 30px;
}

.sidebar .widget>h5:before {
    border-bottom: 1px solid #eee
}

.sidebar {
    margin-top: 0px;
    display: inline-block;
}

.sidebar h3 {
    font-size: 23px;
}

.sidebar ul {
    padding: 0;
    margin: 0;
}

.sidebar ul.children {
    padding-top: 10px;
    padding-left: 15px;
}

.sidebar ul.children li:last-child {
    padding-bottom: 0px;
}

.sidebar ul.sub-menu {
    padding-top: 10px;
    padding-left: 15px;
}

.sidebar ul.sub-menu li:last-child {
    padding-bottom: 0px;
}

.sidebar ul li {
    list-style: none;
    padding-bottom: 10px;
}

.archive-meta {
    display: none;
}

.archive-header {
    margin-bottom: 28px;
    border-bottom: 1px solid #eee;
    display: inline-block;
    position: relative;
    width: 100%;
    padding-bottom: 10px;
}

.archive-title {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
    line-height: 1;
}

.error-404 {
    text-align: center;
    font-weight: 300;
    font-size: 150px;
    color: #222;
    margin: 165px 0 50px 0;
}

.content-404 p {
    text-align: center;
    font-size: 21px;
    margin-top: 30px;
    margin-bottom: 165px;
}

/*------------------------------------------------------------------
[5.1 Post class left image / .left-image-post]
*/
.content-wrap {
    padding-top: 60px;
}

.post-category {
    float: right
}

.post-category li {
    list-style: none;
    float: left;
    padding-left: 15px;
}

.post-category .active {
    position: relative
}

.post-category a {
    display: inline-block;
    font-size: 13px;
}

.post-category .active {
    color: #333
}

.post-category .active:before,
.post-category .active:after {
    border-left: 7px dotted transparent;
    border-right: 7px dotted transparent;
    border-top: 7px solid #eee;
    bottom: -10px;
    content: "";
    height: 0;
    left: 50%;
    margin-left: -7px;
    position: absolute;
    width: 0;
}

.post-category .active:after {
    border-top-color: #fff;
    bottom: -9px;
}

.post-set.left-image-post .content-block {
    float: left;
    width: 400px;
    margin-left: 30px;
}

.post-set.standart-post .content-block p {
    margin-bottom: 15px;
}

.post-set.left-image-post .content-block p {
    margin-bottom: 0px;
}

.post-set.left-image-post .post-thumbnail {
    float: left;
    width: 320px;
}

.main-content .no-sidebar .left-image-post .post-thumbnail {
    width: 50%
}

.main-content .no-sidebar .left-image-post.has-post-thumbnail .post-thumbnail a {
    height: 300px;
}

.main-content .no-sidebar .left-image-post.no-thumbnail .post-thumbnail {
    display: none;
}

.main-content .no-sidebar .left-image-post.no-thumbnail .content-block {
    width: 100%;
}

.main-content .no-sidebar .left-image-post .content-block {
    width: calc(50% - 30px);
}


.left-image-post.no-thumbnail.format-gallery .gallery-content {
    float: left;
    width: 350px;
}

.left-image-post.no-thumbnail .post-thumbnail {
    display: none;
}

.left-image-post.no-thumbnail .content-block {
    float: left;
    width: 100%;
    margin-left: 0;
}

.left-image-post.no-thumbnail.format-gallery .content-block {
    float: left;
    width: 425px;
    margin-left: 30px;
}

.left-image-post .video-content {
    display: block;
    float: left;
    margin: 0 0 0 -337px;
    width: 337px;
}

.post-content {
    overflow: hidden;
}

.format-video.left-image-post .post-content>p:first-child {
    min-height: 100%;
    max-height: 100%;
    text-overflow: ellipsis;
    display: block;
    overflow: hidden;
}

.format-video.left-image-post .post-content>p {
    display: none;
}

.format-video.left-image-post .post-content>p:first-child>embed {
    min-height: 100%;
    max-height: 100%;
}

.format-video.left-image-post.no-thumbnail .post-content {
    min-height: 100%;
    max-height: 100%;
}

.left-image-post .title {
    font-size: 21px;
    margin-bottom: 20px;
    line-height: 1.5;
}

.left-image-post .title a:hover {
    color: #000;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.left-image-post .entry-meta {
    padding: 15px 0 5px 0;
}

.no-thumbnail.left-image-post .entry-meta {
    padding: 0px;
}

.left-image-post.first_big_post {
    padding-left: 0px
}

.post-set {
    position: relative;
    margin-bottom: 80px;
    width: 100%;
}

.post-set.standart-post:last-child {
    margin-bottom: 0px;
}

.post-set.left-image-post {
    margin-bottom: 60px;
}

.post-set.left-image-post:last-child {
    margin-bottom: 0px;
}

.post-set.sticky.left-image-post {
    background: #fafafa;
    padding: 30px;
    border-bottom: none;
}

.post-set.sticky.standart-post {
    background: #fafafa;
    padding: 30px;
    border-bottom: none;
}

.post-set.sticky.pioneer_mas_item .content-block {
    background: #fafafa;
    padding: 25px;
    border-bottom: none;
}

.post-set.sticky.pioneer_mas_item .content-block .title {
    margin-top: 0;
}

.post-set.sticky.left-image-post .content-block {
    width: 396px;
}

.post-set.sticky.left-image-post.no-thumbnail .content-block {
    width: 100%;
}

.post-set.sticky.left-image-post .post-thumbnail {
    width: 330px;
}

.wrap-content.pioneer_mas_container {
    margin: 0 -25px;
    padding: 0px;
    border: none;
}

.no-sidebar .post-set.pioneer_mas_item {
    width: 33.333333%;
    float: left;
    padding: 0 15px;
    border-bottom: none;
}

.post-set.pioneer_mas_item {
    width: 50%;
    float: left;
    padding: 0 15px;
    border-bottom: none;
}

.post-set.pioneer_mas_item .content-block {
    margin-left: 0px;
    width: 100%;
}

.post-set.pioneer_mas_item .content-block .title {
    margin-bottom: 20px;
    font-size: 21px;
    line-height: 1.6;
}

.post-set.pioneer_mas_item.has-post-thumbnail .post-thumbnail a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 300px;
}


.post-set.sticky.left-image-post .content-block {
    width: 396px;
}

.post-set.sticky.left-image-post .post-thumbnail {
    width: 330px;
}

li.tags span a {
    margin-left: 10px
}

li.tags span i {
    position: relative;
    top: 3px;
    right: 2px;
    display: inline-block;
}

.left-image-post.has-post-thumbnail .post-thumbnail {
    position: relative;
    overflow: hidden;
    margin-bottom: 0px;
}

.left-image-post.has-post-thumbnail .post-thumbnail a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 240px;
}

.left-image-post.has-post-thumbnail .gallery-content {
    float: left;
    width: 320px;
    margin-bottom: 0;
}

/*------------------------------------------------------------------
[5.2 Standart Post / .standart-post]
*/
.content-block label input {
    padding: 7px;
}

.standart-post .content-block {
    width: 100%;
    margin-left: 0px;
}

.standart-post .title:hover a,
.standart-post .title:hover {
    color: #000;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.standart-post.no-thumbnail .title {
    padding-top: 0px
}

.standart-post.no-thumbnail.format-gallery .title {
    padding-top: 25px
}

.standart-post .post-content {
    height: auto;
    min-height: 100%;
    max-height: 100%;
}


.standart-post .post-thumbnail {
    width: 100%;
    margin-bottom: 20px;
}

.standart-post .attachment-post-thumbnail {
    padding-bottom: 0px;
    height: auto;
}

.standart-post .title {
    font-size: 26px;
    margin-bottom: 15px;
}

.standart-post .entry-meta {
    padding: 0px;
    padding-bottom: 0;
    display: inline-block;
    width: 100%;
}

/*------------------------------------------------------------------
[5.4 Entry Meta (Meta data) /.entry-meta ]
*/
.entry-meta {
    overflow: hidden;
}

.entry-meta ul {
    margin: 0;
    padding: 0;
}

.entry-meta ul li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
}

.entry-meta ul li i {
    color: #EC0B5B;
    font-size: 20px;
    position: relative;
    top: 4px;
    padding-right: 2px;
    padding-left: 2px;
}

.entry-meta ul li a {
    color: #999;
}

.entry-meta ul li a:hover {
    color: #EC0B5B;
}

.entry-meta ul li span {
    position: relative;
    top: -1px;
    padding-left: 5px;
    font-size: 13px;
    display: inline-block;
    color: #999;
}

.entry-meta ul li span:hover {
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

/*------------------------------------------------------------------
[5.6 Single Post /.single ]
*/

.single .no-sidebar .post-content p {
    font-size: 15px;
    margin-bottom: 30px;
}

.single-tags {
    float: left;
    margin-top: 15px;
}

.single-tags a {
    font-weight: 400;
    font-size: 14px;
    color: #333;
}

.single .social-single {
    float: right;
    margin-top: 15px;
}

.single .social-single ul.icon-links {
    position: relative;
    bottom: 0;
    left: 0;
}

.single .social-single ul.icon-links li {
    transform: none;
}

.single .social-single ul.icon-links li a {
    background: transparent;
    color: #444;
    border-radius: 0;
    position: relative;
    top: -2px;
    font-size: 20px;
    width: inherit;
    padding-right: 15px;
}

.single .social-single ul.icon-links li a.twitter {
    color: #55acee;
}

.single .social-single ul.icon-links li a.tumblr {
    color: #35465c;
}

.single .social-single ul.icon-links li a.facebook {
    color: #3b5998;
}

.single .social-single ul.icon-links li a.instagram {
    color: #4481B2;
}

.single .social-single ul.icon-links li a.google {
    color: #dd4b39;
}

.single .social-single ul.icon-links li a.linkedin {
    color: #0077b5;
}

.single .social-single ul.icon-links li a.youtube {
    color: #cd201f;
}

.single .social-single ul.icon-links li a.vimeo {
    color: #1ab7ea;
}

.single .social-single ul.icon-links li a.pinterest {
    color: #bd081c;
}


.single .entry-meta ul li {
    display: inline-block;
    margin-right: 15px;
    list-style: none;
    margin-bottom: 0px;
}

.single .no-sidebar .wrap-content {
    width: 100%;
    border: none;
    padding: 0px;
}

.single .sidebar {
    margin-top: 0px;
}

.single .gallery-content {
    margin-bottom: 50px;
}

.single .post {
    height: 100% !important
}

.single .post-thumbnail {
    margin-bottom: 15px;
    height: auto;
}

.single .post-thumbnail img {
    height: auto;
    width: 100%;
}

.single .post-thumbnail {
    margin-bottom: 25px;
    height: auto;
}

.single-post h1 {
    padding-top: 0px;
    padding-bottom: 0px;
    font-weight: 300;
    font-size: 30px;
    margin-bottom: 25px;
    margin-top: 0px;
    font-family: 'Raleway';
    color: #333;
}

#authorarea h3 {
    text-transform: capitalize;
    font-size: 16px;
    margin-top: 0;
    text-align: center;
}

#authorarea img {
    display: block;
    float: left;
    width: 100%;
    height: auto;
    border-radius: 50%;
}

.authorinfo {
    text-align: center;
    font-weight: 300;
    margin-top: 15px;
    display: inline-block;
}

.hidden {
    opacity: 0
}

.visible {
    opacity: 1
}

.single .wp-post-image:hover {
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.nav-previous a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    background: #f7f7f7;
    text-align: center;
}

.nav-previous a:hover {
    background: #EC0B5B;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.nav-next a {
    display: inline-block;
    padding: 10px 15px;
    width: 100%;
    background: #f7f7f7;
    text-align: center;
}

.nav-next a:hover {
    background: #EC0B5B;
    color: #fff;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

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

.single-video {
    background: #000
}

.image-slider a.video-thumb {
    opacity: 1
}

.image-slider a.video-thumb:hover:before,
.image-slider a.video-thumb:hover:after {
    color: #fff;
    background: #EC0B5B;
    border-radius: 50%;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.image-slider a.video-thumb:before {
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    font-family: 'Simple-Line-Icons';
    font-size: 32px;
    text-align: center;
    line-height: 70px;
    color: #EC0B5B;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    z-index: 2;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.format-video.image-slider a.video:before {
    content: "\e03a"
}

.format-audio.image-slider a.video:before {
    content: "\e061"
}

.image-slider a.video-thumb:after {
    content: '';
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    font-size: 32px;
    line-height: 70px;
    width: 70px;
    height: 70px;
    margin: -35px 0 0 -35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 1);
    z-index: 1;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.image-slider {
    width: 100%;
    display: block !important;
}

.title-slider {
    width: 105px;
    float: right;
    font-size: 16px;
    line-height: 1.32;
    height: 65px;
    overflow: hidden;
}

.title-slider a {
    font-weight: 300
}

.tiles-slider .title-slide {
    padding: 15px;
}

.meta-slider {
    display: inline-block;
    margin-left: 20px;
}

.meta-slider i {
    color: #EC0B5B;
    font-size: 14px;
    position: relative;
    top: 2px;
    padding-right: 5px;
}

.meta-slider span {
    font-weight: 300;
    font-size: 12px;
}

.pal {
    padding-left: 0px
}

.par {
    padding-right: 0px
}

.title-above {
    text-align: center;
    font-size: 25px;
    margin-bottom: 50px;
}

.avatar-widget {
    display: inline-block;
    width: 100%;
    margin-top: 0px;
    margin-bottom: 15px;
}

/*------------------------------------------------------------------
[5.6 UI Post  ]
*/
.link-format {
    margin-bottom: 50px;
    padding: 25px 85px;
    border: 1px solid #eee;
}

.link-format a {
    padding: 0 0 0 25px;
    border-left: 1px solid #eee;
    font-size: 31px;
}

.link-format a:before {
    display: inline-block;
    margin: 0 41px 0 -80px;
    color: #333;
    content: "\e08d";
    font-size: 34px;
    font-family: 'Simple-Line-Icons';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
    top: 4px;
}

.quote-format {
    position: relative;
    padding: 25px;
    border: 1px solid #eee;
    background: #fff;
    text-align: center;
    font-size: 23px;
    color: #333;
}

.quote-format:before {
    position: absolute;
    bottom: -15px;
    left: 50%;
    border-width: 25px 55px 0 55px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    content: '';
    margin-left: -55px;
}

.quote-author {
    display: inline-block;
    margin-bottom: 50px;
    padding: 25px 0 15px;
    width: 100%;
    background: #333;
    color: #fff;
    font-size: 20px;
    text-align: center;
}

.audio-content {
    padding-bottom: 50px;
}

.video-content {
    padding-bottom: 50px;
}

/*------------------------------------------------------------------
[6. Commetns Form / .comment ]
*/
.form-allowed-tags {
    display: none
}

.button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: #222;
    color: #fff;
    padding: 8px 14px;
    border: none;
}

button:hover,
html input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    color: #fff !important;
    background: #EC0B5B;
}

blockquote {
    padding: 18px;
    margin: 0 0 20px;
    border-left: none;
    text-align: center;
}

blockquote:before {
    content: "\f10d";
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    color: #ccc;
    padding-right: 15px;
}

blockquote:after {
    content: "\f10e";
    font-family: FontAwesome;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 18px;
    color: #ccc;
    padding-left: 15px;
}

.single .post-content blockquote p {
    display: inline;
}

.comment-form-comment label {
    display: none
}

.comment-form-comment textarea {
    overflow: hidden;
    padding: 10px 15px;
    width: 100%;
    height: 200px;
    border: 1px solid #eee;
    outline: none;
}

#reply-title {
    font-size: 23px;
    padding-top: 0px;
    margin-top: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
}

#reply-title small {
    display: inline-block;
    width: 100%;
}

.logged-in-as a {
    color: #333;
}

.commentlist {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.commentlist li {
    margin-bottom: 25px;
    padding-bottom: 25px;
    width: 100%;
    border-bottom: 1px solid #e4e4e4;
}

.comment .avatar {
    display: inline-block;
    float: left;
    margin-right: 35px;
    border-radius: 50%;
}

.comment-top-level .comment-box {
    margin-bottom: 25px;
    padding-left: 108px;
}

.comment-box {
    font-weight: 300
}

.author-card {
    color: #333;
    text-transform: capitalize;
    font-size: 21px;
}

.comments-area {
    width: 100%;
    display: inline-block;
}

.comment-time {
    font-size: 14px;
    opacity: 0.7;
}

.comment-content {
    margin-top: 15px;
    margin-left: 110px;
    padding: 0;
}

.comments-title {
    margin: 0;
    padding-bottom: 50px;
    color: #333;
    font-size: 21px;
    text-align: center;
}

.comment-reply-title small a {
    font-weight: 300;
    font-size: 13px;
}

.commentlist .children {
    margin: 0;
    margin-top: 25px;
    padding: 0;
    list-style-type: none;
    margin-left: 50px;
}

.children .comment .avatar {
    margin-right: 30px;
    width: 60px;
    height: 60px;
}

.children .comment .comment-content {
    margin-left: 90px;
}

ol.children li {
    margin-bottom: 0px;
    padding-bottom: 0px;
    width: 100%;
    border-bottom: none;
}

.comment-form-author input {
    padding: 5px 10px;
    border: 1px solid #eee;
    width: 100%;
}

.comment-form-email input {
    padding: 5px 10px;
    border: 1px solid #eee;
    width: 100%;
}

.comment-form-url input {
    padding: 5px 10px;
    border: 1px solid #eee;
    width: 100%;
}

.comment-notes {
    display: none
}

.edit-link {
    margin-right: 15px;
    font-size: 12px;
    text-transform: lowercase;
}

#commentform label {
    width: 65px;
    display: inline-block;
    font-weight: 400 !important;
}

.comment-reply-link {
    color: #333;
}

/*------------------------------------------------------------------
[7. Widget /.widget ]
*/
.widget {
    display: inline-block;
    width: 100%;
    margin-bottom: 60px;
}

.widget:last-child {
    margin-bottom: 0px;
}

.widget_search form>div {
    padding: 10px 48px 10px 16px;
    height: 46px;
    border: 1px solid #e5e5e5;
    background: #fff;
    position: relative;
}

.widget_search form>div:focus {
    border-color: #999 !important;
}

.widget_search form>div:before {
    position: absolute;
    color: #fff;
    content: "\f002";
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 17px;
    /* z-index: 9999; */
    font: normal normal normal 16px/1 FontAwesome;
    top: 13px;
    color: #EC0B5B;
}

.widget_search form label {
    display: none
}

.widget_search input[name="s"] {
    float: left;
    padding: 0;
    width: 100%;
    height: 24px;
    border: none;
    font-weight: 300;
}

.widget_search input[type="submit"] {
    position: relative;
    float: right;
    margin: -34px -48px 0 0px;
    padding: 0;
    width: 50px !important;
    height: 44px;
    border: none !important;
    text-indent: -9999px;
    background: transparent;
}




.search-content form>div {
    padding: 10px 44px 10px 10px;
    height: 40px;
    border: 1px solid #eee;
    background: #fff;
    position: relative;
    width: 300px;
}

.search-content form>div:before {
    font: normal normal normal 16px/1 FontAwesome;
    position: absolute;
    content: "\f002";
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 17px;
    top: 10px;
    color: #EC0B5B;
}

.search-content form label {
    display: none
}

.search-content input[name="s"] {
    float: left;
    padding: 0;
    width: 100%;
    height: 20px;
    border: none;
    font-weight: 300;
}

.search-content input[type="submit"] {
    position: relative;
    float: right;
    margin: -5px -39px 0 0;
    padding: 0;
    width: 30px !important;
    height: 30px;
    border: none !important;
    background: none !important;
    text-indent: -9999px;
}

.tagcloud a {
    display: inline-block;
    float: left;
    overflow: hidden;
    padding: 4px 8px;
    text-transform: lowercase;
    font-size: 13px !important;
    background: #222;
    color: #fff;
    margin: 3px;
    font-weight: 300;
}

.tagcloud a:hover {
    color: #fff;
    background: #EC0B5B;
}

#wp-calendar {
    margin: 0;
    width: 100%;
}

#wp-calendar caption {
    text-align: right;
    font-size: 13px;
}

#wp-calendar tbody td {
    text-align: center;
    height: 30px;
    padding: 7px;
}

#wp-calendar tbody .pad {
    background: none
}

#wp-calendar thead th {
    background: #fafafa;
    text-align: center;
    font-weight: 600;
    color: #000;
    padding: 7px;
}

.footer-area #wp-calendar thead th {
    background: #252525;
    text-align: center;
    font-weight: 300;
    color: #fff;
    padding: 7px;
}

.footer-area td,
.footer-area th {
    border-color: #333;
}

#wp-calendar #next {
    padding-right: 24px;
    text-align: right;
}

#wp-calendar tfoot td,
#wp-calendar tfoot th {
    padding: 7px;
    border: none;
}

.posts-by-vies-widget ul li {
    list-style: none;
    font-weight: 300;
    float: left;
    width: 100%;
}

.pioneer_image_wrapper {
    float: left;
    margin: 0px 15px 0 0;
    width: 65px;
    height: 65px;
    background: #EC0B5B;
}

.footer-area .pioneer_post_content a {
    color: #444;
    font-size: 16px;
}

.footer-area ul li:last-child {
    margin: 0px;
}

.footer-widget {
    padding-bottom: 75px;
}

.footer-widget .widget {
    border: none;
}

.footer .flickr-photos a {
    float: left;
    margin: 0 15px 15px 0;
    padding: 0;
    border: 0 none;
    list-style: none;
}

.footer .flickr-photos img {
    display: block;
    width: 65px;
    height: 65px;
}

.widget select {
    width: 100%
}

.widget .sticky {
    position: relative
}

.attachment-post-thumbnail {
    height: 208px
}

.pioneer_image_wrapper .attachment-post-thumbnail {
    height: 65px;
    width: 100%;
}

.tweet_list {
    margin: 0;
    list-style: none;
    font-weight: 300;
}

.tweet_list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tweet_list li {
    position: relative
}

.tweet_list li span.content {
    padding-left: 40px;
    display: inline-block;
    margin: 0px;
}

.tweet_list li:before {
    position: absolute;
    overflow: hidden;
    color: #EC0B5B;
    content: "\e009";
    font-size: 22px;
    font-family: 'Simple-Line-Icons';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.tweet_text a {
    color: #EC0B5B
}

.loading-tweet {
    font-weight: 300;
    font-size: 14px;
}

.tweet_text {
    font-weight: 300;
    font-size: 14px;
}

.flickr-photos a {
    float: left;
    margin: 0px 5px 5px 0px;
    padding: 0;
    border: 0 none;
    list-style: none;
}

.flickr-photos img {
    display: block;
    width: 70px;
    height: 70px;
}

.flickr-photos a img {
    border: none
}

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

.footer-widget .widget ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-widget .widget ul.children {
    padding-top: 10px;
    padding-left: 15px;
}

.footer-widget .widget ul.children li:last-child {
    padding-bottom: 0px;
}

.footer-widget .widget ul.sub-menu {
    padding-top: 10px;
    padding-left: 15px;
}

.footer-widget .widget ul.sub-menu li:last-child {
    padding-bottom: 0px;
}

.footer-widget .pioneer_cat_count {
    background: #333;
    color: #fff;
}

.screen-reader-text {
    display: none
}

#navigation.desktop {
    display: block !important
}

.wpcf7-form-control {
    border: 1px solid #eee;
    width: 100%;
    height: auto;
    padding: 8px 15px;
    border-radius: 0;
    margin-bottom: 25px;
}

.wpcf7-form-control:focus {
    border-color: #888;
    outline: none;
}

.wpcf7-textarea {
    min-height: 100px;
    height: 100px;
}

.wpcf7-submit {
    width: initial;
    padding: 8px 14px !important;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 12px !important;
    letter-spacing: 2px;
}

.wpcf7-form-control-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

div.wpcf7-response-output {
    margin: 0;
    padding: 5px 10px;
    font-size: 14px;
}

div.wpcf7-mail-sent-ok {
    border: 1px solid #4CAF50;
}

div.wpcf7-validation-errors {
    border: 1px solid #F44336;
}

span.wpcf7-not-valid-tip {
    color: #F44336;
    font-size: 14px;
    display: block;
}

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

.mailchimp-block img {
    padding-top: 10px;
}

.input-group input {
    border-radius: 0px;
    border-color: #ddd;
}

.input-group-lg>.form-control,
.input-group-lg>.input-group-addon {
    border-radius: 0px;
    border-color: #eee;
}

.input-group-lg>.input-group-btn>.btn {
    border-radius: 0px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #888;
    outline: none;
}

.btn {
    font-size: 12px !important;
    letter-spacing: 2px;
    outline: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-shadow: none;
    text-decoration: none;
    font-weight: 400;
    text-transform: uppercase;
    padding: 9px 12px;
    border-radius: 0;
}

.btn:hover {
    opacity: 1;
}

.btn-lg {
    font-size: 13px !important;
    padding: 10px 35px;
}

.btn-dark {
    border: 2px solid #222;
    background-color: #222;
    color: #fff !important;
}

.btn-gray {
    border: 2px solid #ddd;
    background-color: #ddd;
    color: #000 !important;
}

.pioneer_image_wrapper {
    float: left;
    margin: 0px 15px 0 0;
    width: 65px;
    height: 65px;
    background: #f7f7f7;
}

.pioneer_post_content h3 {
    margin: 0;
    color: #333;
    font-size: 16px;
    font-family: 'Roboto';
    line-height: 1.4;
}

.pioneer_post_content h3 a {
    color: #333
}

.pioneer_post_content a:hover {
    color: #000;
}

.pioneer_post_meta {
    margin-top: 3px;
}

.pioneer_post_meta span {
    position: relative;
    top: -2px;
    padding-left: 7px;
    font-weight: 300;
    font-size: 12px;
}

.pioneer_post_meta i {
    color: #333;
    font-size: 16px;
}


.nav-btn {
    margin: -1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
    height: 1px;
}

.posts-by-vies-widget ul {
    margin: 0px;
    padding: 0px;
}

.post-content .wp-caption img {
    max-width: 100%;
    height: 100%;
}

.wp-caption img {
    max-width: 100% !important;
    height: 100%;
}

.wp-caption {
    max-width: 100% !important;
    width: auto !important;
}

.wp-block-button,
.wp-block-cover,
.wp-block-pullquote {
    margin-bottom: 15px;
}

.wp-block-cover-image-text,
.wp-block-cover-text,
section.wp-block-cover-image h2 {
    color: #fff !important;
}


.wrap-content p img {
    height: 100%;
    max-width: 100%;
}

.post-content img {
    max-width: 100%;
    height: 100%;
}

.post-content .wp-caption {
    max-width: 100% !important;
}

.post-content iframe {
    width: 100% !important
}

.three-blocks #related-post-thumb .post-thumbnail {
    width: 100%;
    height: 180px;
}

.three-blocks #related-post-thumb .title {
    font-size: 16px
}

.widget select {
    width: 100%;
    background: #fff;
    border: 1px solid #eee;
    height: 30px;
    outline: none;
}

.footer-widget .widget select {
    width: 100%;
    background: #252525;
    border: 1px solid #333;
    height: 30px;
    outline: none;
}

.size-large {
    height: 100%
}

.widget .sticky {
    position: relative
}

.widget_nav_menu {}

/*------------------------------------------------------------------
[8. Page Navi / #wp-pagenavibox ]
*/
#wp-pagenavibox {
    display: block;
    width: 100%;
    text-align: center;
    position: relative;
}

.wp-pagenavi {
    display: inline-block;
    margin-bottom: -9px;
    /* text-align: center; */
}

.wp-pagenavi a,
.wp-pagenavi span {
    margin: 0 !important;
    padding: 0 !important;
}

.wp-pagenavi span.current {
    background: #f7f7f7;
    font-weight: 300 !important;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    background: #f7f7f7;
    color: #333;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: block;
    float: left;
    padding: 6px 12px !important;
    border: none !important;
    text-align: center;
    white-space: nowrap;
}

/*------------------------------------------------------------------
[9. Footer / .footer]
*/
footer {
    width: 100%;
    background: #fff;
    padding-top: 80px;
}

.footer {
    background: #222;
    width: 100%;
    position: relative;
    color: #eee;
    font-size: 15px;
}

.footer-area .widget-title {
    font-size: 23px;
    position: relative;
    color: #fff;
    margin-bottom: 30px;
}

.footer-area-cont {
    background: #222;
    padding-top: 75px;
}

.footer-area ul li:first-child {
    padding-top: 0px !important
}

.footer-area ul li {
    padding-bottom: 10px
}

.footer-area .widget_search form>div {
    border: none;
    background: rgba(255, 255, 255, 0.25);
}

.footer-area .widget_search input[name="s"] {
    background: transparent;
    color: #fff;
    font-weight: 300;
}

.footer-area .posts-by-vies-widget ul li {
    list-style: none;
    font-weight: 300;
    color: #666;
    float: left;
    width: 100%;
}

.footer-area .tagcloud a {
    display: inline-block;
    float: left;
    overflow: hidden;
    margin: 0 10px 10px 0;
    padding: 10px 12px;
    background: #333;
    color: #bbb !important;
    text-transform: lowercase;
    font-weight: 300;
    font-size: 13px !important;
    line-height: 1;
}

.footer-area .tagcloud a:hover {
    background: #434343;
    color: #fff !important;
}

.footer-copyright {
    color: #eee;
    position: relative;
    text-align: center;
    border-top: 1px solid #333;
    padding: 30px 0;
    font-size: 14px;
    margin-top: 30px;
}

.footer-copyright p {
    margin: 0;
    padding: 0;
}

.footer .footer-area a {
    color: #eee;
}

.footer .footer-copyright a {
    color: #eee;
}

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

.footer-copyright .soc_link_footer {
    text-align: right;
    margin: 0px;
    padding: 0px;
}

.footer-copyright .soc_link_footer li a i {
    font-size: 21px;
}

/*------------------------------------------------------------------
[10. Other styles ]
*/
.clear {
    float: none !important;
    clear: both !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
}

.wp-caption.alignnone {
    width: 100% !important
}

.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.aligncenter {
    float: none;
    clear: both;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
    margin-top: 15px;
}

.slider-wrappper {
    margin-bottom: 60px;
}

.slider-wrap {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px;
}

.img-slide img {
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.img-slide img:hover {
    opacity: 0.7;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.title-slide {
    font-size: 19px;
    padding: 15px 0;
    text-align: center;
    line-height: 1.75;
    margin: 0px;
    font-weight: 300;
}

.rsBlock-meta li:last-child {
    margin-right: 0;
}

.hidden-livtile-el {
    display: none
}

.phoenix-livetile-extended {
    display: none !important
}

.flex-active-slide {
    display: block !important
}

.pioneer_cat_count {
    float: right;
    background: #fafafa;
    width: 28px;
    text-align: center;
}

.login-panel {
    float: right;
}

.owl-carousel .item {
    height: 10rem;
    background: #4DC7A0;
    padding: 1rem;
}

.post-commetns {
    margin-top: 50px;
}

.no-icons {
    margin-top: 56px
}

.instagram-pics li {
    display: inline-block;
    width: 25%;
    padding-right: 5px !important;
    padding-bottom: 5px !important;
    padding-top: 0px !important;
}

.instagram-pics li img {
    width: 100%
}

.rsBlock-meta {
    display: inline-block;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: center;
    padding: 0 25px 25px;
    padding-bottom: 0;
}

.rsBlock-meta li {
    /* float: left; */
    margin-right: 15px;
    list-style: none;
    text-align: center;
    display: inline-block;
    /* width: 100%; */
}

.rsBlock-meta li a {
    color: #333;
    letter-spacing: normal;
    font-weight: 300;
    font-size: 12px;
}

.rsBlock-meta li i {
    position: relative;
    top: 2px;
    padding-right: 7px;
    color: #fff;
    color: #EC0B5B;
    font-size: 16px;
    opacity: 1;
    -webkit-transform: none;
}

.text-block-content {
    padding: 15px 25px 0px 25px;
    color: #333;
    width: 440px;
    max-height: 135px;
    overflow: hidden;
}

.text-block-title {
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 20px;
    font-size: 15px;
    letter-spacing: 1px;
    font-size: 18px;
    padding-bottom: 25px;
}

.text-block-title.color {
    color: #fff;
}

.text-block-text.color {
    color: #fff;
    padding-right: 100px;
}

.text-block-icon {
    position: absolute;
    font-size: 110px;
    top: 50%;
    color: rgba(255, 255, 255, 0.4);
    right: 10%;
    line-height: 0;
    margin-top: -55px;
}


.gallery-content {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.gallery-slider .owl-nav {
    -webkit-tap-highlight-color: transparent;
}

.gallery-slider .owl-nav [class*='owl-'] {
    font-size: 18px;
    background: #fff;
    cursor: pointer;
    position: absolute;
    top: 50%;
    text-align: center;
    margin-top: -20px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
}

.gallery-slider .owl-nav [class*='owl-'] i {
    position: relative;
    top: -2px;
    color: #333;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.gallery-slider .owl-nav .owl-prev {
    left: 0px;
    opacity: 0;
}

.gallery-slider .owl-nav .owl-next {
    right: -1px;
    opacity: 0;
}

.gallery-slider:hover .owl-nav .owl-prev {
    left: 10px;
    opacity: 1
}

.gallery-slider:hover .owl-nav .owl-next {
    right: 9px;
    opacity: 1
}

.gallery-slider .owl-nav [class*='owl-']:hover {
    background: #EC0B5B;
    text-decoration: none;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;

}

.gallery-slider .owl-nav [class*='owl-']:hover i {
    color: #fff;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;

}

.quote-block {
    padding: 0 150px;
    padding: 0 200px;
    font-size: 18px;
}

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

.quote-block.white {
    color: #fff;
}

.promo-block {
    margin-bottom: 50px;
}

.promo-block.white .promo-text {
    color: #fff;
}

.promo-block.white .promo-name {
    color: #fff;
}

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

.promo-block.center.white {
    color: #fff;
}

.promo-text {
    text-align: center;
    font-size: 16px;
    color: #888;
}

.promo-text.icons {
    font-size: 21px;
    color: #EC0B5B;
}

.promo-name h3 {
    font-size: 30px;
    text-transform: capitalize;
    margin: 0;
    font-weight: 300;
}

.promo-name h4 {
    font-size: 25px;
    text-transform: capitalize;
    margin: 0;
}

.promo-border {
    width: 100px;
    background: #eee;
    height: 2px;
    display: table;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}

.promo-border.icons {
    width: 175px;
    background: #fff;
    margin-top: 30px;
    border-top: 2px solid #eee;
    font-size: 23px;
    color: #EC0B5B;
}

.promo-border.icons i {
    background: #fff;
    position: relative;
    top: -18px;
    padding: 0 20px;
    display: table;
    margin-left: auto;
    margin-right: auto;
}

.promo-border.marg50 {
    margin-bottom: 50px;
}

.promo-border.dark {
    background: #777;
}

.promo-icon {
    text-align: center;
    font-size: 30px;
}

.promo-icon i {
    color: #EC0B5B;
}

.testimonials-item.white .testimonials-content {
    color: #fff;
}

.testimonials-item.white .testimonials-name {
    color: #fff;
}

.hi-icon {
    text-align: center;
    position: relative;
    z-index: 1;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    font-size: 45px;
    line-height: 0px;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.hi-icon-effect {
    overflow: hidden;
}

.hi-icon-effect.white .hi-icon {
    color: #fff;
}

.hi-icon-effect.white .service-name {
    color: #fff;
}

.hi-icon-effect.white .service-text {
    color: #fff;
}

.hi-icon-effect.white .hi-icon:hover {
    color: #fff;
}

.hi-icon-effect .hi-icon {
    -webkit-transition: color 0.25s;
    -moz-transition: color 0.25s;
    transition: color 0.25s;
    color: #EC0B5B;
}

.service-name h5 {
    line-height: 43px;
    font-weight: 300;
    font-size: 21px;
    margin: 0;
    padding: 0;
    text-align: center;
    margin-top: 10px;
}

.service-text {
    font-weight: 300;
    margin: 0;
    margin-top: 10px;
    text-align: center;
    color: #888;
}

.multi-serv-icon {
    font-size: 41px;
    display: inline-block;
    line-height: 0px;
    width: 12%;
    float: left;
}

.multi-serv-block-list {
    width: 88%;
    float: right;
}

.pioneer_icon_box .multi-serv-icon {
    background: #EC0B5B;
    color: #fff;
    border-radius: 4px;
    width: 55px;
    height: 55px;
    line-height: 55px;
    font-size: 40px;

}

.pioneer_icon_box .multi-serv-icon i {
    color: #fff;
    position: relative;
    top: 2px;
}

.pioneer_icon_box .multi-serv-name {
    margin-left: 80px;
    line-height: 50px;
    font-size: 21px;
}

.pioneer_icon_box .multi-serv-desc {
    margin-left: 80px;
    margin-top: 5px;
}



.multi-serv-icon i {
    color: #EC0B5B
}

.multi-serv-name {
    line-height: 43px;
    font-weight: 300;
    font-size: 21px;
    margin: 0;
    padding: 0;
    margin-top: 0px;
    text-align: left;
    padding-left: 35px;
}

.multi-serv-desc {
    font-weight: 300;
    margin: 0;
    margin-top: 10px;
    color: #888;
    text-align: left;
    padding: 0;
    padding-left: 35px;
}
}




figure.effect-goliath {
    transition: 0.35s all linear;
    background: #000;

}

.portfolio-dankov {
    width: 100%;
    height: 100%;
}

.portfolio-dankov.x2 {
    height: 600px;
}

.portfolio-dankov.x1 {
    height: 300px;
}

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

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

.video-block.white {
    color: #fff;
}

.video-block.white a.swipebox-video {
    color: #fff;
}

.video-block a.swipebox-video {
    font-size: 80px;
    line-height: 120px;
    display: block;
}

.small-block.creative .small-title-sub {
    font-size: 16px;
    font-weight: 400;
    color: #EC0B5B;
    letter-spacing: 1px;
}

.small-block.creative .small-title {
    font-size: 28px;
    position: relative;
    margin-bottom: 30px;
    margin-top: 5px;
    font-weight: 600;
    text-transform: capitalize;
}

.small-block.creative .small-title:before {
    content: none;
}

.small-list ul {
    padding: 20px 0 0 0;
}

.small-list ul li {
    list-style: none;
    padding: 6px 0;
}

.small-list ul li a {
    color: #666;
}

.small-list ul li a:hover {
    text-decoration: none;
}

.small-list ul li i {
    position: relative;
    top: 6px;
    color: #EC0B5B;
    font-size: 27px;
}

.small-title {
    font-size: 23px;
    position: relative;
    margin-bottom: 45px;
}

.small-title:before {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #EC0B5B;
    bottom: -15px;
}

.about-us-title {
    font-size: 23px;
    position: relative;
    margin-bottom: 30px;
}

.about-us-title.biggest {
    font-size: 40px;
    line-height: 1.3;
    font-family: Montserrat;
    font-weight: 400;
    margin-bottom: 50px;
}

.about-us-title.biggest:before {
    width: 60px;
    left: 50%;
    margin-left: -30px;
    bottom: -20px;
}

.about-us-title:before {
    content: "";
    position: absolute;
    width: 25px;
    height: 2px;
    background-color: #EC0B5B;
    bottom: -10px;
}

.about-us-text {
    font-size: 14px;
}

.about-us-list {
    padding-top: 15px;
}

.about-us-list ul {
    padding: 0;
}

.about-us-list ul li {
    list-style: none;
    padding: 3px 0;
}

.about-us-list ul li a {
    color: #666;
}

.about-us-list ul li a:hover {
    text-decoration: none;
}

.about-us-list ul li i {
    position: relative;
    top: 1px;
    color: #EC0B5B;
}

.about-us-img {
    text-align: right;
    padding-top: 24px;
}

.color-bold {
    color: #EC0B5B;
    font-weight: 700;
}

.white-color {
    color: #fff;
}

.stats-desc {
    width: 100%;
    display: block;
    text-align: center;
}

.stats-desc.white {
    color: #fff;
}

.stats-top .stats-number {
    font-family: "Roboto Mono", monospace;
    font-weight: 100;
    font-size: 50px;
    line-height: 90px;
    letter-spacing: 10px;
}

.serv-marg {
    margin-top: 20px
}

.serv-marg i {
    color: #EC0B5B;
    font-size: 15px;
}

.serv-testim {
    margin-top: 0px;
    padding: 0px;
}

.serv-author {
    color: #333;
    margin-bottom: -10px;
}

.serv-icon {
    float: left;
    font-size: 43px;
    display: inline-block;
    text-align: center;
    line-height: 0px;
}

.serv-icon i {
    color: #EC0B5B
}

.serv-name {
    line-height: 43px;
    font-weight: 300;
    font-size: 19px;
    margin: 0;
    padding: 0;
    margin-left: 60px;
}

.serv-desc {
    font-weight: 300;
    margin: 0;
    margin-top: 5px;
    font-size: 13px;
    margin-left: 60px;
}

.other-serv {
    background: #fff;
    padding: 30px;
}


.owl-carousel .owl-item .testimonials-item img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-top: 25px;
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.testimonials-caption {
    text-align: center;
    padding: 0 135px;
    position: static;
    text-shadow: none;
}

.testimonials-content {
    font-size: 20px;
}

.testimonials-item.box .testimonials-caption {
    text-align: center;
    padding: 0;
    position: relative;
    text-shadow: none;
}

.testimonials-item.box .testimonials-content {
    font-size: 14px;
    padding: 30px;
    background: #fff;
    margin-bottom: 0;
    padding-bottom: 15px;
}

.testimonials-item.box .testimonials-name {
    font-family: Roboto Slab;
    font-size: 18px;
    padding: 30px;
    background: #fff;
    padding-top: 0px;
    padding-bottom: 55px;
}

.owl-carousel .owl-item .testimonials-item.box img {
    width: 70px;
    height: auto;
    margin-top: -35px;
}

.blog-main.no-padding .blog-name {
    padding-left: 0px;
    padding-right: 0px;
}

.blog-main.no-padding .blog-text {
    padding-left: 0px;
    padding-right: 0px;
}

.blog-main.no-padding .blog-desc {
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 0px;
    border-top: 1px solid #eee;
}

.blog-main.multi {
    background: #fff;
}


.blog-name {
    float: left;
    font-weight: 300;
    -webkit-backface-visibility: hidden;
    width: 100%;
    padding: 0 25px;
    display: inline-block;
    background: #fff;
}

.blog-name h5 {
    padding-top: 10px;
    margin-bottom: 25px;
}

.blog-text {
    display: inline-block;
    padding-bottom: 25px;
    padding-left: 25px;
    padding-right: 25px;
    background: #fff;
}

.blog-text p {
    margin-bottom: 0px;
}

.blog-desc {
    float: left;
    color: #999;
    font-size: 13px;
    -webkit-backface-visibility: hidden;
    width: 100%;
    padding: 15px 25px;
    background: #fff;
    margin-top: 2px;
}

.blog-desc ul {
    padding: 0px;
}

.blog-desc li {
    list-style: none;
    display: inline-block;
    padding-right: 10px;
    text-transform: capitalize;
}

.blog-desc li i {
    color: #EC0B5B;
    font-size: 20px;
    position: relative;
    top: 4px;
}

.blog-desc a {
    color: #999;
    text-transform: capitalize;
}

.blog-desc a:hover {
    text-decoration: underline
}

.blog-read-more a {
    border: 2px solid #ddd;
    background-color: #ddd;
    color: #000 !important;
    font-size: 10px !important;
    padding: 6px 10px;
    letter-spacing: 2px;
    outline: 0;
    text-transform: uppercase;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-shadow: none;
    text-decoration: none;
    font-weight: 600;
}

.blog-read-more a:hover {
    background: #E6E6E6;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.post-thumbnail {
    position: relative;
    overflow: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    margin-bottom: 20px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.vc_partner_image {
    opacity: 1;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.vc_partner_image:hover {
    opacity: 1;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.prog-name {
    display: inline;
    letter-spacing: 0.5px;
}

.hi-icon.image {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.hi-icon.image img {
    margin-bottom: 20px;
}

.prog-per {
    float: right;
    display: inline-block;
    position: relative;
    letter-spacing: 0.5px;
    font-size: 13px;
}

.progress-per {
    display: inline;
}

.progress {
    height: 4px;
    border-radius: 4px;
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-top: 5px;
    margin-bottom: 15px;
    background-color: #f4f4f4;
}

.progress.biggest {
    margin-top: 10px;
    margin-bottom: 25px;
}

.progress-bar {
    -webkit-box-shadow: none;
    box-shadow: none;
    line-height: 4px;
}

.progress-bar {
    text-align: left;
    background-color: #EC0B5B;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0 15px;
}




.blog-main {
    margin-bottom: 50px;
}

.blog-images.post-thumbnail {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-images.post-thumbnail:hover {
    opacity: 0.65;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    transition: all .3s ease;
}

.blog-main.multi .blog-images {
    width: 50%;
    float: left;
}

.blog-main.multi .blog-middle {
    display: table-cell;
    vertical-align: middle;
}

.blog-main.multi.two .blog-images {
    float: right;
}

.blog-main.multi .blog-name {
    padding: 0 50px;
    padding-top: 0px;
}

.blog-main.multi .blog-name a {
    font-size: 24px;
}

.blog-main.multi .blog-text {
    padding: 30px 50px;
}

.blog-main.multi .blog-desc {
    padding: 15px 50px;
    padding-top: 0px;
    border: none;
    padding-bottom: 0px;
}

.tag_line.forums {
    display: none;
}

.tag_line.woo {
    display: none;
}

.tag_line {
    padding: 75px 0 85px 0;
    background: #f7f7f7;
    border-bottom: 1px solid #eee;
}

.tag_line .tag-body:before {
    background: #f7f7f7;
}

.tag_line_image {
    display: table;
    text-align: center;
    width: 100%;
    color: #fff;
    overflow: hidden;
    position: relative;
    background-repeat: no-repeat;
    background-position: center center;
    height: auto;
    z-index: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    border-bottom: none;
    padding: 0px;
}

.tag_line_image .tag-body {
    display: table-cell;
    vertical-align: middle;
    padding: 160px 0;
    width: 100%;
    position: relative;
    z-index: 1;
}

.menu-transparent .tag_line_image .tag-body {
    padding: 180px 0 150px 0;
}

.fullscreen .tag_line_image .tag-body {
    padding: 180px 0 50px 0;
}

.tag_line_image.single .tag-body {
    padding: 180px 0 130px 0;
}

.tag_line_image.single .tag-body:before {
    background: rgba(0, 0, 0, 0.6);
}

.tag_line_image .tag-body:before {
    content: "";
    left: 0;
    top: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -9;
    background: rgba(0, 0, 0, 0.6);
}

.tag_line_title {
    text-align: center;
    padding-bottom: 0px;
    margin: 0;
    font-size: 60px;
    line-height: 80px;
}

.single .tag_line_title {
    font-size: 40px;
    padding: 0 50px;
    line-height: 1.4;
}

.tag_line_date {
    text-align: center;
}

.tag_line_author {
    text-align: center;
}

.tag_line_image .tag_line_date {
    padding-bottom: 10px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.tag_line_image .tag_line_date a {
    color: #fff;
}

.tag_line_image .tag_line_author {
    padding-top: 20px;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
}

.tag_line_image .tag_line_author a {
    color: #fff;
}

.menu-center {
    float: right;
    line-height: 1;
}

.breadcrumbs {
    text-align: center;
    padding-top: 20px;
    font-weight: 300;
    font-size: 16px;
}

.breadcrumbs span {
    display: inline-block;
}

.breadcrumbs a {
    color: #fff;
}

.woocommerce-breadcrumb {
    line-height: 30px;
    font-size: 13px;
    text-align: center;
}

.woocommerce-breadcrumb a {
    color: #EC0B5B;
}

.team-image {
    border: 6px solid #fff;
}

.team-image.ind {
    background: #fff;
}

.team-block {
    display: inline-block;
    width: 100%;
    text-align: center;
    background: #fff;
}

.team-block h2 {
    margin-top: -45px !important;
    padding-bottom: 0 !important;
}

.team-block .list-inline {
    padding-left: 0;
    list-style: none;
    margin: 0;
}

.team-block .list-inline>li {
    display: inline-block;
    padding-bottom: 15px;
}

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

.about-us img {
    max-width: 100%
}

.about-name h5 {
    font-size: 21px;
    padding-top: 15px;
    text-align: center;
    margin: 0;
}

.about-desc {
    font-weight: 300;
    font-size: 14px;
    text-align: center;
}

.soc-about {
    margin-top: 15px;
    list-style: none;
    border-top: 1px solid #eee;
    width: 100%;
    padding: 15px 0 0 0;
    margin-bottom: 0px;
    display: inline-block;
}

.soc-about li {
    float: left;
    font-size: 19px;
    width: 20%;
    line-height: 35px;
    text-align: center;
    background: #fff;
}

.soc-about li a {
    color: #555;
}

.soc-about li a:hover {
    color: #EC0B5B;
    text-decoration: none;
}

.fact-icon {
    text-align: center;
    color: #EC0B5B;
    font-size: 50px;
}

.fact-numb h5 {
    text-align: center;
    font-size: 38px;
    margin: 0;
}

.fact-name {
    margin-top: 5px;
    text-align: center;
    font-size: 18px;
}

.prlx-1-text {
    color: #bbb;
    font-style: italic;
    font-size: 20px;
    text-align: center;
}

.prlx-1-promo {
    text-align: center;
    font-weight: 500;
    font-size: 50px;
    text-transform: uppercase;
    margin-top: 15px;
    color: #fff;
}

.services-main.no-padding .other-serv {
    padding: 0;
    background: transparent;
}

.services-main.no-padding .serv-desc {
    margin-left: 0px;
    font-size: 14px;
    margin-top: 20px;
}

.services-main.no-padding .serv-name {
    font-size: 21px;
    line-height: 46px;
}

.services-main.no-padding .serv-icon {
    font-size: 46px;
}

.services-main.white .serv-name {
    color: #fff;
}

.services-main.white .serv-desc {
    color: #fff;
}

.menu-transparent .nav-icon3 span {
    background: #fff;
}

.main-content {
    z-index: 10;
    position: relative;
    background: #fff;
}

.content {
    z-index: 10;
    position: relative;
    background: #fff;
    padding-bottom: 50px;
}

.single .content {
    padding-top: 80px;
    padding-bottom: 0;
}

.nav-links {
    text-align: center;
    display: inline-block;
    width: 100%;
    height: auto;
}

.nav-links a,
.nav-links span {
    background: #f1f1f1;
    border-radius: 50%;
    padding: 8px 16px;
    margin: 0 4px;
    display: inline-flex;
}

.nav-links a:hover {
    text-decoration: none;
    border-color: #EC0B5B;
    background: #EC0B5B;
    color: #fff;
}

.nav-links span.current {
    text-decoration: none;
    background: #EC0B5B;
    color: #fff;
}


.pioneer_pg_single {
    margin-top: 50px;
    text-align: center;
    display: inline-block;
    width: 100%;
}

.post-page-numbers {
    margin: 30px 0;
}

.post-page-numbers>span {
    padding: 6px 11px;
    border: 1px solid #eee;
    margin: 0 1px;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.post-page-numbers a>span {
    border: 1px solid #eee;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.post-page-numbers a:hover>span {
    border: 1px solid #000;
    color: #555;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}




.contact-footer span,
.contact-composer span {
    padding-left: 10px
}

.contact-composer {
    padding: 0;
}

.contact-composer li {
    padding-bottom: 10px;
    font-weight: 300;
    list-style: none;
}

.contact-composer li i {
    color: #EC0B5B;
}

.contact-composer li:last-child {
    padding-bottom: 0;
}

.contact-footer .contact-composer li i {
    color: #fff;
}

.contact-footer li i {
    font-size: 14px
}

.contact-composer li a {
    color: #333
}

.contact-composer li i {
    font-size: 20px;
    width: 21px;
    /* color: #333; */
    opacity: 1;
    position: relative;
    top: 4px;
}

.contact-text {
    font-size: 17px;
    padding: 10px 0;
    font-weight: 400;
}

.contact-footer li i {
    color: #fff
}

.footer .footer-area .soc-footer {
    margin: 0px;
}

.footer .footer-area .soc-footer li {
    margin-right: 15px;
    float: left;
    line-height: 35px;
}

.footer .footer-area .soc-footer li a {
    display: inline-block;
    font-size: 21px;
}

.footer .footer-area .soc-footer li a:hover {
    color: #EC0B5B;
    text-decoration: none;
}




.pioneer_popular_widget_post_image {
    width: 80px;
    float: left;
}

.pioneer_popular_widget_post_holder {
    margin-bottom: 30px
}

.pioneer_popular_widget_post_content_date {
    font-size: 11px;
    opacity: 0.6;
    line-height: 12px;
    margin-bottom: 0px;
}

.footer-area .pioneer_popular_widget_post_content_date {
    margin-bottom: 10px;
}

.footer-area .pioneer_popular_widget_post_holder {
    margin-bottom: 20px;
    display: inline-block;
}

.footer-area .pioneer_blog_post_title {
    line-height: 1.5;
}

.pioneer_popular_widget_post_content {
    overflow: hidden;
    padding-left: 20px;
}

.pioneer_blog_post_title {
    margin-bottom: 0px;
    padding-bottom: 0px;
    line-height: 1.45
}

ul.icon-links {
    padding: 0;
    margin: 0;
    position: absolute;
    left: 15px;
    bottom: 15px;
    z-index: 9999;
}

ul.icon-links li {
    display: inline-block;
    padding-right: 3px;
}

ul.icon-links li a {
    color: #333;
    display: inline-block;
    font-size: 16px;
    background: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    text-align: center;
    line-height: 36px;
}

.post-set:hover ul.icon-links li a:hover,
.post-set:hover ul.icon-links li a:focus {
    color: #EC0B5B;
}


ul.icon-links li {
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, 200%, 0);
    transform: translate3d(0, 200%, 0);
}

.post-set:hover ul.icon-links li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.post-set:hover ul.icon-links li:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.post-set:hover ul.icon-links li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.post-set:hover ul.icon-links li:nth-child(3) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.post-set:hover ul.icon-links li:nth-child(4) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.post-set:hover ul.icon-links li:nth-child(5) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.post-set:hover ul.icon-links li:nth-child(6) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.post-set:hover ul.icon-links li:nth-child(7) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.post-set:hover ul.icon-links li:nth-child(8) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.post-set:hover ul.icon-links li:nth-child(9) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}



.blog-main:hover ul.icon-links li a:hover,
.blog-main:hover ul.icon-links li a:focus {
    color: #EC0B5B;
}


.blog-main:hover ul.icon-links li {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}


.blog-main:hover ul.icon-links li:first-child {
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.blog-main:hover ul.icon-links li:nth-child(2) {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.blog-main:hover ul.icon-links li:nth-child(3) {
    -webkit-transition-delay: 0.25s;
    transition-delay: 0.25s;
}

.blog-main:hover ul.icon-links li:nth-child(4) {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.blog-main:hover ul.icon-links li:nth-child(5) {
    -webkit-transition-delay: 0.35s;
    transition-delay: 0.35s;
}

.blog-main:hover ul.icon-links li:nth-child(6) {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

.blog-main:hover ul.icon-links li:nth-child(7) {
    -webkit-transition-delay: 0.45s;
    transition-delay: 0.45s;
}

.blog-main:hover ul.icon-links li:nth-child(8) {
    -webkit-transition-delay: 0.5s;
    transition-delay: 0.5s;
}

.blog-main:hover ul.icon-links li:nth-child(9) {
    -webkit-transition-delay: 0.55s;
    transition-delay: 0.55s;
}

.nocomments {
    margin: 0;
    text-align: center;
    font-weight: 500;
    line-height: 1.1;
    font-size: 21px;
}


.cart_search_block {
    padding: 0;
    margin: 0;
    float: Left;
}

.cart_search_block .pioneer_woo_cart {
    padding: 0;
}

.cart_search_block>li {
    list-style: none;
    float: left;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    padding: 18px;
}

.search-icon-header i {
    font-size: 18px;
    position: relative;
    top: -2px;
}

.black-search-block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
    opacity: 0;
    background: rgba(0, 0, 0, 0.85);
    visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    z-index: -1;
}

.search-icon-header.open .black-search-block {
    opacity: 1;
    visibility: visible;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    z-index: 999;
}

.black-search-table {
    display: table;
    width: 100%;
    height: 100%;
}

.black-search-table-cell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
    text-align: center;
}


.black-search-table-cell div {
    width: 35%;
    position: relative;
    display: inline-block;
    top: 50px;
    opacity: 0;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.search-icon-header.open .black-search-table-cell div {
    top: 0px;
    opacity: 1;
    -webkit-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-transition-delay: 150ms;
    transition-delay: 150ms;
}

.black-search-table-cell div input[name="s"] {
    background: transparent;
    padding: 15px 45px 15px 0;
    border: none;
    font-size: 30px;
    width: 100%;
    border-bottom: 1px solid #fff;
    color: #fff;
    font-weight: 300;
    font-family: roboto slab;
}

.black-search-table-cell #searchsubmit {
    border: none;
    background: 0;
    cursor: pointer;
    color: #fff;
    padding: 0;
    position: absolute;
    right: 0;
    width: 30px;
    height: 30px;
    top: 21px;
    z-index: 99999;
}

.black-search-table-cell>div:after {
    content: "\e090";
    font-family: 'Simple-Line-Icons';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 29px;
    color: #fff;
    position: absolute;
    right: 0;
    top: 27px;
}


.close-black-block {
    font-size: 20px;
    color: #fff;
    position: absolute;
    top: 30px;
    right: 30px;
}

.close-black-block i {
    font-size: 30px;
    color: #fff;
}

.pioneer_portfolio_nav {
    text-align: center;
    font-size: 22px;
}

.pioneer_portfolio_nav a {
    color: #333;
    padding: 0 10px;

}

.new-services {
    background: #fff;
    padding: 25px;
    display: inline-block;
    border-radius: 10px;
    position: relative;
}

.new-services .new-services-icon {
    position: relative;
    margin-top: 15px;
}

.new-services .new-services-icon span {
    text-align: center;
    font-size: 58px;
    color: #EC0B5B;
    width: 100%;
}

.new-services .new-services-icon:after {
    content: '';
    -webkit-transition: background .3s linear, padding-left .3s linear, padding-right .3s linear;
    transition: background .3s linear, padding-left .3s linear, padding-right .3s linear;
    position: relative;
    display: block;
    top: 25px;
    background: #EC0B5B;
    padding: 1px 0px;
    display: table;
    margin: auto;
}

.new-services:hover .new-services-icon:after {
    padding-left: 25px;
    padding-right: 25px;
    -webkit-transition: background .3s linear, padding-left .3s linear, padding-right .3s linear;
    transition: background .3s linear, padding-left .3s linear, padding-right .3s linear;

}

.new-services .new-services-name {
    text-align: center;
    font-size: 22px;
    position: relative;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    top: 15px;
}

.new-services .new-services-text {
    text-align: center;
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
    position: relative;
    top: 30px;
    display: inline-block;
    margin-bottom: 25px;
}

.new-services:hover .new-services-line {
    opacity: 1;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.new-services:hover .new-services-name {
    top: 50px;
    -webkit-transition: all 0.3s cubic-bezier(.3, .66, .88, .59);
    transition: all 0.3s cubic-bezier(.3, .66, .88, .59);

}

.new-services:hover .new-services-text {
    opacity: 0;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}



div.pp_default a.pp_arrow_previous,
div.pp_default .pp_content_container .pp_details {
    display: none;
}

div.pp_pic_holder a:focus {
    outline: none;
}

div.pp_overlay {
    background: #000;
    display: none;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 9999;
}

div.pp_pic_holder {
    display: none;
    position: absolute;
    width: 100px;
    z-index: 10000;
}

.pp_fade {
    display: none;
}




.contact-icon {
    width: 85px;
    height: 85px;
    line-height: 85px;
    text-align: center;
    font-size: 42px;
    background: #EC0B5B;
    border-radius: 50%;
    margin: auto;
    position: relative;
    z-index: 99;
    color: #fff;
}

.contact-icon i {
    position: relative;
    top: 5px;
}

.contact-bg {
    background: #fff;
    width: 100%;
    margin-top: -42px;
    position: relative;
    z-index: 11;
    padding-bottom: 30px;
}

.contact-name {
    margin-top: 60px;
    font-size: 34px;
    text-align: center;
    display: inline-block;
    width: 100%;
    color: #333;
}

.contact-tel {
    text-align: center;
    font-size: 18px;
    margin-top: 10px;
}

.contact-tel span {
    color: #80828a;
    font-weight: 300;
    font-size: 15px;
    margin-top: 10px;
}

.about-us-title-one {
    font-size: 31px;
    text-transform: capitalize;
    padding-bottom: 30px;
    font-weight: 400;
}

.burger-menu.style3 .burger_pioneer_normal_holder .nav-icon3 {
    float: right;
}


.nav-icon3 {
    width: 34px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    display: block;
    height: 24px;
    float: left;
    top: 30px;
    z-index: 9999999;
}

.nav-icon3 span {
    display: block;
    position: absolute;
    height: 2px;
    width: 50%;
    background: #333;
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .3s ease-in-out;
    -moz-transition: .3s ease-in-out;
    -o-transition: .3s ease-in-out;
    transition: .3s ease-in-out;
}

.nav-icon3 span:nth-child(even) {
    left: 50%;
}

.nav-icon3 span:nth-child(odd) {
    left: 0px;
}

.nav-icon3 span:nth-child(1),
.nav-icon3 span:nth-child(2) {
    top: 0px;
}

.nav-icon3 span:nth-child(3),
.nav-icon3 span:nth-child(4) {
    top: 11px;
}

.nav-icon3 span:nth-child(5),
.nav-icon3 span:nth-child(6) {
    top: 22px;
}

.show-menu .nav-icon3 span:nth-child(1),
.show-menu .nav-icon3 span:nth-child(6) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}

.show-menu .nav-icon3 span:nth-child(2),
.show-menu .nav-icon3 span:nth-child(5) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.show-menu .nav-icon3 span:nth-child(1) {
    left: 0px;
    top: 6px;
}

.show-menu .nav-icon3 span:nth-child(2) {
    left: calc(50% - 5px);
    top: 6px;
}

.show-menu .nav-icon3 span:nth-child(3) {
    left: -50%;
    opacity: 0;
}

.show-menu .nav-icon3 span:nth-child(4) {
    left: 100%;
    opacity: 0;
}

.show-menu .nav-icon3 span:nth-child(5) {
    left: 0px;
    top: 18px;
}

.show-menu .nav-icon3 span:nth-child(6) {
    left: calc(50% - 5px);
    top: 18px;
}

.pricing_tables_wrap {
    padding: 5px 30px 30px 30px;
    /* background: #fff; */
    /* border: 1px solid #eee; */
}

.pricing_tables_name {
    text-align: center;
    font-weight: 400;
    color: #EC0B5B;
    font-size: 29px;
    padding-bottom: 35px;
}

.pricing_tables_price {
    text-align: center;
    font-weight: 400;
    font-size: 66px;
    position: relative;
    line-height: 1;
    font-family: roboto slab;
}

.pricing_tables_price span {
    font-size: 27px;
    position: relative;
    left: -7px;
    top: -29px;
}

.pricing_tables_price i {
    color: #777;
    font-size: 14px;
    position: relative;
    top: 0px;
    font-weight: 300;
    font-style: inherit;
    left: 5px;
}

.pricing_tables_desc {
    padding-top: 25px;
}

.pricing_tables_desc ul {
    padding: 0;
}

.pricing_tables_desc ul li {
    list-style: none;
    padding: 0;
    text-align: center;
    padding: 10px 0;
    font-weight: 300;
    color: #777;
}

.pricing_tables_buttons {
    text-align: center;
    padding-top: 25px;
}

.pricing_tables_buttons a {
    background: #EC0B5B;
    color: #fff;
    padding: 8px 25px;
    border-radius: 25px;
    display: inline-block;
    text-align: center;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.pricing_tables_buttons a:hover {
    background: #333;
    color: #fff;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
}



.burger_pioneer_menu_overlay_normal {
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

.burger_pioneer_menu_overlay_normal {
    position: fixed;
    content: '';
    visibility: hidden;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 992;
    background: rgba(0, 0, 0, 0.85);
    opacity: 0;
}

.show-menu .burger_pioneer_menu_overlay_normal {
    visibility: visible;
    opacity: 1;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_menu_vertical {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    max-height: 100%;
    overflow-y: auto;
    text-align: center;
    transform: translateY(-50%);
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu,
.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu a {
    display: inline-block;
    padding: 15px 0;
    font-size: 17px;
    color: #fff;
    font-weight: 400;
    text-transform: uppercase;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu .current-menu-parent>a,
.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu .current-page-parent>a,
.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu .current_page_parent>a {
    color: #EC0B5B;
}





.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu .sub-menu {
    display: none;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu .sub-menu a {
    text-transform: capitalize;
    padding: 10px 0;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.04em;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu li.menu-item-has-children>a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    margin-left: 6px;
    font-size: 12px;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu li.menu-item-has-children>a.sub-active {
    color: #EC0B5B;
    font-weight: 500;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu li.menu-item-has-children>a.sub-active::after {
    content: '\f106';
}

.burger_pioneer_menu_overlay_normal li.current-menu-item>a,
.burger_pioneer_menu_overlay_normal li.current-page-item>a {
    color: #EC0B5B;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu {
    height: 100%;
    position: relative;
}

.burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li {
    position: relative;
    opacity: 1;
    visibility: hidden;
    list-style: none;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li {
    -webkit-animation: burger-menu-effect 0.35s ease-in-out forwards;
    -moz-animation: burger-menu-effect 0.35s ease-in-out forwards;
    -ms-animation: burger-menu-effect 0.35s ease-in-out forwards;
    -o-animation: burger-menu-effect 0.35s ease-in-out forwards;
    animation: burger-menu-effect 0.35s ease-in-out forwards;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(1) {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(2) {
    -webkit-animation-delay: 0.15s;
    animation-delay: 0.15s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(3) {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(4) {
    -webkit-animation-delay: 0.45s;
    animation-delay: 0.45s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(5) {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(6) {
    -webkit-animation-delay: 0.75s;
    animation-delay: 0.75s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(7) {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(8) {
    -webkit-animation-delay: 1.05s;
    animation-delay: 1.05s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(9) {
    -webkit-animation-delay: 1.2s;
    animation-delay: 1.2s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(10) {
    -webkit-animation-delay: 1.35s;
    animation-delay: 1.35s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(11) {
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(12) {
    -webkit-animation-delay: 1.65s;
    animation-delay: 1.65s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(13) {
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(14) {
    -webkit-animation-delay: 1.95s;
    animation-delay: 1.95s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(15) {
    -webkit-animation-delay: 2.1s;
    animation-delay: 2.1s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(16) {
    -webkit-animation-delay: 2.25s;
    animation-delay: 2.25s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(17) {
    -webkit-animation-delay: 2.4s;
    animation-delay: 2.4s;
}

.show-menu .burger_pioneer_menu_overlay_normal .burger_pioneer_main_menu>li:nth-child(18) {
    -webkit-animation-delay: 2.55s;
    animation-delay: 2.55s;
}

@-moz-keyframes burger-menu-effect {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes burger-menu-effect {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@-o-keyframes burger-menu-effect {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}

@keyframes burger-menu-effect {
    from {
        opacity: 0;
        visibility: hidden;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
    }
}



body.error404 footer {
    display: none;
}

body.error404 .main-content {
    margin: 0px;
    padding: 0px;
}

body.error404 h1 {
    font-size: 100px;
    font-weight: 300;
    line-height: 100px;
    margin: 50px 0 50px;
}

body.error404 .tag-body a {
    color: #fff;
}

body.error404 form.searchform>div {
    padding: 10px 50px 10px 15px;
    height: 46px;
    background: #fff;
    position: relative;
    color: #444;
    display: inline-block;
    margin: 0 auto 40px !important;
    max-width: 480px;
}

body.error404 form.searchform>div:focus {
    border-color: #999 !important;
}

body.error404 form.searchform>div:before {
    position: absolute;
    content: "\f002";
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    right: 17px;
    font: normal normal normal 16px/1 FontAwesome;
    top: 13px;
    color: #222;
}

body.error404 form.searchform label {
    display: none
}

body.error404 form.searchform input[name="s"] {
    float: left;
    padding: 0;
    width: 200px;
    height: 26px;
    border: none;
    font-weight: 300;
}

body.error404 form.searchform input[type="submit"] {
    position: relative;
    float: right;
    margin: -34px -48px 0 0px;
    padding: 0;
    width: 50px !important;
    height: 44px;
    border: none !important;
    text-indent: -9999px;
    background: transparent;
}

.menu-transparent .navbar {
    background: transparent;
    border-bottom: transparent;
}

.menu-transparent .navbar .nav>li>a {
    color: #fff;
}

.menu-transparent .navbar .logo a {
    color: #fff;
}

.menu-transparent .navbar .search-icon-header a i {
    color: #fff;
    -moz-osx-font-smoothing: inherit;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}

.menu-transparent .navbar .pioneer_head_cart i {
    color: #fff;
    -moz-osx-font-smoothing: inherit;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}



.menu-transparent .navbar.top-nav-collapse {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 0px 30px;
}

.menu-transparent .navbar.top-nav-collapse .nav>li>a {
    color: #333;
}

.menu-transparent .navbar.top-nav-collapse .nav>li>a.active-menu {
    color: #EC0B5B !important;
}

.menu-transparent .navbar.top-nav-collapse .logo a {
    color: #333;
}

.menu-transparent .navbar.top-nav-collapse .search-icon-header a i {
    color: #333;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}

.menu-transparent .navbar.top-nav-collapse .pioneer_head_cart i {
    color: #333;
    -webkit-transition: all .8s ease;
    -moz-transition: all .8s ease;
    transition: all .8s ease;
}


.close-black-block i {
    color: #fff !important;
}


.burger-menu .logo {
    padding-top: 0px;
    line-height: 1;
    position: relative;
    z-index: 992
}

.navbar.top-nav-collapse .burger-menu .logo {
    padding: 0;
}


.contact-hello {
    font-size: 24px;
    line-height: 1.75;
    font-weight: 400;
    text-transform: lowercase;
}

.contact-hello i {
    font-size: 38px;
    font-weight: 600;
    text-transform: none;
}

.contact-touch {
    font-size: 30px;
}


.scroll-top {
    position: fixed;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    right: 30px;
    font-size: 18px;
    background-color: #EC0B5B;
    color: #fff;
    transition: all 0.55s ease;
    z-index: 9999;
    border-radius: 50%;
}

.scroll-top:hover {
    background: #333;
    color: #fff;
}

.scroll-top i,
.scroll-top i:focus {
    color: #fff;
    display: inline-block;
    opacity: 1 !important;
    line-height: 1;
    top: -1px;
    position: relative;
}

.scroll-top-visible {
    opacity: 1 !important;
    bottom: 30px;
}

.scroll-top-hidden {
    opacity: 0;
    bottom: 90px;
}







.pioneer-photo-image {
    position: relative;
    overflow: hidden;
}

.pioneer-photo-image .pioneer-photo-mark {
    background: rgba(0, 0, 0, 0.75);
    bottom: 0;
    display: block;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 100%;
    z-index: 1;
}

.pioneer-photo-image:hover .pioneer-photo-mark {
    opacity: 1;
}

.pioneer-photo-image img {
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 0;
    max-width: 100%;
}

.pioneer-photo-image:hover img {
    transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -o-transform: scale(1.15);
    -ms-transform: scale(1.15);
}

.pioneer-photo-image .pioneer-photo-action span {
    display: inline-block;
    font-size: 40px;
    height: 60px;
    line-height: 60px;
    margin: 0 2px;
    text-align: center;
    width: 60px;
    color: #fff;
}

.pioneer-photo-image .pioneer-photo-action span>a {
    color: inherit;
    display: block;
    font-weight: normal;
}

.pioneer-photo-image .pioneer-photo-action span {
    bottom: 50%;
    top: 50%;
    left: 50%;
    right: 50%;
    margin: -30px 0 0 -30px;
    visibility: hidden;
    opacity: 0;
    position: absolute;
    z-index: 2;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.pioneer-photo-image:hover .pioneer-photo-action span {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.border-img img {
    border: 1px solid #eee;
}

.travel-deals-block {
    width: 100%;
    background: #fff;
    margin-bottom: 30px;
    display: inline-block;
}

.travel-deals-image {
    position: relative;
}

.travel-deals-image img {
    max-width: 100%;
    height: auto;
}

.travel-deals-text {
    padding: 30px 30px 0 30px;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.75px;
}

.travel-deals-paragraph {
    padding: 15px 30px 30px 30px;
    text-align: center;
}

div.travel-deals-image::before,
div.travel-deals-image::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.travel-deals-image::before,
.travel-deals-image::after {
    left: 50%;
    width: 36px;
    height: 36px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.travel-deals-image::after {
    bottom: -18px;
    z-index: 10;
    background: inherit;
    background: #fff;
}

.blog-padding {
    padding-top: 60px;
}

.travel-deals-list {
    display: inline-block;
    width: 100%;
    padding: 0 30px 30px 30px;
}

.travel-deals-list ul {
    padding: 0;
    display: table;
    margin: auto;
    margin-bottom: 0;
}

.travel-deals-list ul li {
    list-style: none;
    float: left;
    padding-left: 15px;
}

.travel-deals-list ul li:first-child {
    padding-left: 0px;
}

.travel-deals-list ul li i {
    font-size: 23px;
    color: #EC0B5B;
    padding-right: 5px;
    position: relative;
    top: 4px;
}


.contact-travel {
    background: #fff;
    padding: 50px;
    text-align: center;
}

.contact-travel label {
    display: inline-block;
    max-width: 100%;
    font-weight: 400 !important;
    font-size: 16px;
    padding-bottom: 12px;
    margin: 0;
    letter-spacing: 0.5px;
}




.nivo-lightbox-theme-default.nivo-lightbox-overlay {
    background: #333;
    background: rgba(0, 0, 0, 0.8);
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
    background: url(../images/loading.gif) no-repeat 50% 50%;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav {
    top: 10%;
    width: 8%;
    height: 70%;
    text-indent: -9999px;
    background-repeat: no-repeat;
    background-position: 50% 50%;
    opacity: 0.5;
}

.nivo-lightbox-theme-default .nivo-lightbox-nav:hover {
    opacity: 1;
    background-color: rgba(0, 0, 0, 0.5);
}

.nivo-lightbox-theme-default .nivo-lightbox-close:before {
    display: block;
    content: "\e680";
    color: #fff;
    display: inline-block;
    font-family: 'Pe-icon-7-stroke';
    opacity: 0.7;
    font-size: 65px;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.nivo-lightbox-theme-default .nivo-lightbox-close:hover:before {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.nivo-lightbox-theme-default .nivo-lightbox-close:hover {
    opacity: 1;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap {
    bottom: -7%;
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
    background: #000;
    color: #fff;
    padding: 7px 15px;
    border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-image img {
    background: #fff;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
    background: #fff;
    padding: 40px;
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.4);
}



.food-deals-block {
    width: 100%;
    background: #fff;
    margin-bottom: 30px;
    display: inline-block;
}

.food-deals-image {
    position: relative;
}

.food-deals-image img {
    max-width: 100%;
    height: auto;
}

.food-deals-text {
    padding: 30px 30px 0 30px;
    text-align: center;
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 0.75px;
}

.food-deals-paragraph {
    padding: 30px;
    text-align: center;
}

div.food-deals-image::before,
div.food-deals-image::after {
    position: absolute;
    content: '';
    pointer-events: none;
}

.food-deals-image::before,
.food-deals-image::after {
    left: 50%;
    width: 36px;
    height: 36px;
    -webkit-transform: translateX(-50%) rotate(45deg);
    transform: translateX(-50%) rotate(45deg);
}

.food-deals-image::after {
    bottom: -18px;
    z-index: 10;
    background: inherit;
    background: #fff;
}

.blog-padding {
    padding-top: 60px;
}

.food-deals-list {
    display: inline-block;
    width: 100%;
    padding: 0 30px 25px 30px;
    text-align: center;
    font-size: 25px;
    color: #EC0B5B;
}

.food-deals-list i {
    font-size: 29px;
    color: #EC0B5B;
    padding-right: 5px;
    position: relative;
    top: 4px;
}






.portfolio-item {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transition: all .9s ease;
    -moz-transition: all .9s ease;
    transition: all .9s ease;
}

.portfolio-items {
    margin-bottom: 0;
}

.portfolio-item>a {
    display: inline-block;
    color: #fff !important;
    overflow: hidden;
    text-align: center;
    height: 100%;
    width: 100%;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    max-width: none;
    position: relative;
    left: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    visibility: visible;
}

.portfolio-item:hover>a {
    transform: scale(1.2, 1.2) translate(15px, 15px);
    -ms-transform: scale(1.2, 1.2) translate(15px, 15px);
    -webkit-transform: scale(1.2, 1.2) translate(15px, 15px);
}

.portfolio-overlay {
    background: none repeat scroll 0 0 rgba(0, 0, 0, 0.75);
    height: 100%;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.portfolio-overlay .caption {
    position: absolute;
    bottom: 20%;
    left: 0;
    padding: 0 30px;
    text-align: left;
    transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
    opacity: 0;
}

.portfolio-overlay .caption p {
    padding: 0px;
    margin: 0px;
}


.portfolio-item:hover .portfolio-overlay .caption {
    bottom: 10%;
    opacity: 1;
}

.portfolio-item h5 {
    margin-bottom: 0;
    font-weight: 800;
    color: #fff;
}

.portfolio-item span {
    color: #fff;
}

.cart_search_block .menu-divider {
    width: 1px;
    height: 18px;
    border-right: 1px solid #ddd;
    padding: 0;
    line-height: 1;
    margin: 18px 5px 0 5px;
}


/* Animated mouse */
.scroll-btn {
    width: 57px;
    display: inline-block;
    text-align: center;
    margin: 60px auto -60px;
}

.scroll-btn .weel {
    position: relative;
    display: inline-block;
    height: 22px;
    margin: 10px auto 5px;
}

.scroll-btn .mouse {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 50px;
    border: 2px solid #eee;
    border-radius: 24px;
    opacity: .75;
}

.scroll-btn .weel span {
    position: absolute;
    display: block;
    top: 0;
    left: 50%;
    width: 8px;
    height: 8px;
    margin: -14px 0 0 -4px;
    background: #fff;
    border-radius: 20px;
    -webkit-animation: scroll 3s linear infinite;
    -moz-animation: scroll 3s linear infinite;
    animation: scroll 3s linear infinite;
}

@-webkit-keyframes scroll {
    1% {
        opacity: 1;
        top: 30%;
    }

    20% {
        opacity: 1;
        top: 80%;
    }

    60% {
        opacity: 0;
        top: 80%;
    }

    100% {
        opacity: 0;
        top: 30%;
    }
}

@-moz-keyframes scroll {
    1% {
        opacity: 1;
        top: 30%;
    }

    20% {
        opacity: 1;
        top: 80%;
    }

    60% {
        opacity: 0;
        top: 80%;
    }

    100% {
        opacity: 0;
        top: 30%;
    }
}

@keyframes scroll {
    1% {
        opacity: 1;
        top: 30%;
    }

    20% {
        opacity: 1;
        top: 80%;
    }

    60% {
        opacity: 0;
        top: 80%;
    }

    100% {
        opacity: 0;
        top: 30%;
    }
}

@media (max-height: 690px) {
    .scroll-btn {
        display: none;
    }
}

/* Text rotator */
.rotating {
    display: inline-block;
}

.arrow-to-top {
    padding: 0;
    margin-bottom: 50px;
}

p.copy-info {
    margin: 35px 0;
    text-transform: uppercase;
    font-weight: 400;
    font-size: 85%;
}


.team-block-two .list-inline>li {
    padding-bottom: 10px;
    vertical-align: bottom;
}

.vc_tta-color-grey.vc_tta-style-modern .vc_tta-panel .vc_tta-panel-body {
    background-color: #fff !important;
}

.btn-xs {
    font-size: 10px !important;
    padding: 5px 12px;
}

.btn-border {
    border: 2px solid #fff;
    color: #fff !important;
    background-color: transparent;
}

.btn-white {
    border: 2px solid #fff;
    color: #000 !important;
    background-color: #fff;
}

.btn-pink {
    border: 2px solid #EC0B5B;
    color: #fff !important;
    background-color: #EC0B5B;
}

.btn-lg {
    font-size: 13px !important;
    padding: 10px 35px;
}

.navigation.pagination {
    border-top: 1px solid #eee;
    border-bottom: none;
    margin: 0;
    margin: 80px 0;
    display: block;
    border-radius: 0px;
    padding-top: 75px;
}

.pagination-line {
    border-top: 1px solid #eee;
    padding-top: 80px;
}

.single-portfolio .pagination-line {
    margin-top: 80px;
}

.single-portfolio .content {
    padding-bottom: 0px;
}

.pager li>a,
.pager li>span {
    padding: 0;
    border: 0;
    font-weight: 300;
    border-radius: 0;
    text-transform: uppercase;
}

.pager li.previous i {
    font-size: 20px;
    padding-right: 3px;
    position: relative;
    top: 1px;
}

.pager li.next i {
    font-size: 17px;
}

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

.pager {
    padding: 0;
    margin: 0;
}



/* Carousel */
.carousel-control {
    width: 8%;
    color: #000;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}

.carousel-control:focus,
.carousel-control:hover {
    color: #000;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
    opacity: 0.7;
}

.carousel-control.left,
.carousel-control.right {
    background-image: none;
    filter: none;
}

#carousel-intro .carousel-control {
    color: #fff;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
}

#carousel-intro .carousel-control:focus,
#carousel-intro .carousel-control:hover {
    color: #fff;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.9);
    opacity: 0.7;
}

@media (max-width: 991px) {
    .carousel-big .carousel-control {
        display: none;
    }
}

.carousel-fade .carousel-inner .item {
    opacity: 0;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .active {
    opacity: 1;
}

.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    left: 0;
    opacity: 0;
    z-index: 1;
}

.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

.carousel-fade .carousel-control {
    z-index: 9;
}

@media all and (transform-3d),
(-webkit-transform-3d) {

    .carousel-fade .carousel-inner>.item.next,
    .carousel-fade .carousel-inner>.item.active.right,
    .carousel-fade .carousel-inner>.item.prev,
    .carousel-fade .carousel-inner>.item.active.left {
        opacity: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    .carousel-fade .carousel-inner>.item.next.left,
    .carousel-fade .carousel-inner>.item.prev.right,
    .carousel-fade .carousel-inner>.item.active {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.carousel-indicators {
    bottom: -60px;
}

.indicators-inside {
    bottom: 7px;
}

#carousel-intro .carousel-indicators {
    bottom: 30px;
}

.carousel-indicators .active {
    width: 16px;
    height: 16px;
    margin: 0 5px 0;
}

.carousel-indicators li {
    width: 16px;
    height: 16px;
    margin: 0 5px 0;
    background-color: #fff;
    border: 0;
}

.carousel-indicators .active {
    background-color: #EC0B5B;
}




.carousel-control .icon-next,
.carousel-control .icon-prev {
    font-family: sans-serif;
    font-size: 50px;
}

.carousel,
.carousel .item,
.carousel-inner {
    height: 100vh;
}

.fill {
    display: table;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    background-position: center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
}

.carousel-control .icon-next:before {
    font-family: "FontAwesome";
    content: "\f105";
}

.carousel-control .icon-prev:before {
    font-family: "FontAwesome";
    content: "\f104";
}

.vc_parallax .vc_parallax-inner {
    background-repeat: no-repeat !important;
    background-position: 50% 75% !important;
}









.post-thumbnail .single-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    background: rgba(236, 11, 91, 0.6);
    opacity: 0;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
}

.post-thumbnail:hover .single-item {
    opacity: 1
}

.post-set.pioneer_mas_item.has-post-thumbnail .post-thumbnail a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 305px;
}

.post-thumbnail:hover a {
    -webkit-transform: scale(1.15);
    -moz-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
}

.post-thumbnail .single-action span {
    display: inline-block;
    margin: 0 2px;
    width: 44px;
    height: 44px;
    color: #fff;
    text-align: center;
    font-size: 44px;
    line-height: 44px;
}

.post-thumbnail .single-action span a:hover {
    text-decoration: none
}

.post-thumbnail .single-action span>a {
    display: block;
    color: inherit;
    font-weight: normal;
}

.post-thumbnail .single-action span {
    position: absolute;
    top: 50%;
    right: 50%;
    bottom: 50%;
    left: 50%;
    z-index: 2;
    visibility: hidden;
    margin: -22px 0 0 -22px;
    opacity: 0;
    -webkit-transition: all 0.25s linear;
    -moz-transition: all 0.25s linear;
    -ms-transition: all 0.25s linear;
    -o-transition: all 0.25s linear;
    transition: all 0.25s linear;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.blog-images.link .post-thumbnail .single-action span>i:before {
    content: "8";
}

.blog-images.video .post-thumbnail .single-action span>i:before {
    content: "\e022";
}

.blog-images.image .post-thumbnail .single-action span>i:before {
    content: "^";
}

.blog-images.quote .post-thumbnail .single-action span>i:before {
    content: ".";
}

.blog-images.audio .post-thumbnail .single-action span>i:before {
    content: "\e037";
}

.blog-images.gallery .post-thumbnail .single-action span>i:before {
    content: "8";
}

.post-thumbnail:hover .single-action span {
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}


ul.foot_menu {
    float: right;
    padding: 0;
    margin: 0;
}

ul.foot_menu.error {
    float: none;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
    display: inline-block;
}

ul.foot_menu.error li {
    text-align: center;
    float: none;
    display: inline-block;
    padding: 0 5px;
    font-size: 15px;
}

ul.foot_menu.error li:first-child {
    padding-left: 5px;
}

ul.foot_menu.error ul {
    display: none;
}

ul.foot_menu li {
    float: left;
    padding-left: 25px;
    list-style: none;
}

ul.foot_menu li:first-child {
    padding-left: 0px;
}

ul.foot_menu li a {}

ul.foot_menu li a:hover {
    text-decoration: underline
}

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

.portfolio-dankov figure {
    position: relative;
    float: left;
    overflow: hidden;
}

.portfolio-dankov img {
    width: 100%;
    height: 100%;
}

.portfolio-dankov figure figcaption,
.portfolio-dankov figure figcaption>a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.portfolio-dankov figure img {
    max-width: 100%;
    display: block;
    position: relative;
}

.portfolio-dankov figcaption {
    position: absolute;
    top: 0;
    left: 0;
    color: #fff;
    font-weight: 300;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-size: 1.25em;
}

.portfolio-dankov figcaption h3 {
    margin: 0;
    padding: 0;
    color: #fff;
    font-size: 21px;
    padding-bottom: 5px;
}


figure.effect-bubba {
    background: #000;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
    width: 100%;
    height: 100%;
}

figure.effect-bubba img {
    opacity: 0.8;
    -webkit-transition: opacity 0.35s;
    transition: opacity 0.35s;
}

figure.effect-bubba:hover {
    background: #EC0B5B;
    -webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}

figure.effect-bubba:hover img {
    opacity: 0.4;
}

figure.effect-bubba figcaption::before,
figure.effect-bubba figcaption::after {
    position: absolute;
    top: 30px;
    right: 30px;
    bottom: 30px;
    left: 30px;
    content: '';
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

figure.effect-bubba figcaption::before {
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

figure.effect-bubba figcaption::after {
    border-right: 1px solid #fff;
    border-left: 1px solid #fff;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

figure.effect-bubba h2 {
    top: 50%;
    -webkit-transition: -webkit-transform 0.35s;
    transition: transform 0.35s;
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    margin: 0px;
    font-size: 25px;
    display: inline-block;
    font-weight: 300;
    position: absolute;
    margin-top: -21px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1;
}

figure.effect-bubba h2 a {
    color: #fff;
    font-family: roboto slab;
}

figure.effect-bubba p {
    opacity: 0;
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    -webkit-transform: translate3d(0, 30px, 0);
    transform: translate3d(0, 30px, 0);
    font-size: 16px;
    margin: 0;
    text-transform: lowercase;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
}

figure.effect-bubba:hover figcaption::before,
figure.effect-bubba:hover figcaption::after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

figure.effect-bubba:hover h2 {
    opacity: 1;
    -webkit-transform: translate3d(0, 0px, 0);
    transform: translate3d(0, -12px, 0);
}

figure.effect-bubba:hover p {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 12px, 0);
    opacity: 1;

}

.prlx-name {
    text-align: center;
    font-size: 43px;
    text-transform: capitalize;
    font-family: Roboto Slab;
    padding-bottom: 20px;
}

.prlx-text {
    text-align: center;
    font-size: 18px;
    padding-bottom: 25px;
    color: rgba(255, 255, 255, 0.82);
    padding: 0 165px 40px 165px;
    text-transform: capitalize;
}

.blog-images.vc .title {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-images.vc .post-thumbnail a {
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    position: relative;
    display: block;
    height: 277px;
}

.present-block-one {
    color: #888;
    text-transform: uppercase;
    font-size: 15px;
}

.present-block-name {
    font-family: Roboto Slab;
    font-size: 45px;
}

.present-block-line {
    width: 175px;
    background: #eee;
    height: 2px;
    margin: 10px 0;
}

.present-block-text {
    padding-top: 15px;
}

.present-block-button {
    padding: 12px 15px;
    border: 2px solid #eee;
    margin-top: 40px;
    display: inline-block;
}

.presentation-two-name {
    font-family: roboto slab;
    font-size: 35px;
}

.presentation-two-line {
    width: 100px;
    background: #eee;
    height: 2px;
    margin: 15px 0;
}

.presentation-two-text {
    padding-top: 10px
}

.presentation-two-list-block {
    padding-top: 10px;
}

.services-list {
    width: 100%;
    display: inline-block;
    padding-bottom: 30px;
}

.services-list i {
    color: #EC0B5B;
    border-radius: 50%;
    width: 65px;
    height: 65px;
    background: #fafafa;
    display: inline-block;
    text-align: center;
    line-height: 65px;
    border: 1px solid #eee;
    font-size: 27px;
    background: #fff;
}

.services-list span {
    position: relative;
    top: -5px;
    left: 10px;
}

.single-portfolio-list {
    padding: 0;
}

.single-portfolio-list li {
    list-style: none;
    padding-bottom: 5px;
}

.single-portfolio-list li i {
    color: #EC0B5B;
    font-size: 18px;
    position: relative;
    top: 2px;
    padding-right: 5px;
}

.pioneer_typed_text .typed-cursor {
    opacity: 0;
    webkit-transition: all 0.3s linear;
    -moz-transition: all 0.3s linear;
    -ms-transition: all 0.3s linear;
    -o-transition: all 0.3s linear;
    transition: all 0.3s linear;
}