* {
    font-family: "Montserrat", sans-serif;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: #000000;
    color: #fff;
    overflow-x: hidden;
}

html, body, div, table {
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
}

.container {
    max-width: 1430px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

h1, h2, h3, h4, h5, h6 {
    -ms-word-wrap: break-word;
    word-wrap: break-word;
    word-break: break-word;
}

i {
    font-family: "Font Awesome 6 Brands"!important;
}

.fa-facebook {
    background: #4E71A8;
}

.share-buttons{
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
    position: relative;
}

.share-buttons span{
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: 0;
    font-weight: bold;
    font-size: 14px;
}

.share-buttons .share-buttons-links{
    display: flex;
    gap: 12px;
    align-items: center;
    position: absolute;
    bottom: 0;
    transition: all 0.5s;
    opacity: 0;
}

.share-buttons-links a{
    display: flex;
}

.share-buttons .share-buttons-links.open-share-links{
    bottom: -40px;
    opacity: 1;
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }
}
@media (max-width: 1200px) {
    .container {
        max-width: 970px;
    }
}
@media (max-width: 992px) {
    .container {
        max-width: 750px;
    }
}
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }

    .share-buttons {
        display: flex;
        margin-left: auto;
        justify-content: center;
    }

    .share-buttons span{
        display: none;
    }

    .share-buttons .share-buttons-links {
        position: relative;
        opacity: 1;
    }
}

.header {
    z-index: 100;
    position: fixed;
    background: #00000094;
    max-width: 100%;
    width: 100%;
    height: 100px;
	transition: all 0.5s;
}

.header.scroll{
	background-color: #192026;
}

.header__inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: 100%;
    min-height: 100px;
}

.header__inner:after {
    content: "";
    display: block;
    border-bottom: 2px dashed #FFF;
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    zoom: 1;
    filter: alpha(opacity = 20);
    -webkit-opacity: 0.2;
    -moz-opacity: 0.2;
    opacity: 0.2;
}

.header__logo {
    display: flex;
}

.header__logo-image {
    max-width: 100%;
    width: 100%;
    min-width: 160px;
    max-height: 80px !important;
    object-fit: contain;
}

.header__menu-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 44px;
    padding: 0 22px;
    list-style: none;
}

.header__menu-items li a {
    font-size: 16px;
    font-weight: 600;
    color: inherit;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s;
}

.header__menu-items li a:hover {
    color: #D7B65D;
}

.header__menu .current-menu-item a {
    color: #D7B65D;
}

.header__inner-block-phone a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    min-width: 170px;
    padding: 4px 12px;
    background-color: #D7B65D;
    color: #192026;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
}

.header__inner-block-phone a span{
    position: relative;
    z-index: 3;
    transition: all 0.5s;
}

.header__inner-block-phone a:hover span{
    color: #FFF;
}

.header__inner-block-phone a::before{
    content: '';
    position: absolute;
    width: 0%;
    height: 100%;
    left: 0;
    background-color: #192026;
    transition: all 0.5s;
    z-index: 2;
}

.header__inner-block-phone a:hover{
    color: #fff;
}

.header__inner-block-phone a svg path{
    transition: all 0.5s;
}

.header__inner-block-phone a:hover svg path{
    fill: #FFF;
}

.header__inner-block-phone a:hover:before{
    width: 100%;
}

.header__inner-block-phone a svg{
    width: 8px;
    height: 8px;
    position: relative;
    z-index: 3;
}

.mobile__menu {
    display: none;
}

.header__burger {
    display: none;
    min-width: 27px;
}

.blog-post {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
/*     padding-top: 100px; */
    padding-bottom: 160px;
    background-color: #FFF;
    color: #192026;
	
	.blog-post-item, .blog-post-sidebar {
		margin-top: 150px;
	}
}


.blog-post h2 {
    margin: 54px 0 16px;
    font-size: 36px;
    line-height: 1.2em;
    font-weight: 500;
}

.blog-post h3 {
    margin: 54px 0 16px;
    font-size: 24px;
    font-weight: 600;
    color: #000000;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
	margin-bottom:20px;
}

.blog-post p {
    margin-bottom: 30px;
}

.blog-post .container {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
}

.blog-post .wp-block-list{
    padding-left: 40px;
}

.blog-post-item {
    max-width: 1016px;
    width: 100%;
    padding-left: 15px;
}

.blog-post-sidebar {
    max-width: 363px;
    width: 100%;
    padding-right: 15px;
}

@media (max-width:768px){
    .blog-post-sidebar{
        display: none;
    }

    .blog-post-item {
        padding-left: 0;
    }

    .blog-post h2{
        font-size: 36px;
    }
}

.blog-post-sidebar .wp-block-heading {
    margin: 84px 0 16px;
}

.blog-post-sidebar {
    position: relative;
    background-repeat: no-repeat;
    background-position: 110% 50px;
    border-radius: 0;
    background-clip: border-box;
}

.blog-post-sidebar .content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 40px 30px 71px;
    background-color: #F5F5F5;
}

.blog-post-sidebar .widget_archive ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.blog-post-sidebar .widget_archive ul a {
    margin: 0;
    padding: 0;
    list-style: none;
    color: inherit;
}

.blog-post-sidebar ul li a{
    color: #192026;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0;
    font-weight: 400;
    transition: all 0.5s;
}

.blog-post-sidebar ul li a:hover{
    color: #D7B65D;
}

.wp-block-search__label {
    width: 100%;
    text-align: start;
    display: block;
    font-size: 14px;
    padding-left: 0px;
    margin-bottom: -2px;
}

.blog-post-sidebar .wp-block-search__input{
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 24px 25px 24px 25px;
    color: #000000;
    background-clip: padding-box;
    box-shadow: none !important;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-clip: border-box;
    font-weight: 400;
    letter-spacing: var(--font-main-letterspacing);
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    outline: 0 none;
    box-sizing: border-box;
}

.blog-post-sidebar .wp-block-search__button{
    position: relative;
    overflow: hidden;
    background-clip: border-box !important;
    transform: scale(1);
    transition: background 0.25s, color 0.25s, border 0.25s !important;
    border-radius: 0px;
    font-weight: 500;
    letter-spacing: -0.5px;
    font-size: 14px;
    max-width: max-content;
    height: max-content;
    min-width: 165px;
    padding: 12px 38px 12px 38px;
    display: inline-flex;
    -webkit-box-pack: center;
    justify-content: center;
    border: 0px solid #D7B65D;
    color: #192026;
    background-color: #D7B65D;
    margin: 0 auto;
}

.blog-post-thumbnail {
    position: relative;
    display: block;
    margin: 0 0 15px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-clip: border-box;
    max-width: 100%;
    width: 100%;
    max-height: 650px;
    overflow: hidden;
}

.blog-post-meta {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 0px 0px 0px 0px;
    border-bottom: 2px dashed rgba(0, 0, 0, 0.15);
    position: relative;
    color: #192026;
    opacity: 0.55;
    font-size: 12px;
    font-weight: bold;
}

.blog-post-meta .blog-post-info{
    display: flex;
    gap: 25px;
}

.blog-post-meta .blog-post-comments, .blog-post-meta .blog-post-views{
    top: 0px;
    position: relative;
    font-size: 12px !important;
    color: #192026;
    opacity: 1;
    display: flex;
    gap: 6px;
    align-items: center;

}

.blog-post-meta .blog-post-comments svg,.blog-post-meta .blog-post-views svg{
    width: 12px;
    height: 12px;
}

.blog-post-meta .blog-post-comments svg path,.blog-post-meta .blog-post-views svg path{
    fill:#D7B65D;
}



.blog-post-thumbnail img {
    max-width: 100%;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.blog-post-content {
    padding: 0 10px;
}

.blog-post-sidebar .wp-block-search__inside-wrapper  {
    display: flex;
    flex-direction: column;
	gap: 20px;
}

.blog-post-sidebar .wp-block-search__inside-wrapper .wp-block-search__button {
    position: relative;
    overflow: hidden;
    -webkit-background-clip: border-box !important;
    -moz-background-clip: border-box !important;
    background-clip: border-box !important;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: background 0.25s, color 0.25s, border 0.25s !important;
    -moz-transition: background 0.25s, color 0.25s, border 0.25s !important;
    -o-transition: background 0.25s, color 0.25s, border 0.25s !important;
    transition: background 0.25s, color 0.25s, border 0.25s !important;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-clip: border-box;
    font-weight: 500;
    font-size: 14px;
    padding: 12px 38px 12px 38px;
    min-width: 165px;
    display: inline-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    color: #192026;
    background-color: #D7B65D;
	margin:unset;
}

.blog-post .blog-info-post-bottom {
    margin-top: 40px;
    padding: 14px 0px 11px;
    margin-bottom: 0px;
    position: relative;
    border-top: 2px dashed rgba(0, 0, 0, 0.15);
}

.blog-post .comments-title {
    margin: 80px 0 20px;
    padding-bottom: 16px;
    position: relative;
    color: #192026;
    font-size: 36px;
    text-align: center;
}

.blog-post .comments-title:before {
    content: "";
    width: 230px;
    height: 2px;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #192026;
    border-color: rgba(0, 0, 0, 0.05);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blog-post .comments-title:after {
    content: "";
    width: 70px;
    height: 2px;
    position: absolute;
    bottom: 0;
    border-bottom: 2px solid #D7B65D;
    border-color: #D7B65D;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.blog-post .comment-form textarea {
    width: 100%;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: #F5F5F5;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 24px 25px 24px 25px;
    color: #000000;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    font-weight: 400;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: 0 none;
}

.comment-form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

.blog-post .comment-form-comment {
    margin-bottom: 20px;
}

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

.form-submit {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 0 auto;
}

.comment-form-comment {
    max-width: 100%;
    width: 100%;
}

.comment-submit {
    margin: 0 !important;
    min-width: 240px;
    font-size: 16px;
    padding: 23px 38px 23px;
    position: relative;
    overflow: hidden;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: background 0.25s, color 0.25s, border 0.25s;
    -moz-transition: background 0.25s, color 0.25s, border 0.25s;
    -o-transition: background 0.25s, color 0.25s, border 0.25s;
    transition: background 0.25s, color 0.25s, border 0.25s;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background-clip: border-box;
    font-weight: 500;
    display: inline-flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    border: 0px solid #D7B65D;
    color: #192026;
    background-color: #D7B65D;
}

.comments-area-info {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 30px;
    max-width: 100%;
    width: 100%;
}

.comment-form-author,
.comment-form-email,
.comment-form-url {
    max-width: 100%;
    width: 100%;
}
.comment-form-author input,
.comment-form-email input,
.comment-form-url input {
    max-width: 100%;
    width: 100%;
    display: block;
    margin: 0 auto;
    font-size: 16px;
    padding: 24px 25px 24px 25px;
    color: #000000;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    font-weight: 400;
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    outline: 0 none;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background-color: #F5F5F5;
}

.comment-form-cookies-consent {
    font-size: 14px;
    padding-left: 0;
    margin-bottom: -2px;
}

@media (max-width:991px){
    .header__burger{
        display: block;
    }
}

.footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100%;
    padding-top: 50px;
    padding-bottom: 25px;
    background-color: #0F0E0E;
}

.footer__inner {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 20px;
    max-width: 100%;
    width: 100%;
}

.footer__copyright {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    max-width: 80%;
    width: 100%;
    padding: 10px;
}

.copyright_top {
    font-size: 14px;
}

.copyright_bottom {
    font-size: 10px;
}

.footer__menu {
    max-width: 12%;
    width: 100%;
}

.footer__inner ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    list-style: none;
}

.footer__inner ul li {
    max-width: 100%;
    width: 100%;
    text-align: left;
}

.footer__inner ul li a {
    font-size: 12px;
    font-weight: 500;
    line-height: 0px;
    letter-spacing: 2px;
    color: #fff;
    text-decoration: none;
}

.go-top {
    display: none;
    position: fixed;
    left: 30px;
    bottom: 30px;
    background-color: #D7B65D;
    color: #fff;
    z-index: 10;
    zoom: 1;
    transition: all 0.2s ease;
    text-align: center;
    padding: 0 15px;
    font-size: 16px;
    font-weight: bold;
    pointer-events: auto;
cursor:pointer;
}

.go-top::before {
    content: "↑"; /* Unicode-Pfeil */
    font-size: 16px;
    display: block;
    text-align: center;
cursor: pointer;
}

.go-top.visible {
    display: block;
}

#chaty-widget-0 .chaty-widget {
    bottom: 100px!important;
}

.error-404{
    min-height: 90vh;
    background-color: #FFFFFF;
    display: flex;
    justify-content: center;
}

.error-404 .page-content{
    padding: 150px 0 160px;
    justify-items: center;
}

.error-404 .page-title{
    font-size: 48px;
    margin: 0 0 24px;
    color: #192026;
    line-height: 1.3em;
    font-weight: 500;
}

.error-404 p{
    max-width: 400px;
    margin: 0 auto 36px;
    font-size: 16px;
    line-height: 1.7em;
    font-weight: 400;
    color: #192026;
}

.error-404 a{
    padding: 20px 30px 20px;
    min-width: 280px;
    font-size: 18px;
    font-weight: 500;
    background-color: #D7B65D;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #192026;
    transition: all 0.25s;
}

.error-404 a:hover{
    color: #FFF;
}

@media screen and (min-width: 1600px) {
    .header__inner {
        max-width: 1570px;
    }
}

@media (max-width: 1199px) {
    .header__inner {
        width: 86%;
    }
}

@media screen and (max-width: 991px) {
    .header__menu {
        display: none;
    }
    .mobile__menu {
        /*display: flex;*/
        position: absolute;
        top: 0;
        left: 0;
        background: #192026;
        width: 100%;
        height: 100vh;
    }
    .mobile__menu .header__menu-items {
        display: flex;
        flex-direction: column;
    }
    .footer__inner {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 20px;
        max-width: 100%;
        width: 100%;
        align-items: flex-start;
    }
    .footer__copyright {
        max-width: 100%;
        width: 100%;
    }
    .footer__menu {
        align-self: center;
        justify-items: center;
        max-width: 100%;
        width: 100%;
padding: 10px;
    }
    }

    .error-404 .page-title {
        font-size: 24px;
    }

    .error-404 p{
        max-width: 400px;
        margin: 0 auto 36px;
        text-align: center;
    }

    .error-404 a{
        padding: 16px 30px;
        min-width: 200px;
    }
}

@media (max-width:768px){
    .header__inner {
        width: 100%;
    }
}

#popup-message {
  position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
  background: #4CAF50; /* зелёный фон */
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  display: none;
  z-index: 9999;
  font-size: 16px;
}



@media (max-width:768px){
.blog-post .wp-block-list{
    padding-left: 15px;
}
 }


.search-results {
	background: #fff;
}

.search-results-container {
    display: flex;
    justify-content: space-between;
    margin: 40px auto;
    padding-top: 150px;
max-width: 1570px;
    
}


.search-results h1 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

.search-list {
    list-style: none;
    padding: 0;
}

.search-list li {
    padding: 15px;
    border-bottom: 1px solid #eee;
    transition: background 0.3s ease-in-out;
}

.search-list li:hover {
    background: #f9f9f9;
}

/* Заголовки найденных записей */
.search-list h2 {
    font-size: 20px;
    margin: 0;
}

.search-list h2 a {
    color: #D7B65D;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .search-list h2 a:hover {
    color: #004e7a;
} */

.search-list p {
    font-size: 16px;
    color: #555;
}

.pagination {
    text-align: center;
    margin-top: 20px;
}

.pagination a {
    display: inline-block;
    padding: 8px 12px;
    margin: 0 5px;
    color: #0073aa;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
}

.pagination a:hover {
    background: #0073aa;
    color: #fff;
}



@media (max-width: 1024px) {
    .search-results-container {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
        margin-top: 20px;
    }
}


@media (max-width:768px){
.go-top {
    left: 30px;
    width: 30px;
    max-width: 30px;
    padding: unset;
 }
 }
