/*!
Theme Name: WeAreUkrainians
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
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: its-time
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.

WeAreUkrainians 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/
*/

:root {
	--main-black: #000000;
	--main-white: #ffffff;
	--main-text: #1F2937;
	--main-gray: #4D4D4D;
	--main-light-gray: #6E6E6E;
	--main-primary: #1F4ED8;
	--main-secondary: #FFD500;
	--main-bg-gray: #f2f2f2;
	--main-line-gray: #E6E6E6;
	--fast: 0.2s;
	--slow: 0.4s;
}

* {
	box-sizing: border-box;
	margin: 0px;
	padding: 0px;
}

html {
	scroll-behavior: initial!important;
	/* margin-top: 0px!important; */
}

.x1, .x2, .x3, .x4, .x5, .x6, .x7, .x8, .x9 {
	opacity: 0;
	transform: translateX(-120px);
}
.x1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.x2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.x3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.x4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.x5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.x6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.x7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.x8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.x9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.x1, 
.ready .visible.x2, 
.ready .visible.x3, 
.ready .visible.x4, 
.ready .visible.x5, 
.ready .visible.x6,
.ready .visible.x7, 
.ready .visible.x8, 
.ready .visible.x9 {
	opacity: 1;
	transform: translateX(0px);
}

.y1, .y2, .y3, .y4, .y5, .y6, .y7, .y8, .y9 {
	opacity: 0;
	transform: translateY(120px);
}
.y1 {
	transition: transform ease .7s .1s, opacity ease .7s .1s;
}
.y2 {
	transition: transform ease .7s .2s, opacity ease .7s .2s;
}
.y3 {
	transition: transform ease .7s .3s, opacity ease .7s .3s;
}
.y4 {
	transition: transform ease .7s .4s, opacity ease .7s .4s;
}
.y5 {
	transition: transform ease .7s .5s, opacity ease .7s .5s;
}
.y6 {
	transition: transform ease .7s .6s, opacity ease .7s .6s;
}
.y7 {
	transition: transform ease .7s .7s, opacity ease .7s .7s;
}
.y8 {
	transition: transform ease .7s .8s, opacity ease .7s .8s;
}
.y9 {
	transition: transform ease .7s .9s, opacity ease .7s .9s;
}
.ready .visible.y1, 
.ready .visible.y2, 
.ready .visible.y3, 
.ready .visible.y4, 
.ready .visible.y5, 
.ready .visible.y6, 
.ready .visible.y7, 
.ready .visible.y8, 
.ready .visible.y9 {
	opacity: 1;
	transform: translateX(0px);
}

body {
	font-size: 16px;
	font-family: 'Poppins', sans-serif;
	font-family: 'HelveticaNeueCyr', sans-serif;
}

body.overflow {
  overflow: hidden;
  padding-right: 17px;
}

.site#page {
	overflow: clip;
	background-color: var(--main-white);
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

.container-fluid {
  padding: 0px 120px;
  max-width: 1440px;
}

.container-fluid .row {
  margin-left: -16px;
  margin-right: -16px;
}

.container-fluid .row [class*="col-"] {
  padding-left: 16px;
  padding-right: 16px;
}

img {
	height: auto;
}

input[type="search"]::-ms-clear,
input[type="search"]::-ms-reveal {
  display: none;
  width : 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  display: none;
}

header.header {
	position: sticky;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 10;
	border-bottom: 1px solid var(--main-line-gray);
	background-color: var(--main-white);
	padding: 28px 0px;
}

header.header .header-wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	z-index: 10;
}

header.header .header-wrap .header-left,
header.header .header-wrap .header-right {
	display: flex;
	align-items: center;
	width: 50%;
}

header.header .header-wrap a.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--main-black);
	position: relative;
	z-index: 2;
	margin: 0px 24px;
	height: 20px;
}

header.header .header-wrap a.logo img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

header.header .header-wrap .header-right {
	justify-content: flex-end;
}

header.header .header-wrap div div .menu {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	align-items: center;
}

header.header .header-wrap div div .menu > li {
	margin-right: 24px;
	position: relative;
}

header.header .header-wrap div div .menu > li:last-child {
	margin-right: 0px;
}

header.header .header-wrap div div .menu > li::after {
	position: absolute;
	content: '';
	left: 0px;
	bottom: -20px;
	height: 20px;
	width: 100%;
	opacity: 0;
	pointer-events: none;
	user-select: none;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap div div .menu > li:hover::after {
		pointer-events: all;
		user-select: auto;
	}
}

header.header .header-wrap div div .menu > li > a {
	text-decoration: none;
	color: var(--main-text);
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	font-size: 1em;
	font-weight: 400;
	line-height: 100%;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	header.header .header-wrap div div .menu > li > a:hover {
		color: var(--main-primary);
	}
}

header.header .header-wrap div div .menu > li.current-menu-item > a {
	color: var(--main-primary);
}

header.header .header-wrap div div .menu > li.menu-item-has-children > a::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	background-image: url(assets/img/menu-dropdown.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

header.header .header-wrap div div .menu > li > .sub-menu {
	position: absolute;
	top: calc(100% + 15px);
	left: -10px;
	padding: 26px;
	list-style: none;
	opacity: 0;
	pointer-events: none;
	user-select: none;
	border: 1px solid var(--main-line-gray);
	background-color: var(--main-white);
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	header.header .header-wrap div div .menu > li:hover > .sub-menu {
		opacity: 1;
		pointer-events: all;
		user-select: auto;
	}
}

header.header .header-wrap div div .menu > li > .sub-menu > li {
	display: flex;
}

header.header .header-wrap div div .menu > li > .sub-menu > li.current-lang {
	display: none;
}

header.header .header-wrap div div .menu > li > .sub-menu > li.current-lang:first-child + li {
	margin-top: 0px;
}

header.header .header-wrap div div .menu > li > .sub-menu > li:not(:first-child) {
	margin-top: 16px;
}

header.header .header-wrap div div .menu > li > .sub-menu > li > a {
	text-decoration: none;
	color: var(--main-text);
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	font-size: 1em;
	font-weight: 400;
	line-height: 100%;
	transition: var(--fast);
	white-space: nowrap;
}

@media screen and (min-width: 576px) {
	header.header .header-wrap div div .menu > li > .sub-menu > li > a:hover {
		color: var(--main-primary);
	}
}

header.header .header-wrap div div .menu > li > .sub-menu > li.current-menu-item > a {
	color: var(--main-primary);
}

header.header .header-wrap div div .menu > li > .sub-menu > li.menu-line {
	border-bottom: 1px solid var(--main-line-gray);
}

header.header .header-wrap div div .menu > li > .sub-menu > li.menu-line a {
	display: none;
}

header.header .header-wrap .search-btn {
	margin-right: 24px;
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-image: url(assets/img/search-icon-black.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	cursor: pointer;
	font-size: 0px;
	color: transparent;
	text-decoration: none;
}

header.header .header-wrap .menu-btn {
	display: none;
}

.mobile-menu {
	display: none;
}

footer.footer {
	margin-top: auto;
	position: relative;
	z-index: 2;
	background-color: var(--main-black);
	padding: 48px 0px;
}

footer.footer .footer-wrap .logo-wrap {
	display: flex;
	justify-content: flex-start;
}

footer.footer .footer-wrap a.logo {
	display: flex;
	align-items: center;
	text-decoration: none;
	color: var(--main-white);
	position: relative;
	z-index: 2;
	height: 20px;
}

footer.footer .footer-wrap a.logo img {
	width: auto;
	height: 100%;
	object-fit: contain;
}

footer.footer .footer-wrap p.h3 {
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-white);
	margin-bottom: 20px;
}

footer.footer .footer-wrap .footer-menu {
	display: flex;
}

footer.footer .footer-wrap .footer-menu .menu {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	flex-direction: column;
}

footer.footer .footer-wrap .footer-menu .menu li {
	display: flex;
	justify-content: flex-start;
	margin-top: 24px;
}

footer.footer .footer-wrap .footer-menu .menu li:first-child {
	margin-top: 0px;
}

footer.footer .footer-wrap .footer-menu .menu li a {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	text-decoration: none;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	footer.footer .footer-wrap .footer-menu .menu li a:hover {
		color: var(--main-primary);
	}
}

footer.footer .footer-wrap .socials-menu .menu li {
	margin-top: 20px;
}

footer.footer .footer-wrap .socials-menu .menu li a {
	display: flex;
	align-items: center;
}

footer.footer .footer-wrap .socials-menu .menu li a::before {
	content: '';
	width: 28px;
	min-width: 28px;
	height: 28px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 12px;
}

footer.footer .footer-wrap .socials-menu .menu li a[href*="facebook.com"]::before {
	background-image: url(assets/img/facebook-icon-white.svg);
}

footer.footer .footer-wrap .socials-menu .menu li a[href*="linkedin.com"]::before {
	background-image: url(assets/img/linkedin-icon-white.svg);
}

footer.footer .footer-wrap .footer-copyright {
	margin-top: 20px;
	border-top: 1px solid var(--main-text);
	padding-top: 20px;
}

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

footer.footer .footer-wrap .footer-copyright p {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-light-gray);
	margin-bottom: 0px;
}

footer.footer .footer-wrap .footer-copyright a {
	line-height: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-light-gray);
	text-decoration: underline;
	position: relative;
	transition: var(--fast);
}

footer.footer .footer-wrap .footer-copyright p a {
	font-size: 1em;
}

@media screen and (min-width: 576px) {
	footer.footer .footer-wrap .footer-copyright a:hover {
		color: var(--main-primary);
	}
}

footer.footer .footer-wrap .footer-copyright p.title-holding {
	margin-bottom: 9px;
	text-align: center;
}

footer.footer .footer-wrap .footer-copyright ul.footer-holding {
	padding: 0px;
	margin: -6px -12px 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	list-style: none;
}

footer.footer .footer-wrap .footer-copyright ul.footer-holding li {
	margin: 6px 12px!important;
}

.blog-item {
	display: flex;
	align-items: flex-start;
	width: 100%;
}

.blog-item .item-link {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	width: 100%;
}

.blog-item .item-link .thumbnail {
	width: 100%;
}

.blog-item.legal-help .item-link .thumbnail,
.blog-item.legal-help-en .item-link .thumbnail {
	display: none;
}

.blog-item .item-link .thumbnail .img-wrap {
	width: 100%;
	position: relative;
	padding-top: 55%;
}

.blog-item .item-link .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-item .item-link .caption {
	width: 100%;
	display: flex;
	flex-direction: column;
	padding: 16px 0px 0px;
}

.blog-item:not(:has(.thumbnail)) .item-link .caption {
	padding-top: 0px;
}

.blog-item.legal-help .item-link .caption,
.blog-item.legal-help-en .item-link .caption {
	padding-top: 0px;
}

.blog-item .item-link .caption .tag {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-primary);
	color: var(--main-secondary);
	margin-bottom: 12px;
	text-transform: uppercase;
	text-decoration: none;
}

.blog-item .item-link .caption p.h3 {
	font-size: 1.75em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 12px;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	.blog-item .item-link:hover .caption p.h3 {
		color: var(--main-primary);
	}
}

.blog-item .item-link .caption p.text {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin-top: 12px;
	margin-bottom: 0px;
}

.blog-item .item-link .caption .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}

.blog-item .item-link .caption .meta span.date {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

.blog-item .item-link .caption .meta span.time-to-read {
	display: flex;
	align-items: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

.blog-item .item-link .caption .meta span.time-to-read::before {
	content: '';
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-image: url(assets/img/clock-icon-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 4px;
}

.blog-item .item-link a.new-link {
	width: 100%;
	text-decoration: none;
}

section.main {
	padding: 48px 0px;
}

section.main .main-wrap .post-hero {
	display: flex;
}

section.main .main-wrap .post-hero .blog-item .item-link .caption p.text {
	display: none;
}

section.main .main-wrap .post-hero .blog-item .item-link .caption p.h3 {
	font-size: 2em;
}

section.main .main-wrap .post-side-hero {
	display: flex;
	flex-direction: column;
	padding-top: 8px;
}

section.main .main-wrap .post-side-hero .blog-item {
	padding-bottom: 24px;
	border-bottom: 1px solid var(--main-line-gray);
	margin-bottom: 24px;
}

section.main .main-wrap .post-side-hero .blog-item:last-child {
	margin-bottom: 0px;
}

section.main .main-wrap .post-side-hero .blog-item .item-link .thumbnail {
	display: none;
}

section.main .main-wrap .post-side-hero .blog-item .item-link .caption {
	padding: 0px;
}

section.main .main-wrap .post-side-hero .blog-item .item-link .caption p.h3 {
	font-size: 1.25em;
}

section.main .main-wrap .post-side-hero .blog-item .item-link .caption p.text {
	display: none;
}

section.platforms {
	padding: 24px 0px;
}

section.platforms .platforms-wrap {
	display: flex;
	flex-direction: column;
}

section h2.section-title {
	font-size: 2em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.platforms .platforms-wrap h2.section-title {
	text-align: center;
}

section.platforms .platforms-wrap .platforms-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

section.platforms .platforms-wrap .platforms-list .platform-item {
	width: calc(100%/6.5);
	padding: 14px 28px;
	display: flex;
}

section.platforms .platforms-wrap .platforms-list .platform-item .thumbnail {
	display: flex;
	position: relative;
	width: 100%;
	padding-top: 70%;
}

section.platforms .platforms-wrap .platforms-list .platform-item .thumbnail img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

section.popular {
	padding: 48px 0px;
}

section.popular .popular-wrap {
	display: flex;
	flex-direction: column;
}

section.popular .popular-wrap h2.section-title {
	margin-bottom: 40px;
}

section.popular .popular-wrap .popular-list {
	display: flex;
	flex-direction: column;
}

section.popular .popular-wrap .popular-list .blog-item {
	padding: 40px 0px;
	border-top: 1px solid var(--main-line-gray);
}

section.popular .popular-wrap .popular-list .blog-item:last-child {
	border-bottom: 1px solid var(--main-line-gray);
}

section.popular .popular-wrap .popular-list .blog-item .item-link {
	flex-direction: row-reverse;
}

section.popular .popular-wrap .popular-list .blog-item .item-link .thumbnail {
	width: 32%;
	display: flex;
	align-items: center;
}

section.popular .popular-wrap .popular-list .blog-item .item-link .caption {
	width: calc(100% - 32%);
	padding: 0px;
	padding-right: 32px;
	justify-content: center;
}

section .pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 32px;
}

section .pagination a,
section .pagination span {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	margin: 8px;
	width: 40px;
	min-width: 40px;
	height: 40px;
	background-color: var(--main-white);
	border: 1px solid transparent;
	font-size: 0.875em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-black);
	text-decoration: none;
	transition: var(--fast);
}

section .pagination a.current,
section .pagination span.current {
	background-color: var(--main-black);
	border-color: var(--main-black);
	color: var(--main-white);
}

@media screen and (min-width: 576px) {
	section .pagination a:hover {
		background-color: var(--main-black);
		border-color: var(--main-black);
		color: var(--main-white);
	}
}

section .pagination a.direction-page,
section .pagination span.direction-page {
	font-size: 0px;
	color: transparent;
	border-color: var(--main-black);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60% 60%;
	position: relative;
}

section .pagination a.direction-page.prev-page,
section .pagination span.direction-page.prev-page {
	background-image: url(assets/img/pagination-left-black.svg);
}

section .pagination a.direction-page.next-page,
section .pagination span.direction-page.next-page {
	background-image: url(assets/img/pagination-right-black.svg);
}

section .pagination a.direction-page::after,
section .pagination span.direction-page::after {
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 60% 60%;
	opacity: 0;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section .pagination a.direction-page:hover::after {
		opacity: 1;
	}
}

section .pagination a.direction-page.prev-page::after,
section .pagination span.direction-page.prev-page::after {
	background-image: url(assets/img/pagination-left-white.svg);
}

section .pagination a.direction-page.next-page::after,
section .pagination span.direction-page.next-page::after {
	background-image: url(assets/img/pagination-right-white.svg);
}

section.about {
	padding: 48px 0px;
}

section.about .about-wrap {
	background-color: var(--main-bg-gray);
	padding: 28px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

section.about .about-wrap span.uppertitle {
	text-transform: uppercase;
	text-align: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
	margin-bottom: 16px;
	max-width: 800px;
}

section.about .about-wrap h2.section-title {
	text-align: center;
	font-size: 2.25em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-primary);
	margin-bottom: 16px;
	max-width: 800px;
}

section.about .about-wrap p {
	text-align: center;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin-bottom: 16px;
	max-width: 800px;
}

section.about .about-wrap a.more-link {
	border: 1px solid var(--main-black);
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	text-decoration: none;
	background: transparent;
	transition: var(--fast);
	position: relative;
}

section.about .about-wrap a.more-link::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(assets/img/pagination-right-black.svg);
	margin-left: 8px;
}

section.about .about-wrap a.more-link::before {
	content: '';
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(assets/img/pagination-right-white.svg);
	opacity: 0;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section.about .about-wrap a.more-link:hover {
		background-color: var(--main-black);
		color: var(--main-white);
	}

	section.about .about-wrap a.more-link:hover::before {
		opacity: 1;
	}
}

section.archive {
	padding: 48px 0px;
}

section.archive .archive-wrap {
	display: flex;
	flex-direction: column;
}

section.archive .archive-wrap h1 {
	font-size: 2.375em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 24px;
}

section.archive .archive-wrap .archive-list {
	display: flex;
	flex-wrap: wrap;
	margin: 0px -16px;
}

section.archive .archive-wrap .archive-list .blog-item {
	width: calc(100% / 3);
	padding: 0px 16px;
}

section.archive .archive-wrap .archive-list .blog-item:nth-child(1n + 4) {
	margin-top: 32px;
}

section.archive .archive-wrap .archive-list .blog-item .item-link .caption .tag {
	display: none;
}

section.archive .archive-wrap .archive-list .blog-item .item-link .caption p.text {
	display: none;
}

section.seo {
	padding: 48px 0px;
}

section.seo .seo-content {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
}

section.seo .seo-content h2 {
	font-size: 2em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.seo .seo-content h3 {
	font-size: 1.5em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.seo .seo-content h4 {
	font-size: 1.25em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.seo .seo-content p {
	margin-bottom: 16px;
}

section.seo .seo-content ul,
section.seo .seo-content ol {
	margin: 0;
	padding: 0;
	font-size: 1em;
	margin-bottom: 16px;
}

section.seo .seo-content ul li,
section.seo .seo-content ol li {
	margin-left: 24px;
}

.show-more-wrap {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.show-more-wrap.show .show-more-content {
	display: -webkit-box;
	overflow: hidden;
	-webkit-line-clamp: 4;
	line-clamp: 4;
	-webkit-box-orient: vertical;
	width: 100%;
}

.show-more-wrap .show-more-content > *:last-child {
	margin-bottom: 0px;
}

.show-more-wrap.open .show-more-content {
	display: block;
}

.show-more-wrap .show-more {
	display: none;
}

.show-more-wrap.show .show-more {
	display: flex;
	align-items: center;
	position: relative;
	margin-top: 16px;
	cursor: pointer;
}

.show-more-wrap .show-more span {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-primary);
}

.show-more-wrap .show-more span.less {
	display: none;
}

.show-more-wrap.open .show-more span.more {
	display: none;
}

.show-more-wrap.open .show-more span.less {
	display: flex;
}

.show-more-wrap .show-more::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	margin-left: 8px;
	background-image: url(assets/img/show-more-arrow-primary.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: var(--slow);
	transform: rotate(90deg);
}

.show-more-wrap.open .show-more::after {
	transform: rotate(-90deg);
}

.faq-container .card {
	border-radius: 0px;
	border: none;
	border-top: 1px solid var(--main-line-gray);
	background-color: transparent;
	padding: 18px 0px;
}

.faq-container .card:last-child {
	border-bottom: 1px solid var(--main-line-gray);
}

.faq-container .card .card-header {
	padding: 0px;
	border: none;
	border-radius: 0px;
	background-color: transparent;
}

.faq-container .card .card-header button {
	font-size: 1.375em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	position: relative;
	padding-right: 50px;
}

.faq-container .card .card-header button::after {
	display: none;
}

.faq-container .card .card-header button .cross {
	position: absolute;
	right: 0px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-image: url(assets/img/menu-dropdown.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	transition: var(--fast);
}

.faq-container .card .card-header button:not(.collapsed) .cross {
	transform: translateY(-50%) rotate(-180deg);
}

.faq-container .card .card-body {
	background-color: transparent;
	padding: 12px 0px 0px;
}

.faq-container .card .card-body p {
	margin: 0px;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
}

.faq-container .card .card-body ul,
.faq-container .card .card-body ol {
	margin: 0px;
}

.faq-container .card .card-body ul li,
.faq-container .card .card-body ol li {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin-left: 16px;
}

section .no-results {
	display: flex;
	flex-direction: column;
}

section .no-results h3 {
	font-size: 1.75em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 16px;
}

section .no-results p {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin: 0px;
}

section.single {
	padding: 48px 0px;
}

section.single .single-caption {
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}

section.single .single-caption h1 {
	font-size: 2.375em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.single .single-caption .meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px 16px;
}

section.single .single-caption .meta .author {
	display: flex;
	align-items: center;
}

section.single .single-caption .meta .author img {
	width: 36px;
	min-width: 36px;
	height: 36px;
	object-fit: cover;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 8px;
}

section.single .single-caption .meta .author a {
	display: flex;
	align-items: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-black);
	text-decoration: none;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section.single .single-caption .meta .author a:hover {
		color: var(--main-primary);
		text-decoration: underline;
	}
}

section.single .single-caption .meta .date {
	display: flex;
	align-items: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

section.single .single-caption .meta span.time-to-read {
	display: flex;
	align-items: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

section.single .single-caption .meta span.time-to-read::before {
	content: '';
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-image: url(assets/img/clock-icon-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 4px;
}

section.single .single-caption .meta span.post-views {
	display: flex;
	align-items: center;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
}

section.single .single-caption .meta span.post-views::before {
	content: '';
	width: 16px;
	min-width: 16px;
	height: 16px;
	background-image: url(assets/img/views-icon-gray.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	margin-right: 4px;
}

section.single .single-thumbnail {
	display: flex;
	flex-direction: column;
	width: 100%;
	margin-bottom: 24px;
}

section.single .single-thumbnail .img-wrap {
	display: flex;
	width: 100%;
	position: relative;
}

section.single .single-thumbnail .img-wrap img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

section.single .single-thumbnail .img-wrap span.img-title {
	position: absolute;
	right: 12px;
	bottom: 12px;
	left: 12px;
	font-size: 0.75em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-white);
	display: flex;
	justify-content: flex-end;
}

section.single .page-content {
	margin-bottom: 24px;
}

.page-content .content ul li,
.page-content .content ol li {
	font-size: 1.125em;
}

.page-content h2 {
  font-size: 1.5em;
	line-height: 120%;
	font-weight: 500;
  color: var(--main-black);
  margin-bottom: 20px;
}

.page-content h2 a {
  color: var(--main-primary);
}

.page-content h3 {
  font-size: 1.375em;
	line-height: 120%;
	font-weight: 500;
  color: var(--main-black);
  margin-bottom: 16px;
}

.page-content h3 a {
  color: var(--main-primary);
}

.page-content h4 {
	font-size: 1.125em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-light-gray);
	margin-bottom: 12px;
}

.page-content h4 a {
  color: var(--main-primary);
}

.page-content blockquote {
	padding: 20px;
	background-color: var(--main-bg-gray);
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.page-content blockquote::after,
.page-content blockquote::before {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.page-content blockquote::before {
	background-image: url(assets/img/blockquote-prev-primary.svg);
	margin-bottom: 8px;
}

.page-content blockquote::after {
	align-self: flex-end;
	background-image: url(assets/img/blockquote-next-primary.svg);
	margin-top: 8px;
}

.page-content blockquote p {
	font-size: 1.25em;
	font-weight: 500;
}

.page-content > div.block {
	padding: 20px;
	background-color: var(--main-bg-gray);
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
}

.page-content > div.block a {
	color: var(--main-primary);
}

.page-content > div.block:last-child {
	margin-bottom: 0px;
}

.page-content ul,
.page-content ol {
	margin-bottom: 16px;
	padding-left: 24px;
}

.page-content ul li,
.page-content ol li {
  font-size: 1em;
  line-height: 150%;
	font-weight: 400;
  margin-bottom: 8px;
  color: var(--main-text);
}

.page-content p {
  font-size: 1em;
  line-height: 150%;
	font-weight: 400;
  color: var(--main-text);
	margin-bottom: 16px;
}

.page-content a {
  text-decoration: underline;
  color: var(--main-text);
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	.page-content a:hover {
		color: var(--main-primary);
	}
}

.page-content p:has(.alignright) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img {
	max-width: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.page-content p img.alignright {
  float: right;
	max-width: 100%;
  margin-left: 16px;
  margin-bottom: 16px;
}

.page-content p:has(.alignleft) {
  clear: both;
  margin-bottom: 0px;
}

.page-content p img.alignleft {
  float: left;
	max-width: 100%;
  margin-right: 16px;
  margin-bottom: 16px;
}

.page-content p:has(.aligncenter) {
  clear: both;
}

.page-content p img.aligncenter {
	max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.page-content p:has(iframe),
.page-content .sketchfab-embed-wrapper {
  clear: both;
  padding-top: 56.25%;
  position: relative;
}

.page-content p iframe,
.page-content .sketchfab-embed-wrapper iframe {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
	border-radius: 16px;
	overflow: hidden;
}

.page-content *:last-child {
	margin-bottom: 0px;
}

.page-content * + p:has(iframe),
.page-content * + .sketchfab-embed-wrapper {
  margin-top: 16px;
  margin-bottom: 16px;
}

.page-content * + p:has(img.alignright),
.page-content * + p:has(img.alignleft),
.page-content * + p:has(img.alignnone),
.page-content * + p:has(img.aligncenter) {
  margin-top: 16px;
}

.page-content figure {
  width: 100%!important;
  position: relative;
  margin-top: 16px;
  clear: both;
}

.page-content figure img {
	max-width: 100%;
}

.page-content figure figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
	left: 12px;
  font-size: 0.75em;
	line-height: 100%;
  font-weight: 400;
  color: var(--main-white);
  display: flex;
  flex-direction: column;
  text-align: end;
  align-items: flex-end;
}

.page-content figure.aligncenter {
	max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.page-content figure.alignleft {
	max-width: 100%;
  margin-right: 16px;
  float: left;
}

.page-content figure.alignleft + p {
  margin-top: 16px;
}

.page-content figure.alignright {
	max-width: 100%;
  margin-left: 16px;
  float: right;
}

.page-content figure.alignright + p {
  margin-top: 16px;
}

.page-content figure.alignright:first-child,
.page-content figure.alignleft:first-child {
  margin-top: 0px;
}

.page-content figure.alignright:first-child + p,
.page-content figure.alignleft:first-child + p {
  margin-top: 0px;
}

.page-content .gallery {
	margin: 16px -16px;
	overflow-x: clip;
}

.page-content .gallery .slick-slide {
	padding: 0px 16px;
	display: flex;
}

.page-content .gallery .slick-slide > div {
	display: flex;
	width: 100%;
}

.page-content .gallery figure {
	margin: 0px;
	padding: 0px;
	max-width: none;
	position: relative;
}

.page-content .gallery figure .gallery-icon {
	width: 100%;
	padding-top: 75%;
	position: relative;
}

.page-content .gallery figure .gallery-icon img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.page-content .table-wrap {
	overflow-x: auto;
	width: 100%;
	margin-bottom: 16px;
}

.page-content table {
	margin-bottom: 16px;
	min-width: 600px;
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
}

.page-content table td, 
.page-content table th {
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.page-content table td {
	border-width: 1px;
	border-style: dashed;
	padding: 2px 4px;
}

.slick-slider .slick-dots {
	padding: 0px;
	margin: 0px;
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	margin-top: 8px;
}

.slick-slider .slick-dots li {
	margin: 8px;
	display: flex;
}

.slick-slider .slick-dots li button {
	width: 20px;
	min-width: 20px;
	height: 20px;
	border: 1px solid var(--main-black);
	background-color: var(--main-white);
	font-size: 0px;
	color: transparent;
	transition: var(--fast);
}

.slick-slider .slick-dots li.slick-active button {
	background-color: var(--main-black);
}

@media screen and (max-width: 1299px) {
  .page-content h2 {
    font-size: 1.375em;
  }

	.page-content h3 {
		font-size: 1.25em;
	}

	.page-content blockquote {
		padding: 16px;
	}

	.page-content blockquote p {
		font-size: 1.125em;
	}

	.page-content blockquote::after,
	.page-content blockquote::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	.page-content > div.block {
		padding: 16px;
	}

	.page-content .gallery {
		margin: 16px -12px;
	}
	
	.page-content .gallery .slick-slide {
		padding: 0px 12px;
	}

	.slick-slider .slick-dots {
		margin-top: 10px;
	}
	
	.slick-slider .slick-dots li {
		margin: 6px;
	}
	
	.slick-slider .slick-dots li button {
		width: 16px;
		min-width: 16px;
		height: 16px;
	}
}

@media screen and (max-width: 1199px) {
	.page-content .gallery {
		margin: 16px -10px;
	}
	
	.page-content .gallery .slick-slide {
		padding: 0px 10px;
	}

	.slick-slider .slick-dots li button {
		width: 14px;
		min-width: 14px;
		height: 14px;
	}
}

@media screen and (max-width: 991px) {
	.page-content ul li,
	.page-content ol li {
		margin-bottom: 6px;
	}

	.page-content .gallery {
		margin: 16px -8px;
	}
	
	.page-content .gallery .slick-slide {
		padding: 0px 8px;
	}

	.slick-slider .slick-dots li button {
		width: 12px;
		min-width: 12px;
		height: 12px;
	}
}

@media screen and (max-width: 767px) {
	.page-content h2 {
    font-size: 1.25em;
  }

	.page-content h3 {
		font-size: 1.125em;
	}

	.page-content h4 {
		font-size: 1em;
	}

  .page-content p img.alignright {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.alignleft {
    float: none;
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content .center-column {
    width: 100%;
    max-width: 500px;
  }

  .page-content p img.alignnone {
    display: block;
    width: 100%;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content p img.aligncenter {
    width: 100%;
    max-width: 500px;
  }

  .page-content figure {
    margin-top: 20px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
  }

  .page-content figure.aligncenter {
    width: 100%!important;
    max-width: 500px;
  }

  .page-content figure.alignleft {
    width: 100%!important;
    margin-right: auto;
    float: none;
  }

  .page-content figure.alignright {
    width: 100%!important;
    margin-left: auto;
    float: none;
  }
}

@media screen and (max-width: 575px) {
	.page-content h2 {
		margin-bottom: 14px;
  }

	.page-content h3 {
		margin-bottom: 12px;
	}

	.page-content h4 {
		margin-bottom: 12px;
	}

  .page-content p {
		margin-bottom: 12px;
		word-break: break-word;
	}

	.page-content blockquote p {
		font-size: 1em;
	}

	.page-content .content ul li, 
	.page-content .content ol li {
		font-size: 1em;
	}

	.page-content figure figcaption {
		font-size: 0.625em;
		right: 10px;
		bottom: 10px;
	}

	.page-content ul, 
	.page-content ol {
		padding-left: 18px;
	}

	.page-content .table-wrap {
		margin-bottom: 12px;
	}

	.page-content table {
		margin-bottom: 12px;
	}

	.slick-slider .slick-dots li button {
		width: 10px;
		min-width: 10px;
		height: 10px;
	}
}

.progress-bar-container {
	position: sticky;
	top: 81px;
	left: 0px;
	width: 100%;
	height: 3px;
	background-color: var(--main-line-gray);
	z-index: 8;
}

.progress-bar {
	width: 0%;
	height: 100%;
	background-color: var(--main-primary);
	background-color: var(--main-secondary);
	transition: width 0.1s ease;
}

section.single .also-read {
	display: flex;
	flex-direction: column;
	margin-bottom: 16px;
	padding: 20px;
	background-color: var(--main-bg-gray);
}

section.single .also-read p.h2 {
	font-size: 1.25em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 16px;
}

section.single .also-read .also-read-list {
	display: flex;
	flex-direction: column;
	padding: 0px;
	list-style-position: inside;
}

section.single .also-read .also-read-list li {
	padding-left: 10px;
	color: var(--main-primary);
}

section.single .also-read .also-read-list li:not(:last-child) {
	padding-bottom: 16px;
	border-bottom: 1px solid var(--main-line-gray);
	margin-bottom: 16px;
}

section.single .also-read .also-read-list li a {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	text-decoration: underline;
	color: var(--main-primary);
}

section.single .author-box {
	margin-bottom: 0px;
	display: flex;
	padding: 20px;
	background-color: var(--main-bg-gray);
}

section.single .author-box .author-thumbnail {
	position: absolute;
	left: 0px;
	top: 0px;
	padding-right: 16px;
	display: flex;
}

section.single .author-box .author-thumbnail img {
	width: 60px;
	min-width: 60px;
	height: 60px;
	border-radius: 100%;
	overflow: hidden;
	object-fit: cover;
}

section.single .author-box .author-caption {
	padding-left: 76px;
	position: relative;
	display: flex;
	align-items: flex-start;
	flex-direction: column;
	min-height: 60px;
}

section.single .author-box .author-caption a {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 8px;
	transition: var(--fast);
	text-decoration: none;
}

@media screen and (min-width: 576px) {
	section.single .author-box .author-caption a:hover {
		color: var(--main-primary);
		text-decoration: underline;
	}
}

section.single .author-box .author-caption span.post-count {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
	margin-bottom: 8px;
}

section.single .author-box .author-caption p {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	margin: 0px;
}

section.single .comments-area {
	margin-top: 32px;
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comments-box {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: var(--main-bg-gray);
}

section.single .comments-area .comments-box h2 {
	font-size: 1.75em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.single .comments-area .comments-box .comment-list {
	padding: 0px;
	margin: 0px;
	display: flex;
	flex-direction: column;
	list-style: none;
}

section.single .comments-area .comments-box .comment-list li.comment {
	display: flex;
}

section.single .comments-area .comments-box .comment-list li.comment:nth-child(1n + 2) {
	margin-top: 16px;
	border-top: 1px solid var(--main-line-gray);
	padding-top: 16px;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body {
	width: 100%;
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta {
	background-color: transparent;
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-author {
	display: flex;
	align-items: center;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 8px;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-author b {
	font-weight: 500;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-author img {
	width: 60px;
	height: 60px;
	border-radius: 100%;
	overflow: hidden;
	margin-right: 16px;
	display: none;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-author .says {
	display: none;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-metadata {
	display: flex;
	margin-bottom: 8px;
	color: var(--main-gray);
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-metadata a {
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-gray);
	text-decoration: none;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-metadata > a {
	pointer-events: none;
	cursor: text;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-metadata > .edit-link {
	display: flex;
	margin-left: 6px;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-awaiting-moderation {
	margin-bottom: 8px;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-content {
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-content p {
	margin: 0px;
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
}

section.single .comments-area .comments-box + .comment-respond {
	margin-top: 32px;
}

section.single .comments-area .comment-respond {
	display: flex;
	flex-direction: column;
	padding: 20px;
	background-color: var(--main-bg-gray);
}

section.single .comments-area .comment-respond > h3 {
	font-size: 1.75em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.single .comments-area .comment-respond .comment-form {
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comment-respond .comment-form > p {
	margin-bottom: 20px;
	display: flex;
	flex-direction: column;
}

section.single .comments-area .comment-respond .comment-form > p:last-child {
	margin: 0px;
}

section.single .comments-area .comment-respond .comment-form > p input {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	background: transparent;
	outline: none;
	padding: 14px 12px;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--main-line-gray);
}

section.single .comments-area .comment-respond .comment-form > p textarea {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	background: transparent;
	outline: none;
	padding: 14px 12px;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--main-line-gray);
	resize: none;
}

section.single .comments-area .comment-respond .comment-form > p.form-submit input {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-white);
	background: var(--main-primary);
	padding: 16px 32px;
	border: none;
}

section.single .comments-area .comment-respond .comment-form > p span.error-message {
	color: #dc3232;
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	margin-top: 8px;
}

section.single .more-posts {
	padding: 24px;
	display: flex;
	flex-direction: column;
	margin-bottom: 32px;
	background-color: var(--main-bg-gray);
}

section.single .more-posts h2 {
	font-size: 1.75em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.single .more-posts .more-posts-list {
	display: flex;
	flex-direction: column;
}

section.single .more-posts .more-posts-list .blog-item {
	padding-bottom: 20px;
	border-bottom: 1px solid var(--main-line-gray);
	margin-bottom: 20px;
}

section.single .more-posts .more-posts-list .blog-item .item-link .thumbnail {
	display: none;
}

section.single .more-posts .more-posts-list .blog-item .item-link .caption {
	padding: 0px;
}

section.single .more-posts .more-posts-list .blog-item .item-link .caption .tag {
	display: none;
}

section.single .more-posts .more-posts-list .blog-item .item-link .caption p.h3 {
	font-size: 1.25em;
}

section.single .more-posts .more-posts-list .blog-item .item-link .caption p.text {
	display: none;
}

section.single .more-posts a.more-link {
	border: 1px solid var(--main-black);
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	text-decoration: none;
	background: transparent;
	transition: var(--fast);
	position: relative;
}

@media screen and (min-width: 576px) {
	section.single .more-posts a.more-link:hover {
		background-color: var(--main-black);
		color: var(--main-white);
	}
}

section.single .share-wrap {
	padding: 24px;
	display: flex;
	flex-direction: column;
	background-color: var(--main-bg-gray);
}

section.single .share-wrap h2 {
	font-size: 1.75em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.single .share-wrap .addtoany_shortcode {
	display: flex;
	align-items: center;
}

section.single .share-wrap .addtoany_shortcode .addtoany_list {
	display: flex;
	align-items: center;
	margin: 0px -10px;
}

section.single .share-wrap .addtoany_shortcode .addtoany_list a {
	display: flex;
	align-items: center;
	margin: 0px 10px;
	padding: 0px;
	transition: var(--fast);
}

section.single .share-wrap .addtoany_shortcode .addtoany_list a span {
	transition: var(--fast);
}

section.single .share-wrap .addtoany_shortcode .addtoany_list a span svg {
	background-color: var(--main-black);
}

section.single .scroll-top-wrap {
	width: 100%;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	height: 100%;
	margin-top: 32px;
}

section.single .scroll-top-wrap .scroll-top-btn {
	border: 1px solid var(--main-black);
	padding: 14px 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	text-decoration: none;
	background: transparent;
	transition: var(--fast);
	position: relative;
	cursor: pointer;
	position: sticky;
	bottom: 48px;
}

section.single .scroll-top-wrap .scroll-top-btn::after {
	content: '';
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(assets/img/scroll-arrow-up-black.svg);
	margin-left: 8px;
}

section.single .scroll-top-wrap .scroll-top-btn::before {
	content: '';
	position: absolute;
	right: 32px;
	top: 50%;
	transform: translateY(-50%);
	width: 24px;
	min-width: 24px;
	height: 24px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: 100% 100%;
	background-image: url(assets/img/scroll-arrow-up-white.svg);
	opacity: 0;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section.single .scroll-top-wrap .scroll-top-btn:hover {
		background-color: var(--main-black);
		color: var(--main-white);
	}

	section.single .scroll-top-wrap .scroll-top-btn:hover::before {
		opacity: 1;
	}
}

section.single .post-side-wrap {
	display: flex;
	flex-direction: column;
	height: 100%;
}

.site#page:has(section.archive.archive-author) section.single {
	padding-bottom: 24px;
}

section.archive.archive-author {
	padding-top: 24px;
}

section.archive.archive-author .archive-wrap h2 {
	font-size: 2em;
	line-height: 120%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 20px;
}

section.archive.archive-author .archive-wrap .archive-list .blog-item .item-link .caption .tag {
	display: flex;
}

section.page {
	padding: 48px 0px;
}

section.page h1 {
	font-size: 2.375em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 24px;
}

section.page-about {
	padding: 48px 0px;
}

section.page-about .about-wrap {
	display: flex;
	flex-direction: column;
}

section.page-about .about-wrap h1 {
	font-size: 2.375em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 32px;
}

section.page-about .about-wrap .team-wrap {
	margin-bottom: 32px;
}

section.page-about .about-wrap .team-wrap .list > .row .col-12:nth-child(1n + 3) {
	margin-top: 32px;
}

section.page-about .about-wrap h2 {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-light-gray);
	text-transform: uppercase;
	margin-bottom: 20px;
}

section.page-about .about-wrap h3 {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-black);
	margin-bottom: 12px;
}

section.page-about .about-wrap p {
	font-size: 1em;
	line-height: 120%;
	font-weight: 400;
	color: var(--main-text);
	margin-bottom: 20px;
}

section.page-about .about-wrap p:last-child {
	margin-bottom: 0px;
}

section.page-about .about-wrap .team-wrap p {
	font-size: 1.125em;
}

section.page-about .about-wrap .thumbnail {
	margin-bottom: 32px;
	display: flex;
}

section.page-about .about-wrap .thumbnail .img-wrap {
	width: 100%;
	position: relative;
	padding-top: calc(100% / 3);
}

section.page-about .about-wrap .thumbnail .img-wrap img {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

section.page-about .about-wrap .values-wrap {
	margin-bottom: 32px;
}

section.page-about .about-wrap .values-wrap .list > .row .col-12:nth-child(1n + 4) {
	margin-top: 32px;
}

section.page-about .about-wrap hr {
	border-top: 1px solid var(--main-line-gray);
	margin: 0px 0px 32px;
	opacity: 1;
}

section.page-about .about-wrap .audience-wrap {
	margin-bottom: 32px;
}

section.page-about .about-wrap .audience-wrap .list > .row .col-12:nth-child(1n + 3) {
	margin-top: 32px;
}

section.page-about .about-wrap .form-box {
	padding: 24px;
	background-color: var(--main-bg-gray);
}

section.page-about .about-wrap .form-box h2 {
	font-size: 1.5em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	text-transform: none;
	margin-bottom: 24px;
}

section .wpcf7 form p {
	margin-bottom: 20px;
}

section .wpcf7 form p input {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	background: transparent;
	outline: none;
	padding: 14px 12px;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--main-line-gray);
}

section .wpcf7 form p input::placeholder {
	color: var(--main-gray);
}

section .wpcf7 form p textarea {
	font-size: 1em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	background: transparent;
	outline: none;
	padding: 14px 12px;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--main-line-gray);
	resize: none;
}

section .wpcf7 form p textarea::placeholder {
	color: var(--main-gray);
}

section .wpcf7 form p:has(input[type="submit"]) {
	position: relative;
	margin-bottom: 0px;
}

section .wpcf7 form p .wpcf7-spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	margin: 0px;
}

section .wpcf7 form p .wpcf7-not-valid-tip {
	font-size: 0.875em;
	line-height: 100%;
	font-weight: 400;
	margin-top: 8px;
}

section .wpcf7 form p input[type="submit"] {
	font-size: 1.125em;
	line-height: 100%;
	font-weight: 500;
	color: var(--main-white);
	background: var(--main-primary);
	padding: 16px 32px;
	border: none;
}

section .wpcf7 form .wpcf7-response-output {
	margin: 20px 0px 0px;
	border-width: 1px;
	padding: 10px 20px;
	font-size: 1em;
	line-height: 100%;
	font-weight: 400;
	color: var(--main-text);
}

section.page-contacts {
	padding: 48px 0px;
}

section.page-contacts h1 {
	font-size: 2.375em;
	line-height: 100%;
	font-weight: 700;
	color: var(--main-black);
	margin-bottom: 32px;
}

section.page-contacts .about-wrap {
	padding: 24px;
	background-color: var(--main-bg-gray);
	display: flex;
	flex-direction: column;
}

section.page-contacts .about-wrap p.first {
	font-size: 1.25em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-text);
	margin-bottom: 24px;
}

section.page-contacts .about-wrap p.first b {
	font-family: 'Poppins', sans-serif;
	font-weight: 600;
}

section.page-contacts .about-wrap p.first color {
	color: var(--main-primary);
}

section.page-contacts .about-wrap p {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin-bottom: 24px;
}

section.page-contacts .about-wrap .info-list {
	padding: 16px;
	background-color: var(--main-white);
	display: flex;
	flex-direction: column;
}

section.page-contacts .about-wrap .info-list .info-item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

section.page-contacts .about-wrap .info-list .info-item:nth-child(1n + 2) {
	margin-top: 16px;
}

section.page-contacts .about-wrap .info-list .info-item p.h2 {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-light-gray);
	margin-bottom: 8px;
}

section.page-contacts .about-wrap .info-list .info-item a.link {
	font-size: 1.25em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	text-decoration: none;
	margin: 0px;
}

@media screen and (min-width: 576px) {
	section.page-contacts .about-wrap .info-list .info-item a.link:hover {
		color: var(--main-primary);
		text-decoration: underline;
	}
}

section.page-contacts .form-wrap {
	padding: 24px 24px 38px;
	background-color: var(--main-bg-gray);
	display: flex;
	flex-direction: column;
}

section.page-contacts .form-wrap h2 {
	font-size: 1.5em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-text);
	margin-bottom: 24px;
}

section.page-contacts .form-wrap p.under {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 500;
	color: var(--main-black);
	margin: 0px;
	margin-top: 24px;
}

section.page .search-page-form {
	/* padding: 24px;
	background-color: var(--main-bg-gray); */
	display: flex;
	flex-direction: column;
	margin-bottom: 24px;
}

section.page .search-page-form .search-form-wrap {
	display: flex;
	align-items: center;
}

section.page .search-page-form .search-form-wrap input {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-gray);
	background: transparent;
	outline: none;
	padding: 14px 12px;
	width: 100%;
	border: 1px solid var(--main-black);
}

section.page .search-page-form .search-form-wrap input[type="submit"] {
	font-weight: 500;
	border-color: var(--main-black);
	color: var(--main-black);
	padding: 14px 32px;
	width: auto;
	margin-left: 20px;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section.page .search-page-form .search-form-wrap input[type="submit"]:hover {
		background-color: var(--main-black);
		color: var(--main-white);
	}
}

section.page .search-list-wrap {
	display: flex;
	flex-direction: column;
}

section.page .search-list-wrap span.result-count {
	font-size: 1.125em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-text);
	margin-bottom: 20px;
}

section.page .search-list-wrap span.result-count span {
	font-weight: 500;
}

section.page .search-list-wrap .search-list {
	display: flex;
	flex-direction: column;
}

section.page .search-list-wrap .search-list article {
	display: flex;
	flex-direction: column;
}

section.page .search-list-wrap .search-list article:nth-child(1n + 2) {
	margin-top: 16px;
}

section.page .search-list-wrap .search-list article a.search-link {
	display: flex;
	align-items: center;
	padding: 20px;
	background-color: var(--main-bg-gray);
	text-decoration: none;
}

section.page .search-list-wrap .search-list article a.search-link p.h3 {
	font-size: 1.25em;
	line-height: 150%;
	font-weight: 400;
	color: var(--main-black);
	margin: 0px;
	transition: var(--fast);
}

@media screen and (min-width: 576px) {
	section.page .search-list-wrap .search-list article a.search-link:hover p.h3 {
		color: var(--main-primary);
	}
}

@media screen and (max-width: 1299px) {
	.container-fluid {
		padding: 0px 100px;
	}

	header.header {
		padding: 24px 0px;
	}

	header.header .header-wrap a.logo {
		margin: 0px 20px;
		height: 18px;
	}

	header.header .header-wrap div div .menu > li {
		margin-right: 20px;
	}

	header.header .header-wrap div div .menu > li.menu-item-has-children > a::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}

	header.header .header-wrap div div .menu > li > .sub-menu {
		padding: 22px;
	}

	header.header .header-wrap div div .menu > li > .sub-menu > li:not(:first-child) {
		margin-top: 14px;
	}

	header.header .header-wrap .search-btn {
		margin-right: 20px;
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	footer.footer {
		padding: 40px 0px;
	}

	footer.footer .footer-wrap a.logo {
		height: 18px;
	}

	footer.footer .footer-wrap p.h3 {
		font-size: 1.125em;
		margin-bottom: 16px;
	}

	footer.footer .footer-wrap .footer-menu .menu li {
		margin-top: 20px;
	}

	footer.footer .footer-wrap .footer-menu .menu li a {
		font-size: 1em;
	}

	footer.footer .footer-wrap .socials-menu .menu li {
		margin-top: 16px;
	}

	footer.footer .footer-wrap .socials-menu .menu li a::before {
		width: 24px;
		min-width: 24px;
		height: 24px;
		margin-right: 10px;
	}

	footer.footer .footer-wrap .footer-copyright {
		margin-top: 16px;
		padding-top: 16px;
	}

	footer.footer .footer-wrap .footer-copyright ul.footer-holding {
		margin-bottom: 16px;
	}
	
	.blog-item .item-link .caption p.h3 {
		font-size: 1.5em;
	}

	section.main {
		padding: 40px 0px;
	}
	
	section.main .main-wrap .post-hero .blog-item .item-link .caption p.h3 {
		font-size: 1.75em;
	}
	
	section.main .main-wrap .post-side-hero {
		padding-top: 6px;
	}
	
	section.main .main-wrap .post-side-hero .blog-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	section.platforms {
		padding: 20px 0px;
	}
	
	section h2.section-title {
		font-size: 1.75em;
	}
	
	section.platforms .platforms-wrap .platforms-list .platform-item {
		width: calc(100%/6);
		padding: 12px 24px;
	}

	section.popular {
		padding: 40px 0px;
	}
	
	section.popular .popular-wrap h2.section-title {
		margin-bottom: 34px;
	}
	
	section.popular .popular-wrap .popular-list .blog-item {
		padding: 34px 0px;
	}
	
	section .pagination {
		margin-top: 28px;
	}
	
	section .pagination a,
	section .pagination span {
		margin: 6px;
		width: 36px;
		min-width: 36px;
		height: 36px;
	}

	section.about {
		padding: 40px 0px;
	}
	
	section.about .about-wrap {
		padding: 24px;
	}
	
	section.about .about-wrap h2.section-title {
		font-size: 2em;
	}
	
	section.about .about-wrap a.more-link {
		padding: 12px 26px;
		font-size: 1.125em;
	}
	
	section.about .about-wrap a.more-link::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}
	
	section.about .about-wrap a.more-link::before {
		right: 26px;
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	section.archive {
		padding: 40px 0px;
	}
	
	section.archive .archive-wrap h1 {
		font-size: 2.125em;
		margin-bottom: 20px;
	}

	section.seo {
		padding: 40px 0px;
	}
	
	section.seo .seo-content h2 {
		font-size: 1.75em;
	}
	
	section.seo .seo-content h3 {
		font-size: 1.375em;
	}
	
	section.seo .seo-content h4 {
		font-size: 1.125em;
	}

	.show-more-wrap .show-more::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}
	
	.faq-container .card {
		padding: 16px 0px;
	}

	.faq-container .card .card-header button {
		font-size: 1.25em;
	}
	
	.faq-container .card .card-header button .cross {
		width: 20px;
		min-width: 20px;
		height: 20px;
	}
	
	section .no-results h3 {
		font-size: 1.5em;
	}

	section.single {
		padding: 40px 0px;
	}
	
	section.single .single-caption {
		margin-bottom: 20px;
	}
	
	section.single .single-caption h1 {
		font-size: 2.125em;
	}
	
	section.single .single-thumbnail {
		margin-bottom: 20px;
	}
	
	section.single .page-content {
		margin-bottom: 20px;
	}

	.progress-bar-container {
		top: 69px;
	}

	section.single .also-read {
		padding: 16px;
	}

	section.single .also-read p.h2 {
		font-size: 1.125em;
	}
	
	section.single .also-read .also-read-list li {
		padding-left: 8px;
	}
	
	section.single .also-read .also-read-list li a {
		font-size: 1em;
	}

	section.single .author-box {
		padding: 16px;
	}
	
	section.single .author-box .author-thumbnail img {
		width: 50px;
		min-width: 50px;
		height: 50px;
	}
	
	section.single .author-box .author-caption {
		padding-left: 66px;
		min-height: 50px;
	}

	section.single .comments-area {
		margin-top: 26px;
	}
	
	section.single .comments-area .comments-box {
		padding: 16px;
	}
	
	section.single .comments-area .comments-box h2 {
		font-size: 1.5em;
		margin-bottom: 16px;
	}
	
	section.single .comments-area .comments-box + .comment-respond {
		margin-top: 26px;
	}
	
	section.single .comments-area .comment-respond {
		padding: 16px;
	}
	
	section.single .comments-area .comment-respond > h3 {
		font-size: 1.5em;
		margin-bottom: 16px;
	}
	
	section.single .comments-area .comment-respond .comment-form > p {
		margin-bottom: 16px;
	}
	
	section.single .comments-area .comment-respond .comment-form > p input {
		padding: 12px 10px;
	}
	
	section.single .comments-area .comment-respond .comment-form > p textarea {
		padding: 12px 10px;
	}
	
	section.single .comments-area .comment-respond .comment-form > p.form-submit input {
		padding: 13px 26px;
	}
	
	section.single .comments-area .comment-respond .comment-form > p span.error-message {
		margin-top: 6px;
	}

	section.single .more-posts {
		padding: 20px;
		margin-bottom: 26px;
	}
	
	section.single .more-posts h2 {
		font-size: 1.5em;
		margin-bottom: 16px;
	}
	
	section.single .more-posts .more-posts-list .blog-item {
		padding-bottom: 16px;
		margin-bottom: 16px;
	}
	
	section.single .more-posts .more-posts-list .blog-item .item-link .caption p.h3 {
		font-size: 1.125em;
	}
	
	section.single .more-posts a.more-link {
		padding: 12px 26px;
		font-size: 1.125em;
	}

	section.single .share-wrap {
		padding: 20px;
	}
	
	section.single .share-wrap h2 {
		font-size: 1.5em;
		margin-bottom: 16px;
	}
	
	section.single .scroll-top-wrap {
		margin-top: 26px;
	}
	
	section.single .scroll-top-wrap .scroll-top-btn {
		padding: 12px 26px;
		bottom: 40px;
	}
	
	section.single .scroll-top-wrap .scroll-top-btn::after {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-left: 6px;
	}
	
	section.single .scroll-top-wrap .scroll-top-btn::before {
		right: 26px;
		width: 20px;
		min-width: 20px;
		height: 20px;
	}

	.site#page:has(section.archive.archive-author) section.single {
		padding-bottom: 20px;
	}

	section.archive.archive-author {
		padding-top: 20px;
	}
	
	section.archive.archive-author .archive-wrap h2 {
		font-size: 1.75em;
	}

	section.page {
		padding: 40px 0px;
	}
	
	section.page h1 {
		font-size: 2.125em;
		margin-bottom: 20px;
	}

	section.page-about {
		padding: 40px 0px;
	}

	section.page-about .about-wrap p {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap h1 {
		font-size: 2.125em;
		margin-bottom: 26px;
	}
	
	section.page-about .about-wrap .team-wrap {
		margin-bottom: 26px;
	}
	
	section.page-about .about-wrap .team-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 26px;
	}
	
	section.page-about .about-wrap h2 {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .thumbnail {
		margin-bottom: 26px;
	}
	
	section.page-about .about-wrap .values-wrap {
		margin-bottom: 26px;
	}
	
	section.page-about .about-wrap .values-wrap .list > .row .col-12:nth-child(1n + 4) {
		margin-top: 26px;
	}
	
	section.page-about .about-wrap hr {
		margin: 0px 0px 26px;
	}
	
	section.page-about .about-wrap .audience-wrap {
		margin-bottom: 26px;
	}
	
	section.page-about .about-wrap .audience-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 26px;
	}
	
	section.page-about .about-wrap .form-box {
		padding: 20px;
	}
	
	section.page-about .about-wrap .form-box h2 {
		font-size: 1.375em;
		margin-bottom: 20px;
	}
	
	section .wpcf7 form p {
		margin-bottom: 16px;
	}
	
	section .wpcf7 form p input {
		padding: 12px 10px;
	}
	
	section .wpcf7 form p textarea {
		padding: 12px 10px;
	}
	
	section .wpcf7 form p .wpcf7-not-valid-tip {
		margin-top: 6px;
	}
	
	section .wpcf7 form p input[type="submit"] {
		padding: 13px 26px;
	}
	
	section .wpcf7 form .wpcf7-response-output {
		margin: 16px 0px 0px;
		padding: 8px 16px;
	}

	section.page-contacts {
		padding: 40px 0px;
	}
	
	section.page-contacts h1 {
		font-size: 2.125em;
		margin-bottom: 26px;
	}
	
	section.page-contacts .about-wrap {
		padding: 20px;
	}
	
	section.page-contacts .about-wrap p.first {
		font-size: 1.125em;
		margin-bottom: 20px;
	}
	
	section.page-contacts .about-wrap p {
		font-size: 1em;
		margin-bottom: 20px;
	}
	
	section.page-contacts .about-wrap .info-list {
		padding: 14px;
	}
	
	section.page-contacts .about-wrap .info-list .info-item:nth-child(1n + 2) {
		margin-top: 16px;
	}
	
	section.page-contacts .about-wrap .info-list .info-item p.h2 {
		font-size: 1em;
		margin-bottom: 6px;
	}
	
	section.page-contacts .about-wrap .info-list .info-item a.link {
		font-size: 1.125em;
	}
	
	section.page-contacts .form-wrap {
		padding: 20px 20px 30px;
	}
	
	section.page-contacts .form-wrap h2 {
		font-size: 1.375em;
		margin-bottom: 20px;
	}
	
	section.page-contacts .form-wrap p.under {
		font-size: 1em;
		margin-top: 20px;
	}

	section.page .search-page-form {
		margin-bottom: 20px;
	}
	
	section.page .search-page-form .search-form-wrap input {
		padding: 12px 10px;
	}
	
	section.page .search-page-form .search-form-wrap input[type="submit"] {
		padding: 12px 26px;
		margin-left: 16px;
	}
	
	section.page .search-list-wrap span.result-count {
		font-size: 1em;
		margin-bottom: 16px;
	}
	
	section.page .search-list-wrap .search-list article:nth-child(1n + 2) {
		margin-top: 16px;
	}
	
	section.page .search-list-wrap .search-list article a.search-link {
		padding: 16px;
	}
	
	section.page .search-list-wrap .search-list article a.search-link p.h3 {
		font-size: 1.125em;
	}
}

@media screen and (max-width: 1199px) {
	.container-fluid {
		padding: 0px 80px;
	}

	header.header {
		padding: 20px 0px;
	}

	header.header .header-wrap a.logo {
		margin: 0px 16px;
		height: 16px;
	}

	header.header .header-wrap div div .menu > li {
		margin-right: 16px;
	}

	header.header .header-wrap div div .menu > li > .sub-menu {
		padding: 18px;
	}

	header.header .header-wrap .search-btn {
		margin-right: 16px;
	}

	footer.footer {
		padding: 32px 0px;
	}

	footer.footer .footer-wrap a.logo {
		height: 16px;
	}

	footer.footer .footer-wrap .footer-menu .menu li {
		margin-top: 16px;
	}

	footer.footer .footer-wrap .socials-menu .menu li a::before {
		width: 20px;
		min-width: 20px;
		height: 20px;
		margin-right: 8px;
	}

	.blog-item .item-link .caption p.h3 {
		font-size: 1.375em;
	}

	section.main {
		padding: 32px 0px;
	}
	
	section.main .main-wrap .post-hero .blog-item .item-link .caption p.h3 {
		font-size: 1.5em;
	}
	
	section.main .main-wrap .post-side-hero {
		padding-top: 4px;
	}
	
	section.main .main-wrap .post-side-hero .blog-item {
		padding-bottom: 16px;
		margin-bottom: 16px;
	}

	section.main .main-wrap .post-side-hero .blog-item .item-link .caption p.h3 {
		font-size: 1.125em;
	}

	section.platforms {
		padding: 16px 0px;
	}
	
	section h2.section-title {
		font-size: 1.5em;
	}
	
	section.platforms .platforms-wrap .platforms-list .platform-item {
		width: calc(100%/5);
		padding: 10px 20px;
	}

	section.popular {
		padding: 32px 0px;
	}
	
	section.popular .popular-wrap h2.section-title {
		margin-bottom: 28px;
	}
	
	section.popular .popular-wrap .popular-list .blog-item {
		padding: 28px 0px;
	}
	
	section .pagination {
		margin-top: 22px;
	}

	section.about {
		padding: 32px 0px;
	}
	
	section.about .about-wrap {
		padding: 20px;
	}
	
	section.about .about-wrap h2.section-title {
		font-size: 1.75em;
	}
	
	section.about .about-wrap a.more-link {
		padding: 10px 22px;
		font-size: 1em;
	}
	
	section.about .about-wrap a.more-link::before {
		right: 22px;
	}

	section.archive {
		padding: 32px 0px;
	}
	
	section.archive .archive-wrap h1 {
		font-size: 1.875em;
	}
	
	section.archive .archive-wrap .archive-list .blog-item {
		width: calc(100% / 3);
		padding: 0px 16px;
	}
	
	section.archive .archive-wrap .archive-list .blog-item:nth-child(1n + 4) {
		margin-top: 28px;
	}

	section.seo {
		padding: 32px 0px;
	}
	
	section.seo .seo-content h2 {
		font-size: 1.5em;
	}
	
	section.seo .seo-content h3 {
		font-size: 1.25em;
	}
	
	section.seo .seo-content h4 {
		font-size: 1.125em;
	}

	.faq-container .card .card-header button {
		font-size: 1.25em;
		padding-right: 30px;
	}

	section .no-results h3 {
		font-size: 1.375em;
	}

	section.single {
		padding: 32px 0px;
	}
	
	section.single .single-caption h1 {
		font-size: 1.875em;
	}

	.progress-bar-container {
		top: 61px;
	}

	section.single .author-box .author-thumbnail {
		padding-right: 12px;
	}
	
	section.single .author-box .author-caption {
		padding-left: 62px;
	}

	section.single .comments-area {
		margin-top: 24px;
	}
	
	section.single .comments-area .comments-box h2 {
		font-size: 1.375em;
	}
	
	section.single .comments-area .comments-box + .comment-respond {
		margin-top: 24px;
	}
	
	section.single .comments-area .comment-respond > h3 {
		font-size: 1.375em;
	}
	
	section.single .comments-area .comment-respond .comment-form > p.form-submit input {
		padding: 13px 22px;
		font-size: 1em;
	}

	section.single .more-posts {
		padding: 16px;
		margin-bottom: 24px;
	}

	section.single .more-posts h2 {
		font-size: 1.375em;
	}

	section.single .more-posts a.more-link {
		padding: 12px 22px;
		font-size: 1em;
	}

	section.single .share-wrap {
		padding: 16px;
	}
	
	section.single .share-wrap h2 {
		font-size: 1.375em;
	}

	section.single .share-wrap .addtoany_shortcode .addtoany_list {
		margin: 0px -6px;
	}

	section.single .share-wrap .addtoany_shortcode .addtoany_list a {
		margin: 0px 6px;
	}
	
	section.single .scroll-top-wrap {
		margin-top: 24px;
	}
	
	section.single .scroll-top-wrap .scroll-top-btn {
		padding: 10px 22px;
		bottom: 32px;
		font-size: 1em;
	}
	
	section.single .scroll-top-wrap .scroll-top-btn::before {
		right: 22px;
	}

	.site#page:has(section.archive.archive-author) section.single {
		padding-bottom: 16px;
	}

	section.archive.archive-author {
		padding-top: 16px;
	}
	
	section.archive.archive-author .archive-wrap h2 {
		font-size: 1.5em;
	}

	section.page {
		padding: 32px 0px;
	}
	
	section.page h1 {
		font-size: 1.875em;
	}

	section.page-about {
		padding: 32px 0px;
	}
	
	section.page-about .about-wrap h1 {
		font-size: 1.875em;
		margin-bottom: 22px;
	}
	
	section.page-about .about-wrap .team-wrap {
		margin-bottom: 22px;
	}
	
	section.page-about .about-wrap .team-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 22px;
	}
	
	section.page-about .about-wrap .thumbnail {
		margin-bottom: 22px;
	}
	
	section.page-about .about-wrap .values-wrap {
		margin-bottom: 22px;
	}
	
	section.page-about .about-wrap .values-wrap .list > .row .col-12:nth-child(1n + 4) {
		margin-top: 22px;
	}
	
	section.page-about .about-wrap hr {
		margin: 0px 0px 22px;
	}
	
	section.page-about .about-wrap .audience-wrap {
		margin-bottom: 22px;
	}
	
	section.page-about .about-wrap .audience-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 22px;
	}
	
	section.page-about .about-wrap .form-box {
		padding: 16px;
	}
	
	section.page-about .about-wrap .form-box h2 {
		margin-bottom: 16px;
	}
	
	section .wpcf7 form p input[type="submit"] {
		padding: 13px 22px;
		font-size: 1em;
	}

	section.page-contacts {
		padding: 32px 0px;
	}
	
	section.page-contacts h1 {
		font-size: 1.875em;
		margin-bottom: 22px;
	}
	
	section.page-contacts .about-wrap {
		padding: 16px;
	}
	
	section.page-contacts .about-wrap p.first {
		margin-bottom: 16px;
	}
	
	section.page-contacts .about-wrap p {
		margin-bottom: 16px;
	}
	
	section.page-contacts .form-wrap {
		padding: 16px 16px 24px;
	}
	
	section.page-contacts .form-wrap h2 {
		margin-bottom: 16px;
	}
	
	section.page-contacts .form-wrap p.under {
		margin-top: 16px;
	}

	section.page .search-page-form .search-form-wrap input {
		font-size: 1em;
	}
	
	section.page .search-page-form .search-form-wrap input[type="submit"] {
		padding: 12px 22px;
		font-size: 1em;
	}
	
	section.page .search-list-wrap .search-list article:nth-child(1n + 2) {
		margin-top: 14px;
	}
}

@media screen and (max-width: 991px) {
	.container-fluid {
		padding: 0px 60px;
	}

	header.header {
		padding: 15px 0px;
	}

	header.header .header-wrap .header-left {
		display: none;
	}

	header.header .header-wrap a.logo {
		margin-left: 0px;
		height: 16px;
	}

	header.header .header-wrap .header-right {
		width: 100%;
	}

	header.header .header-wrap .header-right .languages-menu {
		display: none;
	}

	header.header .header-wrap .header-right .menu-btn {
		display: flex;
		width: 26px;
		min-width: 26px;
		height: 26px;
		cursor: pointer;
		font-size: 0px;
		color: transparent;
		position: relative;
	}

	header.header .header-wrap .header-right .menu-btn span {
		top: 50%;
		margin-top: -1px;
	}

	header.header .header-wrap .header-right .menu-btn span,
	header.header .header-wrap .header-right .menu-btn span::before,
	header.header .header-wrap .header-right .menu-btn span::after {
		width: 100%;
		height: 2px;
		background-color: var(--main-black);
		border-radius: 0;
		position: absolute;
		transition: var(--fast);
		left: 0px;
	}

	header.header .header-wrap .header-right .menu-btn span::before {
		content: '';
		top: -8px;
	}

	header.header .header-wrap .header-right .menu-btn span::after {
		content: '';
		bottom: -8px;
	}

	header.header.menu-open .header-right .menu-btn span {
		background-color: transparent;
	}

	header.header.menu-open .header-right .menu-btn span::before {
		top: 0px;
		transform: rotate(45deg);
	}

	header.header.menu-open .header-right .menu-btn span::after {
		bottom: 0px;
		transform: rotate(-45deg);
	}

	header.header .header-wrap .search-btn {
		width: 24px;
		min-width: 24px;
		height: 24px;
	}

	.mobile-menu{
		position: fixed;
		z-index: 9;
		left: 0px;
		top: 0px;
		width: 100%;
		height: 100lvh;
		background-color: var(--main-white);
		padding: 74px 0px 15px;
		opacity: 0;
		user-select: none;
		pointer-events: none;
		transition: opacity var(--fast);
		overflow-y: auto;
	}

	.mobile-menu.show {
		display: flex;
		opacity: 1;
		user-select: auto;
		pointer-events: all;
	}

	.mobile-menu.show .menus-wrap {
		display: flex;
		flex-direction: column;
	}

	.mobile-menu.show .menus-wrap .menu {
		padding: 0px;
		margin: 0px;
		list-style: none;
		display: flex;
		flex-direction: column;
	}
	
	.mobile-menu.show .menus-wrap .menu > li {
		margin-bottom: 16px;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
	}

	.mobile-menu.show .menus-wrap .menu > li:last-child {
		margin-bottom: 0px;
	}
	
	.mobile-menu.show .menus-wrap .menu > li > a {
		text-decoration: none;
		color: var(--main-text);
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		font-size: 1em;
		font-weight: 400;
		line-height: 100%;
		transition: var(--fast);
	}
	
	@media screen and (min-width: 576px) {
		.mobile-menu.show .menus-wrap .menu > li > a:hover {
			color: var(--main-primary);
		}
	}
	
	.mobile-menu.show .menus-wrap .menu > li.current-menu-item > a {
		color: var(--main-primary);
	}

	.mobile-menu.show .menus-wrap .menu > li.menu-item-has-children > a {
		margin-bottom: 16px;
	}

	.mobile-menu.show .menus-wrap .menu > li.menu-item-has-children > a[href="#"] {
		display: none;
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu {
		list-style: none;
		transition: var(--fast);
		padding: 0px;
		margin: 0px;
	}
		
	.mobile-menu.show .menus-wrap .menu > li.pll-parent-menu-item > .sub-menu {
		display: flex;
		align-items: center;
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li {
		display: flex;
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li:not(:first-child) {
		margin-top: 16px;
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li > a {
		text-decoration: none;
		color: var(--main-text);
		position: relative;
		z-index: 2;
		display: flex;
		align-items: center;
		font-size: 1em;
		font-weight: 400;
		line-height: 100%;
		transition: var(--fast);
		white-space: nowrap;
	}
	
	@media screen and (min-width: 576px) {
		.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li > a:hover {
			color: var(--main-primary);
		}
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li.current-menu-item > a {
		color: var(--main-primary);
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li.menu-line {
		border-bottom: 1px solid var(--main-line-gray);
	}
	
	.mobile-menu.show .menus-wrap .menu > li > .sub-menu > li.menu-line a {
		display: none;
	}

	.mobile-menu.show .menus-wrap .languages-menu {
		margin-top: 16px;
		border-top: 1px solid var(--main-line-gray);
		padding-top: 16px;
	}

	.mobile-menu.show .menus-wrap .languages-menu .menu > li {
		flex-direction: row;
	}

	.mobile-menu.show .menus-wrap .languages-menu .menu > li > a {
		margin: 0px;
	}

	.mobile-menu.show .menus-wrap .languages-menu .menu > li > .sub-menu > li {
		margin: 0px;
		margin-left: 16px;
	}

	.mobile-menu.show .menus-wrap .languages-menu .menu > li > .sub-menu > li.current-lang {
		display: none;
	}

	footer.footer .footer-wrap > .row > .col-12:nth-child(1),
	footer.footer .footer-wrap > .row > .col-12:nth-child(4) {
		margin-bottom: 32px;
	}

	.blog-item .item-link .caption p.h3 {
		font-size: 1.25em;
	}
	
	section.main .main-wrap .post-hero .blog-item .item-link .caption p.h3 {
		font-size: 1.375em;
	}
	
	section.main .main-wrap .post-side-hero {
		padding-top: 16px;
		margin-top: 16px;
		border-top: 1px solid var(--main-line-gray);
	}
	
	section h2.section-title {
		font-size: 1.375em;
	}
	
	section.platforms .platforms-wrap .platforms-list .platform-item {
		width: calc(100%/4);
		padding: 8px 16px;
	}
	
	section.popular .popular-wrap h2.section-title {
		margin-bottom: 22px;
	}
	
	section.popular .popular-wrap .popular-list .blog-item {
		padding: 22px 0px;
	}
	
	section .pagination {
		margin-top: 16px;
	}
	
	section.about .about-wrap h2.section-title {
		font-size: 1.5em;
	}
	
	section.archive .archive-wrap h1 {
		font-size: 1.625em;
		margin-bottom: 16px;
	}
	
	section.archive .archive-wrap .archive-list .blog-item {
		width: calc(100% / 2);
		padding: 0px 16px;
	}
	
	section.archive .archive-wrap .archive-list .blog-item:nth-child(1n + 3) {
		margin-top: 24px;
	}

	section.seo .seo-content h2 {
		font-size: 1.375em;
		margin-bottom: 16px;
	}

	.show-more-wrap .show-more span {
		font-size: 1em;
	}

	section.seo .row > .col-12:first-child {
		margin-bottom: 32px;
	}

	section .no-results h3 {
		font-size: 1.25em;
	}

	section.single .single-caption {
		margin-bottom: 16px;
	}
	
	section.single .single-caption h1 {
		font-size: 1.625em;
	}

	section.single .single-thumbnail {
		margin-bottom: 16px;
	}

	section.single .page-content {
		margin-bottom: 16px;
	}

	.progress-bar-container {
		top: 57px;
	}

	section.single .also-read .also-read-list li:not(:last-child) {
		padding-bottom: 12px;
		margin-bottom: 12px;
	}

	section.single .author-box {
		margin-bottom: 20px;
	}

	section.single .author-box .author-thumbnail {
		padding-right: 12px;
		padding-bottom: 8px;
		position: relative;
		left: auto;
		top: auto;
		float: left;
	}
	
	section.single .author-box .author-caption {
		padding-left: 0px;
		display: block;
	}

	section.single .author-box .author-caption a {
		display: flex;
	}

	section.single .author-box .author-caption span.post-count {
		display: flex;
	}

	section.single .author-box .author-caption p {
		clear: both;
	}

	section.single .comments-area {
		margin-top: 20px;
		margin-bottom: 20px;
	}

	section.single .comments-area .comments-box h2 {
		font-size: 1.25em;
	}

	section.single .comments-area .comments-box + .comment-respond {
		margin-top: 20px;
	}

	section.single .comments-area .comment-respond > h3 {
		font-size: 1.25em;
	}

	section.single .more-posts {
		margin-bottom: 20px;
	}

	section.single .more-posts h2 {
		font-size: 1.25em;
	}
	
	section.single .share-wrap h2 {
		font-size: 1.25em;
	}
	
	section.single .scroll-top-wrap {
		margin-top: 20px;
	}

	section.single.archive-author .author-box {
		margin-bottom: 0px;
	}
	
	section.archive.archive-author .archive-wrap h2 {
		font-size: 1.375em;
		margin-bottom: 16px;
	}
	
	section.page h1 {
		font-size: 1.625em;
		margin-bottom: 16px;
	}

	section.page-about .about-wrap h1 {
		font-size: 1.625em;
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .team-wrap {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .team-wrap p {
		font-size: 1em;
	}
	
	section.page-about .about-wrap .team-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 16px;
	}
	
	section.page-about .about-wrap .thumbnail {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .values-wrap {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .values-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 16px;
	}
	
	section.page-about .about-wrap hr {
		margin: 0px 0px 16px;
	}
	
	section.page-about .about-wrap .audience-wrap {
		margin-bottom: 16px;
	}
	
	section.page-about .about-wrap .audience-wrap .list > .row .col-12:nth-child(1n + 3) {
		margin-top: 16px;
	}
	
	section.page-about .about-wrap .form-box h2 {
		margin-bottom: 16px;
	}
	
	section .wpcf7 form p input[type="submit"] {
		padding: 13px 22px;
	}

	section.page-contacts {
		padding: 32px 0px;
	}
	
	section.page-contacts h1 {
		font-size: 1.625em;
		margin-bottom: 16px;
	}

	section.page-contacts .about-wrap {
		margin-bottom: 20px;
	}
	
	section.page-contacts .form-wrap {
		padding: 16px 16px 20px;
	}

	section.page .search-page-form .search-form-wrap input[type="submit"] {
		margin-left: 14px;
	}

	section.page .search-list-wrap .search-list article a.search-link {
		padding: 14px;
	}

	section.page .search-list-wrap .search-list article a.search-link p.h3 {
		font-size: 1em;
	}
}

@media screen and (max-width: 767px) {
	.container-fluid {
		padding: 0px 40px;
	}

	section.popular .popular-wrap .popular-list .blog-item .item-link {
		flex-direction: column;
	}
	
	section.popular .popular-wrap .popular-list .blog-item .item-link .thumbnail {
		width: 100%;
	}
	
	section.popular .popular-wrap .popular-list .blog-item .item-link .caption {
		width: 100%;
		padding: 16px 0px 0px;
	}

	section.popular .popular-wrap h2.section-title {
		margin-bottom: 16px;
	}
	
	section.popular .popular-wrap .popular-list .blog-item {
		padding: 16px 0px;
	}
	
	section .pagination {
		margin-top: 10px;
	}
	
	section.about .about-wrap h2.section-title {
		font-size: 1.375em;
	}

	section.archive .archive-wrap h1 {
		font-size: 1.5em;
	}

	section.single .single-caption h1 {
		font-size: 1.5em;
		margin-bottom: 14px;
	}
	
	section.page h1 {
		font-size: 1.5em;
	}

	section.page-about .about-wrap h1 {
		font-size: 1.5em;
	}

	section.page-about .about-wrap .form-box h2 {
		font-size: 1.25em;
	}

	section.page-contacts h1 {
		font-size: 1.5em;
	}

	section.page-contacts .form-wrap h2 {
		font-size: 1.25em;
	}

	section.page-contacts .about-wrap .info-list {
		padding: 12px;
	}

	section.page .search-list-wrap .search-list article a.search-link {
		padding: 12px;
	}
}

@media screen and (max-width: 575px) {
	.container-fluid {
		padding: 0px 15px;
	}

	footer.footer {
		padding: 24px 0px;
	}

	footer.footer .footer-wrap > .row > .col-12:nth-child(1), 
	footer.footer .footer-wrap > .row > .col-12:nth-child(2),
	footer.footer .footer-wrap > .row > .col-12:nth-child(3) {
		margin-bottom: 24px;
	}

	footer.footer .footer-wrap > .row > .col-12:nth-child(4) {
		margin-bottom: 0px;
	}

	footer.footer .footer-wrap .footer-copyright .copy {
		flex-direction: column;
	}

	footer.footer .footer-wrap .footer-copyright p:first-child {
		margin-bottom: 12px;
	}

	.blog-item .item-link .caption {
		padding: 12px 0px 0px;
	}

	.blog-item:not(:has(.thumbnail)) .item-link .caption {
		padding-top: 0px;
	}

	.blog-item.legal-help .item-link .caption,
	.blog-item.legal-help-en .item-link .caption {
		padding-top: 0px;
	}

	.blog-item .item-link .caption .tag {
		font-size: 0.875em;
		margin-bottom: 6px;
	}

	.blog-item .item-link .caption p.h3 {
		font-size: 1.125em;
		margin-bottom: 10px;
	}

	.blog-item .item-link .caption .meta {
		gap: 10px 12px;
	}

	.blog-item .item-link .caption .meta span.date {
		font-size: 0.875em;
	}
	
	.blog-item .item-link .caption .meta span.time-to-read {
		font-size: 0.875em;
	}
	
	.blog-item .item-link .caption .meta span.time-to-read::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	.blog-item .item-link .caption p.text {
		font-size: 0.875em;
		margin-top: 10px;
	}

	section.main {
		padding: 24px 0px;
	}

	section.main .main-wrap .post-hero .blog-item .item-link .caption p.h3 {
		font-size: 1.25em;
	}

	section.main .main-wrap .post-side-hero .blog-item .item-link .caption p.h3 {
		font-size: 1em;
	}

	section h2.section-title {
		font-size: 1.25em;
	}

	section.platforms .platforms-wrap .platforms-list .platform-item {
		width: calc(100%/3);
	}

	section.popular {
		padding: 24px 0px;
	}

	section.popular .popular-wrap .popular-list .blog-item .item-link .caption {
		padding: 12px 0px 0px;
	}

	section .pagination {
		margin-top: 13px;
	}

	section .pagination a,
	section .pagination span {
		margin: 3px;
		width: 28px;
		min-width: 28px;
		height: 28px;
	}

	section.about {
		padding: 24px 0px;
	}
	
	section.about .about-wrap {
		padding: 16px;
	}

	section.about .about-wrap span.uppertitle {
		font-size: 0.875em;
	}
	
	section.about .about-wrap h2.section-title {
		font-size: 1.25em;
	}

	section.about .about-wrap p {
		font-size: 0.875em;
	}
	
	section.about .about-wrap a.more-link {
		padding: 8px 18px;
	}
	
	section.about .about-wrap a.more-link::after {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-left: 4px;
	}
	
	section.about .about-wrap a.more-link::before {
		right: 18px;
		width: 18px;
		min-width: 18px;
		height: 18px;
	}

	section.archive {
		padding: 24px 0px;
	}
	
	section.archive .archive-wrap h1 {
		font-size: 1.375em;
	}
	
	section.archive .archive-wrap .archive-list .blog-item {
		width: 100%;
	}
	
	section.archive .archive-wrap .archive-list .blog-item:nth-child(1n + 2) {
		margin-top: 24px;
	}

	section.archive .archive-wrap .pagination {
		margin-top: 21px;
	}

	section.seo {
		padding: 24px 0px;
	}

	section.seo .seo-content h2 {
		font-size: 1.25em;
	}

	section.seo .seo-content h3 {
		font-size: 1.125em;
	}
	
	section.seo .seo-content h4 {
		font-size: 1em;
	}

	.faq-container .card {
		padding: 12px 0px;
	}

	.faq-container .card .card-header button {
		font-size: 1.125em;
	}

	.faq-container .card .card-body {
		padding: 10px 0px 0px;
	}

	section .no-results h3 {
		font-size: 1.125em;
		margin-bottom: 12px;
	}

	section .no-results p {
		font-size: 0.875em;
	}

	section.single {
		padding: 24px 0px;
	}

	section.single .single-caption h1 {
		font-size: 1.375em;
	}

	section.single .single-caption .meta .author img {
		width: 28px;
		min-width: 28px;
		height: 28px;
		margin-right: 6px;
	}

	section.single .single-caption .meta .author a {
		font-size: 0.875em;
	}

	section.single .single-caption .meta .date {
		font-size: 0.875em;
	}

	section.single .single-caption .meta span.time-to-read {
		font-size: 0.875em;
	}

	section.single .single-caption .meta span.time-to-read::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.single .single-caption .meta span.post-views {
		font-size: 0.875em;
	}

	section.single .single-caption .meta span.post-views::before {
		width: 14px;
		min-width: 14px;
		height: 14px;
		margin-right: 3px;
	}

	section.single .single-thumbnail .img-wrap span.img-title {
		font-size: 0.625em;
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

	section.single .author-box .author-caption a {
		font-size: 1em;
	}

	section.single .author-box .author-caption span.post-count {
		font-size: 0.875em;
	}

	section.single .author-box .author-caption p {
		font-size: 0.875em;
	}

	section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-author {
		font-size: 1em;
	}

	section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-meta .comment-metadata a {
		font-size: 0.875em;
	}

	section.single .comments-area .comments-box .comment-list li.comment .comment-body .comment-content p {
		font-size: 0.875em;
	}

	section.single .comments-area .comment-respond .comment-form > p {
		margin-bottom: 12px;
	}

	section.single .comments-area .comment-respond .comment-form > p input {
		padding: 9px 6px;
		line-height: 100%;
	}

	section.single .comments-area .comment-respond .comment-form > p textarea {
		padding: 9px 6px;
		line-height: 100%;
	}

	section.single .comments-area .comment-respond .comment-form > p.form-submit input {
		padding: 10px 18px;
	}

	section.single .comments-area .comment-respond .comment-form > p span.error-message {
		font-size: 0.75em;
	}

	section.single .more-posts .more-posts-list .blog-item .item-link .caption p.h3 {
		font-size: 1em;
	}

	section.single .more-posts a.more-link {
		padding: 9px 18px;
	}

	section.single .scroll-top-wrap .scroll-top-btn {
		padding: 8px 18px;
		bottom: 32px;
		font-size: 1em;
	}

	section.single .scroll-top-wrap .scroll-top-btn::before {
		right: 18px;
		width: 18px;
		min-width: 18px;
		height: 18px;
	}

	section.single .scroll-top-wrap .scroll-top-btn::after {
		width: 18px;
		min-width: 18px;
		height: 18px;
		margin-left: 4px;
	}

	.site#page:has(section.archive.archive-author) section.single {
		padding-bottom: 12px;
	}

	section.archive.archive-author {
		padding-top: 12px;
	}
	
	section.archive.archive-author .archive-wrap h2 {
		font-size: 1.25em;
	}

	section.page {
		padding: 24px 0px;
	}
	
	section.page h1 {
		font-size: 1.375em;
	}

	section.page-about {
		padding: 24px 0px;
	}

	section.page-about .about-wrap h1 {
		font-size: 1.375em;
	}

	section.page-about .about-wrap h2 {
		margin-bottom: 14px;
	}

	section.page-about .about-wrap h3 {
		font-size: 1em;
	}

	section.page-about .about-wrap p {
		margin-bottom: 12px;
	}
	
	section .wpcf7 form p {
		margin-bottom: 12px;
	}

	section.page-about .about-wrap .team-wrap .list > .row .col-12:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section.page-about .about-wrap .values-wrap .list > .row .col-12:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section.page-about .about-wrap .audience-wrap .list > .row .col-12:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section .wpcf7 form p input {
		padding: 9px 6px;
		line-height: 100%;
	}

	section .wpcf7 form p textarea {
		padding: 9px 6px;
		line-height: 100%;
	}

	section .wpcf7 form p input[type="submit"] {
		padding: 10px 18px;
	}

	section .wpcf7 form p .wpcf7-not-valid-tip {
		font-size: 0.75em;
	}

	section .wpcf7 form .wpcf7-response-output {
		font-size: 0.875em;
		margin-top: 14px;
		padding: 8px 12px;
	}

	section.page-contacts {
		padding: 24px 0px;
	}

	section.page-contacts .about-wrap p.first {
		font-size: 1em;
		margin-bottom: 14px;
	}

	section.page-contacts .about-wrap p {
		margin-bottom: 14px;
	}

	section.page-contacts .about-wrap .info-list .info-item:nth-child(1n + 2) {
		margin-top: 14px;
	}

	section.page-contacts .about-wrap .info-list .info-item p.h2 {
		font-size: 0.875em;
		margin-bottom: 4px;
	}

	section.page-contacts .about-wrap .info-list .info-item a.link {
		font-size: 1em;
	}

	section.page-contacts .form-wrap p.under {
		font-size: 0.875em;
		margin-top: 14px;
	}

	section.page .search-page-form .search-form-wrap {
		flex-direction: column;
	}

	section.page .search-page-form .search-form-wrap input {
		padding: 10px 8px;
		line-height: 100%;
	}

	section.page .search-page-form .search-form-wrap input[type="submit"] {
		margin: 12px 0px 0px;
		padding: 10px 18px;
		line-height: 100%;
		width: 100%;
	}

	section.page .search-list-wrap span.result-count {
		margin-bottom: 14px;
	}

	section.page .search-list-wrap .search-list article:nth-child(1n + 2) {
		margin-top: 12px;
	}

	section.page .search-list-wrap .search-list article a.search-link p.h3 {
		line-height: 120%;
	}
}

/* @media screen and (max-width: 399px) {
	section.platforms .platforms-wrap .platforms-list .platform-item {
		width: calc(100%/2);
		padding: 6px 12px;
	}
} */