/*!
Theme Name: clay
Theme URI: http://underscores.me/
Author: designkey
Author URI: https://www.designkey.studio/
Description: Design Key: AI-Driven Software Developmen and UX Solutions
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: clay
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

clay is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
    font-family: 'Nocturne Serif Regular';
    src: url('./src/fonts/nocturne/nocturne_regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Nocturne Serif Italic';
    src: url('./src/fonts/nocturne/nocturne_italic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

h1 {
    font-family: 'Nocturne Serif Regular', sans-serif;
}
ul{
	list-style: none;
}

*, *::before, *::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
	font-family: "Inter", serif;
	overflow-x: hidden;
}
a{
	text-decoration: none;
}
button{
	cursor: pointer;
	background: transparent;
}
.container{
	max-width: 1280px;
	width: 100%;
	padding: 0 15px;
	margin: 0 auto;
}


.btn{
	border-radius: 40px;
	padding: 8px 20px;
	display: flex;
	align-items: center;
	font-family: Inter;
	font-size: 16px;
	border: 2px solid #1E1E1E;
	font-weight: 500;
	transition: border-color .4s ease 0s, background-color .4s ease 0s;
}
.btn.btn-black{
	background: #1E1E1E;
	color: #fff;
}
.btn.btn-black:hover{
	background: #fff;
	color: #1E1E1E;
}




header.header .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

header.header .wrap .navigation-wrap{
	display: flex;
	align-items: center;
	gap: 25px;
}
header.header .wrap .navigation-wrap .btn{
    padding: 10px 20px;
    font-size: 16px;
}
header.header .wrap .navigation-wrap button{
    background: none;
    border: none;
    width: 60px;
    display: flex;
    height: 60px;
    align-items: center;
}
header{
	padding: 10px 0;
}
.hidden {
    display: none;
}

.menu-overlay {
    position: fixed;
    top: 0;
    right: 0;
    background: #fff;
    width: 40%;
    height: 100vh;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transform: translateX(100%);
    transition: transform 0.15s ease-in-out;
    padding: 147px 100px 100px 20px;
    max-width: 385px;
    overflow-y: auto;
}
.menu-overlay::-webkit-scrollbar { width: 0; }
.menu-overlay { -ms-overflow-style: none; }
.menu-overlay { overflow: -moz-scrollbars-none; }

.menu-overlay .logo{
	max-width: 147px;
	margin-bottom: 15px;
}
.menu-overlay .logo img{
	width:  100%;
	margin-bottom: 65px;
}
.menu-overlay.show {
    transform: translateX(0);
}

.menu-overlay .main-menu{
	margin-bottom: 50px;
}

.menu-overlay .main-menu  #menu-main-menu > li > a{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-size: 32px;
	padding: 10px 0;
	color: #000;
	display: flex;
    align-items: center;
}
.menu-overlay .menu-item-has-children{
	position: relative;
	padding-right: 30px;
	cursor: pointer;
}
.menu-overlay .menu-item-has-children::after {
	content: '';
    position: absolute;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAuNSA3LjVMNyAxTDEzLjUgNy41IiBzdHJva2U9IiMxRTFFMUUiLz48L3N2Zz4=);
    right: 0;
    top: 19px;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    transform: rotate(180deg);
    transition: .15s ease-in-out;
    cursor: pointer;
}
.menu-overlay .menu-item-has-children.open::after{
	transform: rotate(0deg);
}
.menu-overlay .sub-menu ul li a{
	font-size: 17px;
	color: #626262;
	padding: 10px 0;
	display: flex;
    align-items: center;
        font-weight: 500;
        transition: .15s ease-in-out;
}
.menu-overlay .auth-menu ul li a{
	font-size: 17px;
    color: #D0D0D0;
	padding: 10px 0;
	display: flex;
    align-items: center;
        font-weight: 500;
}
.menu-overlay .main-menu ul li ul{

}
.menu-overlay .main-menu ul li ul li{

}
.menu-overlay .menu-item-has-children ul{
	display: none;
}
.menu-overlay .menu-item-has-children.open ul{
	display: flex;
	flex-direction: column;
}
.menu-overlay .main-menu ul li ul li a{
	font-size: 16px;
	color: #626262;
	padding: 10px 0;
	display: flex;
    align-items: center;
        font-weight: 500;
}
.burger-menu {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1002;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 25px;
    background: none;
    border: none;
    cursor: pointer;
}

.burger-menu div {
    background: #000;
    height: 3px;
    width: 100%;
    border-radius: 2px;
}

.close-button {
    background: none;
    border: none;
    font-size: 24px;
    margin-left: auto;
    cursor: pointer;
}

.inactive-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    pointer-events: none;
}
.inactive-overlay.show {
    display: block;
    pointer-events: all;
}

#menu-overlay #close-menu{
	position: absolute;
	right: 20px;
	top: 30px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
}
#menu-overlay .main-menu{
	display: flex;
	flex-direction: column;
}
#menu-overlay .menu-container{
	display: flex;
	flex-direction: column;
}

/* .notification_wrap{
	background: #F5F5F5;
	padding: 13px 0;
} */
.notification_wrap .wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 600;
	line-height: 19.2px;
	position: relative;
}

.notification_wrap .notification-texts .notification-item {
    background: #F5F5F5;
    padding: 13px 0;
	position: absolute;
    width: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    left: 0;
    right: 0;
    margin: auto;
    text-align: center;
    z-index: -9999;
}
.notification_wrap .notification-texts a{
	color: #000000;
	text-decoration: underline;
}
.notification_wrap .notification-texts .notification-item.active {
    opacity: 1;
    z-index: 1;
}

.breadcrumbs_wrap{
	margin-top: 80px;
	margin-bottom: 28px;
}
.breadcrumbs_wrap .wrap{
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.breadcrumbs_wrap .wrap .breadcrumbs ul{
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumbs_wrap .wrap .breadcrumbs ul li{
	display: flex;
	align-items: center;
}
.breadcrumbs_wrap .wrap .breadcrumbs ul li span,
.breadcrumbs_wrap .wrap .breadcrumbs ul li a{
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	letter-spacing: 0.06em;
	color: #626262;
	text-transform: uppercase;
}

.breadcrumbs_wrap .wrap .breadcrumbs ul li:not(:first-child)::before{
	content: '/';
	margin-right: 10px;
}



.breadcrumbs_wrap .wrap .search-container form{
	display: flex;
	align-items: center;
	gap: 10px;
}

.breadcrumbs_wrap .wrap .search-container form button{
	display: flex;
	align-items: center;
	border: none;
	color: #1E1E1E;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	gap: 4px;
}
.breadcrumbs_wrap .wrap .search-container form input{
	border: none;
	color: #1E1E1E;
	font-size: 14px;
	font-weight: 600;
	padding: 2px 10px ;
	border-bottom: 1px solid #1E1E1E;
	outline: none;
}


.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(14px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.popup-content {
	position: relative;
    background: #1E1E1E;
    padding: 126px 0 40px;
    width: 90%;
    max-width: 947px;
    overflow: hidden;
}
.popup-content::before{
	content: '';
    position: absolute;
    width: 320px;
    height: 320px;
    right: 15%;
    top: -50%;
    filter: blur(300px);
    background: #E6E4E299;
    border-radius: 100%;
    transform: translate(0, 50%);
}
.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.head_popup button {
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 24px;
    background: none;
    color: white;
    border: none;
    cursor: pointer;
    z-index: 1;
}
.head_popup span{
	font-weight: 500;
	font-size: 14px;
	line-height: 21px;
	color: #fff;
	text-transform: uppercase;
	position: absolute;
	top: 40px;
	left: 40px;
	cursor: pointer;
}










footer.site-footer{
	background: #000;
	padding-top: 120px;
	padding-bottom: 60px;
	color: #000;
}

footer.site-footer .wrap{
	display: flex;
	flex-direction: column;
	gap: 60px;
}
footer.site-footer .wrap .location h2{
	font-size: 36px;
	color: #fff;
	margin-bottom: 30px;
}
footer.site-footer .wrap .navigation,
footer.site-footer .wrap .location .footer-locations{
	    display: grid;
	    grid-template-columns: repeat(4, 1fr);
	    gap: 80px;
}

footer.site-footer .wrap .navigation .menu-wrap-footer.menu-1 ul li a{
	font-size: 16px;
}
footer.site-footer .wrap .navigation .menu-wrap-footer.menu-2 ul li a{
	font-size: 24px;
	font-weight: 500;
}
footer.site-footer .wrap .navigation .menu-wrap-footer.menu-3 ul li a{
	font-size: 16px;
}
footer.site-footer .wrap .location .footer-locations .location-item{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
footer.site-footer .wrap .location .footer-locations .location-item h4{
	font-size: 24px;
	color: #fff;
	font-weight: 500;
}
footer.site-footer .wrap .location .footer-locations .location-item .phone,
footer.site-footer .wrap .location .footer-locations .location-item .adres{
	color: #C5C5C5;
	font-size: 18px;
	font-weight: 500;
}
footer.site-footer .wrap .location .footer-locations .location-item .adres{
	display: flex;
	flex-direction: column;
}
footer.site-footer .wrap .location .footer-locations .location-item .phone span{
	text-decoration: underline;
}
footer.site-footer .wrap .navigation > div{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
footer.site-footer .wrap .navigation > div h3{
/* 	font-size: 24px; */
/* 	font-weight: 500; */
	font-size: 16px;
	font-weight: 400;
	color: #FFFFFF;
}
footer.site-footer .wrap .navigation > div ul{
	display: flex;
	flex-direction: column;
	gap: 24px;
}
footer.site-footer .wrap .navigation > div ul a{
	font-size: 16px;
	color: #fff;
	transition:  .15s ease-in-out;
}
footer.site-footer .wrap .social-wrap .follow-icon:hover,
footer.site-footer .wrap .navigation > div ul a:hover{
	color: #F69F3C;
}

footer.site-footer .wrap .certificates-wrap,
footer.site-footer .wrap .social-wrap{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
/*     gap: 80px; */
}
footer.site-footer .wrap .certificates-wrap{
	margin-top: 20px;
}
footer.site-footer .wrap .certificates-wrap img{
	max-width: 80px;
}
footer.site-footer .wrap .social-wrap a{
	display: flex;
	align-items: center;
}
footer.site-footer .wrap .social-wrap .follow-icon{
	font-size: 34px;
	color: #fff;
	width: auto;
    height: auto;
    transition:  .15s ease-in-out;
}
footer.site-footer .wrap .social-wrap img{
	width: 26px;
	height: 26px;
	object-fit: cover;
}
footer.site-footer .wrap .copyright{
	padding-top: 60px;
/* 	border-top: 1px solid #6e6e6e; */
	display: flex;
	align-items: center;
	justify-content: space-between;
}
footer.site-footer .wrap .copyright ul{
	display: flex;
	gap: 30px;
}
footer.site-footer .wrap .copyright > span,
footer.site-footer .wrap .copyright ul a{
    color: #B3B3B3;
    transition:  .15s ease-in-out;
    font-size: 16px;
}
footer.site-footer .wrap .copyright ul a:hover{
	color: #F69F3C;
}


.category_wrap .wrap{
	display: flex;
	align-items: center;
	margin-bottom: 80px;

}
.category_wrap .wrap span{
	color: #1E1E1E;
	font-size: 18px;
	font-weight: 600;
	line-height: 21.78px;
	letter-spacing: 0.03em;
	margin-right: 20px;
}

.category_wrap .wrap ul{
	display: flex;
	align-items: center;
	gap: 16px;
}
.category_wrap .wrap ul li{
	display: flex;
	align-items: center;
}
.category_wrap .wrap ul li a{
	background: #F4F2F0;
	border-radius: 40px;
	font-size: 14px;
	font-weight: 600;
	line-height: 16.94px;
	letter-spacing: 0.03em;
	color: #1E1E1E;
	display: flex;
	padding: 13px 24px;
	align-items: center;
	transition: .15s ease-in-out ;
}
.category_wrap .wrap ul li a:hover{
	box-shadow: 1px 1px 11px #c1c1c1;
}
.category_wrap .wrap ul li.active a{
	background: #1E1E1E;
	color: #fff;

}
.top{
	margin-bottom: 32px;
}
.top .wrap{
	display: flex;
	flex-direction: column;
	gap: 28px;
	color: #1D1D1D;
}
.top .wrap h1{
	font-size: 76px;
	font-weight: 400;
	max-width: 560px;
	line-height: 83.6px;

}
.top .wrap p{
	font-size: 20px;
	font-weight: 600;
	max-width: 560px;
	line-height: 30px;
	letter-spacing: 0.02em;
}


.main_post {
	background: linear-gradient(180deg, rgba(247, 245, 242, 0) 0%, #E6E4E2 100%);
	padding-bottom: 140px;
}

.main_post .item{
	display: flex;
    flex-direction: column;
    height: 650px;
    max-height: 650px;
    justify-content: end;
    padding: 72px 40px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
}
.main_post .item::before{
	content: '';
    background: linear-gradient(90deg, #1E1E1E 0%, rgba(30, 30, 30, 0) 100%);
    position: absolute;
    left: 0;
    top: 0;
    width: 70%;
    height: 100%;
}


.main_post .item .content{
	display: flex;
    flex-direction: column;
    gap: 24px;
    color: #fff;
    position: relative;
    z-index: 1;
    max-width: 366px;
}

.main_post .item .content .category{
	font-size: 12px;
	font-weight: 600;
	line-height: 14.52px;
	letter-spacing: 0.03em;
	padding: 8px 16px;
	border: 2px solid #F4F2F0;
	border-radius: 40px;
	color: #F4F2F0;
	width: max-content;
}

.main_post .item .content .date{
	font-size: 16px;
	font-weight: 600;
}

.main_post .item .content .title{
	font-family: Inter;
	font-size: 32px;
	font-weight: 600;
	line-height: 38.4px;
	letter-spacing: -0.01em;
}
.main_post .item .content a{
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	text-decoration: underline;
	transition: .15s ease-in-out;

}

.main_post_content a,
.post-main-content .sidebar_post .toc #toc-list a,
.breadcrumbs_wrap .wrap .breadcrumbs ul li span, 
.breadcrumbs_wrap .wrap .breadcrumbs ul li a,
.head_post .social-btn a,
.head_post .author-info a,
.about-section .advantage-item a,
.menu-overlay .main-menu ul li ul li a,
.menu-overlay .sub-menu ul li a,
.menu-overlay .main-menu #menu-main-menu > li > a{
	transition: .15s ease-in-out;
}
.post-main-content .sidebar_post .toc #toc-list a:hover,
.breadcrumbs_wrap .wrap .breadcrumbs ul li a:hover{
	text-decoration: underline;
}
.post-main-content .author_article .text a:hover,
.post-main-content .sources_article .text a:hover,
.main_post_content a:hover,
.head_post .social-btn a:hover,
.head_post .author-info a:hover,
.about-section .advantage-item a:hover,
.menu-overlay .main-menu ul li ul li a:hover,
.menu-overlay .sub-menu ul li a:hover,
.menu-overlay .main-menu #menu-main-menu > li > a:hover,
.main_post .item .content a:hover{
	color: #F69F3C;
}


.clay-guidance,
.popular_post{
	background: #E6E4E2;
	padding-bottom: 80px;
}


.related-guidance,
.member-stories,
.expert-voices,
.coaching_advice {
	margin-top: 60px;
	margin-bottom: 80px;
}






/* front page */























.swiper-notification {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
}
.slider_main{
	display: flex;
	flex-direction: column;
	gap: 58px;
}
.instagram_wrap h2,
.slider_main h2{
	color: #1E1E1E;
	font-weight: 600;
	font-size: 32px;
	line-height: 38.4px;
	letter-spacing: -1%;
}
.instagram_wrap h2{
	margin-top: 40px;
	margin-bottom: 56px;
}
.instagram_wrap .view_all,
.slider_main .view_all{
	border: 2px solid #1E1E1E;
	padding: 15px 40px;
	font-weight: 600;
	font-size: 18px;
	line-height: 21.78px;
	letter-spacing: 3%;
	color: #1E1E1E;
	transition: border-color .4s ease 0s, background-color .4s ease 0s;
	display: flex;
	align-items: center;
	border-radius: 40px;
	width: max-content;
}
.instagram_wrap .view_all{
	margin-top: 56px;
	margin-bottom: 108px;
}
.instagram_wrap .view_all:hover,
.slider_main .view_all:hover{
	background: #1E1E1E;
	color: #fff;
}

.instagram_wrap .swiper-slide,
.slider_main .swiper-slide{
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: .15s ease-in-out;
	border-radius: 16px;
	
}
.slider_main .swiper-slide{
	 height: auto;
}
.instagram_wrap .slider_main .swiper-slide {
    height: unset !important;
}
.instagram_wrap .slider_main .swiper-slide:hover{
	box-shadow: none !important;
}
.slider_main .swiper-slide:hover{
	box-shadow: 1px 1px 15px #b4b0b0;
   
}
.slider_main .swiper-slide .slide-title{
	padding: 0 10px 10px 10px;
}
.instagram_wrap .swiper-slide{
	max-height: 506px;
}
.instagram_wrap .swiper-slide video,
.instagram_wrap .swiper-slide img{
	    width: 100%;
    height: 100%;
    object-fit: cover;
    max-height: 511px;
}

.instagram_wrap .swiper-slide .slide-image,
.slider_main .swiper-slide .slide-image{
	height: 277px;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 16px;
}
.instagram_wrap .swiper-slide .slide-title,
.slider_main .swiper-slide .slide-title{
	display: flex;
	color: #000000;
    flex-direction: column;
    gap: 2px;
    font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #000000;
}
.instagram_wrap .swiper-slide .slide-title a,
.slider_main .swiper-slide .slide-title a{
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;
	color: #000000;
}
.instagram_wrap .swiper-slide .slide-title span,
.slider_main .swiper-slide .slide-title span{
	font-weight: 600;
	font-size: 12px;
	line-height: 24px;
	letter-spacing: 2%;
	text-transform: uppercase;
}
.popular_post .item .video-thumbnail::before,
.list-post-wrap .wrap .post_item_wrpa .item .video-thumbnail::before,
.related-guidance .video-thumbnail::before,
.member-stories .video-thumbnail::before,
.expert-voices .video-thumbnail::before,
.clay-guidance .video-thumbnail::before,
.coaching_advice .video-thumbnail::before{
	content: '';
    position: absolute;
    width: 30px;
    height: 30px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjYiIGhlaWdodD0iMzAiIHZpZXdCb3g9IjAgMCAyNiAzMCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWx0ZXI9InVybCgjZmlsdGVyMF9iXzI2MTJfODU5OCkiPjxwYXRoIGQ9Ik0yNCAxMS41MzU5QzI2LjY2NjcgMTMuMDc1NSAyNi42NjY3IDE2LjkyNDUgMjQgMTguNDY0MUw2IDI4Ljg1NjRDMy4zMzMzNCAzMC4zOTYgMCAyOC40NzE1IDAgMjUuMzkyM0wwIDQuNjA3N0MwIDEuNTI4NSAzLjMzMzMzIC0wLjM5NjAwOCA2IDEuMTQzNTlMMjQgMTEuNTM1OVoiIGZpbGw9IndoaXRlIi8+PC9nPjxkZWZzPjxmaWx0ZXIgaWQ9ImZpbHRlcjBfYl8yNjEyXzg1OTgiIHg9Ii0xMCIgeT0iLTkuMzk4MTkiIHdpZHRoPSI0NiIgaGVpZ2h0PSI0OC43OTY0IiBmaWx0ZXJVbml0cz0idXNlclNwYWNlT25Vc2UiIGNvbG9yLWludGVycG9sYXRpb24tZmlsdGVycz0ic1JHQiI+PGZlRmxvb2QgZmxvb2Qtb3BhY2l0eT0iMCIgcmVzdWx0PSJCYWNrZ3JvdW5kSW1hZ2VGaXgiLz48ZmVHYXVzc2lhbkJsdXIgaW49IkJhY2tncm91bmRJbWFnZUZpeCIgc3RkRGV2aWF0aW9uPSI1Ii8+PGZlQ29tcG9zaXRlIGluMj0iU291cmNlQWxwaGEiIG9wZXJhdG9yPSJpbiIgcmVzdWx0PSJlZmZlY3QxX2JhY2tncm91bmRCbHVyXzI2MTJfODU5OCIvPjxmZUJsZW5kIG1vZGU9Im5vcm1hbCIgaW49IlNvdXJjZUdyYXBoaWMiIGluMj0iZWZmZWN0MV9iYWNrZ3JvdW5kQmx1cl8yNjEyXzg1OTgiIHJlc3VsdD0ic2hhcGUiLz48L2ZpbHRlcj48L2RlZnM+PC9zdmc+);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    transition: all 0.15s ease-in-out;
}
.popular_post .item .video-thumbnail:hover::before,
.list-post-wrap .wrap .post_item_wrpa .item .video-thumbnail:hover::before
.related-guidance .video-thumbnail:hover::before,
.member-stories .video-thumbnail:hover::before,
.expert-voices .video-thumbnail:hover::before,
.clay-guidance .video-thumbnail:hover::before,
.coaching_advice .video-thumbnail:hover::before{
	transform: scale(0.8);
}
.popular_post .item .video-thumbnail,
.list-post-wrap .wrap .post_item_wrpa .item .video-thumbnail,
.related-guidance .video-thumbnail, 
.member-stories .video-thumbnail,
.expert-voices .video-thumbnail,
.clay-guidance .video-thumbnail,
.coaching_advice .video-thumbnail{
	position: relative;
	cursor: pointer;
}












.about-section{
	background: #1E1E1E;
	padding-top: 90px;
	padding-bottom: 70px;
}
.about-section .wrap{
	display: flex;
	gap: 190px;
	justify-content: space-between;
	color: #fff;
}
.about-section .wrap > div:first-child{
	width: 53%;
}
.about-section .wrap > div:last-child{
	width: 47%;
}
.about-section .sticky-top{
	display: flex;
	align-items: center;
	flex-direction: column;
	gap: 30px;
	position: sticky;
	top: 20px;
}
.about-section .sticky-top h4{
	color: #fff;
	font-size: 20px;
}
.about-section .image{
	border: 1px solid #626262;
	width: 100%;
	max-height: 549px;
	height: 100%;
	border-radius: 40px;
	overflow: hidden;
}
.about-section .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}


.about-section .link_about{
    color: #1E1E1E;
    font-weight: 600;
    font-size: 18px;
    line-height: 21.78px;
    text-align: center;
    border-radius: 40px;
    background: #fff;
    padding: 16px 40px;
    border: 2px solid #fff;
    transition: .15s ease-in-out;
}

.post-main-content .sidebar_post .get_started_post a:hover,
.about-section .link_about:hover{
	background: transparent;
	color: #fff;
}
.about-section .top_block{
	display: flex;
	flex-direction: column;
	margin-bottom: 70px;
}
.about-section .top_block h2{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 38.4px;
	letter-spacing: -1%;

}
.about-section .top_block h3{
	font-weight: 700;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: 1%;

}
.about-section .top_block p{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-weight: 500;
	font-size: 32px;
	line-height: 25.6px;
	letter-spacing: -1%;
	margin-top: 10px;

}
.about-section .advantage-item{
	display: flex;
	flex-direction: column;
	gap: 30px;
	color: #F6F6F6;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;

}
.about-section .advantage-item a{
	color: #F6F6F6;
	font-weight: 400;
	font-size: 16px;
	line-height: 24px;
	letter-spacing: 0px;
}
.about-section .advantage-item:not(:last-child)::after{
	content: '';
	height: 1px;
	width: 100%;
	background: #646363;
}
.about-section .advantage-item .advantage-number{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 48px;
	letter-spacing: 0px;

}
.about-section .advantage-item:not(:last-child){
	margin-bottom: 20px;
}


.post_banner_bottom,
.get_started_block{
	position: relative;
	height: 800px;
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
}	
.post_banner_bottom::before,
.get_started_block::before{
	content: '';
	background: #0000004D;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}
.post_banner_bottom .container,
.get_started_block .container{
	height: 100%;
}
.post_banner_bottom .wrap,
.get_started_block .wrap{
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
    position: relative;
    height: 100%;
}
.post_banner_bottom .wrap .content,
.get_started_block .wrap .content{
	display: flex;
	flex-direction: column;
	gap: 30px;
	    align-items: center;
}
.post_banner_bottom .wrap .content h3,
.get_started_block .wrap .content h3{
	font-weight: 700;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: 4%;
	color: #fff;
}	
.post_banner_bottom .wrap .content h3 span,
.get_started_block .wrap .content h3 span{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-weight: 400;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: -1%;

}
.post_banner_bottom .wrap .content h3 span i,
.get_started_block .wrap .content h3 span i{
	font-family: 'Nocturne Serif Italic', sans-serif;
	font-weight: 400;
	font-size: 48px;
	line-height: 57.6px;
	letter-spacing: -1%;

}

.post_banner_bottom .wrap .content a,
.get_started_block .wrap .content a{
    padding: 15px 40px;
    font-weight: 600;
    font-size: 18px;
    line-height: 21.78px;
    letter-spacing: 3%;
    color: #1E1E1E;
    transition: border-color .4s ease 0s, background-color .4s ease 0s;
    display: flex;
    align-items: center;
    border-radius: 40px;
    width: max-content;
    background: #fff;
}
.post_banner_bottom .wrap .content a:hover,
.get_started_block .wrap .content a:hover{
	background:#1E1E1E;
	color: #fff;
}


.questions_section{
	background: #000000;
	position: relative;
	padding-top: 100px;
	padding-bottom: 200px;
	color: #fff;
}
.questions_section::before{
    content: '';
    background: url('./src/image/bg_black_left.png');
    position: absolute;
    left: 0;
    bottom: 0;
    height: 476px;
    width: 100%;
    background-position: bottom left;
    background-repeat: no-repeat;
    z-index: 0;
}
.questions_section::after{
	content: '';
	background: url('./src/image/bg_black_right.png');
    position: absolute;
    right: 0;
    top: 0;
    height: 476px;
    width: 100%;
    background-position: bottom right;
    background-repeat: no-repeat;
    z-index: 0;
}
.questions_section .wrap{
	position: relative;
	z-index: 1;
}
.questions_section .left_column h3{
	font-weight: 500;
	font-size: 54px;
	line-height: 59.4px;
}
.questions_section .wrap{
	display: flex;
	gap: 60px;
	justify-content: space-between;
}
.questions_section .wrap .questions_wrap.left_column{
	text-align: left;
	font-weight: 500;
	font-size: 54px;
	line-height: 59.4px;
	flex: 0 0 40%;
}
.questions_section .wrap .questions_item{
	border-top: 1px solid #E6E4E2;
	padding-top: 16px;
	padding-bottom: 16px;
}
.questions_section .wrap .questions_item:last-child{
	border-bottom: 1px solid #E6E4E2
}
.questions_section .wrap .questions_item .question-header{
	display: flex;
	justify-content: space-between;
	font-weight: 600;
	font-size: 18px;
	line-height: 23.4px;
	letter-spacing: 1%;
	cursor: pointer;
	gap: 20px;
}
.questions_section .wrap .questions_item .accordion-icon{
	display: flex;
	align-items: center;
	justify-content: center;
}
.questions_section .respond {
    display: none;
	font-weight: 400;
	font-size: 18px;
	line-height: 27px;
	letter-spacing: 0%;
	margin-top: 16px;
}
.questions_section .questions_item.active .respond{
	display: block;
}
.questions_section .questions_item .accordion-icon{
	transition: all 0.1s ease-in-out;
}
.questions_section .questions_item.active .accordion-icon{
	transform: rotate(180deg);
}





/* post */
.head_post .wrap{
	display: flex;
	flex-direction: column;
	gap: 28px;
	margin-bottom: 65px;
}
.head_post h1{
	font-weight: 400;
	font-size: 76px;
	line-height: 83.6px;
	letter-spacing: -3%;
	color: #1D1D1D;
}
.head_post .description p{
	font-weight: 600;
	font-size: 20px;
	line-height: 30px;
	color: #1D1D1D;
}
.head_post .wrap-meta{
	display: flex;
	justify-content: space-between;
	gap: 20px;
}
.head_post .entry-meta{
	display: flex;
	gap: 10px;
	color: #1D1D1D;
	align-items: center;
}
.head_post .author-info a{
	display: flex;
	gap: 10px;
	align-items: center;
	color: #1D1D1D;
	font-weight: 600;
	font-size: 18px;
}
.head_post .author-info .author-avatar{
	width: 40px;
	height: 40px;
	object-fit: cover;
	min-width: 40px;
	object-position: center;
	border-radius: 100%;
}
.head_post .author-info .author-name{
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
}
.head_post .last-updated{
	font-weight: 600;
	font-size: 14px;
	line-height: 21px;
}
.head_post  .social-btn{
	display: flex;
    gap: 32px;
    align-items: center;
    color: #1D1D1D;
}
.head_post  .social-btn a{
	color: #1D1D1D;
	display: flex;
	width: 40px;
	height: 40px;
	min-width: 40px;
}
.head_post  .social-btn a span{
	font-size: 40px;
	display: flex;
	width: 40px;
	height: 40px;
}
.head_post  .social-btn .dashicons-facebook{
	border-radius: 100%;
}
.head_post  .social-btn a img{
	width: 40px;
	height: 40px;
}
.post-tags ul{
	display: flex;
	align-items: center;
	gap: 16px;
}
.post-tags a{
	border: 2px solid #F4F2F0;
	border-radius: 40px;
	font-weight: 600;
	font-size: 12px;
	line-height: 14.52px;
	color: #1E1E1E;
	padding: 8px 16px;
	display: flex;
	align-items: center;
	transition: 0.15s ease-in-out;
}
.post-tags a:hover{
	background: #F4F2F0;
}
.thumb_post{
/* 	margin-top: 65px; */
	margin-bottom: 80px;
}
.thumb_post img{
    width: 100%;
    height: 100%;
    max-height: 958px;
    object-fit: cover;
    object-position: center top; 
}
.video_content{
	margin-top: 30px;
	background: #000000;
	padding: 20px 0;
	margin-bottom: 80px;
}
.post-main-content .wrap{
	display: flex;
	gap: 110px;
	padding-bottom: 30px;
}
.post-main-content .sidebar_post .sticky {
	position: sticky;
	top: 40px;
	display: flex;
	flex-direction: column;
	gap: 60px;
}
.post-main-content .sidebar_post{
	max-width: 404px;
    min-width: 404px;
	width: 404px;
}
.post-main-content .sidebar_post .toc h3{
	font-weight: 800;
	font-size: 14px;
	line-height: 15.4px;
	margin-bottom: 25px;
	text-transform: uppercase;
}
.post-main-content .sidebar_post .toc #toc-list{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.post-main-content .sidebar_post .toc #toc-list a{
	color: #1D1D1D;
	font-weight: 500;
	font-size: 18px;
	line-height: 27px;

} 
.post-main-content .sidebar_post .toc #toc-list a.active{
	font-weight: 800;
}
.post-main-content .sidebar_post .get_started_post{
	background: url('./src/image/default_image.jpg');
    display: flex;
    background-position: center;
    flex-direction: column;
    background-size: cover;
    height: 516px;
    max-height: 516px;
    width: 100%;
    border-radius: 40px;
    position: relative;
    padding: 50px 29px;
    justify-content: end;
    gap: 40px;
    overflow: hidden;
}
.post-main-content .sidebar_post .get_started_post::before{
	content: '';
    background: #0000004D;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.post-main-content .sidebar_post .get_started_post p{
	font-weight: 700;
	font-size: 32px;
	line-height: 25.6px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	color: #fff;
	z-index: 1;
	position: relative;
}
.post-main-content .sidebar_post .get_started_post p span{
	font-family: 'Nocturne Serif Regular', sans-serif;
	font-weight: 400;
	font-size: 32px;
	line-height: 25.6px;
	letter-spacing: -1%;

}
.post-main-content .sidebar_post .get_started_post a{
	padding: 12px 40px;
    border: 2px solid #fff;
    font-weight: 600;
    font-size: 18px;
    line-height: 21.78px;
    letter-spacing: 3%;
    color: #1E1E1E;
    transition: border-color .4s ease 0s, background-color .4s ease 0s;
    display: flex;
    align-items: center;
    border-radius: 40px;
    width: max-content;
    background: #fff;
    z-index: 1;
    position: relative;
}
.post-main-content  .main_post_content{
/* 	width: 100%; */
}
.post-main-content  .main_post_content h2{
	font-weight: 500;
	font-size: 32px;
	line-height: 48px;
	margin-bottom: 40px;

}
.post-main-content  .main_post_content h3{
	font-family: Inter;
	font-weight: 700;
	font-size: 24px;
	line-height: 36px;
}
.main_post_content a{
	color: #000000;
	text-decoration: underline;
}
.post-main-content  .main_post_content p{
font-weight: 400;
font-size: 18px;
line-height: 27px;
letter-spacing: 2%;
margin-bottom: 20px;
}
.post-main-content  .main_post_content hr{
	margin: 70px 0;
    border-width: 1px;	
}
.post-main-content  .main_post_content .wp-block-cover{
	margin-bottom: 30px;
}

.post-main-content  .main_post_content ul{
	padding-left: 30px;
	list-style-type: disc;
}
.post-main-content  .main_post_content ul li{

}
.post-main-content  .main_post_content .wp-block-cover__inner-container h4,
.post-main-content  .main_post_content .wp-block-cover__inner-container h3{
	margin-bottom: 16px;
}
.post-main-content  .main_post_content .wp-block-cover__inner-container p{

}
.post-main-content  .main_post_content blockquote{
	margin-top: 15px;
	margin-bottom: 20px;
}
.post-main-content  .main_post_content blockquote p{
	color: #626262;
	font-weight: 500;
	font-size: 12px;
	line-height: 18px;
}
.post-main-content .author_article{
	margin-top: 60px;
}
.post-main-content .author_article,
.post-main-content .sources_article{
	border-top: 1px solid #000;
	display: flex;
	flex-direction: column;
	gap: 15px;
    padding: 40px 0;
}
.post-main-content .author_article .author-info{
	margin-bottom: 4px;
}
.post-main-content .author_article .author-info a{
	display: flex;
	gap: 10px;
	align-items: center;
	color: #1D1D1D;
	font-weight: 600;
	font-size: 18px;
}
.post-main-content .author_article .author-info .author-avatar{
	width: 40px;
	height: 40px;
	object-fit: cover;
	min-width: 40px;
	object-position: center;
	border-radius: 100%;
}
.post-main-content .author_article .author-info .author-name{
	font-weight: 600;
	font-size: 18px;
	line-height: 27px;
}
.post-main-content .author_article h2,
.post-main-content .sources_article h2{
	font-weight: 500;
	font-size: 32px;
	line-height: 48px;
	color: #1D1D1D;

}
.post-main-content .author_article .text p,
.post-main-content .sources_article .text p,
.post-main-content .author_article .text,
.post-main-content .sources_article .text{
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #1D1D1D;
}
.post-main-content .author_article .text a,
.post-main-content .sources_article .text a{
	color: #1D1D1D;
	text-decoration: underline;
	transition: .15s ease-in-out;
}
.post-main-content .sources_article{
	border-bottom: 1px solid #000;
}
.post-main-content .author_article ol,
.post-main-content .author_article ul,
.post-main-content .sources_article ol,
.post-main-content .sources_article ul{
	padding-left: 25px;

}
.post-main-content .author_article li,
.post-main-content .sources_article li{
	font-weight: 400;
	font-size: 14px;
	line-height: 21px;
	color: #1D1D1D;
}

.post_banner_bottom{
	background-image: url('./src/image/bg_posts.jpg');
}

.post-main-wrap{
	margin-bottom: 60px;
}
.list-post-wrap .post_item_wrpa{
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;

}
.list-post-wrap .wrap .post_item_wrpa .item{
	display: flex;
	flex-direction: column;
	gap: 16px;
}
.list-post-wrap .wrap .post_item_wrpa .item > a{
	display: flex;
	align-items: center;
}
.list-post-wrap .wrap .post_item_wrpa .item .video-thumbnail,
.list-post-wrap .wrap .post_item_wrpa .item img{
	width: 100%;
    max-height: 278px;
    height: 278px;
    border-radius: 16px;
    object-fit: cover;
    object-position: center top;
}
.list-post-wrap .wrap .post_item_wrpa .item .video-thumbnail{
    background-position: center top;
    background-size: contain;
}
.list-post-wrap .wrap .post_item_wrpa .item h3{
	display: flex;
    color: #000000;
    flex-direction: column;
    gap: 2px;
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
}

.list-post-wrap .wrap .post_item_wrpa .item h3 a{
    font-weight: 500;
    font-size: 18px;
    line-height: 27px;
    color: #000000;
}

.list-post-wrap .wrap .post_item_wrpa .item h3 span{
	font-weight: 600;
    font-size: 12px;
    line-height: 24px;
    text-transform: uppercase;
}




.newsletter_wrap{
	background-image: url('./src/image/newsletter_bg.png');
    padding: 80px 0;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.newsletter_wrap_footer .wrap,
.newsletter_wrap .wrap{
	display: flex;
	gap: 30px;
}

.newsletter_wrap .wrap > div:first-child{
	flex: 0 0 60%;
}
.newsletter_wrap_footer  .input_footer_contact{
	width:  440px !important;
}
.newsletter_wrap .wrap > div:last-child{
	flex: 0 0 40%;
	max-width: 390px;
}
.newsletter_wrap_footer h4,
.newsletter_wrap h4{
	color: #1D1D1D;
	font-size: 48px;
	font-weight: 500;
	margin-bottom: 16px;
	margin-top: 0;
}

.newsletter_wrap_footer p,
.newsletter_wrap p{
	color: #1E1E1E;
	font-size: 14px;
}
.newsletter_wrap_footer p,
.newsletter_wrap_footer h4{
	color: #fff;
}
.newsletter_wrap_footer h4{
	font-size: 24px;
}
.newsletter_wrap_footer p{
	font-size: 16px;
}
.newsletter_wrap #subscribeForm{
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.newsletter_wrap #subscribeForm span{
	font-size:  14px;
	font-weight:  600;
	color:  #1E1E1E;
}

.newsletter_wrap #subscribeForm > input{
	width: 100%;
    background: #fff;
    border: none;
    padding: 21px 15px;
    font-size: 16px;
}
.newsletter_wrap_footer .btn,
.newsletter_wrap .btn{
	font-size: 18px;
    font-weight: 600;
    width: max-content;
    padding: 14px 69px;
    cursor: pointer;
}
.newsletter_wrap_footer .btn{
	background: #626262;
}
.newsletter_wrap .checkbox-container{
	display: flex;
    align-items: center;
    margin: 15px 0;
    gap: 20px;
	font-weight: 600;
	font-size: 12px;
	color:  #1E1E1E;
}
.newsletter_wrap_footer input[type="checkbox"], 
.newsletter_wrap  input[type="checkbox"] {
    appearance: none;
    width: 24px;
    height: 24px;
    border: 1px solid #1E1E1E;
    border-radius: 0;
    position: relative;
    cursor: pointer;
}
.newsletter_wrap_footer input[type="checkbox"]::before, 
.newsletter_wrap  input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 12px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -60%) rotate(45deg);
    display: none;

}
.newsletter_wrap_footer input[type="checkbox"]:checked, 
.newsletter_wrap  input[type="checkbox"]:checked{
	background: #1E1E1E;
}
.newsletter_wrap_footer input[type="checkbox"]:checked::before, 
.newsletter_wrap  input[type="checkbox"]:checked::before {
    display: block;
}
.newsletter_wrap_footer input[type="checkbox"]:checked,
.newsletter_wrap_footer input[type="checkbox"]{
	background: #fff;
}
.newsletter_wrap_footer input[type="checkbox"]::before{
    border-right: solid #1E1E1E;
    border-bottom: solid #1E1E1E;
}

.newsletter_wrap_footer{
	border-top: 1px solid #626262;
	border-bottom: 1px solid #626262;
	padding-top: 40px;
	padding-bottom: 90px;
	margin-bottom: -60px;
}
.newsletter_wrap_footer .wrap_two{
	display: flex;
	gap:  40px;
}

@media screen and (min-width: 1024px) {
    .list-post-wrap .post_item_wrpa {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (min-width: 650px) {
   .newsletter_wrap_footer .wrap {
        gap: 20px !important;
    }

}
@media screen and (min-width: 560px) {
	.openSearch{
		display: none;
	}
	.category_wrap .wrap ul{
		flex-wrap: wrap;
	}
	.category_wrap .wrap span {
	    white-space: nowrap;
	}
}

@media screen and (max-width: 1023px) {

	.coaching_advice,
	.slider_main,
	.front_page{
		overflow-x: hidden;
	}
	.post-main-content .wrap {
	    gap: 40px;
	}
	.post-main-content .sidebar_post {
	    max-width: 300px;
	    min-width: 300px;
	    width: 300px;
	}
    .list-post-wrap .post_item_wrpa {
        grid-template-columns: repeat(2, 1fr);
    }
    .top .wrap p,
    .top .wrap h1{
    	width: 100%;
    	max-width: 100%;
    }
    footer.site-footer .wrap .location .footer-locations {
	    display: grid;
	    grid-template-columns: repeat(3, 1fr);
	    gap: 20px;
	}
	footer.site-footer .wrap .navigation{
		grid-template-columns: repeat(4, 1fr);
		gap: 20px;
        margin-top: 30px;
	}
	footer.site-footer .wrap .copyright{
		flex-direction: column;
		gap: 25px;
		padding-top: 40px;
	}
	footer.site-footer .wrap .navigation > div h3 {
	    font-size: 18px;
	}
	.about-section .wrap{
		gap: 70px;
	}
	.newsletter_wrap .wrap > div:last-child,
	.newsletter_wrap .wrap > div:first-child{
		    flex: 1;
		    max-width: 100%;
	}

}

@media screen and (max-width: 760px) {
	footer.site-footer .wrap .navigation,
    footer.site-footer .wrap .location .footer-locations {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 40px;
    }
    footer.site-footer .wrap .social-wrap{
    	max-width: 310px;
    }
    .newsletter_wrap_footer .wrap_two{
		flex-direction: column;
	}
	.newsletter_wrap_footer  .input_footer_contact{
		width:  100% !important;
	}
	.about-section .wrap > div:first-child,
	.about-section .wrap > div:last-child{
		width: 100%;
	}
	.about-section .wrap{
		display: flex;
		flex-direction: column-reverse;
	}
	.about-section .link_about {
	    padding: 17px 15px;
	}

}

@media screen and (max-width: 560px) {
	.about-section .image{
		max-height: 465px;
	}
	footer.site-footer .wrap .navigation{
		margin-top: 0;
	}
	.social-main-wrap{
		margin-top: 20px;
	}
	.newsletter_wrap_footer .btn{
		width: 100%;
	}
	.newsletter_wrap .wrap{
		flex-direction: column;
	}
	.main_post .container{
		padding: 0;
	}
	.head_post h1,
	.top .wrap h1{
		font-weight: 400;
		font-size: 36px;
		line-height: 43.2px;
	}
	.head_post .description p,
	.top .wrap p{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
	}
	.category_wrap .wrap span{
		display: none;
	}

	header.header .wrap .logo{
		max-width: 145px;
	}
	header.header .wrap .logo img{
		width: 100%;
	}
	header.header .wrap .navigation-wrap{
		gap: 3px;
	}
	header.header .wrap .navigation-wrap > a{
		font-size: 12px;
	    padding: 6px 19px;
	}
	header.header .wrap .navigation-wrap button{
		width: 40px;
		height: 40px;
	}

	.menu-overlay{
        width: 100%;
        padding: 30px 20px;
        max-width: 100%;
	}
	.menu-overlay .logo img{
		margin-bottom: 40px;
	}
	.menu-overlay .main-menu #menu-main-menu > li > a {
	    font-size: 26px;
	}
	.menu-overlay .main-menu {
	    margin-bottom: 30px;
	}
	#menu-overlay .menu-container {
		max-width: 80%;
	}
	footer.site-footer .wrap {
		gap: 30px;
	}
	.notification_wrap .notification-texts p{
		font-size: 14px;
	}
	.breadcrumbs_wrap .wrap {
	    align-items: start;
	    flex-direction: column-reverse;
	    gap: 4px;
	}
	.breadcrumbs_wrap .wrap .breadcrumbs ul li{
		flex-wrap: wrap;
	}
	.breadcrumbs_wrap .wrap .breadcrumbs ul li span, .breadcrumbs_wrap .wrap .breadcrumbs ul li a{
		font-size: 12px;
		color: #1D1D1D;
	}
	.category_wrap .wrap ul li a{
		white-space: nowrap;
	}
	.category_wrap .wrap ul {
	    display: flex;
	    overflow-x: auto;
	    scroll-snap-type: x mandatory;
	    white-space: nowrap;
	    -webkit-overflow-scrolling: touch;
	}
	.category_wrap .wrap{
		position: relative;
		margin-bottom: 68px;
	}
	.category_wrap .wrap::after{
		content: '';
		position: absolute;
    	right: -4px;
        top: 0;
        height: 100%;
        width: 34px;
		background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 56%, rgba(255, 255, 255, 0.8) 100%);
	}
	
	.category_wrap .wrap ul::-webkit-scrollbar {
	    display: none;
	}

	.scroll-container li {
	    flex: 0 0 auto;
	    scroll-snap-align: start;
	}
	.main_post .item::before{
		/* display: none; */
		    width: 90%;
	}
	.main_post .item{
		background-position: center;
		max-height: 400px;
		padding: 40px 25px;
	}
	.main_post .item .content{
		gap: 16px;
	}
	.main_post .item .content a{
		font-size: 14px;
	}
	.main_post .item .content .date{
		font-size: 12px;
	}
	.main_post .item .content .title{
		font-size: 24px;
		line-height: 28.8px;

	}
	.main_post{
		padding-bottom: 60px;
	}
	#page{
		overflow-x: hidden;
	}
	footer.site-footer{
		padding-top: 40px;
	}
	.list-post-wrap .post_item_wrpa {
        grid-template-columns: repeat(1, 1fr);
    }
    footer.site-footer .wrap .copyright{
    	align-items: start;
    }
    footer.site-footer .wrap .copyright ul{
    	flex-direction: column;
    }
    footer.site-footer .wrap .copyright > span{
    	width: 100%;
    	text-align: left;
    	margin-top: 25px;
    }
    footer.site-footer .wrap .social-wrap {
        max-width: 210px;
    }
    .newsletter_wrap h4,
    footer.site-footer .wrap .location h2{
    	font-size: 32px;
    }
    .instagram_wrap .view_all,
    .slider_main .view_all {
	    padding: 12px 25px;
	    font-size: 14px;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-1 ul li a{
		font-size: 14px;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-1 h3,
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-2 ul li a{
		font-size: 24px;
        font-family: 'Nocturne Serif Regular', sans-serif;
        display: flex;
        align-items: center;
        border-top: 1px solid #fff;
        padding-top: 24px;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-3{
		margin-top: 40px;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-2 ul li:last-child a{
        border-bottom: 1px solid #fff;
        padding-bottom: 24px;
	}
	.newsletter_wrap .checkbox-container,
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-3 ul li a{
		font-size: 14px;
	}
/* 	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children:not(.open){
		gap: 0;
	} */
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children:not(.open) ul{
/* 		display: none; */
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children h3{
		position: relative;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children.open h3::after{
		transform: rotate(0);
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children h3::after{
		content: '';
	    position: absolute;
	    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTQiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDE0IDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTAuNSA3LjVMNyAxTDEzLjUgNy41IiBzdHJva2U9IiMxRTFFMUUiLz48L3N2Zz4=);
	    right: 0;
	    top: 30px;
	    width: 20px;
	    height: 20px;
	    background-repeat: no-repeat;
	    background-position: center;
	    transform: rotate(180deg);
	    transition: .15s ease-in-out;
	    cursor: pointer;
        filter: invert(1);
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children ul{
		margin-bottom: 24px;
	}
	footer.site-footer .wrap .navigation{
		gap: 0;
	}
	.instagram_wrap,
	.slider_main{
		gap: 25px;
	}
	.popup-content{
		background: transparent;
		width: 100%;
		padding: 80px 0 0;
	}
	.head_popup span {
	    top: 20px;
	    left: 16px;
	}
	.head_popup button{
		right: 16px;
		top: 20px;
	}
	.search-container{
		display: flex;
	    align-items: center;
	    justify-content: end;
	    width: 100%;
	}
	.search-container .openSearch{
		display: flex;
		align-items: center;
		border: none;
		height: 21px;
	}
	.breadcrumbs_wrap .wrap .search-container form,
	.search-container .openSearch.show{
		display: none;
	}
	.breadcrumbs_wrap .wrap .search-container form.show{
		display: flex;
	}
	.breadcrumbs_wrap .wrap .search-container form button{
		font-size: 0;
	}
	.about-section {
	    padding-top: 68px;
	    padding-bottom: 97px;
	}
	.about-section .image img{
/* 		margin-bottom: 20px; */
	}
	.about-section .sticky-top h4{
		font-size: 16px;
	}
	.about-section .link_about{
		margin-top: 20px;
	}
	.post_banner_bottom .wrap .content a, .get_started_block .wrap .content a,
	.about-section .link_about {
		width: 100%;
		justify-content: center;
		align-items: center;
		margin: auto;
		margin-top: 48px;
		font-size: 14px;
	}
	.instagram_wrap h2,
	.slider_main h2{
		font-size: 24px;
	}
	.post_banner_bottom, .get_started_block{
		height: 415px;
	}
	.post_banner_bottom .container, 
	.get_started_block .container{
		padding: 0 32px 50px;
	}
	.post_banner_bottom .wrap .content h3 span, 
	.get_started_block .wrap .content h3 span{
		font-size: 36px;
		display: block;
	}
	.post_banner_bottom .wrap .content h3, 
	.get_started_block .wrap .content h3 {
	    font-size: 43px;
	}
	.post_banner_bottom .wrap .content a, .get_started_block .wrap .content a{
		margin-top: 0;
	}
	.post_banner_bottom .wrap, .get_started_block .wrap{
	    align-items: end;
    	justify-content: start;
	}
	.about-section .advantage-item:last-child::after{
		display: none;
	}
	.about-section .advantage-item{
		margin-top: 20px;
	}
	.about-section .link_about{
		display: flex;
	}
	.questions_section .wrap{
		flex-direction: column;
		gap: 30px;
	}
	.questions_section{
		margin-top: -25px;
		border-radius: 25px 25px 0 0;
		padding-top: 80px;
		padding-bottom: 50px;
	}
	.questions_section .left_column h3{
		font-size: 36px;
		line-height: 39.6px;

	}
	.newsletter_wrap .btn{
		width: 100%;
		justify-content: center;
	}
	.newsletter_wrap p,
	.questions_section .wrap .questions_item .question-header{
		font-size: 16px;
	}
	.questions_section .respond{
		font-size: 14px;
	}
	.thumb_post{
		margin: 27px 0;
	}
	.post-tags ul{
		flex-wrap: wrap;
	}
	.mobile_meta_head{
		margin-bottom: 40px;
	}
	.mobile_meta_head .wrap{
		display: flex;
		flex-direction: column;
		gap: 16px;
	}
	.mobile_meta_head .last-updated{
		color: #626262;
		font-weight: 600;
		font-size: 12px;
		line-height: 18px;
	}

	.mobile_meta_head .entry-meta{
		display: flex;
		flex-direction: column;
		gap: 16px;
		color: #1D1D1D;
	}
	.mobile_meta_head .author-info{
		display: flex;
		gap: 10px;
		align-items: center;
	}
	.mobile_meta_head .author-info .author-avatar{
		width: 40px;
		height: 40px;
		object-fit: cover;
		min-width: 40px;
		object-position: center;
		border-radius: 100%;
	}
	.mobile_meta_head .author-info .author-name{
		font-weight: 600;
		font-size: 16px;
		line-height: 24px;
	}

	.mobile_meta_head  .social-btn{
		display: flex;
	    gap: 16px;
	    align-items: center;
	    color: #1D1D1D;
	}
	.mobile_meta_head  .social-btn a{
		color: #1D1D1D;
		display: flex;
		width: 20px;
		height: 20px;
		min-width: 20px;
	}
	.mobile_meta_head  .social-btn a span{
		font-size: 20px;
		display: flex;
		width: 20px;
		height: 20px;
	}
	.mobile_meta_head  .social-btn .dashicons-facebook{
		border-radius: 100%;
	}
	.mobile_meta_head  .social-btn a img{
		width: 20px;
		height: 20px;
	}
	.mobile_meta_head  .description p{
		font-weight: 500;
		font-size: 16px;
		line-height: 24px;
		color: #1d1d1d;
	}
	.mobile_meta_head  .description p:not(:last-child){
		margin-bottom: 15px;
	}
	.post-main-content .wrap{
	    gap: 56px;
	    padding-bottom: 30px;
	    flex-direction: column;
	}
	.post-main-content .sidebar_post .toc h3,
	.post-main-content .main_post_content p,
	.post-main-content .sidebar_post .toc #toc-list a{
		font-size: 16px;
	}
	.post-main-content .main_post_content::before{
		content: '';
        border-top: 1px solid #000;
        display: flex;
        margin-bottom: 30px;
	}
	.post_banner_bottom_mobile{
	    background: url('./src/image/default_image.jpg');
	    display: flex;
	    background-position: center;
	    flex-direction: column;
	    background-size: cover;
	    height: 447px;
	    max-height: 447px;
	    width: 100%;
	    border-radius: 40px;
	    position: relative;
	    padding: 50px 29px;
	    justify-content: end;
	    gap: 40px;
	    overflow: hidden;
	    margin-bottom: 70px;
	}
	.post_banner_bottom_mobile::before{
		content: '';
	    background: #0000004D;
	    position: absolute;
	    left: 0;
	    top: 0;
	    width: 100%;
	    height: 100%;
	}
	.post_banner_bottom_mobile p{
		font-weight: 700;
		font-size: 32px;
		line-height: 25.6px;
		display: flex;
		flex-direction: column;
		gap: 10px;
		color: #fff;
		z-index: 1;
		position: relative;
	}
	.post_banner_bottom_mobile p span{
		font-family: 'Nocturne Serif Regular', sans-serif;
		font-weight: 400;
		font-size: 32px;
		line-height: 25.6px;
		letter-spacing: -1%;

	}
	.post_banner_bottom_mobile a{
		padding: 14px 40px;
	    font-weight: 600;
	    font-size: 18px;
	    line-height: 21.78px;
	    letter-spacing: 3%;
	    color: #1E1E1E;
	    transition: border-color .4s ease 0s, background-color .4s ease 0s;
	    display: flex;
	    align-items: center;
	    border-radius: 40px;
	    width: max-content;
	    background: #fff;
	    z-index: 1;
	    position: relative;
	}
	.post-main-content .sidebar_post {
	    max-width:  100%;
	    min-width:  100%;
	    width: 100%;
	}

	footer.site-footer .wrap .navigation{
    	display: grid;
		grid-template-columns: 1fr 1fr;
		grid-template-rows: auto auto auto;
		row-gap: 50px;
	}
	footer.site-footer .wrap .navigation > div:nth-of-type(1){
		grid-column-start: 1;
	    grid-column-end: 1;
	    grid-row-start: 1;
	    grid-row-end: 1;
	}
	footer.site-footer .wrap .navigation > div:nth-of-type(2){
	    grid-column-start: 1;
    	grid-column-end: 1;
		grid-row-start: 2;
		grid-row-end: 2;
	}
	footer.site-footer .wrap .navigation > div:nth-of-type(3){
		grid-column-start: 2;
	    grid-column-end: 2;
	    grid-row-start: 2;
	    grid-row-end: 2;
	}
	footer.site-footer .wrap .navigation > div:nth-of-type(4){
		grid-column-start: 1;
	    grid-column-end: 1;
	    grid-row-start: 3;
	    grid-row-end: 3;
	}

	footer .logo_mobile{
	    border-top: 1px solid #fff;
    	padding-top: 30px;
	}
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-item-has-children ul{
		margin-bottom: 0;
	}
	footer .social-main-wrap,
	footer.site-footer .wrap .navigation .menu-wrap-footer.menu-3{
		margin-top: 0;
	}
	.newsletter_wrap_footer {
	    padding-bottom: 20px;
	    margin-bottom: -20px;
	}
	footer.site-footer .wrap .copyright ul{
		gap: 15px;
	}
}