﻿a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #22233b;
}

    input:focus,
    button:focus,
    a:focus,
    a:hover {
        text-decoration: none;
        outline: none;
        color: #6858db;
    }

img {
    max-width: 100%;
    height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0 0 15px;
    font-weight: 700;
    line-height: 1.6em;
}

html,
body {
    height: 100%
}

body {
    font-family: 'Muli', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6em;
    color: #56576e;
}


/* Remove Chrome Input Field's Unwanted Yellow Background Color */

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
}

/*-- 3. Helpler-Class --*/

.section-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

.icon-list,
.list {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .list li {
        display: block;
        margin-bottom: 10px;
    }

    .icon-list li {
        display: block;
        position: relative;
        padding-left: 40px !important;
        margin-bottom: 10px;
        color: #22233b;
    }

        .icon-list li .icon {
            position: absolute;
            left: 0;
            top: 0;
            text-align: center;
            width: 30px;
            height: 30px;
            line-height: 30px;
        }

/*-- 4. Mainmenu-Area --*/

.mainmenu-area {
    width: 100%;
    height: auto;
    z-index: 99999;
    padding-top: 10px;
    border-radius: 0;
    padding-bottom: 10px;
    margin-bottom: 0;
    background-color: #ffffff;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    .mainmenu-area.transparent {
        background: none;
        border: none;
        position: absolute;
        left: 0;
        top: 0;
    }

    .mainmenu-area.affix {
        background-color: #ffffff;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        padding-top: 5px;
        padding-bottom: 5px;
        position: fixed;
    }

    .mainmenu-area.transparent.affix {
        background-color: #0c2461;
    }

    .mainmenu-area ul {
        float: none;
        display: block;
        text-align: center;
    }

        .mainmenu-area ul > li {
            float: none;
            display: inline-block;
        }

        .mainmenu-area ul li a {
            white-space: nowrap;
        }

        .mainmenu-area ul > li > a {
            background: none;
            font-weight: 700;
            font-size: 12px;
            color: #56576e;
            padding: 20px;
            text-transform: uppercase;
        }

        .mainmenu-area ul > li.active > a,
        .mainmenu-area ul > li:hover > a {
            color: #6858db;
            background: none;
        }

    .mainmenu-area.transparent ul > li > a {
        color: #ffffff;
        position: relative;
        padding: 20px;
    }

        .mainmenu-area.transparent ul > li > a:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            border-radius: 5px;
            width: 0;
            height: 2px;
            background-color: #ffffff;
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

    .mainmenu-area.transparent ul > li.active > a:after,
    .mainmenu-area.transparent ul > li:hover > a:after {
        width: 100%;
    }

.navbar-brand {
    padding: 20px 15px 15px 15px;
    font-size: 30px;
    font-weight: 700;
}

.mainmenu-area.transparent .navbar-brand {
    color: #ffffff;
}

/*-- DropDown-Menu --*/

.mainmenu-area ul li {
    position: relative;
}

.mainmenu-area li i {
    position: absolute;
    right: 15px;
    top: 18px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
    font-size: 18px;
}

.mainmenu-area li:hover > i {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.mainmenu-area ul .sub-menu {
    position: absolute;
    left: 0;
    top: calc(100% + 20px);
    background-color: #ffffff;
    border-radius: 3px;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border: 1px solid #f2f2f2;
    border-top: none;
    border-bottom: none;
}

    .mainmenu-area ul .sub-menu li {
        display: block;
        min-width: 180px;
    }

        .mainmenu-area ul .sub-menu li a {
            padding: 5px 30px;
            display: block;
            text-transform: uppercase;
            font-weight: 700;
            font-size: 12px;
        }

.mainmenu-area ul li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    top: 100%;
}

.mainmenu-area ul li .sub-menu li .sub-menu {
    left: auto;
    right: calc(100% + 30px);
    top: 0;
}

.mainmenu-area ul li .sub-menu li:hover > .sub-menu {
    right: 100%;
}

/*-- Site-Header --*/

.site-header {
    padding-top: 220px;
    padding-bottom: 150px;
    background: url('../images/site-header.jpg') no-repeat scroll center center / cover;
    position: relative;
}

    .site-header:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: #ffffff;
        opacity: 0.6;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=60)";
    }

    .site-header .headline {
        font-size: 40px;
    }

    .site-header .bread {
        font-size: 14px;
        font-weight: 700;
    }

/*-- Blog-Area --*/

.post-single {
    -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    margin-bottom: 100px;
    border-radius: 6px;
}

    .post-single.sticky {
        position: relative
    }

        .post-single.sticky:after {
            content: "\f161";
            font-family: Material-Design-Iconic-Font;
            position: absolute;
            right: 0;
            top: 0;
            font-size: 80px;
            line-height: 80px;
            color: #6858db;
            padding: 10px 15px;
            border-radius: 0 0 5px 5px;
            text-transform: uppercase;
            opacity: 0.1;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
        }

.single-post .post-single {
    -webkit-box-shadow: none;
    box-shadow: none;
    margin-bottom: 30px;
}

.blog-content {
    padding: 30px;
}

.post-single .post-thumbnail {
    text-align: center;
}

.single-post .post-single .media-content,
.single-post .post-single .post-thumbnail {
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 5px 5px 0 0;
}

.single-post .post-single .blog-content {
    padding: 0;
}

.blog-content .title {
    font-size: 26px;
    color: #22233b;
}

.blog-meta {
    list-style: none;
    margin: 0;
    padding: 0;
    font-weight: 700;
    width: 100%;
    overflow: hidden;
    text-transform: uppercase;
    font-size: 12px;
}

    .blog-meta li {
        display: inline-block;
        margin-right: 15px;
    }

        .blog-meta li:last-child {
            margin-right: 0;
        }


.post-content-footer,
.post-content-footer ul {
    font-size: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
}

    .post-content-footer ul li {
        display: inline-block;
    }

.read-more {
    text-transform: uppercase;
}

    .read-more:after {
        font-family: Material-Design-Iconic-Font;
        content: "\f2ee";
        margin-left: 5px;
        display: inline-block;
        -webkit-transition: 0.3s;
        transition: 0.3s;
    }

    .read-more:hover:after {
        margin-left: 10px;
    }

.single-post-pagination {
    border-top: 1px solid #e9e9e9;
    border-bottom: 1px solid #e9e9e9;
    text-align: center;
    padding: 15px;
}

.nav-links {
    width: 100%;
    display: block;
}

    .nav-links .nav-previous,
    .nav-links .nav-next {
        display: inline-block;
        margin: 0 15px;
    }

        .nav-links .nav-previous a,
        .nav-links .nav-next a {
            display: block;
            padding: 15px 30px;
            color: #6858db;
            border: 1px solid #6858db;
            border-radius: 2px;
            -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        }

            .nav-links .nav-previous a:hover,
            .nav-links .nav-next a:hover {
                background-color: #6858db;
                color: #ffffff;
                -webkit-box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
                box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
            }

.page-links {
    margin-top: 30px;
    width: 100%;
    text-align: center;
}

    .page-links a,
    .nav-links > .page-numbers {
        display: inline-block;
        text-align: center;
        width: 40px;
        height: 40px;
        line-height: 40px;
        border-radius: 2px;
        border: 1px solid #6858db;
        background-color: #ffffff;
        color: #6858db;
        margin: 3px;
        font-size: 14px;
    }

        .page-links a:hover,
        .nav-links > .page-numbers:hover,
        .nav-links > .page-numbers.current {
            background-color: #6858db;
            color: #ffffff;
        }

blockquote {
    position: relative;
    text-align: center;
    padding: 60px 30px 30px 30px;
    background-color: #fbfbfb;
    border: none;
    border-radius: 5px;
}

    blockquote:before {
        content: "\f1b2";
        font-family: Material-Design-Iconic-Font;
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        top: 20px;
        font-size: 30px;
        color: #22233b;
    }

    blockquote cite {
        font-style: italic;
    }

.post-header {
    border-bottom: 1px solid #f7f7f7;
    margin-bottom: 60px;
}

    .post-header ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .post-header ul li {
            display: inline-block;
            margin-right: 15px;
            margin-bottom: 15px;
        }

/*-- Comment-area --*/

.comments-area {
    margin-top: 60px;
}

.comments-list .children,
.comments-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comments-list {
    padding-top: 30px;
}

    .comments-list .children {
        margin-left: 60px;
    }

.comment-item {
    padding: 30px;
    position: relative;
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    margin-bottom: 30px;
}

    .comment-item .comment-header {
        width: 100%;
        overflow: hidden;
        padding-bottom: 15px;
        margin-bottom: 15px;
        border-bottom: 1px solid #ededed;
    }

    .comment-item .comment-pic {
        float: left;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
    }

    .comment-item .comment-header .comment-meta {
        float: left;
    }

    .comment-item .comment-reply-link {
        border: 1px solid #6858db;
        color: #6858db;
        display: inline-block;
        padding: 6px 15px;
        border-radius: 2px;
        -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
        position: absolute;
        top: 30px;
        right: 30px;
    }

        .comment-item .comment-reply-link:hover {
            background-color: #6858db;
            color: #ffffff;
            -webkit-box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
            box-shadow: 2px 2px 20px 0 rgba(0, 0, 0, 0.2);
        }

/*-- Sidebar-Widget-Style --*/

.widget {
    margin-bottom: 60px;
}

    .widget .widget-title {
        font-size: 20px;
        position: relative;
        border-left: 3px solid #6858db;
        padding-left: 15px;
        margin-bottom: 30px;
    }

.search-box {
    position: relative;
}

    .search-box .search {
        width: 100%;
        padding: 15px 60px 15px 15px;
        border-radius: 3px;
        border: 1px solid #ededed;
        background-color: #ffffff;
        color: #56576e;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        height: 60px;
    }

    .search-box .search-bttn {
        position: absolute;
        right: 0;
        top: 0;
        height: 60px;
        width: 60px;
        border: none;
        font-size: 20px;
        color: #acacac;
        background-color: transparent;
        border-left: 1px solid #ededed;
        padding: 0;
    }

        .search-box .search-bttn:hover {
            background-color: #6858db;
            color: #ffffff;
        }

.widget table {
    width: 100%;
}

    .widget table th,
    .widget table td {
        border: none;
        padding: 10px;
        text-align: center;
        font-size: 14px;
    }

    .widget table th {
        background-color: #f7f7f7;
        color: #202020;
        font-weight: 700;
    }

.widget ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .widget ul li {
        padding: 10px 0;
    }

        .widget ul li:first-child {
            padding-top: 0;
        }

        .widget ul li:last-child {
            padding-bottom: 0;
        }

    .widget ul ul li:first-child {
        padding-top: 10px;
    }

    .widget ul ul {
        margin-left: 15px;
    }

        .widget ul ul li:before {
            content: "|";
            padding-right: 15px;
        }

.footer-widget ul li {
    padding: 5px 0;
}

.widget select {
    width: 100%;
    padding: 15px;
    border-radius: 3px;
    border: 1px solid #ededed;
}

.widget.widget_recent_entries li {
    position: relative;
    padding-right: 20px;
}

    .widget.widget_recent_entries li:after {
        content: "\f2ee";
        font-family: Material-Design-Iconic-Font;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        opacity: 0;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
        -webkit-transition: 0.3s;
        transition: 0.3s;
        font-size: 20px;
    }

    .widget.widget_recent_entries li:hover:after {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        right: 0;
    }

    .widget.widget_recent_entries li span {
        display: block;
    }

/*-- Calender-Widget --*/

.widget table {
    width: 100%;
}

    .widget table td,
    .widget table th {
        padding: 8px 10px;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
        text-transform: uppercase;
        font-size: 12px;
        font-weight: 700;
        border: 1px solid #ededed;
        text-align: center;
    }

#wp-calendar > caption {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
}

#wp-calendar #today {
    background-color: #6858db;
    color: #ffffff;
}

/*-- Tags-Cloude --*/

.widget .tagcloud a {
    padding: 5px;
    display: inline-block;
}

    .widget .tagcloud a:after {
        content: ",";
    }

    .widget .tagcloud a:last-child:after {
        content: "";
    }

/*-- Widget-Gallery --*/

.widget .gallery {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

    .widget .gallery .gallery-item {
        width: calc(33.33% - 5px);
        margin-bottom: 10px;
        border: 3px solid #ffffff;
        -webkit-box-shadow: 0 0 10px 0 rgba(17, 20, 34, 0.1);
        box-shadow: 0 0 10px 0 rgba(17, 20, 34, 0.1);
        border-radius: 2px;
    }

        .widget .gallery .gallery-item img {
            margin-bottom: 0;
        }

/*-- Footer-Area --*/

.footer-area {
    background-color: #fafafa;
}

.footer-top {
    padding-top: 80px;
    padding-bottom: 20px;
}

.footer-bottom {
    background-color: #f7f7f7;
    padding: 30px 0;
}

/*-- 18. Social-Menu --*/

.social-menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

    .social-menu li {
        display: inline-block;
        margin-right: 5px;
    }

        .social-menu li a i {
            width: 40px;
            height: 40px;
            background-color: #6858db;
            text-align: center;
            line-height: 40px;
            border-radius: 3px;
            color: #ffffff;
            font-size: 14px;
            -webkit-box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
            -webkit-transition: 0.3s;
            transition: 0.3s;
        }

        .social-menu li a:hover i {
            -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
            box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.4);
        }

        .social-menu li a i.zmdi-facebook {
            background-color: #3b5999;
        }

        .social-menu li a i.zmdi-twitter {
            background-color: #55acee;
        }

        .social-menu li a i.zmdi-google-plus {
            background-color: #dd4b39;
        }

        .social-menu li a i.zmdi-linkedin {
            background-color: #0077b5;
        }

        .social-menu li a i.zmdi-flickr {
            background-color: #ff0084;
        }

        .social-menu li a i.zmdi-pinterest {
            background-color: #bd081c;
        }

        .social-menu li a i.zmdi-dribbble {
            background-color: #ea4c89;
        }

        .social-menu li a i.zmdi-youtube {
            background-color: #e4405f;
        }

/*-- 19. Subscribe-Form --*/

.subscribe {
    position: relative;
}

    .subscribe .control {
        background-color: #ffffff;
        border: 1px solid #6858db;
        ;
        height: 50px;
        border-radius: 100px;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 15px 30px;
        width: 100%;
    }

    .subscribe .sub-button {
        position: absolute;
        right: 0;
        top: 0;
        height: 50px;
        border: none;
        width: 80px;
        border-radius: 0 100px 100px 0;
        color: #ffffff;
        background-color: #6858db;
    }

    .subscribe ::-webkit-input-placeholder {
        color: #6858db
    }

    .subscribe :-ms-input-placeholder {
        color: #6858db
    }

    .subscribe ::-ms-input-placeholder {
        color: #6858db
    }

    .subscribe ::-webkit-input-placeholder {
        color: #6858db
    }

    .subscribe :-ms-input-placeholder {
        color: #6858db
    }

    .subscribe ::placeholder {
        color: #6858db
    }

/*-- 20. Preloader-Style --*/

.preloade {
    background-color: #ffffff;
    bottom: 0;
    height: 100%;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 99999999;
}

    .preloade span {
        background: #6858db;
        /* For browsers that do not support gradients */
        /* For Safari 5.1 to 6.0 */
        /* For Opera 11.1 to 12.0 */
        /* For Firefox 3.6 to 15 */
        background: -webkit-gradient(linear, left top, right top, from(#6858db), to(#9f96e9));
        background: linear-gradient(to right, #6858db, #9f96e9);
        border-radius: 100%;
        bottom: 0;
        height: 60px;
        left: 0;
        margin: auto;
        position: absolute;
        right: 0;
        top: 0;
        width: 60px;
        -webkit-animation: mymove 1.5s infinite linear;
        animation: mymove 1.5s infinite linear;
    }

@-webkit-keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
    }

    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }
}

@keyframes mymove {
    0% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }

    25% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    50% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 20px rgba(104, 88, 219, 0.5);
    }

    75% {
        -webkit-box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 10px rgba(104, 88, 219, 0.5), 0 0 0 10px rgba(104, 88, 219, 0.5);
    }

    100% {
        -webkit-box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
        box-shadow: 0 0 0 0 rgba(104, 88, 219, 0.5), 0 0 0 0 rgba(104, 88, 219, 0.5);
    }
}

.preloade span i {
    bottom: -7px;
    color: #ffffff;
    font-size: 28px;
    height: 32px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    width: 40px;
}

/*-- 21. ScrollToTop --*/

#scrollUp {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    background-color: #6858db;
    color: #ffffff;
    border-radius: 3px;
    line-height: 50px;
}

/*-- Comment-Form --*/

input.bttn-default,
a.bttn-default,
button.bttn-default,
.bttn-default {
    border: 1px solid #6858db;
    border-radius: 100px;
    color: #6858db;
    padding: 15px 30px;
    display: inline-block;
    font-weight: 700;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

    input.bttn-default:hover,
    a.bttn-default:hover,
    button.bttn-default:hover,
    .bttn-default:hover {
        background-color: #6858db;
        -webkit-box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.1);
        box-shadow: 3px 3px 20px 0 rgba(0, 0, 0, 0.1);
        color: #ffffff;
    }

input.bttn-sq,
a.bttn-sq,
button.bttn-sq,
.bttn-sq {
    border-radius: 3px;
}

.bttn-lg {
    padding: 20px 50px !important;
}

.form_control {
    width: 100%;
    padding: 18px 20px;
    border-radius: 5px;
    border: 1px solid #d2d2db;
    margin-bottom: 30px;
    outline: none;
}

textarea.form_control {
    height: 150px;
}

.form-double {
    overflow: hidden;
}

    .form-double .form_group {
        width: calc(50% - 15px);
        float: left;
    }

        .form-double .form_group.last {
            float: right;
        }

.admin-bar .mainmenu-area {
    top: 30px;
}


.white-links p a:link, .white-links p a:visited, .white-links p a:active {
    color: #fff;
    text-decoration: none;
}

.white-links p a:hover {
    text-decoration: underline;
}

.blue-border pre {
    box-shadow: none !important;
    background-color: #f5f6f5 !important;
}

.no-bullets {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

    .no-bullets li {
        margin-bottom: 10px;
    }

.report-img {
    max-width: 300px !important;
}

.shadow-box {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
}

.darkblue-link {
    color: #3470AB !important;
    text-decoration: underline !important;
    font-weight: 700 !important;
    transition: .2s all;
}

    .darkblue-link:hover {
        color: #000 !important;
        text-decoration: underline !important;
        font-weight: 700 !important;
        transition: .2s all;
    }
/*Gradient Border*/
.blue-border {
    border-width: 7px;
    border-style: solid;
    border-image: linear-gradient( to bottom, #66BDDA, rgba(52, 112, 171, 1) ) 1 100%;
    border-right: none;
    margin-left: 0;
    margin-bottom: 40px;
}

    .blue-border code {
        color: #000 !important;
        background-color: #fff !important;
        border-radius: 12px !important;
        padding: 16px 25px !important;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
        font-size: .75em;
        margin-top: 0;
    }

.grey-code code {
    color: #000 !important;
    background-color: #EEEEEF !important;
    border-radius: 12px !important;
    padding: 16px 25px !important;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    font-size: .75em;
    margin-top: 0;
}

code.nowrap-code {
    color: #000 !important;
    background-color: #fff !important;
    padding: 0 !important;
    font-size: .75em;
    margin-top: 0;
    box-shadow: none !important;
}

.middle-text .kc-col-inner-container {
    display: flex;
    align-items: center;
}

.tiktok-1 {
    width: 250px;
}
/*NZME Page Hide Menu*/
.page-id-3747 nav {
    display: none !important;
}

/*NZME Upload Logo button*/
.nf-form-content button, .nf-form-content input[type=button], .nf-form-content input[type=submit] {
    min-width: auto !important;
}

/*NZME Form*/
.nzme-header {
    font-size: 1.7em;
    font-weight: 800;
}
/*NZME Form*/
.nf-form-content .nf-field-container #nf-field-194-wrap, .nf-form-content .nf-field-container #nf-field-197-wrap, .nf-form-content .nf-field-container #nf-field-193-wrap {
    flex-flow: column !important;
}
/*NZME Description text*/
.nf-field-description p {
    line-height: 1.5 !important;
}
/*NZME FORM SUBMIT*/
#nf-field-176 {
    min-width: 180px !important;
}

.poweredby {
    max-width: 40% !important;
}

nf-field-description {
    font-family: 'Poppins' !important;
}

.nf-field-description p span {
    margin-bottom: 20px;
}

.nf-field-description p:last-child {
    margin-bottom: 5px !important;
}

.nf-field-description p span {
    font-family: 'Poppins' !important;
}

.nf-form-content .list-select-wrap .nf-field-element > div, .nf-form-content input:not([type=button]), .nf-form-content textarea {
    background: #fff !important;
    border: 1px solid #c4c4c4 !important;
}

.pikaday__container {
    margin-bottom: 0 !important;
}

.nf-fu-progress {
    margin: 20px 0 0 0 !important;
    background-color: #fff;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #c4c4c4;
}

    .nf-fu-progress > div {
    }

.pikaday__container {
    margin: 0 !important;
}

.delete {
    font-weight: 700;
}

.file_upload-wrap .nf-field-description {
    margin-bottom: 20px;
}

.file_upload-wrap {
    background-color: #efefef;
    padding: 23px 25px 10px;
    border: 1px solid #c4c4c4 !important;
    border-radius: 10px;
}


/*New pubishers*/



body.kc-css-system .kc-css-501493 {
    padding-top: 40px !important;
}


body.kc-css-system .kc-css-403218 {
    margin-top: 0 !important;
}

body.kc-css-system .kc-css-172259 {
    margin-top: 0 !important;
}

@media only screen and (max-width:479px) {
    .navbar.mainmenu-area {
        position: relative !important;
        background-color: #291F3D !important;
    }

    .menu-item-has-children {
        padding-right: 0 !important;
    }
}

.section-padding {
    padding-top: 0 !important;
}

@media only screen and (max-width:768px) {
    #blue-hero {
        padding-top: 100px !important;
    }

    #signup-header {
        padding-top: 100px !important;
    }

    #agent-header {
        padding-top: 100px !important;
    }
}

@media only screen and (max-width:999px) {
    #blue-hero {
        margin-top: 0 !important;
    }

    #signup-header {
        margin-top: 0 !important;
    }
}

@media only screen and (max-width:1024px) {
    #blue-hero {
        margin-top: 0 !important;
    }

    #signup-header {
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 999px) {


    .nav-container {
        display: block !important;
    }

    .mainmenu-area.transparent {
        position: relative;
        background: #291F3D !important;
    }

    .navbar-header {
        width: 100%;
    }

    .navbar-brand {
        width: 100%;
        text-align: center;
        display: block !important;
    }

    #menu-mainmenu {
        width: 100%;
    }
}

@media only screen and (min-width:1000px) {
    .nav-container {
        display: flex !important;
        align-items: center
    }

    /*Home page menu*/
    .page-id-186 .navbar {
        background: #291F3D !important;
    }

    .mainmenu-area.transparent {
        position: relative;
        background: #291F3D !important;
    }
}

.admin-bar .mainmenu-area {
    top: 0 !important;
}


/*menu*/
.mainmenu-area.transparent .container #mainmenu ul > li > ul > li > a {
    color: #000;
}

.mainmenu-area ul .sub-menu li a {
    padding: 20px 30px !important;
}

.mainmenu-area ul .sub-menu {
    border-radius: 0 !important;
}

.mainmenu-area li i {
    right: 10px !important;
    top: 20px !important;
    color: #fff;
}

.menu-item-has-children {
    padding-right: 20px;
}

    .menu-item-has-children:hover,
    .menu-item-has-children:focus background:#fff;
    color:#000;
}

.menu-item-has-children:active {
    color: #000;
}

.menu-item-has-children .sub-menu li a:hover + .menu-item-has-children a {
    color: #000 !important;
}

.sub-menu li a:hover {
    background: #efefef !important;
}



.intro-text p a:link,
.intro-text p a:visited,
.intro-text p a:active {
    color: #fff !important;
    font-weight: 700;
}

.intro-text p a:hover {
    color: #fff !important;
    text-decoration: underline;
    font-weight: 700;
}

.normal-white-bold h2 {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.6em !important;
    font-weight: 700 !important;
}

.normal-white h3 {
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1.6em !important;
    font-weight: 400 !important;
}

.case-study-h2 h2 {
    font-size: 1.2em !important;
    font-weight: 700 !important;
}

.contact-header h2 {
    font-weight: 1.2em !important;
    font-weight: 700;
    color: #fff !important;
}

.pika-single {
    min-width: 343px !important;
}

.nf-form-fields-required {
    background: #fff !important;
    padding: 0 0 10px !important;
}

.nf-error-required-error {
    padding: 0 !important;
}

body.single-publishers .site-header {
    display: none
}

body.single-publishers .section-padding {
    padding-top: 78px !important
}

    body.single-publishers .section-padding .container .row div article.type-publishers {
        box-shadow: none !important;
        margin-bottom: 0 !important;
    }

        body.single-publishers .section-padding .container .row div article.type-publishers .blog-content {
            width: 100%;
            padding-bottom: 0 !important;
        }

            body.single-publishers .section-padding .container .row div article.type-publishers .blog-content .blog-meta {
                display: none !important;
            }

            body.single-publishers .section-padding .container .row div article.type-publishers .blog-content #signup-header {
                min-width: 100%;
            }

.share-on {
    display: none !important;
}

.space-20 {
    display: none !important;
}

.get-started-btn {
    background-color: #fff;
}

    .get-started-btn a {
        color: #1a7bb0 !important;
    }

.top-logo {
    max-width: 380px !important;
}

.page-id-1650 nav {
    display: none !important;
}

#nf-label-field-106 {
    margin-bottom: 20px !important
}

.kc-blog-posts-3 .kc-list-item-3 .content {
    box-shadow: none !important;
    background: #efefef !important;
    min-height: 310px;
}

.iphone {
    position: relative;
    bottom: -142px;
    right: -136px;
    z-index: 1
}

.navbar-header {
    padding-top: 0 !important;
    margin-top: 0;
    flex-grow: 1
}

.navbar-brand {
    padding-top: 0 !important;
    display: flex;
    align-items: center
}

@media only screen and (max-width:767px) {
    .navbar-header {
        display: flex;
        align-items: center;
        min-height: 100px;
        padding-top: 0 !important;
        flex-grow: 1
    }

    .mainmenu-area {
        padding: 0 !important;
        display: block
    }

    .navbar-toggle .icon-bar {
        background-color: #fff !important;
        opacity: 1;
        -webkit-transition: .3s
    }

    .navbar-brand {
        height: 44px;
        padding: 0 0 0 30px !important;
        align-items: center;
        flex-grow: 1;
        display: flex
    }
}

.slicknav_menu {
    display: none !important
}

html {
    scroll-behavior: smooth
}

.post-template-default.single.single-post .section-padding {
    background: #fff
}

.section-padding {
    background: #fff
}

.container-fluid {
    padding: 0 !important
}

.single-post .post-single {
    padding-top: 60px
}

.site-header {
    padding-bottom: 50px !important;
    background: #d9d9d9
}

body.kc-css-system .kc-css-915841 .title {
    font-family: Poppins !important
}

.error-menu {
    text-align: center;
    list-style: none
}

.post-template-default.single.single-post .section-padding {
    padding-top: 0
}

article.post-single figure.post-thumbnail {
    max-width: 500px;
    margin: auto
}

:target:before {
    content: "";
    display: block;
    height: 250px;
    margin: -250px 0 0
}

.wp-video-popup {
    margin-top: -58%;
    opacity: 1;
    transition: opacity .2s
}

    .wp-video-popup:hover {
        opacity: .75;
        transition: opacity .2s
    }

.wp-video-popup-video.is-hosted.is-landscape {
    height: 94vh;
    width: 94vw
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    background: #333;
    border: 0;
    color: #f7f7f7;
    transition: all .5s;
    border-radius: 200px;
    min-width: 185px
}

#home_page::before {
    content: '╲╱';
    color: #fff;
    position: absolute;
    opacity: .8;
    width: 6rem;
    font-size: 2rem;
    height: 4rem;
    line-height: 4rem;
    text-align: center;
    bottom: 6rem;
    margin-left: -3rem;
    left: 50%;
    animation: bounce 1s ease infinite
}

@keyframes bounce {
    50% {
        transform: translateY(-50%)
    }

    100% {
        transform: translateY(0)
    }
}

#home_page {
    position: relative
}

.grow {
    transition: all .2s ease-in-out
}

    .grow:hover {
        transform: scale(1.1)
    }

.price {
    font-size: 45px;
    font-weight: 800;
    font-family: Montserrat, sans-serif
}

.subprice {
    font-size: 22px
}

.myVideo-wrap {
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

    .myVideo-wrap:hover {
        opacity: .75;
        -webkit-transition: opacity .5s;
        transition: opacity .5s
    }

#myVideo {
    width: 100%;
    border-radius: 50px;
    -webkit-transition: opacity .5s;
    transition: opacity .5s
}

.video-overlay {
    z-index: 5000;
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    text-align: center;
    text-shadow: 0 0 40px #000
}

    .video-overlay h3 {
        color: #fff;
        text-align: center
    }

.logged-in .admin-bar {
    margin-top: 32px
}

.navbar-brand {
    height: 44px;
    padding: 14px 0 0 15px
}

    .navbar-brand img {
        height: 100%
    }

#scrollUp {
    background-color: #5cade9
}

.single-testimonial:before {
    color: #5cade9
}

.owl-theme .owl-controls .owl-page span {
    background: #5cade9
}

.single-testimonial .client-name {
    color: #5cade9
}

a:focus,
a:hover,
button:focus,
input:focus {
    color: #5cade9
}

.nav-links .nav-next a,
.nav-links .nav-previous a {
    color: #5cade9;
    border: 1px solid #5cade9
}

    .nav-links .nav-next a:hover,
    .nav-links .nav-previous a:hover {
        background-color: #5cade9
    }

.bttn-default,
a.bttn-default,
button.bttn-default,
input.bttn-default {
    color: #5cade9;
    border: 1px solid #5cade9
}

    .bttn-default:hover,
    a.bttn-default:hover,
    button.bttn-default:hover,
    input.bttn-default:hover {
        background-color: #5cade9
    }

.mainmenu-area ul > li > a {
    color: #fff
}

    .mainmenu-area ul > li > a:hover {
        color: #fff
    }

.fform-row .fform-col {
    width: 50%;
    float: left;
    margin-bottom: 20px
}

.clearme {
    clear: both
}

span.wpcf7-not-valid-tip {
    margin-top: 0;
    text-align: left;
    padding-left: 5px;
    font-size: 12px
}

div.wpcf7-mail-sent-ok {
    color: #398f14
}

div.wpcf7-acceptance-missing,
div.wpcf7-validation-errors {
    color: #f7e700
}

.footer-links a:link {
    color: #5cade9
}

.footer-links a:hover {
    color: #fff
}

.footer-links a:active {
    color: #fff
}

.footer-links a:visited {
    color: #5cade9
}

.section-padding {
    padding-bottom: 0 !important
}

.bullet-list li {
    margin-bottom: 25px
}

.cn-button.bootstrap {
    background-color: #5cade9 !important;
    border-radius: 30px;
    background-image: linear-gradient(to bottom, #5cade9, #5cade9)
}

.owl-carousel .owl-item {
    float: left;
    width: 200px;
    padding: 8px
}

.nf-form-content label {
    font-size: 15px !important;
    line-height: 20px;
    font-family: 'Poppins';
}

.nf-form-content .label-above .nf-field-label,
.nf-form-content .label-below .nf-field-label,
.nf-form-content .label-hidden .nf-field-label {
    margin-bottom: 2px !important;
    padding: 0
}

.nf-form-content .list-select-wrap .nf-field-element > div,
.nf-form-content input:not([type=button]),
.nf-form-content textarea {
    background: #f7f7f7;
    border: 1px solid #d2d2d2 !important;
    border-radius: 3px !important;
    box-shadow: none;
    color: #787878;
    transition: all .5s
}

.nf-form-content button,
.nf-form-content input[type=button],
.nf-form-content input[type=submit] {
    font-family: Quicksand;
    font-weight: 700
}

    .nf-form-content button:hover,
    .nf-form-content input[type=button]:hover,
    .nf-form-content input[type=submit]:hover {
        background: #92cbf5 !important;
        color: #fff !important;
        transition: all .5s
    }

.nf-response-msg p {
    font-weight: 700;
    margin-bottom: 40px;
    font-size: 23px;
    color: green !important
}

.nf-saves-item {
    padding: 5px 10px !important;
    font-size: 13px !important
}

    .nf-saves-item td {
        padding: 5px 10px !important;
        font-size: 13px !important
    }

td,
th {
    padding: 5px 10px !important;
    font-size: 13px !important
}

.nf-saves-cont {
    margin: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    display: none
}

    .nf-saves-cont table {
        margin-bottom: 57px
    }

.nf-saves-item a {
    margin-left: 10px
}

.nf-before-form {
    background: #fff !important;
    padding: 0 20px
}

.nf-form-content {
    padding: 50px !important;
    margin: 0 !important;
    max-width: 2000px !important
}

@media only screen and (max-width:800px) {
    body.kc-css-system .kc-css-590208 {
        background: 0 0 !important
    }
}

@media only screen and (max-width:510px) {

    .nf-form-content button,
    .nf-form-content input[type=button],
    .nf-form-content input[type=submit] {
        width: 100% !important;
        margin-bottom: 20px !important
    }

    .nf-next-item {
        width: 100%
    }

    .nf-previous-item {
        width: 100%
    }

    .save-wrap {
        width: 100%
    }
}

.nf-form-fields-required {
    padding: 30px;
    font-style: italic;
    font-size: 15px;
    border-bottom: 2px solid #fff
}

.nf-error-msg {
    padding: 0 30px 30px 30px
}
