/*-------------------------
-----Table-Of-Content------
---------------------------
01. Body-Style
02. Helper-Class 
03. Button-Design 
04. Mainmenu-Area 
    4.1 DropDown-Menu
    4.2 Header-Search-Area
05. Site-Header
06. Blog-Page-Design 
    6.1 Post-Format-Quote
    6.2 Post-Format-Link
    6.3 Post-Password-Protected
07. Post-Pagination
    7.1 Post-Navigation
08. Sidebar-widget 
    8.1 Search Box
    8.2 WIdget-Recent-Post
    8.3 Widget-Recent-Comment
    8.4 Widget-Archives-Page
    8.5 Widget-Categories
    8.6 Widget-widget_nav_menu
    8.7 Widget-Tagcloud
    8.8 Widget-Pages
    8.9 Widget-Calendar
    8.10 Widget-Gallery
    8.11 Widget-Image
09. Comment-Form 
10. comment-list 
11. Page-Loader
12. Footer-area
13. ScrollUp-Button
14. Error-Page-desing
------------------------*/

/*----------------------
01. Body-Style
------------------------*/

a {
    text-decoration: none;
    outline: none;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    color: #334D88;
}

input:focus,
button:focus,
a:hover {
    text-decoration: none;
    outline: none;
    color: #9cc038;
}

/*----------------
02. Helper-Class 
-----------------*/

.site-branding {
    padding-top: 8px;
}

.site-branding a {
    font-size: 36px;
    font-weight: 700;
    color: #334D88;
}

.transparent-menu .site-branding a {
    color: #ffffff;
}

.transparent-menu .site-branding a:hover {
    color: #9cc038;
}

.section-padding {
    padding-top: 120px;
    padding-bottom: 120px;
}

.equal-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.equal-height.revers {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}


.start-height {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.list-inline li {
    display: inline-block !important;
}

.clear-hidden {
    overflow: hidden;
}

.v-center {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.bold {
    font-weight: 700;
}

.text-green {
    color: #9cc038;
}

.text-white {
    color: #ffffff;
}

.dark-white {
    color: #B0BAD1;
}

[class|=space] {
    display: block;
    width: 100%;
    overflow: hidden
}

.space-10 {
    height: 10px;
}

.space-15 {
    height: 15px;
}

.space-20 {
    height: 20px;
}

.space-25 {
    height: 25px;
}

.space-30 {
    height: 30px;
}

.space-40 {
    height: 40px;
}

.space-50 {
    height: 50px;
}

.space-60 {
    height: 60px;
}

/*------------------
03. Button-Design 
-------------------*/

.bttn-1 {
    display: inline-block;
    padding: 13px 40px;
    background-color: #9cc038;
    color: #ffffff;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bttn-1.bttn-blue {
    background-color: #729DFE;
}

.bttn-1.bttn-blue:hover {
    background-color: #5D85DF;
}

.bttn-1.white {
    background-color: #ffffff;
    color: #9cc038;
}

.bttn-1:hover {
    background-color: #22aa74;
    color: #ffffff;
}

.bttn-more {
    font-size: 14px;
    text-transform: uppercase;
    color: #9cc038;
    font-weight: 500;
    margin-top: 15px;
    display: inline-block;
}

.bttn-more:before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 0;
    border: 1px solid;
    margin-right: 10px;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bttn-more:hover:before {
    width: 0px;
}

.bttn-more:after {
    content: "\f0da";
    font-family: 'FontAwesome';
    margin-left: 0;
    display: inline-block;
    -webkit-transform: translateY(1px);
    transform: translateY(1px);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.bttn-more:hover:after {
    margin-left: 10px;
    opacity: 1;
}


/*-----------------
04. Mainmenu-Area 
------------------*/

.mainmenu-area {
    width: 100%;
    z-index: 99;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    background-color: transparent;
    border-radius: 0;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.05);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.05);
    position: relative;
}


.transparent-menu .mainmenu-area {
    position: absolute;
    top: 0;
    left: 0;
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.transparent-menu.admin-bar .mainmenu-area {
    top: 30px;
}

.mainmenu-area.fixed-top {
    position: fixed;
    top: 0;
    left: 0;
}

.mainmenu-area.affix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 6px;
    padding-bottom: 6px;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.05);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.05);
}

.admin-bar .mainmenu-area.affix {
    top: 30px;
}

.mainmenu-area .equal-height {
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.primary-menu div.nav ul,
.primary-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.primary-menu div.nav ul > li,
.primary-menu > ul > li {
    display: inline-block;
    position: relative;
    padding: 0 15px;
}

.primary-menu div.nav ul li,
.primary-menu ul li {
    position: relative;
}

.primary-menu div.nav ul > li > a,
.primary-menu ul.nav > li > a {
    color: #334D88;
    background: none;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    position: relative;
    font-weight: 400;
}

.transparent-menu .mainmenu-area .primary-menu ul.nav > li > a {
    color: #ffffff;
}

.transparent-menu .mainmenu-area.affix .primary-menu ul.nav > li > a {
    color: #334D88;
}

.primary-menu div.nav > ul > li > a:after,
.primary-menu ul.nav > li > a:after {
    position: absolute;
    right: 0;
    bottom: -2px;
    height: 2px;
    width: 0;
    background-color: #334d88;
    content: "";
    border-radius: 5px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.current-menu-item a {
    color: #9cc038;
}

.transparent-menu .mainmenu-area .primary-menu ul.nav > li > a:after {
    background-color: #ffffff;
}

.transparent-menu .mainmenu-area.affix .primary-menu ul.nav > li > a:after {
    background-color: #334D88;
}

.primary-menu div.nav ul > li:hover > a:after,
.primary-menu ul.nav > li.current-menu-item > a:after,
.primary-menu ul.nav > li.active > a:after,
.primary-menu ul.nav > li:hover > a:after {
    width: 100%;
    left: 0;
    right: auto;
}

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

.primary-menu div.nav ul ul {
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #ffffff;
    padding: 10px 10px;
    visibility: hidden;
    opacity: 0;
}

.primary-menu div.nav ul ul a:hover {
    color: #9cc038;
}

.primary-menu div.nav ul li:hover > ul {
    visibility: visible;
    opacity: 1;
}

.primary-menu div.nav ul ul li {
    display: block;
}

.primary-menu div.nav ul ul ul {
    left: 100%;
    top: 0;
}

.primary-menu ul.nav li {
    position: relative;
}

.primary-menu ul.nav .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    border-top: 3px solid #334d88;
    background-color: #ffffff;
    min-width: 200px;
    border-radius: 2px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.primary-menu ul.nav .sub-menu .sub-menu {
    left: 100%;
    top: -3px;
}

.primary-menu ul.nav .sub-menu li {
    display: block;
    padding-left: 15px;
    padding-right: 15px;
}

.primary-menu ul.nav .sub-menu li a {
    padding: 5px 5px;
    display: block;
    font-weight: 500;
    position: relative;
}

.primary-menu ul.nav .sub-menu li:first-child {
    padding-top: 10px;
}

.primary-menu ul.nav .sub-menu li:last-child {
    padding-bottom: 10px;
}

.primary-menu ul.nav li:hover > .sub-menu {
    visibility: visible;
    opacity: 1;
}


.primary-menu ul.nav li i.fa {
    position: absolute;
    right: 15px;
    top: 21px;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.primary-menu ul.nav li:hover > i.fa {
    -webkit-transform: rotate(0);
    transform: rotate(0);
}

/*----------------------
4.2 Header-Search-Area
-----------------------*/

.search-popup-button {
    border: none;
    background: none;
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 46px;
    text-align: center;
    color: #334D88
}

.transparent-menu .search-popup-button {
    color: #ffffff;
}

.transparent-menu .affix .search-popup-button {
    color: #334D88;
}

.popup-search-form {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(51, 77, 136, 0.99);
    text-align: center;
}

.popup-search-form .info {
    color: #6679A5;
    padding: 30px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.popup-search-form .close-form {
    border: none;
    background: none;
    font-size: 30px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    color: #6679A5;
}

.popup-search-form .close-form:hover {
    color: #ffffff;
}

.popup-search-form .search-box {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.popup-search-form .search-box .search {
    background: none;
    border: none;
    padding: 10px 30px;
    height: 100px;
    font-size: 3em;
    color: #ffffff;
    width: 500px;
    max-width: 90%;
    text-align: center;
    font-weight: 700;
}

.popup-search-form .search-box .search-bttn {
    display: none;
}

.popup-search-form .search-box ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #ffffff;
}

.popup-search-form .search-box ::-moz-placeholder {
    /* Firefox 19+ */
    color: #ffffff;
}

.popup-search-form .search-box :-ms-input-placeholder {
    /* IE 10+ */
    color: #ffffff;
}

.popup-search-form .search-box :-moz-placeholder {
    /* Firefox 18- */
    color: #ffffff;
}

/*-----------------------
05. Site-Header
------------------------*/

.site-header {
    background-color: #334D88;
    color: #ffffff;
    padding-top: 120px;
    padding-bottom: 120px;
    text-align: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    position: relative;
}

.transparent-menu .site-header {
    padding-top: 140px;
    padding-bottom: 140px;
}

.site-header:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #334D88;
    opacity: 0.9;
}

.site-header .page-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
}

.site-header .sub-title {
    display: block;
    font-size: 18px;
    font-weight: 400;
}

.site-header .sub-title a:hover {
    color: #9cc038
}

/*----------------------
06. Blog-Page-Design 
-----------------------*/
.post-photo-gallery .owl-controls {
    margin-top: 0;
}

.post-photo-gallery .owl-controls .owl-buttons > div {
    position: absolute;
    left: 10px;
    top: calc(50% - 30px);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #9cc038;
    text-align: center;
    line-height: 60px;
    font-size: 18px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    opacity: 0;
}

.post-photo-gallery:hover .owl-controls .owl-buttons > div {
    opacity: 1;
}

.post-photo-gallery .owl-controls .owl-buttons > div.owl-next {
    left: auto;
    right: 10px;
}

.post-photo-gallery .owl-controls .owl-buttons > div:hover {
    background-color: #9cc038;
    color: #ffffff;
    -webkit-box-shadow: inset 0 0 4px 0 #9cc038;
    box-shadow: inset 0 0 4px 0 #9cc038;
}

.blog-area {
    position: relative;
    z-index: 2;
}

.post-single {
    border-radius: 3px;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    margin-bottom: 30px;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border: 1px solid #f7f2f1;
    background-color: #ffffff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.grid-posts .post-single,
.post-grid-two .post-single {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.grid-posts .post-single:hover,
.post-grid-two .post-single:hover {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 5px 30px 0 rgba(51, 77, 136, 0.07);
    box-shadow: 0 5px 30px 0 rgba(51, 77, 136, 0.07);
}

.blog-small .post-single {
    width: auto;
}

.blog-small .post-single .post-content {
    padding: 20px;
}

.blog-small .post-single .post-content .title {
    font-size: 20px;
}

.blog-small .post-single .post-content .bttn-more {
    margin-top: 0;
}

.post-title {
    font-size: 26px;
    color: #334D88;
    margin-bottom: 20px;
}

.posts-list .post-single.half-box {
    width: calc(50% - 30px);
}

.post-single .post-content {
    background-color: #ffffff;
    padding: 30px;
    position: relative;
    border-radius: 3px;
}

.post-single.sticky .post-content:before {
    content: "\f06d";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 60px;
    position: absolute;
    right: 30px;
    top: 5px;
    opacity: 0.2;
    color: #9cc038;
}

.post-single.half-box .post-thumb {
    max-height: 229px;
    overflow: hidden;
}

.post-single.half-box .post-content {
    padding: 30px;
}


.post-single.half-box .post-title {
    font-size: 20px;
}

.single-post .post-single {
    margin-bottom: 30px;
}

.post-meta {
    margin-bottom: 10px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(51, 77, 136, 0.50);
    display: block;
}

.post-meta a {
    color: rgba(51, 77, 136, 0.50)
}

.post-meta .meta-item {
    margin-right: 5px;
}

.post-meta .meta-item:after {
    content: '-';
    display: inline-block;
    font-size: 15px;
    margin-left: 8px;
    color: #334D88;
}

.post-meta .meta-item:last-child:after {
    display: none;
}

.post-footer-meta {
    width: 100%;
    display: block;
    background-color: #ffffff;
    padding: 30px 30px;
    border-radius: 3px;
    border: 1px solid #f7f2f1;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    margin-bottom: 30px;
}

.post-footer-meta .meta-item {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(51, 77, 136, 0.50);
    font-weight: 500;
}

.post-footer-meta .meta-item a {
    color: rgba(51, 77, 136, 0.50);
}

.post-footer-meta .meta-item a:hover {
    color: #9cc038;
}

.post-footer-meta .meta-item:last-child {
    margin-bottom: 0;
}

.post-footer-meta .meta-item > i {
    margin-right: 15px;
    font-size: 14px;
    color: rgba(51, 77, 136, 0.65);
}

/*--------------------
6.1 Post-Format-Quote
---------------------*/

.post-single.format-quote {
    text-align: center;
    font-size: 30px;
    font-style: italic;
    color: #334D88;
}

.post-single.format-quote .post-content:before {
    content: "\f10e";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
}

.post-single.format-quote blockquote {
    padding: 0;
    background: none;
    border: none;
    font-size: 30px;
    line-height: 40px;
    margin-bottom: 0;
}

.post-single.format-quote em {
    display: block;
    font-size: 15px;
}

/*--------------------
6.2 Post-Format-Link
---------------------*/

.post-single.format-link {
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    color: #334D88;
}

.post-single.format-link .post-content:before {
    content: "\f0c1";
    font-family: "FontAwesome";
    font-weight: 900;
    font-size: 30px;
    margin-bottom: 20px;
    display: block;
}

.post-single.format-link a {
    display: block;
    font-size: 15px;
}

/*--------------------------
6.3 Post-Password-Protected
--------------------------*/

.post-password-form {
    overflow: hidden;
}

.post-password-form label {
    margin-bottom: 0;
}

.post-password-form input[type="submit"] {
    border: 1px solid transparent;
    padding: 16px 30px;
    height: 50px;
    border-radius: 2px;
    background-color: #9cc038;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 700;
    display: block;
}

.post-password-form input[type="submit"]:hover {
    background-color: #22aa74;
}

.post-password-form input[type="password"] {
    height: 50px;
}

.page-contents:after {
    content: "";
    clear: both;
    display: block;
}

/*---------------------
6.4 Post-Timeline 28CC8B
----------------------*/
.timeline-post {
    position: relative;
    width: 100%;
}

.timeline-post .masonry-item {
    width: calc(50% - 30px);
    padding-left: 30px;
    margin-left: 30px;
    border-left: 1px solid #ededed;
    position: relative;
}

.timeline-post .masonry-item:after {
    position: absolute;
    left: 18px;
    top: 30px;
    content: "";
    width: 0;
    height: 0;
    border-right: 13px solid #9cc038;
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
}

.timeline-post .masonry-item:before {
    content: '';
    position: absolute;
    left: -10px;
    top: 33px;
    width: 20px;
    height: 20px;
    display: block;
    background-color: #ffffff;
    border: 1px solid #9cc038;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    border-radius: 50%;
}

.timeline-post .masonry-item:hover:before {
    background-color: #9cc038;
}

.timeline-post .post-title {
    font-size: 20px;
}

/*------------------
07. Post-Pagination
--------------------*/

.page-links .page-numbers,
.nav-links .page-numbers {
    width: 45px;
    height: 45px;
    margin: 0 5px;
    line-height: 45px;
    font-size: 16px;
    border: 1px solid #9cc038;
    color: #9cc038;
    display: inline-block;
    text-align: center;
    border-radius: 2px;
}

.page-links > .page-numbers,
.page-links a:hover .page-numbers,
.nav-links .page-numbers:hover,
.nav-links .page-numbers.current {
    background-color: #9cc038;
    border-color: #9cc038;
    color: #ffffff;
}

/*---------------------
7.1 Post-Navigation
----------------------*/

.nav-links {
    overflow: hidden;
}

.nav-links .nav-previous,
.nav-links .nav-next {
    width: calc(50% - 30px);
    margin-top: 50px;
}

.nav-links .nav-previous {
    float: left;
}

.nav-links .nav-next {
    float: right;
    text-align: right;
}

.nav-links .nav-previous span,
.nav-links .nav-next span {
    display: block;
}

.nav-links .meta-nav {
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.nav-links .post-title {
    font-size: 15px;
    font-weight: 400;
    color: rgba(51, 77, 136, 0.65);
}

/*----------------------
08. Sidebar-widget 
-----------------------*/

.sidebar .widget {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 3px;
    border: 1px solid #f7f2f1;
    overflow: hidden;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    margin-bottom: 30px;
}

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

.widget-title {
    color: #334D88;
    font-size: 22px;
    letter-spacing: 1.5px;
    position: relative;
    margin-bottom: 20px;
}

.widget-title:after {
    content: "";
    background-color: #9cc038;
    width: 5px;
    height: 100%;
    position: absolute;
    left: -30px;
    top: 0;
}

.footer-widget-title {
    font-size: 22px;
    letter-spacing: 1.5px;
    position: relative;
    margin-bottom: 20px;
}

.footer-widget-title:after {
    content: "";
    background-color: #9cc038;
    width: 50px;
    height: 4px;
    display: block;
    margin-top: 10px;
}

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

.widget ul li {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #DFE3EC;
    display: block;
}

.widget ul li a {
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}

.widget ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget ul ul {
    padding: 0;
    margin-top: 10px;
    margin-left: 7px;
    border-left: 1px solid #dfe3ec;
}

.widget ul li li {
    margin-bottom: 10px !important;
    padding-left: 10px;
}

/*--------------------
8.1 Search Box
---------------------*/

.search-box {
    position: relative;
}

body .search-box .search {
    margin-bottom: 0;
    height: 50px;
}

.search-box .search-bttn {
    border: none;
    background: none;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    background-color: #9cc038;
    color: #ffffff;
    border-radius: 0 3px 3px 0;
}

/*---------------------
8.2 WIdget-Recent-Post
----------------------*/

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

.widget.widget_recent_entries ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #DFE3EC;
    display: block;
}

.widget.widget_recent_entries ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget.widget_recent_entries ul li a {
    font-size: 17px;
    font-weight: 500;
}

.widget.widget_recent_entries .post-date {
    display: block;
    font-size: 15px;
    font-weight: 400;
    color: rgba(51, 77, 136, 0.65);
}

.widget.widget_recent_entries .post-date:before {
    content: "\f017";
    font-family: "FontAwesome";
    font-weight: 900;
    margin-right: 5px;
    color: rgba(51, 77, 136, 0.30);
}

/*------------------------
8.3 Widget-Recent-Comment
-------------------------*/

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

.widget.widget_recent_comments ul li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #DFE3EC;
    display: block;
}

.widget.widget_recent_comments ul li:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.widget.widget_recent_comments ul li a {
    font-weight: 500;
}

.comment-notes,
.comment-form .logged-in-as,
.comment-form .logged-in-as a,
.comment-list .comment-body .comment-author .says,
.comment-list .comment-body .comment-metadata a,
.widget.widget_recent_comments .comment-author-link {
    font-size: 15px;
    font-weight: 500;
    color: rgba(51, 77, 136, 0.65);
}

.comment-form .logged-in-as a:hover,
.comment-list .comment-body .comment-metadata a:hover,
.widget.widget_recent_comments .comment-author-link:hover {
    color: #9cc038;
}

.comment-form .logged-in-as a:hover,
.comment-list .comment-body .comment-metadata a:hover {
    color: #334D88
}

/*------------------------
8.4 Widget-Archives-Page
-------------------------*/

.widget.widget_nav_menu ul li a:before,
.widget.widget_pages ul li a:before,
.widget.widget_categories ul li a:before,
.widget.widget_archive ul li a:before {
    content: "\f187";
    font-family: "FontAwesome";
    font-weight: 900;
    margin-right: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 1);
}

.sidebar .widget.widget_nav_menu ul li a:before,
.sidebar .widget.widget_pages ul li a:before,
.sidebar .widget.widget_categories ul li a:before,
.sidebar .widget.widget_archive ul li a:before {
    color: rgba(51, 77, 136, 0.30);
}

/*------------------------
8.5 Widget-Categories
-------------------------*/

.widget.widget_categories ul li a:before {
    content: "\f07c";
}

/*------------------------
8.6 Widget-widget_nav_menu
-------------------------*/

.widget.widget_nav_menu ul li a:before {
    content: "\f0c1";
}

.footer-bottom .widget.widget_nav_menu ul li {
    display: inline-block;
    border: none;
    margin-right: 10px;
}

.footer-bottom .widget.widget_nav_menu ul li a:before {
    display: none;
}

/*------------------------
8.7 Widget-Tagcloud
-------------------------*/

.tagcloud a:after {
    content: "-";
    padding: 0 5px;
}

.tagcloud a:last-child:after {
    display: none;
}

/*------------------------
8.8 Widget-Pages
-------------------------*/

.widget.widget_pages ul li a:before {
    content: "\f15c";
}

/*------------------------
8.9 Widget-Calendar
-------------------------*/

.widget.widget_calendar #wp-calendar {
    width: 100%;
    margin-bottom: 0;
}

.widget.widget_calendar #wp-calendar caption {
    font-weight: 500;
    font-size: 15px;
    color: rgba(51, 77, 136, 0.65);
    padding-top: 0;
}

.widget.widget_calendar #wp-calendar #today {
    background-color: #334D88;
    color: #ffffff;
}

.widget.widget_calendar #wp-calendar #today a {
    color: #ffffff;
}

.widget.widget_calendar #wp-calendar th,
.widget.widget_calendar #wp-calendar td {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    color: rgba(51, 77, 136, 0.65);
}

.footer-area .widget.widget_calendar #wp-calendar #today,
.footer-area .widget.widget_calendar #wp-calendar th,
.footer-area .widget.widget_calendar #wp-calendar td,
.footer-area .widget.widget_calendar #wp-calendar caption {
    color: rgba(255, 255, 255, 0.8);
}

.footer-area .widget.widget_calendar #wp-calendar th,
.footer-area .widget.widget_calendar #wp-calendar td {
    border-color: rgba(255, 255, 255, 0.8);
}

.footer-area .widget.widget_calendar #wp-calendar #today {
    background-color: #ffffff;
    color: #334D88;
}

.footer-area .widget.widget_calendar #wp-calendar #today a {
    color: #334D88;
}

/*------------------------
8.10 Widget-Gallery
-------------------------*/
.widget_media_gallery .gallery,
.widget_media_gallery .gallery-item,
.widget_media_gallery .gallery-item img {
    margin-bottom: 0;
}

.widget_media_gallery .gallery-item img {
    width: 100%;
}

.widget_media_gallery .gallery-item a {
    display: block;
    position: relative;
}

.widget_media_gallery .gallery-item a:before,
.widget_media_gallery .gallery-item a:after {
    position: absolute;
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.widget_media_gallery .gallery-item:hover a:before,
.widget_media_gallery .gallery-item:hover a:after {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
}

.widget_media_gallery .gallery-item a:before {
    content: "";
    left: 5px;
    top: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background-color: #9cc038;
    border-radius: 2px;
}

.widget_media_gallery .gallery-item a:after {
    content: "\f0c1";
    font-family: 'fontawesome';
    left: calc(50% - 15px);
    top: calc(50% - 15px);
    color: #ffffff;
    font-size: 14px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
}

/*------------------------
8.11 Widget-Image
-------------------------*/
.widget_media_image img {
    width: 100%;
}

/*--------------------
09. Comment-Form 
---------------------*/

.comment-list-area,
.comment-respond {
    padding: 30px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    box-shadow: 0 0 30px 0 rgba(51, 77, 136, 0.07);
    border-radius: 3px;
}

.comment-respond {
    margin-bottom: 30px;
}

.comment-respond .comment-reply-title {
    margin-bottom: 15px;
}

.search-box .search,
.comment-form #author,
.comment-form #email,
.comment-form #url,
.comment-form #comment,
.subscribe-form .form-box {
    border: 1px solid #94A1C1;
    padding: 14px 15px;
    background-color: #F7F8FB;
    margin-bottom: 15px;
    border-radius: 2px;
    color: #6477A5;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.comment-form label {
    font-weight: 400;
    font-size: 15px;
    color: rgba(51, 77, 136, 0.65);
}

.comment-form .comment-form-author {
    width: calc(50% - 15px);
    float: left;
}

.comment-form .comment-form-email {
    width: calc(50% - 15px);
    float: right;
}

/*-------------------
10. comment-list 
--------------------*/

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

.comment-list .children {
    list-style: none;
    margin: 0 0 0 80px;
    padding: 0;
}

.comment-list .pingback,
.comment-list .comment {
    margin: 0;
    padding: 0;
}

.comment-list .comment-body {
    margin-bottom: 30px;
    padding: 15px 15px 10px 120px;
    position: relative;
    border: 1px solid #f7f2f1;
    border-radius: 5px;
    overflow: hidden;
}

.comment-list .pingback .comment-body {
    padding: 15px;
}

.comment-list .comment-body .comment-author img {
    position: absolute;
    left: 20px;
    top: 20px;
    width: 80px;
    height: 80px;
    border-radius: 3px;
    border: 1px solid rgba(112, 112, 112, 0.2);
    -webkit-box-shadow: 0 8px 15px 0 rgba(112, 112, 112, 0.3);
    box-shadow: 0 8px 15px 0 rgba(112, 112, 112, 0.3)
}

.comment-list .comment-body .comment-author .fn {
    font-weight: 500;
    color: #334D88;
    font-size: 18px;
}


.comment-list .comment-body .comment-metadata {
    line-height: 1;
    margin-bottom: 15px;
}

.comment-list .comment-body .comment-reply-link {
    color: #9cc038;
    float: right;
    font-weight: 400;
    font-size: 15px;
}

.comment-list .comment-body .comment-reply-link:before {
    content: "\f064";
    font-family: "FontAwesome";
    font-weight: 900;
    display: inline-block;
    -webkit-transform: rotateY(190deg);
    transform: rotateY(190deg);
    margin-right: 5px;
}

.comment-list .comment-body .comment-reply-link:hover {
    color: #334D88;
}

/*-------------------
11. Page-Loader
-------------------*/

.preloader {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 999999;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.lds-hourglass {
    display: inline-block;
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 100%;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 100%;
    width: 0;
    height: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 50px solid #334D88;
    border-color: #334D88 transparent #334D88 transparent;
    -webkit-animation: lds-hourglass linear 4s infinite;
    animation: lds-hourglass linear 4s infinite;
}


@-webkit-keyframes lds-hourglass {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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


@keyframes lds-hourglass {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

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


/*-----------------
12. Footer-area
-------------------*/

.footer-area {
    background-color: #334D88;
    background-image: url('images/dots.png');
    background-repeat: no-repeat;
    background-position: left bottom;
    color: #B0BAD1;
}

.footer-top {
    padding-top: 100px;
}

.footer-bottom {
    padding-top: 50px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-area .footer-widget-title {
    font-size: 22px;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-widget caption {
    color: #ffffff;
}

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

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

.footer-area ul li {
    display: block;
    margin-bottom: 10px;
}

.footer-area ul li a {
    color: #B0BAD1
}

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

.footer-area a {
    display: inline-block;
}

.footer-area ul li a:hover {
    color: #9cc038;
}

.footer-area .bttn-1 {
    color: #ffffff;
}

/*---------------------
13. ScrollUp-Button 
----------------------*/

a#scrollUp {
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background-color: #385494;
    text-align: center;
    line-height: 50px;
    color: #ffffff;
    border-radius: 100%;
}

a#scrollUp:hover {
    background-color: #729DFE;
    color: #ffffff;
}

/*-------------------------
14. Error-Page-desing
--------------------------*/
.error-area {
    padding: 200px 0;
    width: 100%;
    background-repeat: no-repeat;
    background-position: top 200px center;
    background-color: #334D88;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.error-area .error {
    position: relative;
    margin-bottom: -130px;
}

.error-area .post-title {
    color: #ffffff;
    font-size: 35px;
}

.single-portfolio-details .title {
    font-size: 20px;
    font-weight: 500;
    line-height: 20px;
    margin-bottom: 10px;
}

.menu-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}