/*
 *
 *		STYLE.CSS
 *
 *	+ TYPOGRAPHY
 *	+ GRID
 *	+ HEADER
 *	 - LOGO
 *	 - MENU
 *	 - MOBILE MENU
 *	 - PAGE TITLE
 *	 - BREADCRUMB
 *	+ FOOTER
 *	 - POST LIST
 *	 - FOOTER CATEGORY POSTS
 *	 - SEARCH
 *	 - WIDGETS
 *	 - FOOTER LINKS
 *	 - COPYRIGHT
 *	+ BUTTON
 *	+ CATEGORY POSTS
 *	+ ARTICLE POST
 *	+ POST DETAILS
 *	+ SIMILAR POST
 *	+ COMMENTS LIST
 *	+ COMMENT FORM
 *	+ PAGINATION
 *	+ LOGIN FORM
 *	+ NEWSLETTER
 *	+ 404
 *
 */

/***********************************************************************************
 *	+ TYPOGRAPHY
 ***********************************************************************************/

@font-face {
    font-family: 'Trebuchet MS';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Trebuchet MS Regular'), local('Trebuchet MS Regular'),
    url(../fonts/trebuchet-ms/trebuchet-ms-regular.woff2) format('woff2'),
    url(../fonts/trebuchet-ms/trebuchet-ms-regular.woff) format('woff'),
    url(../fonts/trebuchet-ms/trebuchet-ms-regular.eot) format('eot'),
    url(../fonts/trebuchet-ms/trebuchet-ms-regular.ttf) format('ttf');
}

@font-face {
    font-family: 'Trebuchet MS';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Trebuchet MS Bold'), local('Trebuchet MS Bold'),
    url(../fonts/trebuchet-ms/trebuchet-ms-bold.woff2) format('woff2'),
    url(../fonts/trebuchet-ms/trebuchet-ms-bold.woff) format('woff'),
    url(../fonts/trebuchet-ms/trebuchet-ms-bold.eot) format('eot'),
    url(../fonts/trebuchet-ms/trebuchet-ms-bold.ttf) format('ttf');
}

@font-face {
    font-family: 'Droid Sans';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: local('Droid Sans Regular'), local('Droid Sans Regular'),
    url(../fonts/droid-sans/droid-sans-regular.woff2) format('woff2'),
    url(../fonts/droid-sans/droid-sans-regular.woff) format('woff'),
    url(../fonts/droid-sans/droid-sans-regular.eot) format('eot'),
    url(../fonts/droid-sans/droid-sans-regular.ttf) format('ttf');
}

@font-face {
    font-family: 'Droid Sans';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: local('Droid Sans Bold'), local('Droid Sans Bold'),
    url(../fonts/droid-sans/droid-sans-bold.woff2) format('woff2'),
    url(../fonts/droid-sans/droid-sans-bold.woff) format('woff'),
    url(../fonts/droid-sans/droid-sans-bold.eot) format('eot'),
    url(../fonts/droid-sans/droid-sans-bold.ttf) format('ttf');
}

body {
    background-color: #fdfdfd;
    color: #636060;
    font: 400 16px/18px "Trebuchet MS", Arial, Helvetica, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #5da127;
    font-family: "Droid Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
}

h1 {
    font-size: 35px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 30px;
}

h4 {
    font-size: 22px;
}

h5 {
    font-size: 18px;
}

h6 {
    font-size: 16px;
}

p {
    margin-bottom: 20px;
}

strong {
    font-weight: 700;
}

.text-body-color {
    color: #636060;
}

.text-default {
    color: #5da127;
}

.text-default-2 {
    color: #366920;
}

.hr {
    border-bottom: 1px solid #e0e0e0;
    margin: 7px 0;
}

/* LINKS */
a {
    color: #5da127;
}

a:hover,
a:focus {
    outline: 0;
    color: #396318;
}

/* IMAGES */
img {
    max-width: 100%;
    height: auto;
}

/* LISTS */
ul,
ol {
    padding: 0;
    list-style-position: inside;
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 20px;
}

dl {
    margin-bottom: 20px;
}

.screen-reader-text {
    display: none;
}

/* FORMS */
input {
    height: 28px;
    padding: 4px 6px;
    border: 1px solid #e0e0e0;
    margin-bottom: 10px;
    color: #555555;
}

input[type="radio"],
input[type="checkbox"] {
    height: auto;
}

input:focus {
    border-color: #aaaaaa;
    outline: 0;
}

.input-group ul {
    width: 100%;
}

.input-group ul li input[type="radio"] {
    position: relative;
    top: 1px;
    margin-top: 0;
    margin-right: 5px;
}

/***********************************************************************************
 *	+ GRID
 ***********************************************************************************/

@media (min-width: 1200px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl {
        max-width: 1170px;
    }

}

/***********************************************************************************
 *	+ HEADER
 ***********************************************************************************/

#header {
    border-top: 1px solid #78951f;
    border-bottom: 1px solid #387510;
    background: linear-gradient(to bottom, #427f0f, #336227);
    background: -webkit-linear-gradient(to bottom, #427f0f, #336227);
    background: -ms-linear-gradient(to bottom, #427f0f, #336227);
}

/* LOGO */
#logo {
    margin: 17px 0;
}

/* MENU */
.menu,
.menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.menu {
    display: flex;
    justify-content: flex-end;
}

.menu > li {
    position: relative;
    padding-right: 15px;
    margin-right: 15px;
}

.menu > li:after {
    position: absolute;
    top: 2px;
    right: 0;
    height: 15px;
    border-right: 1px solid #5da127;
    content: "";
}

.menu > li:last-child {
    padding-right: 0;
    margin-right: 0;
}

.menu > li:last-child:after {
    display: none;
}

.menu li a {
    margin: 0 25px;
    color: #b2b2b2;
    font: 16px/20px "Droid Sans", Arial, Helvetica, sans-serif;
    text-decoration: none;
}

.menu > li > a {
    position: relative;
    margin: 0;
    color: #ffffff;
    transition: all 0.25s;
}

.menu li.dropdown ul {
    position: absolute;
    top: 45px;
    left: 0;
    display: none;
    z-index: 2000;
    padding: 25px 0;
    width: 275px;
    background-color: #224308;
}

.menu li a:hover {
    color: #ffffff;
}

.menu > li > a:hover,
.menu > li.sfHover > a,
.menu > li > a.active {
    text-decoration: underline;
}

@media (max-width: 991px) {

    ul.menu {
        display: none;
    }

}

/* MOBILE MENU */
.select-menu {
    display: none;
    width: 100%;
    height: 30px;
    padding: 5px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    background-color: #e4e4e4;
    color: #555555;
}

@media (max-width: 991px) {

    .select-menu {
        display: block;
    }

}

@media (max-width: 767px) {

    .select-menu {
        margin-bottom: 20px;
    }

}

/* PAGE TITLE */
.page-title {
    padding: 40px 0;
    margin-bottom: 30px;
}

.page-title h1 {
    margin-bottom: 20px;
}

.page-title small {
    color: #999999;
}

/* BREADCRUMB */
.breadcrumb {
    padding: 8px 13px 9px;
    border: 1px solid #e0e0e0;
    border-radius: 0;
    margin-bottom: 10px;
    background-color: #ffffff;
    font-size: 15px;
}

.breadcrumb-item:first-child a {
    color: #b1b1b1;
}

.breadcrumb-item.active {
    color: #5da127;
}

.breadcrumb-item + .breadcrumb-item:before {
    position: relative;
    top: -1px;
    float: none;
    font-size: 13px;
}

@media (max-width: 767px) {

    .breadcrumb {
        display: inline-block;
    }

    .breadcrumb-item {
        display: inline;
        word-wrap: break-word;
    }

}

/***********************************************************************************
 *	+ FOOTER
 ***********************************************************************************/

#footer {
    border-top: 1px solid #e0e0e0;
    margin-top: 50px;
    background-color: #f5f5f5;
}

/* POST LIST */
.post-list {
    padding-top: 35px;
}

.post-list h4 {
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px #ffffff;
}

.post-list .category-posts-internal li {
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
}

.post-list .category-posts-internal li:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

.post-list .category-posts-internal .cat-post-thumbnail {
    max-width: 80px !important;
    margin-right: 10px;
    margin-bottom: 10px;
}

.post-list .category-posts-internal .cat-post-thumbnail .wp-post-image {
    max-height: 80px;
    padding: 4px;
    border: 1px solid #e0e0e0;
    background-color: #ffffff;
    transition: all 0.2s;
}

.post-list .category-posts-internal .cat-post-thumbnail:hover .wp-post-image {
    opacity: 0.5;
}

.post-list .category-posts-internal .cat-post-title {
    width: calc(100% - 90px);
    margin-top: 5px;
    margin-bottom: 0;
    color: #2089c8;
    font: 14px/20px 'Droid Sans', sans-serif;
}

.post-list .category-posts-internal .cat-post-date {
    position: relative;
    top: 0;
    background-color: transparent;
    color: #787878;
    line-height: 20px;
    text-align: left;
}

/* FOOTER CATEGORY POSTS */
.footer-category-post {
    padding-top: 35px;
}

.footer-category-post h4 {
    margin-bottom: 15px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px #ffffff;
}

.footer-category-post .category-posts-internal .cat-post-title {
    width: 100%;
    margin: 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.footer-category-post .category-posts-internal .cat-post-date {
    position: relative;
    top: 0;
    background-color: transparent;
    color: #787878;
    line-height: 20px;
}

/* SEARCH */
.search-form input[type="search"] {
    display: block;
    width: 220px;
}

.search-form label {
    margin-bottom: 0;
}

.search-form .search-submit {
    height: auto;
    padding: 4px 20px;
    border: none;
    border-radius: 1px;
    margin-left: 15px;
    background: linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -webkit-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -ms-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    color: #ffffff;
    font: 14px "Droid Sans", sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #e1a200;
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

.search-form .search-submit:hover {
    color: #414141;
}

.search-form .search-submit:focus {
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

@media (max-width: 991px) {

    .search-form input[type="submit"] {
        margin-left: 0;
    }

}

/* WIDGETS */
.widget h4 {
    margin: 35px 0 25px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px #ffffff;
}

.youtube-posts ul {
    margin-bottom: 0;
    list-style: none;
}

.youtube-posts ul li {
    margin-bottom: 10px;
}

.youtube-posts ul li:last-child {
    margin-bottom: 0;
}

.categories {
    margin-bottom: 48px;
}

.categories ul {
    font: 13px/31px "Droid Sans", Arial, sans-serif;
    list-style: none;
}

.categories ul li {
    border-bottom: 1px dotted #e0e0e0;
}

.categories ul li a {
    color: #787878;
}

/* RECENT POSTS */
.category-posts-internal {
    list-style: none;
    margin-bottom: 48px;
}

.category-posts-internal li > div:first-child {
    position: relative;
}

.category-posts-internal .cat-post-thumbnail {
    float: left;
    display: block;
    max-width: 130px !important;
    margin: 5px 20px 30px 0;
}

.category-posts-internal .cat-post-thumbnail .wp-post-image {
    position: relative;
    max-height: 100px;
}

.category-posts-internal .cat-post-date {
    position: absolute;
    top: 100px;
    right: 0;
    left: 0;
    width: 130px;
    background-color: #5da127;
    color: #ffffff;
    font-size: 15px;
    line-height: 32px;
    text-align: center;
}

.category-posts-internal .cat-post-title {
    display: inline-block;
    width: calc(100% - 150px);
    margin: 10px 0 5px;
    font: 700 14px/20px 'Droid Sans', sans-serif;
}

.category-posts-internal .cpwp-wrap-text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: initial;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    padding-bottom: 0;
}

.category-posts-internal p {
    margin-bottom: 0;
}

@media (max-width: 991px) {

    .category-posts-internal .cat-post-thumbnail .wp-post-image {
        float: none;
    }

    .category-posts-internal .cat-post-title {
        width: 100%;
    }

}

/* FOOTER LINKS */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}

.footer-links li {
    position: relative;
    padding: 6px 13px;
}

.footer-links li:after {
    position: absolute;
    top: 10px;
    right: 0;
    height: 12px;
    border-right: 1px solid #787878;
    content: "";
}

.footer-links li:last-child:after {
    display: none;
}

.footer-links li a {
    font-family: "Droid Sans", Arial, sans-serif;
    font-size: 13px;
    color: #787878;
}

.footer-links li a.active {
    text-decoration: underline;
}

/* COPYRIGHT */
.copyright {
    padding: 6px 0 8px;
    border-top: 1px solid #e0e0e0;
    margin-top: 10px;
    background-color: #e9e9e9;
    color: #9f9f9f;
    font: 700 13px "Droid Sans", Arial, sans-serif;
    text-shadow: 1px 1px 1px #ffffff;
}

.copyright a {
    color: inherit;
}

@media (max-width: 991px) {

    .copyright {
        text-align: center;
        padding-bottom: 20px;
    }

}

/***********************************************************************************
 *	+ BUTTON
 ***********************************************************************************/

.btn {
    height: auto;
    padding: 9px 15px;
    border: none;
    border-radius: 1px;
    background: linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -webkit-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -ms-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    color: #ffffff;
    font: 14px "Droid Sans", sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #e1a200;
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

.btn:hover {
    color: #414141;
}

.btn:focus {
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

/***********************************************************************************
 *	+ CATEGORY POSTS
 ***********************************************************************************/

.category-posts {}

.category-posts h3 {
    margin-bottom: 40px;
    letter-spacing: -1px;
    text-shadow: 1px 1px 1px #ffffff;
    white-space: nowrap;
}


.category-posts .category-posts-internal .cat-post-thumbnail {
    float: none;
    max-width: 100% !important;
    margin: 0;
}

.category-posts .category-posts-internal .cat-post-thumbnail .wp-post-image {
    max-height: none;
}

.category-posts .category-posts-internal .cat-post-title {
    width: 100%;
    margin: 5px 0;
    font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 400;
}

@media (max-width: 991px) {

    .category-posts {
        margin-top: 30px;
    }

}

/***********************************************************************************
 *	+ ARTICLE POST
 ***********************************************************************************/

.article-post {
    margin-bottom: 60px;
}

.article-post:after {
    display: table;
    clear: both;
    content: "";
}

.article-post .post-header {
    margin-bottom: 30px;
}

.article-post .post-header h2 {
    font-size: 30px;
}

.article-post .post-thumb {
    float: left;
    width: 310px;
    padding: 4px;
    border: 1px solid #e0e0e0;
    margin: 5px 20px 10px 0;
    background-color: #ffffff;
}

@media (max-width: 991px) {

    .article-post .post-thumb {
        float: none;
        width: 100%;
    }

}

/***********************************************************************************
 *	+ POST DETAILS
 ***********************************************************************************/

.post-details {
    margin-bottom: 50px;
}

.post-details .post-thumb {
    padding: 4px;
    border: 1px solid #e0e0e0;
    margin-bottom: 40px;
    background-color: #ffffff;
}

.post-details .post-metadata ul {
    display: flex;
    align-items: center;
    font-size: 90%;
    list-style: none;
}

.post-details .post-metadata ul li {
    display: flex;
    align-items: center;
}

.post-details .post-metadata ul li:after {
    position: relative;
    top: 1px;
    display: inline-block;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    margin: 0 5px;
    background-color: #636060;
    content: "";
}

.post-details .post-metadata ul li:last-child:after {
    display: none;
}

.post-details .post-metadata ul li.author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    margin-right: 5px;
}

.post-details > h2 {
    margin-bottom: 15px;
}

.post-details > h5 {
    margin-bottom: 0;
    color: #636060;
}

.post-details .wp-caption {
    max-width: 100%;
}

.post-details .wp-caption .wp-caption-text {
    padding: 5px 4px;
    background-color: #dddadb;
    font-weight: 700;
    text-align: center;
}

.post-details .special-link {
    display: block;
    padding: 16px;
    margin: 20px 0;
    background-color: #ffffff;
}

.post-details .special-link span:first-child {
    color: #414141;
    font-weight: 700;
    text-transform: uppercase;
}

.post-details .special-link span:last-child {
    position: relative;
    color: #27ae60;
}

.post-details .special-link span:last-child:after {
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    display: block;
    border-bottom: 2px solid #27ae60;
    content: "";
}

.post-details .special-link:hover {
    text-decoration: none;
}

.post-details h3 a {
    color: #ffcc00;
}

.post-details h3 a:hover {
    text-decoration-color: #366920;
}

.post-details .meta-group {
    font-size: 14.7px;
    list-style: none;
}

.post-details .meta-group li {
    display: inline-block;
    padding: 2px 5px;
    line-height: 22px;
    text-transform: capitalize;
}

.post-details .meta-group li i {
    margin-right: 10px;
    color: #d8d8d8;
}

.post-details .meta-group li.category {
    letter-spacing: -1px;
}

.post-details .meta-group li.date {
    color: #b1b1b1;
}

.post-details .meta-group li.author a {
    color: #787878;
    text-transform: uppercase;
}

.post-details .post-author {
    padding: 20px 20px 5px 20px;
    border: 1px solid #e0e0e0;
    margin: 20px 0 50px;
    background-color: #ffffff;
    font-size: 14px;
}

.post-details .post-author > p {
    font-family: "Droid Sans", Arial, sans-serif;
}

.post-details .post-author > p a {
    color: inherit;
}

.post-details .post-author .author-details {
    font-size: 12px;
    line-height: 18px;
}

.post-details .post-author .author-details p {
    margin-bottom: 10px;
}

.post-details .post-author .author-details a {
    color: #5da127;
}

@media (max-width: 767px) {

    .post-details .meta-group {
        margin-bottom: 0;
    }

    .post-details .meta-group:last-child {
        margin-bottom: 20px;
    }

    .post-details .meta-group li {
        display: block;
    }

    .post-details .post-author .author-details {
        margin-top: 20px;
    }

}

/***********************************************************************************
 *	+ SIMILAR POST
 ***********************************************************************************/

.similar-post {
    margin-bottom: 30px;
}

.similar-post a {
    color: #626262;
    font-family: "Droid Sans", Arial, sans-serif;
}

.similar-post .post-thumb {
    display: block;
    padding: 4px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    background-color: #ffffff;
}

/***********************************************************************************
 *	+ COMMENTS LIST
 ***********************************************************************************/

.comments-list,
.comments-list ul {
    list-style: none;
}

.comments-list {
    margin-bottom: 70px;
}

.comments-list ul {
    margin-left: 25px;
}

.comments-list li .comment-body {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 20px;
    border: 1px solid #e0e0e0;
    margin-bottom: 15px;
    background-color: #ffffff;
}

.comments-list li .comment-meta {
    width: 90px;
    margin-right: 20px;
}

.comments-list li .comment-meta .comment-author {
    white-space: nowrap;
}

.comments-list li .comment-content {
    margin-top: 5px;
    width: calc(100% - 110px);
}

.comments-list li .reply {
    margin-left: auto;
}

.comments-list .comment-metadata {
    position: absolute;
    bottom: 30px;
    right: 85px;
}

.comments-list .comment-metadata a {
    margin-right: 25px;
    color: #b1b1b1;
    font-size: 13px;
    font-weight: 700;
}

.comments-list li .comment-author img {
    display: block;
    width: 80px;
    height: 80px;
    margin: 5px 0 40px 0;
}

.comments-list li .comment-author a,
.comments-list li .comment-author span {
    font-size: 13px;
    text-transform: uppercase;
}

.comments-list li .comment-reply-link {
    float: right;
    height: auto;
    padding: 9px 15px;
    border: none;
    border-radius: 1px;
    background: linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -webkit-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    background: -ms-linear-gradient(to bottom, #fcbe28 0%, #ffb400 100%);
    color: #ffffff;
    font: 14px "Droid Sans", sans-serif;
    text-transform: uppercase;
    text-shadow: 1px 1px 1px #e1a200;
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

.comments-list li .comment-reply-link:hover {
    color: #414141;
}

.comments-list li .comment-reply-link:focus {
    box-shadow: 0 0 0 1px #fdd678, 0 0 0 2px #f1aa00;
}

    /***********************************************************************************
     *	+ COMMENT FORM
     ***********************************************************************************/

.comment-form {
    margin-bottom: 20px;
}

.comment-form .form-group {
    margin-bottom: 15px;
}

.comment-form .form-group input,
.comment-form .form-group textarea {
    padding: 7px 10px;
    border: 1px solid #e0e0e0;
    margin-bottom: 0;
    font-size: 12px;
}

.comment-form .form-group input {
    width: 50%;
    height: 36px;
}

.comment-form .form-group textarea {
    width: 100%;
}

.comment-form .form-group input:focus,
.comment-form .form-group textarea:focus {
    border-color: #aaaaaa;
}

@media (max-width: 767px) {

    .comment-form .form-group input {
        width: 100%;
    }

}

/***********************************************************************************
 *	+ PAGINATION
 ***********************************************************************************/

.pagination {
    justify-content: center;
}

.pagination .nav-links {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pagination .page-numbers {
    padding: 4px 12px;
    border: 1px solid #dddddd;
    background-color: #ffffff;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.pagination .page-numbers:hover {
    background-color: #f5f5f5;
    color: #396318;
    text-decoration: none;
}

.pagination .page-numbers.current {
    background-color: #f5f5f5;
    color: #999999;
    pointer-events: none;
}

.pagination .page-numbers:first-child {
    border-radius: 4px 0 0 4px;
}

.pagination .page-numbers:last-child {
    border-radius: 0 4px 4px 0;
}

.pagination .page-numbers + .page-numbers {
    border-left: none;
}

/***********************************************************************************
 *	+ LOGIN FORM
 ***********************************************************************************/

.login-form {
    margin: 70px 0;
}

.login-form h3 {
    margin-bottom: 15px;
}

.login-form .form-group {
    display: flex;
    margin-bottom: 10px;
}

.login-form .form-group label {
    width: 30%;
}

.login-form .form-group input[type="text"],
.login-form .form-group input[type="password"] {
    width: 70%;
    height: 18px;
    border-radius: 3px;
}

.login-form input[type="checkbox"] {
    height: auto;
}

@media (max-width: 991px) {

    .login-form .form-group {
        display: block;
    }

    .login-form .form-group label,
    .login-form .form-group input[type="text"],
    .login-form .form-group input[type="password"] {
        width: 100%;
    }

}

/***********************************************************************************
 *	+ NEWSLETTER
 ***********************************************************************************/

.newsletter {
    padding: 15px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.newsletter h4 {
    margin-bottom: 10px;
}

.newsletter small {
    font-size: 11px;
}

.newsletter .asterix {
    color: #e85c41;
    font-size: 150%;
}

.newsletter p .asterix {
    position: relative;
    top: 5px;
}

.newsletter .form-group {
    margin-bottom: 30px;
}

.newsletter input[type="radio"] {
    height: auto;
    margin-bottom: 0;
    margin-right: 5px;
}

.newsletter .form-group input {
    display: block;
    width: 100%;
    height: 35px;
    padding: 8px 12px;
    border: 1px solid #abb0b2;
    border-radius: 3px;
    color: #555555;
}

.newsletter .form-group input:focus {
    border-color: #333333;
}

.newsletter button {
    padding: 0 20px;
    border: none;
    border-radius: 4px;
    margin-top: 20px;
    background-color: #aaaaaa;
    color: #ffffff;
    font-size: 15px;
    line-height: 32px;
}

.newsletter button:hover {
    background-color: #777777;
}

@media (max-width: 767px) {

    .newsletter {
        padding: 15px;
    }

    .newsletter h4 {
        font-size: 20px;
    }

}

/***********************************************************************************
 *	+ 404
 ***********************************************************************************/

#error-404 {
    padding: 100px 0 80px;
}

#error-404 span.error-404 {
    display: block;
    color: #5da127;
    font-size: 200px;
    line-height: 1.2em;
    font-weight: 400;
    text-align: center;
}

#error-404 h1 {
    margin-bottom: 0;
    font-size: 48px;
}