/*
Theme Name: Romea WP
Theme URI: https://demo.cocobasic.com/romea-wp/
Description: Personal Portfolo WordPress theme. Online documentation you can find here - https://demo.cocobasic.com/documentation/MANUAL-RomeaWP.pdf
Author: CocoBasic
Author URI:  https://www.cocobasic.com
License: GNU General Public License v2.0
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Version: 1.5
Tags: grid-layout, four-columns, custom-colors, featured-images, threaded-comments, translation-ready, theme-options
Text Domain: romea-wp
*/


/*------------------------------------------------------------------
[Table of contents]
1. Global CSS       
2. Menu Holder CSS      
3. Blog Page CSS
4. Single Post CSS
5. Comments CSS
6. Contact Page CSS
7. Archive CSS / Search CSS / 404 Page CSS / Attachment Page
8. Footer CSS
9. Footer Widgets CSS
10. Responsive CSS
-------------------------------------------------------------------*/


/* ===================================
    1. Global CSS
====================================== */

*, 
::after, 
::before {
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 2;
    font-weight: 400;
    color: #000;
    background-color: #ebebeb;
    overflow-x: hidden;
}

body.cocobasic-open-menu {
    overflow: hidden;
}

.site-content a,
[data-elementor-type="wp-page"] a,
footer .elementor-text-editor a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    position: relative;    
    z-index: 0;
    transition: color .3s;
}

.site-content a:after,
[data-elementor-type="wp-page"] a:after,
footer .elementor-text-editor a:after {
    content: '';
    display: block;
    width: 102%;
    height: 6px;
    background-color: #96dfff;
    position: absolute;
    transition: bottom .3s;
    left: -1%;
    bottom: 1px;
    z-index: -1;
}

.site-content a:hover:after,
[data-elementor-type="wp-page"] a:hover:after,
footer .elementor-text-editor a:hover:after {
    bottom: -5px;
}

body img {
    max-width: 100%;    
    height: auto;
    display: block;
}

.doc-loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background-color: #ffffff;
}

.doc-loader img {
    width: 50px;
    height: 50px;
    position: absolute;
    top: 50%;    
    left: 50%;
    transform: translate(-50%, -50%);
}

p {
    margin-bottom: 30px;
}

select {
    max-width: 100%;
}

.content-holder {    
    margin-top: 30px;
    padding-bottom: 25px;    
    position: relative;
    z-index: 1;
}

.attachment .content-holder,
.page-template-default .content-holder,
.single .content-holder,
.error404 .content-holder {
    background-color: #fff;
    padding: 50px 0;
}

.content-1100 {
    width: 1100px;
    max-width: 95%;
}

.content-680 {
    width: 680px;
    max-width: 90%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Alata', sans-serif;
    font-weight: 400;
}

h1 a:hover,
h2 a:hover,
h3 a:hover,
h4 a:hover,
h5 a:hover,
h6 a:hover {
    color: #96dfff;
}

h1.entry-title.page-title {
    padding-top: 0;
    padding-bottom: 30px;
}

.section-info {
    font-size: 22px;
    line-height: 35px;
}

.animate {
    opacity: 0;
    transition: .5s transform ease-in, .5s opacity ease-in;
    -ms-transform: translate(0px,70px);
    -webkit-transform: translate(0px,70px);
    transform: translate(0px,70px); 
}

.animate.show-it {
    opacity: 1;
    -ms-transform: translate(0px,0px); 
    -webkit-transform: translate(0px,0px);
    transform: translate(0px,0px);  
}

.cocobasic-dark-section {
    background-color: #000;
}

.cocobasic-light-section {
    background-color: #fff;
}


/* ===================================
    2. Menu Holder CSS
====================================== */

.header-right-part-holder {
    position: fixed;
    z-index: 99 !important;
    width: 1150px !important;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    background-color: #000000;
}

.admin-bar .header-right-part-holder {
    top: 32px !important;
}

.header-full-menu {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    transition: all .4s ease;
    background-color: #000000;
    padding: 100px 0;
    transform: translateY(-100%);
    z-index: 98;
    overflow-y: auto;
    overflow-x: hidden;
}

.small-menu .header-full-menu {
    top: 77px;
    padding-top: 0;
}

.admin-bar.small-menu .header-full-menu {
    padding-top: 20px;
}

.cocobasic-open-menu .header-full-menu,
.cocobasic-open-menu-done .header-full-menu {
    transform: translateY(0px);
    opacity: 1;
}

.menu-wrapper {
    width: 1100px;
    max-width: 100%;
    transform: translateY(70px);
    opacity: 0;
    transition: all .5s .5s;
}

.cocobasic-open-menu .menu-wrapper {
    transform: translateY(0);
    opacity: 1;
}

.cocobasic-open-menu-done .menu-wrapper {
    transition-delay: 0s;
}

.custom-menu-title {
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 5px;
    margin-bottom: 60px;
}

.main-menu {
    max-width: 100%;
    background-color: transparent;
}

.menu-holder {
    float: left;
    width: 45%;
    margin-right: 5%;
}

.menu-text-holder {
    float: right;
    width: 50%;
    margin-top: 20px;
}

.header-logo {
    right: -60px;
    z-index: 2;
    position: absolute;
    top: 30px;
    width: auto;
}

.header-logo img {
    width: 60px;
}

.toggle-holder {
    right: -55px;
    z-index: 2;
    position: absolute;
    top: 170px;
}

#toggle:hover {
    cursor: pointer;
}

#toggle div {
    height: 3px;
    margin-bottom: 6px;
    background-color: #000;
    width: 17px;
    transition: all .3s linear;
}

#toggle div:first-of-type {
    width: 25px;
}

#toggle div:last-of-type {
    width: 30px;
}

#toggle:hover div {
    width: 30px;
}

.cocobasic-open-menu #toggle div, 
.cocobasic-open-menu-done #toggle div {
    background-color: #fff;
}

.cocobasic-open-menu #toggle div:first-of-type,
.cocobasic-open-menu-done #toggle div:first-of-type {
    transform: rotate3d(0,0,1,45deg) translate(4px,-1px);
    width: 20px !important;
    opacity: 1;
}

.cocobasic-open-menu #toggle div:nth-of-type(2), 
.cocobasic-open-menu-done #toggle div:nth-of-type(2) {
    width: 30px;
    transform: translateX(-11px);
}

.cocobasic-open-menu #toggle div:last-of-type,
.cocobasic-open-menu-done #toggle div:last-of-type {
    transform: rotate3d(0,0,1,-45deg) translate(4px,1px);
    width: 20px !important;
    opacity: 1;
}

.header-logo.add-background:after {
    content: "";
    background: #ebebeb;
    position: absolute;
    width: calc(100% + 20px);
    height: calc(100% + 70px);
    left: -10px;
    top: -10px;
    z-index: -1;
}

.small-menu .header-logo.add-background:after,
.cocobasic-open-menu .header-logo.add-background:after,
.cocobasic-open-menu-done .header-logo.add-background:after {
    display: none;
}


#header-main-menu {
    display: inline-block;
}

.sm ul {
    padding-left: 0;
}

.sm-clean a {
    position: relative;
}

.sm-clean a, 
.sm-clean a:hover, 
.sm-clean a:focus, 
.sm-clean a:active {
    font-family: 'Alata', sans-serif;
    color: #ffffff;
    padding: 5px 0;
    font-size: 40px;
    line-height: 125%;
    font-weight: 400;
    letter-spacing: -2px;
    transition: color .3s;
}

.sm-clean > li > a:after {
    content: '';
    display: block;
    width: 0;
    height: 10px;
    background-color: #96dfff;
    transition: width .3s;
    position: absolute;
    left: -5px;
    bottom: 10px;
    z-index: -1;
}

.sm-clean .active a:after, 
.sm-clean a:hover:after, 
.sm-clean ul a:hover:after {
    width: calc(100% + 10px);
}

.sm-clean a span.sub-arrow {
    color: #bbbbbb;
    font-size: 45px !important;
    left: -42px;
}

.sm-clean a span.sub-arrow:before {
    display: block;
    content: '\203A';
    transform: rotate(90deg);
}

.sm-clean a.highlighted span.sub-arrow:before {
    display: block;
    content: '\203A';
    transform: rotate(270deg) translateY(-3px);
    margin-left: -10px;
}

.sm-clean .sub-menu li a,
.sm-clean .children li a {
    color: #bbbbbb;
    text-transform: uppercase;
    font-size: 15px;
    line-height: 10px;
    padding: 10px 0;
    letter-spacing: 0.5px;
    font-weight: 400;
}

.sm-clean .sub-menu li a:hover, 
.sm-clean .sub-menu li a.current, 
.sm-clean .children li a:hover, 
.sm-clean .children li a.current {
    color: #fff;
}


/* ===================================
    3. Blog Page CSS
====================================== */

.blog .content-holder {
    padding-bottom: 50px;
}

.blog-holder > article {
    margin-bottom: 75px;
    width: 860px;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.blog-holder > article:last-of-type {
    margin-bottom: 0 !important;
}

.blog-item-holder {
    text-align: center;
}

.blog-item-holder img {    
    margin: 0 auto 20px;
}

.blog-item-holder .entry-holder {
    width: 100%;
    position: relative;
    background-color: #fff;
    padding: 50px;
}

.blog-item-holder .post-thumbnail {
    margin-bottom: 45px;
}

.blog-item-holder h2.entry-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    max-width: 800px;
    padding: 0;
    word-break: break-word;
    margin: 0 auto;
    position: relative;
}

.blog-item-holder h2.entry-title a:after {
    display: none;
}

.entry-info {
    list-style: none;
    margin-top: 0;
    display: inline-flex;
    justify-content: center;
    width: 100%;
    padding: 0;
}

.entry-info li {
    text-align: center;
    font-weight: 600;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;    
}

.entry-info > li + li {
    margin-left: 25px;
}

ul.cat-links {
    padding: 0;
    list-style: none;    
}

ul.cat-links > li {
    margin-bottom: 5px;
    display: inline-block;
    width: auto;
}

ul.cat-links > li:last-child {
    margin-bottom: 0;
}

ul.cat-links > li:after {
    content: ",";
    margin-right: 5px;
}

ul.cat-links > li:last-child:after {
    display: none;
}

.more-posts-index-holder {
    text-align: center;
    min-height: 1px;
    margin-top: 80px;
    margin-left: auto;
    margin-right: auto;
}

.more-posts, 
.no-more-posts, 
.more-posts-loading {
    color: #000;
    font-size: 12px;
    position: relative;
    font-weight: 600;
    letter-spacing: 5px;
    display: inline-block;
}


.more-posts span, 
.no-more-posts span,
.more-posts-loading span { 
    transition: .3s;
    display: inline-block;
    margin-left: 50px;
}

.more-posts:hover span, 
.no-more-posts:hover span, 
.more-posts-loading span {
    transform: translateX(-8px);
}

.more-posts {
    cursor: pointer;
    transition: .35s ease-out;
}

.more-posts:before,
.no-more-posts:before, 
.more-posts-loading:before {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    background: transparent;
    border-radius: 90%;
    top: -4px;
    position: absolute;
    transition: .3s;
}

.more-posts:hover:before, .no-more-posts:hover:before, .more-posts-loading:before {
    width: calc(100% + 30px);
    height: 52px;
    border-radius: 50px;
    top: -15px;
}

.more-posts {
    cursor: pointer;   
}

.more-posts-loading, 
.no-more-posts {
    display: none;
    cursor: auto;
}


/* ===================================
    4. Single Post CSS
====================================== */

.single .content-holder {
    padding-bottom: 1px;
}

.single h1.entry-title {
    font-size: 32px;
    line-height: 120%;
    width: 800px;
    max-width: 90%;
    text-align: center;
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    padding: 0;
    margin: 0 auto;
}

.single .attachment-post-thumbnail {
    margin: 0 auto 40px auto;
    max-width: 970px;    
}

.single .entry-info {
    margin: 20px 0 40px 0;
    padding: 0 5%; 
}

.single .entry-content {
    width: 680px;
    margin: 0 auto;
    max-width: 90%;
}

.tags-holder {
    margin: 30px 0;
    display: inline-block;
}

body .tags-holder a  {
    border: 2px solid #191919;
    color: #fff;
    text-decoration: none;
    margin-right: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    padding: 7px 17px 6px 20px;
    font-size: 10px;
    text-transform: uppercase;
    background-color: #000000;
    transition: all .3s ease;
    letter-spacing: 3px;
    font-weight: 600;
}

body .tags-holder a:after {
    display: none;
}

.tags-holder a:last-of-type {
    margin-right: 0;
}

.tags-holder a:hover {
    background-color: transparent !important;
    color: #000000;
}

.wp-link-pages {
    clear: both;
}

.wp-link-pages > * {
    color: #fff;
    margin: 0 5px;
    font-size: 16px;
    min-width: 30px;
    min-height: 30px;
    display: inline-block;
    text-align: center;
}

.wp-link-pages > a:after {
    display: none;
}

.wp-link-pages > a:hover {
    color: #96dfff;
}

.wp-link-pages > span {
    padding: 1px 4px;
    background-color: #96dfff;
}

.single .nav-links {
    margin-top: 70px;
    margin-bottom: 70px;
    position: relative;
    width: 930px;
    max-width: 95%;
}

.single .nav-links:before {
    content: "";    
    display: block;
    position: absolute;
    background-color: #000;
    width: 2px;
    height: 100%;    
    left: 50%;
    margin-left: -2px;
}

.single .nav-previous {
    display: inline-block;
    text-align: right;
    float: inherit;
    width: 44%;
}

.single .nav-next {
    display: inline-block;
    float: right;
    width: 44%;
    text-align: left;
}

.nav-links p {
    font-size: 10px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 5px;
}

.nav-previous a, 
.nav-next a {
    color: #000;
    font-size: 20px;
    line-height: 140%;
    word-break: break-word;
    font-weight: 500;
    transition: .3s;
}

.nav-previous a:after, 
.nav-next a:after {
    display: none;
}

.nav-previous a:hover, 
.nav-next a:hover {
    opacity: 0.8;
}


/* ===================================
    5. Comments CSS
====================================== */

#comments {
    background-color: #e2e2e2;
}

#comments-wrapper {
    padding-top: 50px;    
}

ol.comments-list-holder {
    margin: 0;
}

ol.comments-list-holder > li:last-child {
    padding-bottom: 15px;
}

.comments-holder ol.comments-list-holder, 
.comments-holder ul.children {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.comments-holder ul.children {
    position: relative;
}

.comments-holder ul.children:before {
    content: "";
    width: 2px;
    height: 50px;
    background-color: #c5c5c5;
    position: absolute;
    left: 34px;
    top: 10px;
    left: 3.75em;
}

.vcard img {
    border-radius: 100px;
}

.comments-holder .comment-author-date-replay-holder {
    margin-left: 95px;
    padding-top: 8px;
    padding-left: 0;
    letter-spacing: 2px;
    line-height: 160%;
}

.comments-holder .pingback,
.comments-holder .trackback {
    padding-bottom: 60px;
}

.comments-holder .pingback .comment-author-date-replay-holder, 
.comments-holder .pingback .comment-text,
.comments-holder .trackback .comment-author-date-replay-holder, 
.comments-holder .trackback .comment-text {
    margin-left: 0;
}

ul.comment-author-date-replay-holder li {
    display: inline-block;
}

ul.comment-author-date-replay-holder li.comment-author {
    max-width: 90%;
    font-weight: 600;
    text-transform: uppercase;
}

.comment-date {
    margin-left: 95px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    margin-bottom: 20px;
}

.trackback .comment-date,
.pingback .comment-date {
    margin-left: 0;
    margin-top: 5px;
    margin-bottom: 10px;
}

.comment-reply {
    float: right;
}

a.comment-reply-link {
    text-decoration: none;
    position: relative;
}

.comments-number {
    font-size: 24px;
    line-height: 25px;    
    text-align: center;
}

.comment-content-holder {
    margin-left: 50px;
}

.comment-content-holder {
    width: 470px;
}

.comment-time-separator {
    display: inline-block;
    margin: 0 20px;
}

.comment-text {
    clear: both;
    display: block;
    margin-left: 95px;
}

.comment-text p {
    display: inline;
    font-size: 15px;
    line-height: 200%;
}

.replay-at-author {    
    margin-right: 8px;
    font-weight: 600;
    position: relative;
    display: inline-block;
    z-index: 0;
    text-transform: uppercase;
}

#reply-title {   
    font-size: 20px;    
}

#cancel-comment-reply-link {
    font-size: 13px;
    padding-left: 15px;
}

#reply-title a:after {
    display: none;
}

#cancel-comment-reply-link:before {
    content: "-";
    padding-right: 5px;
}

.comment-time {
    display: inline-block;
    font-size: 14px;
}

.comment {
    padding-bottom: 80px;
    list-style: none;
    margin: 0;
    padding-left: 0;
}

.children .comment {    
    padding-top: 80px;
    padding-bottom: 0;
}

.comment:last-child {
    padding-bottom: 0;
}

.comments-list-holder .children > li {
    padding-left: 1.75em;
}

.logged-in-as {
    margin-bottom: 50px;
    color: #96dfff;
}

.comment-form-holder {
    padding-top: 50px;
    padding-bottom: 10px;
}

#commentform #email, 
#commentform #author, 
#commentform #comment {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
    border: 0;
    border-bottom: 2px solid;
    font-size: 20px;
    line-height: 30px;
    width: 100%;
    padding: 0;
    margin-bottom: 40px;
    background-color: transparent;
}

.input-default-text {
    color: #000;
    font-size: 15px;
    font-weight: 400;
    position: absolute;
    top: 0;
    left: 0;
    transition: all .3s;
    z-index: -1;
}

.input-default-text.has-content {
    top: -20px;
    font-size: 11px;
}

#commentform #email, 
#commentform #author {
    padding-bottom: 5px;
}

#commentform #email {
    margin-bottom: 35px;
}

#commentform #comment {
    height: 150px;
}

.form-submit {
    display: inline-block;
    position: relative;
    text-align: left;
    margin-bottom: 30px;
}

.form-submit input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    border: none;
    height: 52px;
    width: calc(100% + 50px);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    background-color: transparent;
}

.form-submit:after {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    background: transparent;
    border-radius: 90%;
    left: 0;
    top: 10px;
    position: absolute;
    transition: .3s;
}

.form-submit:hover input[type=submit] {

    margin-left: 4px;
}

.form-submit:hover:after {
    width: calc(100% + 50px);
    height: 52px;
    border-radius: 50px;
    top: 0px;
}

.comment-form-cookies-consent {    
    font-size: 12px;
    line-height: 18px;
    margin-bottom: 35px;
}

.comment-form-cookies-consent input {
    float: left;
}

.comment-form-cookies-consent:after {
    content: "";
    display: block;
    clear: both;
}


/* ===================================
    6. Contact Page CSS
====================================== */

.wpcf7-form {    
    margin: 0 auto;
}

.wpcf7-form p {
    margin-bottom: 0;
    z-index: 0;
}

.wpcf7-form .input-default-text {
    top: 8px;
}

.wpcf7-form input[type=text], 
.wpcf7-form input[type=email], 
.wpcf7-form textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 25px;
    font-weight: 600;
    color: #000000;
    background-color: transparent;
    width: 100%;
    height: 28px;
    border: 0;
    border-bottom: 3px solid;
    padding-top: 0;
    padding-bottom: 0px;
    margin-bottom: 22px;
    margin-top: 13px;
    -webkit-box-sizing: initial;
    box-sizing: initial;
}

.wpcf7-form textarea {
    height: 150px;
}

.wpcf7-form input[type=submit] {
    font-family: 'Montserrat', sans-serif;
    border: none;
    height: 52px;
    width: calc(100% + 50px);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 5px;
    margin-left: 15px;
    position: relative;
    z-index: 1;
    transition: all .3s;
    background-color: transparent;
}


.wpcf7-form .contact-submit-holder {
    position: relative;
    margin-bottom: 30px;
    display: inline-block;
}

.wpcf7-form .contact-submit-holder:after {
    content: "";
    width: 30px;
    height: 30px;
    border: 2px solid #000;
    background: transparent;
    border-radius: 90%;
    left: 0;
    top: 10px;
    position: absolute;
    transition: .3s;
}

.wpcf7-form .contact-submit-holder:hover:after {
    width: calc(100% + 50px);
    height: 52px;
    border-radius: 50px;
    top: 0px;
}

.wpcf7-form .contact-submit-holder:hover input {
    margin-left: 4px;
}

.wpcf7-form .input-default-text.has-content {
    top: -9px;
    font-size: 11px;
}

span.wpcf7-not-valid-tip {
    color: #000000;
    background-color: #96dfff;
    padding: 3px 10px;
    font-size: 10px;
    position: absolute;
    top: -7px;
    right: 0;
}    

.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
    color: #000000;
    background-color: #96dfff;
    border: 2px solid #96dfff;
    width: 100%;
    margin: 0;
    padding: 0.2em 1em;
    font-size: 12px;
    text-align: center;
    position: absolute;
    bottom: -40px;
    margin: 0 !important;
}

[data-elementor-device-mode="mobile"] div.wpcf7-response-output {
    position: initial;
    margin: 2em 0.5em 1em !important;
}

span.wpcf7-list-item {
    margin: 0;
}

div.wpcf7 .ajax-loader {
    display: none !important;
}


/* ===================================
    7. Archive CSS / Search CSS / 404 Page CSS / Attachment Page
====================================== */

.archive .content-holder,
.search .content-holder {
    background-color: #E2E2E2;
}

.archive .navigation.pagination, 
.search .navigation.pagination {
    margin-top: 75px;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 500;
}

.search .nav-links > *,
.archive .nav-links > * {
    padding: 0 5px;
}

.search .nav-links a, 
.archive .nav-links a {
    color: #000000;
}

.search .nav-links a:hover, 
.archive .nav-links a:hover {
    color: #000000;
}

.search .nav-links .current,
.archive .nav-links .current {
    color: #ffffff;
    background-color: #000;
    padding: 7px 12px;
    margin: 0 2px;
}

.archive .blog-holder > article, 
.search .blog-holder > article {
    margin-bottom: 70px;
    max-width: 90%;
}

.archive-title {
    margin-bottom: 90px;
    text-align: center;
    background-color: #000000;
    padding: 25px 70px;
    margin-left: auto;
    margin-right: auto;
}

.archive .archive-title {
    padding: 22px 70px 26px;
}

.archive-title h1 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    padding: 0;
    display: inline;
    transition: color .35s ease-out;
}

.archive-title h1 span {
    position: relative;
    font-weight: 700;
}

.archive-title h1 span:before {
    content: '';
    position: absolute;
    bottom: -5px;    
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: .35s ease-out;
}

.search .archive-title h1:before {
    display: none;
}

.search .archive-desc {
    color: #fff;
}

.search .archive-title h1 .search-text {
    letter-spacing: 0;
    text-transform: none;
}

.search .archive-title h1 .searched-text {
    position: relative;
    font-weight: 700;
    overflow: hidden;
}

.search .archive-title h1 .searched-text:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #fff;
    transition: .35s ease-out;
}

.search-no-results h2 {
    text-align: center;
}

.error-text-help-first {
    font-size: 36px;
    line-height: 40px;
}

.error-text-help-second {
    font-size: 26px;
    line-height: 34px;
    max-width: 460px;
    margin: 0 auto;
}

.error-text-404 {
    font-weight: 700;
    font-size: 350px;
    line-height: 100%;    
}


/* ===================================
    8. Footer CSS
====================================== */

footer {
    color: #000000;
    padding: 35px 0;
}

footer a {
    color: #000;
    text-decoration: none;    
    transition: opacity .3s;
}


/* ===================================
    9. Footer Widgets CSS
====================================== */

#sidebar {
    margin: 0 auto;
    padding-top: 50px;
    font-size: 14px;
    line-height: 180%;
}

#sidebar:after {
    content: "";
    display: table;
    clear: both;
}

#sidebar p {
    margin-bottom: 12px;
}

#sidebar > ul {
    float: left;
    width: 45%;
}

#sidebar #footer-sidebar-1 {
    margin-right: 10%;
}

#sidebar .widget li {
    margin-bottom: 10px;
}

footer select {
    background-color: #ebebeb;
    padding: 5px;
    border-color: #000;
}

.widget a {    
    position: relative;
    font-weight: 600;
}

.widget a:after {
    content: '';
    display: block;
    width: 102%;
    height: 6px;
    background-color: #96dfff;
    position: absolute;
    transition: bottom .3s;
    left: -1%;
    bottom: 1px;
    z-index: -1;
}

.widget a:hover:after {
    bottom: -5px;
}

#sidebar ul {
    padding-left: 0;
    margin: 0;
    margin-bottom: 0;
    list-style: none;
    margin-top: 0;
}

#sidebar ul.children,
#sidebar ul.sub-menu {
    margin-top: 10px;
    margin-left: 10px;
}

#sidebar .tagcloud a {
    line-height: 160%;
    display: inline-block;
}

h4.widgettitle {
    font-size: 14px;
    text-transform: uppercase;
    padding-top: 0;
    padding-bottom: 12px;
    letter-spacing: 2px;
}

#sidebar li.widget {
    margin-bottom: 50px;
    overflow: hidden;
}

#sidebar li.widget:last-child {
    margin-bottom: 0;
}

.search-field {
    font-family: 'Montserrat', sans-serif;
    color: #000;
    padding: 0;
    margin-top: -3px;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid;
    text-align: left;
    transition: border 0.4s ease;
    -webkit-appearance: none;
}

.search-field::-webkit-input-placeholder {
    font-family: 'Montserrat', sans-serif;  
    color: #000;  
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

.search-field:-ms-input-placeholder {
    font-family: 'Montserrat', sans-serif;  
    color: #000;  
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

.search-field::placeholder {
    font-family: 'Montserrat', sans-serif;    
    color: #000;
    padding: 5px 0;
    font-size: 14px;
    line-height: 180%;
    font-weight: 400;
    opacity: 1;
    text-align: left;
}

#sidebar table, 
#sidebar th, 
#sidebar td {
    padding: 5px;
}

#sidebar .wp-calendar-table {
    width: 100%;
    text-align: center;
}

#sidebar .wp-calendar-table caption {
    background-color: #000;
    border: 1px solid #000;
    color: #fff;
    padding: 8px 0;
    font-weight: 600;
}

#sidebar .wp-calendar-table th, 
#sidebar .wp-calendar-table td {
    display: table-cell;
    border: 1px solid #000000;
}

#sidebar nav.wp-calendar-nav {
    display: table;
    width: 100%;
}

#sidebar .wp-calendar-nav-prev,
#sidebar .wp-calendar-nav-next {    
    display: table-cell;
}

#sidebar .wp-calendar-nav-next {
    text-align: right;
}

/* ===================================
    10. Responsive CSS
====================================== */

@media screen and (max-width: 1365px) {

    .header-right-part-holder {
        width: 101% !important;   
        z-index: 99 !important;
        height: 77px;
    }    

    .header-right-part {
        max-width: 1100px;
        position: relative;
        height: 100%;
        margin: 0 auto;
    }

    .header-logo {
        top: 0;
        left: 30px;
        right: auto !important;
    }        

    .header-logo img {
        width: 40px !important;
    }

    .toggle-holder {
        right: 20px !important;
        left: auto;
        top: 50% !important;
        transform: translateY(-50%);
    }

    body #toggle div {
        background-color: #fff;
    }

    .menu-wrapper {
        padding-left: 55px;
        padding-top: 40px;
    }

    .blog-item-holder .entry-holder {
        display: block;
    }

    .more-posts-index-holder {
        margin-top: 60px;
    }     

    .single .attachment-post-thumbnail {
        max-width: 95%;
    }

    .single .nav-links {
        margin-top: 50px;
        margin-bottom: 50px;
    }        

    .comments-holder .pingback,
    .comments-holder .trackback {
        padding-bottom: 30px;
    }    

}

@media screen and (max-width: 900px) {

    .menu-holder {
        float: none;
        width: 95%;
        margin-bottom: 0;
    }

    .menu-text-holder {
        float: none;
        width: 95%;
    }

}

@media screen and (max-width: 782px) {

    .admin-bar .header-right-part-holder {
        top: 46px !important;
        transition: top .3s ease;
    }    

    .admin-bar .menu-holder {
        top: 123px;
    }

}

@media screen and (max-width: 767px) {

    .custom-menu-title {
        margin-bottom: 30px;
    }

    .sm-clean a, 
    .sm-clean a:hover, 
    .sm-clean a:focus, 
    .sm-clean a:active {
        font-size: 35px;
    }

    .blog-item-holder .entry-holder {
        padding: 30px;
    }   

    .blog-item-holder .post-thumbnail {
        margin-bottom: 25px;
    }

    .blog-holder > article {
        margin-bottom: 65px;
    }    

    .blog-item-holder.sticky {
        width: 100%;
        margin-left: 0;
    }  

    .archive-title {
        margin-bottom: 50px;
    }

    .archive-title h1 {
        font-size: 22px;
    }

    .archive .navigation.pagination, 
    .search .navigation.pagination {
        margin-top: 50px;
    }

    .error-text-404 {
        font-size: 90px;
    }    

    .single .nav-links:before {
        display: none;
    }    

    .single .nav-previous, 
    .single .nav-next {
        display: block;
        width: 95%;
        text-align: center;
        float: none;
        margin-left: auto;
        margin-right: auto;
    }

    .single .nav-previous a, 
    .single .nav-next a {
        float: none;
    }

    .single .nav-previous {    
        padding-bottom: 40px;
    }

    .comment-form-holder {
        padding-top: 0;
    }

    .comment {
        padding-bottom: 50px;
    }

    .replay-at-author {
        font-size: 14px;       
    }

    .comment-text p {
        font-size: 14px;
        line-height: 180%;
    }

    #sidebar {
        padding-top: 0;
        padding-bottom: 20px;
    }

    .single #sidebar {
        padding-top: 40px;
    }      

    #sidebar > ul {
        float: none;
        width: 100%;
        margin-right: 0;
    }  

    #sidebar #footer-sidebar-1 {
        margin-right: 0;
        margin-bottom: 50px;
    }

}

@media screen and (max-width: 650px) {   

    .admin-bar .menu-wrapper {
        top: 0;
    }

    .admin-bar .is-sticky .menu-holder {
        padding-top: 75px;
    }

    .menu-social a {
        margin-left: 22px;
    }

    .page-template-default .content-holder, 
    .single .content-holder {
        padding: 5px 0;
    }

    .single h1.entry-title,     
    h1.entry-title.page-title {
        font-size: 25px;
        margin-top: 20px;
    }

    .blog-item-holder h2.entry-title {
        font-size: 25px;
    }     

    .entry-info {
        display: block;
        margin-bottom: 15px;
    }

    .entry-info > li + li {
        margin-left: 0;
        margin-top: 5px;
    } 

    blockquote.wp-block-quote {
        font-size: 20px;
    }    

    .comments-list-holder .children > li {
        padding-left: 0.75em;
    }

    .comments-holder ul.children:before {
        left: 2.75em;
    }

    .comments-holder .comment-author-date-replay-holder,
    .comment-date {
        margin-left: 90px;
    }    

    .comment-text {
        margin-left: 0;
        margin-top: 25px;   
    }

}

@media screen and (max-width: 600px) {

    .admin-bar .is-sticky .header-right-part-holder {
        top: 0px !important;
    }

}