@import url("https://fonts.googleapis.com/css2?family=Raleway:wght@400;500;600;700&display=swap");
* {
	box-sizing: border-box;
}

html {
	width: 100%;
	overflow-x: hidden;
}

body {
	font-family: "Raleway", sans-serif;
	background: #F4F7FD;
	color: #282828;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
}

body.post, body.page {
	margin-bottom: 0;
}

article {
	margin: 30px 0;
}

.main {
	margin-top: 125px;
}

.container {
	width: 1200px;
	padding-left: 15px;
	padding-right: 15px;
	margin-left: auto;
	margin-right: auto;
}

@media (max-width: 1249px) {
	.container {
		width: 1170px;
	}
}

@media (max-width: 1199px) {
	.container {
		width: 960px;
	}
}

@media (max-width: 991px) {
	.container {
		width: 720px;
	}
}

@media (max-width: 767px) {
	.container {
		width: 100%;
	}
}

h1, h2, h3, h4 {
	color: #484873;
	font-weight: 700;
}

h1 {
	font-size: 28px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	h1 {
		font-size: 24px;
	}
}

h2 {
	font-size: 24px;
	line-height: 1.2;
}

@media (max-width: 767px) {
	h2 {
		font-size: 22px;
	}
}

h3 {
	font-size: 20px;
	line-height: 1.3;
}

h4 {
	font-size: 18px;
	line-height: 1.3;
}

input[type="text"],
input[type="email"],
textarea {
	border: none;
}

input[type="text"],
input[type="email"],
input[type="search"],
textarea {
	font-family: "Raleway", sans-serif;
	background: #F4F7FD;
	color: #282828;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
	padding: 10px 20px;
	border-radius: 0;
	-webkit-appearance: none;
	border: none;
	width: 100%;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
	outline-color: #8A9BE7;
	outline-style: double;
	outline-offset: 0;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
input[type="search"]::placeholder,
textarea::placeholder {
	color: #8A9BE7;
}

a {
	color: #282828;
}

a:hover, a:visited {
	color: #282828;
}

a:hover {
	text-decoration: none;
}

a:focus {
	outline: none;
}

.text-light {
	color: #686868;
}

.text-center {
	text-align: center;
}

.uppercase {
	text-transform: uppercase;
}

.show-on-mobile,
.show-on-desktop {
	display: none;
}

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

@media (min-width: 992px) {
	.show-on-desktop {
		display: block;
	}
}

ul, ol {
	margin-left: 0;
	padding-left: 20px;
}

ul li, ol li {
	margin-bottom: 15px;
}

ul li::marker, ol li::marker {
	color: #484873;
	font-weight: 700;
	font-size: 16px;
}

img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
}

.bg-title {
	background: #484873;
	padding: 25px 40px;
}

.bg-title h1 {
	margin: 0;
	color: #FFFFFF;
}

@media (max-width: 767px) {
	.bg-title {
		padding: 20px 25px;
	}
}

button {
	padding: 0;
}

input[type="submit"].btn,
.wp-block-button__link,
.btn {
	font-family: "Raleway", sans-serif;
	font-weight: 700;
	font-size: 13px;
	line-height: 1.6;
	text-transform: uppercase;
	display: flex;
	align-items: center;
	justify-content: center;
	width: fit-content;
	text-decoration: none;
	text-align: center;
	border: none;
	cursor: pointer;
	border-radius: 0;
	padding: 10px 40px;
}

@media (max-width: 1199px) {
	input[type="submit"].btn,
	.wp-block-button__link,
	.btn {
		padding-left: 20px;
		padding-right: 20px;
	}
}

.btn-icon {
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	padding: 4px 10px;
	text-transform: none;
	gap: 10px;
}

input[type="submit"].btn-main,
.btn-main {
	background: #8A9BE7;
	color: #FFFFFF;
}

input[type="submit"].btn-main:visited, input[type="submit"].btn-main:hover, input[type="submit"].btn-main:focus, input[type="submit"].btn-main:active,
.btn-main:visited,
.btn-main:hover,
.btn-main:focus,
.btn-main:active {
	color: #FFFFFF;
}

input[type="submit"].btn-main:hover,
.btn-main:hover {
	background: #FFFFFF;
	color: #484873;
}

input[type="submit"].btn-main-border,
.btn-main-border {
	font-weight: 700;
	font-size: 16px;
	line-height: 19px;
	background: #FFFFFF;
	color: #484873;
	outline: 1px solid #8A9BE7;
}

input[type="submit"].btn-main-border:visited, input[type="submit"].btn-main-border:hover, input[type="submit"].btn-main-border:focus,
.btn-main-border:visited,
.btn-main-border:hover,
.btn-main-border:focus {
	color: #484873;
}

input[type="submit"].btn-main-border:hover,
.btn-main-border:hover {
	background: #8A9BE7;
	color: #FFFFFF;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 99;
	display: flex;
	flex-direction: column;
}

.header-top {
	background: #F4F7FD;
	font-weight: 400;
	font-size: 12px;
	line-height: 1.2;
	text-align: center;
	padding: 6px 0;
}

.header-bottom {
	background: #484873;
	color: #FFFFFF;
	padding: 18px 0;
}

.header-bottom .container {
	display: flex;
	align-items: center;
}

@media (max-width: 767px) {
	.header-top {
		font-size: 10px;
	}
}

.logo {
	display: flex;
}

.main-menu {
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
	margin-left: 0;
	margin-bottom: 0;
	padding-left: 0;
}

.main-menu li {
	margin-bottom: 0;
}

.main-menu li a {
	font-weight: 600;
	font-size: 14px;
	line-height: 1.4;
	text-decoration: none;
	color: #FFFFFF;
}

.main-menu li.menu-item-has-children > a {
	position: relative;
	padding-right: 20px;
}

.main-menu li.menu-item-has-children > a:after {
	position: absolute;
	content: '';
	display: block;
	background: url(../img/arrow-down-light.svg) center no-repeat;
	width: 10px;
	height: 6px;
	right: 0;
	top: 5px;
}

.main-menu li.menu-item-has-children:hover > a:after {
	transform: rotate(180deg);
}

@media (max-width: 991px) {
	.main-menu {
		gap: 25px;
	}
}

.header .main-menu {
	margin-left: auto;
	margin-right: auto;
}

.header .main-menu li a {
	text-transform: uppercase;
}

.footer .main-menu {
	gap: 20px;
	flex-direction: column;
	align-items: flex-start;
	flex: 1;
}

.footer .main-menu li:first-child a {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	cursor: inherit;
	display: block;
	width: 100%;
	position: relative;
}

.footer .main-menu li:first-child a:after {
	position: absolute;
	content: '';
	display: block;
	bottom: -10px;
	left: 0;
	height: 1px;
	width: 100%;
	background: linear-gradient(41deg, rgba(255, 255, 255, 0) 0, white 100%);
}

.footer .main-menu li a {
	font-weight: 400;
}

@media (max-width: 767px) {
	.footer .main-menu {
		flex-direction: column;
		min-width: 240px;
	}
}

.main-navigation {
	display: flex;
	align-items: center;
}

@media (max-width: 991px) {
	.main-navigation {
		display: none;
	}
	.main-navigation.active {
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		width: 100%;
		max-width: 350px;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		background: #484873;
		z-index: 99;
		padding: 15px;
	}
	.main-navigation.active .main-menu {
		display: flex;
		flex-direction: column;
		align-items: flex-start;
		width: -webkit-fill-available;
		margin: 1.5em 0;
	}
}

button.menu-toggle {
	color: #FFFFFF;
	background: none;
	padding: 0;
	display: block;
	font-size: 22px;
	line-height: 1;
	transform: scale(1.7);
	font-weight: 600;
	border: none;
	cursor: pointer;
	margin-left: auto;
}

@media (min-width: 992px) {
	button.menu-toggle {
		display: none;
	}
}

.sub-menu {
	padding: 25px !important;
	display: flex;
	flex-direction: column;
	gap: 12px;
	background: #F4F7FD;
}

.sub-menu li a {
	color: #282828;
}

.search-form {
	display: flex;
	align-items: center;
	position: relative;
	margin: 1.5em 0;
}

.search-form .search-submit {
	border: none;
	position: absolute;
	cursor: pointer;
	height: 100%;
	right: 0;
	top: 0;
}

.search-form .search-field {
	padding: 17px 15px;
	border-radius: 0;
	outline: none;
	width: 100%;
}

.search-form label {
	width: 100%;
}

@media (max-width: 991px) {
	.search-form .search-field {
		padding-top: 14px;
		padding-bottom: 14px;
	}
}

.header .search-form {
	background: none;
	width: auto;
	margin-top: 0;
	margin-bottom: 0;
}

.header .search-form label {
	width: 50px;
	background: url(../img/search.svg) center no-repeat;
}

.header .search-form .search-field {
	padding: 0;
	width: 50px;
	height: 34px;
	position: relative;
	z-index: 20;
	right: 0;
	top: 0;
	border: none;
	-webkit-transition: width 0.4s ease-in-out;
	transition: width 0.4s ease-in-out;
	opacity: 0;
	cursor: pointer;
}

.header .search-form .search-submit {
	position: relative;
	z-index: 1;
	text-transform: none;
	padding: 9px 15px;
	font-weight: 700;
	font-size: 14px;
	line-height: 16px;
	border-radius: 2px;
}

.header .search-form input[type="submit"] {
	border: none;
}

.header .search-form.active label {
	width: auto;
	background: none;
}

.header .search-form.active .search-field {
	margin: 0;
	width: 250px;
	opacity: 1;
	cursor: initial;
	right: 0;
	padding: 5px;
}

.header .search-form.active .search-field:focus {
	outline: none;
}

.header .search-form.active .search-submit {
	border: none;
	cursor: pointer;
}

@media (max-width: 991px) {
	.header .search-form {
		margin-top: auto;
	}
	.header .search-form label {
		width: inherit;
	}
	.header .search-form .search-field {
		width: inherit;
		opacity: 1;
		right: 0;
		transition: none;
	}
	.header .search-form.active .search-field {
		width: inherit;
	}
}

.search .search-form .search-field {
	background: #FFFFFF;
}

.breadcrumbs {
	margin: 1.5em 0;
}

.content-flex {
	display: flex;
	gap: 30px;
}

.content-flex-content {
	width: 770px;
}

.content-flex #secondary {
	width: 370px;
}

@media (max-width: 1249px) {
	.content-flex #secondary {
		width: 340px;
	}
}

@media (max-width: 1199px) {
	.content-flex-content {
		width: 580px;
	}
	.content-flex #secondary {
		width: 320px;
	}
}

@media (max-width: 991px) {
	.content-flex {
		flex-direction: column;
	}
	.content-flex-content,
	.content-flex #secondary {
		width: 100%;
	}
}

.header-post-tabs {
	display: flex;
	align-items: stretch;
	gap: 30px;
}

.header-post-tabs .header-post {
	flex: 1;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 25px 35px;
	border-radius: 2px;
	box-shadow: 1px 1px 20px 10px rgba(0, 0, 0, 0.05);
	padding: 25px;
}

.header-post-tabs .header-post__link-tab {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 1;
}

.header-post-tabs .header-post__thumbnail {
	flex-shrink: 0;
	display: flex;
}

.header-post-tabs .header-post__title {
	color: #484873;
	font-weight: 700;
	font-size: 24px;
	line-height: 1.2;
}

.header-post-tabs .header-post.active {
	background: #FFFFFF;
}

@media (max-width: 991px) {
	.header-post-tabs .header-post {
		flex-wrap: wrap;
		text-align: center;
	}
}

@media (max-width: 767px) {
	.header-post-tabs {
		flex-direction: column;
	}
	.header-post-tabs .header-post {
		gap: 20px;
		padding: 25px;
	}
	.header-post-tabs .header-post__title {
		font-size: 20px;
	}
}

.admin-rating {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 10px;
}

.admin-rating__top {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
}

.admin-rating__text {
	color: #484873;
}

.users-rating {
	display: flex;
	flex-direction: column;
	flex-shrink: 0;
	gap: 10px;
}

.users-rating__top {
	display: flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
}

.users-rating__text {
	color: #484873;
}

.section {
	margin: 30px 0;
	box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
	display: flex;
	flex-direction: column;
}

.section.no-shadow {
	box-shadow: none;
}

.section .wp-block-group__inner-container {
	width: 100%;
}

.section__title {
	border-top-left-radius: 2px;
	border-top-right-radius: 2px;
	position: relative;
	padding: 22px 0;
	background: #FFFFFF;
}

.section__title:after {
	position: absolute;
	display: block;
	content: '';
	background: linear-gradient(41deg, white 0%, #8a9be7 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
}

.section__title.flex {
	display: flex;
	align-items: center;
}

.section__title.flex .btn {
	margin-left: auto;
	margin-right: 40px;
}

.section__title h2, .section__title h3 {
	margin: 0 40px;
}

.section__title .wp-block-image {
	position: absolute;
	top: -15px;
	left: 15px;
	margin: 0;
	background: #FFFFFF;
	box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.05);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	border-radius: 2px;
}

.section__content {
	flex: 1;
	padding: 10px 40px;
	background: #FFFFFF;
	border-bottom-left-radius: 2px;
	border-bottom-right-radius: 2px;
}

.section__content #ez-toc-container, .section__content ul, .section__content ol, .section__content p, .section__content .wp-block-yoast-faq-block, .section__content .comment-body, .section__content .comments-grid {
	margin-bottom: 1.5em;
	margin-top: 1.5em;
}

.section__content iframe {
	width: 100%;
}

.section__button {
	margin-top: 10px;
}

.section__button .btn {
	width: 100%;
}

@media (max-width: 767px) {
	.section__title h2, .section__title h3 {
		margin-left: 25px;
		margin-right: 25px;
	}
	.section__title.flex {
		flex-direction: column;
	}
	.section__title.flex .btn {
		margin-right: auto;
		margin-top: 1.5em;
	}
	.section__content {
		padding: 5px 25px;
	}
}

.section + .section__button {
	margin-top: -20px;
	margin-bottom: 30px;
}

#ez-toc-container {
	background: none;
	box-shadow: none;
}

div#ez-toc-container {
	border: none;
	padding-right: 0;
}

#ez-toc-container {
	padding: 0;
}

.ez-toc-counter nav ul li a::before {
	color: #484873;
	font-weight: 600;
	line-height: 1.5;
}

ul.ez-toc-list {
	column-count: 2;
}

#ez-toc-container ul li {
	margin-bottom: 10px;
}

@media (max-width: 767px) {
	ul.ez-toc-list {
		column-count: 1;
	}
}

.list-pluses,
.list-minuses {
	padding-left: 0;
	list-style: none;
	column-count: 2;
}

.list-pluses li,
.list-minuses li {
	position: relative;
	padding-left: 30px;
	margin-bottom: 15px;
}

.list-pluses li:before,
.list-minuses li:before {
	position: absolute;
	content: '';
	display: block;
	background: url(../img/icon-pluses.svg) center no-repeat;
	width: 18px;
	height: 18px;
	top: 0;
	left: 0;
}

@media (max-width: 767px) {
	.list-pluses,
	.list-minuses {
		column-count: 1;
	}
}

.list-pluses li:before {
	background: url(../img/icon-pluses.svg) center no-repeat;
}

.list-minuses li:before {
	background: url(../img/icon-minuses.svg) center no-repeat;
}

.socials {
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 1.5em 0;
}

.socials a {
	display: flex;
	align-items: center;
	justify-content: center;
}

.company-services-list {
	display: flex;
	flex-direction: column;
	gap: 15px;
	margin: 1.5em 0;
}

@media (max-width: 767px) {
	.company-services-list {
		overflow-x: auto;
	}
}

.company-service {
	display: flex;
	align-items: center;
	gap: 10px;
}

.company-service__name {
	display: flex;
	align-items: center;
	max-width: 300px;
	width: 100%;
	color: #484873;
}

.company-service__name img {
	width: 20px;
	height: 20px;
	margin-right: 10px;
}

@media (max-width: 767px) {
	.company-service__name, .company-service__value {
		flex-shrink: 0;
		max-width: 280px;
	}
}

.comment-form {
	display: flex;
	flex-direction: column;
	gap: 25px;
	position: relative;
	margin-bottom: 60px;
	padding-top: 40px;
	padding-bottom: 40px;
}

.comment-form p {
	margin: 0;
}

.comment-form input[type="text"], .comment-form input[type="email"], .comment-form textarea {
	width: 100%;
	border-radius: 2px;
	background: #F4F7FD;
}

.comment-form input[type="text"]:focus-visible, .comment-form input[type="email"]:focus-visible, .comment-form textarea:focus-visible {
	outline: 1px solid #8A9BE7;
}

.comment-form input[type="text"].error, .comment-form input[type="email"].error, .comment-form textarea.error {
	outline: 1px solid red;
}

.comment-form-author, .comment-form-email, .comment-form-comment, .comment-form-rating, .comment-form-tooltip {
	margin-top: 0;
	margin-bottom: 0;
	display: flex;
	flex-direction: column;
}

.comment-form .logged-in-as {
	font-size: 14px;
	margin-top: 0;
	margin-bottom: 0;
}

.comment-form-rating {
	order: 1;
}

.comment-form-rating .rating-wrap {
	display: flex;
	align-items: center;
}

.comment-form-rating .rating-wrap label {
	margin-right: 10px;
}

.comment-form-author {
	order: 2;
}

.comment-form-email {
	order: 3;
}

.comment-form-comment {
	order: 4;
}

.comment-form-tooltip {
	order: 5;
}

.comment-form .form-submit {
	order: 6;
	margin: 0 auto;
	width: 100%;
	position: absolute;
	bottom: -50px;
	left: 0;
}

.comment-form .form-submit .btn {
	width: 100%;
}

.comment-form .error {
	color: red;
}

.comment-form span.error {
	font-size: 14px;
	line-height: 1.6;
}

@media (max-width: 767px) {
	.comment-form {
		padding-top: 25px;
		padding-bottom: 25px;
	}
}

.stars {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 5px;
}

.stars .star {
	background: url(../img/star-transparent.svg) center no-repeat;
	-webkit-background-size: 20px 20px;
	background-size: 20px 20px;
	width: 25px;
	height: 25px;
	cursor: pointer;
	padding: 2px;
}

.stars .star.active {
	background: url(../img/star-yellow.svg) center no-repeat;
	-webkit-background-size: 20px 20px;
	background-size: 20px 20px;
}

.rating {
	display: flex;
	align-items: center;
	gap: 12px;
	color: #484873;
	font-weight: 500;
	font-size: 16px;
	line-height: 19px;
}

.wp-block-yoast-faq-block .schema-faq-section {
	border: none;
	border-bottom: 1px solid #8A9BE7;
	margin-bottom: 0;
}

.wp-block-yoast-faq-block .schema-faq-question {
	color: #484873;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}

.wp-block-yoast-faq-block .schema-faq-question.faq-q-open {
	border-bottom: none;
}

.wp-block-yoast-faq-block .schema-faq-question:after,
.wp-block-yoast-faq-block .schema-faq-question.faq-q-open:after {
	content: '';
	background: url(../img/arrow-down.svg) center no-repeat;
	width: 11px;
}

.wp-block-yoast-faq-block .schema-faq-question.faq-q-open:after {
	transform: rotate(180deg);
}

.wp-block-yoast-faq-block p.schema-faq-answer {
	padding-top: 0;
}

.comments-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}

.comments-grid .comment-body {
	width: calc(33.33% - 17px);
	background: #F4F7FD;
	padding: 25px;
	margin: 0;
}

.comments-grid .comment-body .comment-thumbnail {
	width: 75px;
}

@media (max-width: 991px) {
	.comments-grid .comment-body {
		width: calc(50% - 13px);
	}
}

@media (max-width: 449px) {
	.comments-grid .comment-body {
		width: 100%;
	}
}

.comments-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.comments-list__bottom {
	padding: 0 25px;
}

.comments-list__bottom .btn {
	margin: 1.5em auto;
}

.comments-list__bottom .navigation {
	margin-top: 0;
}

.comment-body {
	display: flex;
	flex-direction: column;
	gap: 15px;
	background: #FFFFFF;
	padding: 25px 40px;
}

.comment-body__flex {
	display: flex;
	align-items: start;
	gap: 25px;
}

@media (max-width: 767px) {
	.comment-body {
		padding-left: 25px;
		padding-right: 25px;
	}
}

.last-comment .comment-body {
	background: #F4F7FD;
	border-radius: 2px;
	padding: 20px;
}

.last-comment .comment-body__flex .rating {
	margin-left: auto;
}

.comment-avatar {
	display: flex;
	align-items: center;
	justify-content: center;
}

.comment-avatar img {
	border-radius: 50%;
}

.comment-author {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.comment-name {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}

.comment-post-title {
	font-weight: 400;
	font-size: 16px;
	line-height: 1.4;
}

.comment-date {
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	font-style: italic;
	color: #6E6EAD;
}

.comment > .comment-respond .comment-form-rating {
	display: none;
}

.comments-list {
	margin: 1.5em 0;
}

.comments-list .comment-body__flex .comment-date {
	margin-left: auto;
}

.comment {
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.comment .comment {
	margin-left: 40px;
}

@media (max-width: 767px) {
	.comment {
		gap: 25px;
	}
	.comment .comment {
		margin-left: 25px;
	}
}

.comment-body + .comment-respond {
	margin-left: 40px;
	margin-top: 0;
	margin-bottom: 0;
}

@media (max-width: 767px) {
	.comment-body + .comment-respond {
		margin-left: 25px;
	}
}

.comment-reply-title #cancel-comment-reply-link {
	margin-left: 5px;
}

.service-post-grid {
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	gap: 24px;
	margin: 1.5em 0;
}

.service-post-grid .service-post {
	min-height: 160px;
	width: calc(25% - 18px);
}

@media (max-width: 767px) {
	.service-post-grid .service-post {
		width: calc(50% - 12px);
	}
}

.service-post {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.service-post__thumbnail {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 0;
}

.service-post__thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-post__top, .service-post__label, .service-post__rating, .service-post__link, .service-post__name {
	position: relative;
	z-index: 1;
}

.service-post__top {
	display: flex;
}

.service-post__top .service-post__label {
	padding: 2px 5px;
}

.service-post__top .service-post__rating {
	padding: 2px 5px;
	margin-left: auto;
}

.service-post__label {
	background: #8A9BE7;
	color: #FFFFFF;
	font-weight: 600;
	font-size: 8px;
	line-height: 9px;
}

.service-post__rating {
	background: #8A9BE7;
	color: #FFFFFF;
	font-weight: 400;
	font-size: 9px;
	line-height: 11px;
	gap: 5px;
}

.service-post__link {
	margin-top: auto;
}

.service-post__link .btn {
	margin-left: auto;
	margin-right: auto;
}

.service-post__name {
	font-weight: 600;
	font-size: 12px;
	line-height: 14px;
	background: rgba(72, 72, 115, 0.94);
	color: #FFFFFF;
	padding: 13px 5px;
	text-align: center;
	width: 100%;
}

.footer {
	background: #484873;
	color: #FFFFFF;
	padding: 60px 0;
	margin-top: 70px;
}

.footer .container {
	display: flex;
	align-items: stretch;
	gap: 40px;
}

.footer__left {
	max-width: 370px;
}

.footer__left, .footer__right {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}

.footer .footer-navigation {
	display: flex;
	gap: 30px;
}

.footer p {
	margin: 0;
}

@media (max-width: 1199px) {
	.footer .footer-navigation {
		flex-wrap: wrap;
	}
}

@media (max-width: 767px) {
	.footer .container {
		flex-direction: column;
	}
	.footer__left {
		max-width: 100%;
	}
}

.author-block {
	background: #F4F7FD;
	padding: 25px;
	display: flex;
	align-items: center;
	gap: 25px;
}

.author-block__avatar {
	display: flex;
	flex-shrink: 0;
}

.author-block__avatar img {
	border-radius: 50%;
}

.author-block__identify {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.author-block__name {
	color: #484873;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}

.author-block__description {
	color: #6E6EAD;
	font-weight: 500;
	font-size: 12px;
	line-height: 14px;
	font-style: italic;
}

.author-block .socials {
	margin: 0;
}

.navigation {
	margin: 1.5em auto;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
}

.navigation .nav-links {
	display: flex;
	align-items: center;
	gap: 12px;
}

.navigation .page-numbers {
	text-decoration: none;
	font-weight: 600;
	font-size: 16px;
	line-height: 1.4;
	width: 34px;
	height: 34px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #FFFFFF;
	color: #484873;
	border-radius: 2px;
}

.navigation .page-numbers:hover {
	background: #8A9BE7;
	color: #FFFFFF;
}

.navigation .page-numbers.current {
	background: #484873;
	color: #FFFFFF;
}

.navigation .page-numbers.current:hover {
	background: #484873;
}

.navigation .page-numbers.prev, .navigation .page-numbers.next {
	background: none;
}

.navigation .page-numbers.prev:hover, .navigation .page-numbers.next:hover {
	color: #484873;
}

.widget {
	box-shadow: 1px 1px 20px 1px rgba(0, 0, 0, 0.05);
	border-radius: 2px;
}

.widget-title {
	background: #FFFFFF;
	padding: 20px;
	text-align: center;
	color: #484873;
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	position: relative;
}

.widget-title:after {
	position: absolute;
	display: block;
	content: '';
	background: linear-gradient(41deg, white 0%, #8a9be7 100%);
	width: 100%;
	height: 1px;
	bottom: 0;
	left: 0;
}

.widget .comments-list {
	margin: 0;
	gap: 0;
}

.widget .comments-list .comment {
	padding: 25px 10px 15px;
}

.widget .comments-list .comment-body {
	padding: 0;
	background: none;
	border-bottom: 1px solid #8A9BE7;
}

.widget .comments-list .comment-thumbnail {
	display: flex;
	flex-shrink: 0;
	width: 100px;
}

.widget .comments-list .comment-author {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.widget .comments-list .comment-author .comment-name {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}

.widget .comments-list .comment-author .comment-date {
	margin-left: 0;
	font-weight: 500;
	font-size: 14px;
	line-height: 14px;
	color: #484873;
}

.widget .comments-list .comment-title {
	margin-bottom: 15px;
	color: #484873;
}

.widget .post-thumbnail-list .post-thumbnail__logo {
	flex: inherit;
	width: 100px;
}

.widget .post-thumbnail-list .post-thumbnail .btn {
	width: auto;
}

.widget-area .btn {
	width: 100%;
}

.post-thumbnail-list {
	display: flex;
	flex-direction: column;
}

.post-thumbnail {
	display: flex;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid #8A9BE7;
	padding: 10px;
	position: relative;
}

.post-thumbnail.blog {
	gap: 15px;
}

.post-thumbnail__link {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
}

.post-thumbnail__logo {
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 1;
}

.post-thumbnail__right {
	display: flex;
	flex-direction: column;
	align-items: center;
	flex: 1;
	gap: 15px;
}

.post-thumbnail__title {
	font-weight: 600;
	font-size: 20px;
	line-height: 23px;
	text-decoration: none;
}

.post-thumbnail__text {
	font-weight: 500;
	font-size: 16px;
	line-height: 1.4;
}

.post-thumbnail__text p {
	margin: 0;
}

.single-post .post-thumbnail {
	border-bottom: none;
	padding: 0;
}

.post-thumbnail-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
	background: #FFFFFF;
	padding: 25px;
}

.post-thumbnail-grid.no-padding {
	padding-left: 0;
	padding-right: 0;
}

.post-thumbnail-grid .post-thumbnail {
	padding: 25px;
	width: calc(25% - 19px);
	border-bottom: none;
	flex-direction: column;
	text-align: center;
	justify-content: center;
	gap: 20px;
	background: #F4F7FD;
	border-radius: 2px;
}

.post-thumbnail-grid .post-thumbnail__link {
	width: auto;
	height: auto;
	position: static;
	margin-top: auto;
}

@media (max-width: 991px) {
	.post-thumbnail-grid .post-thumbnail {
		width: calc(33.33% - 17px);
	}
}

@media (max-width: 767px) {
	.post-thumbnail-grid .post-thumbnail {
		width: calc(50% - 13px);
	}
}

.home .post-thumbnail-grid.blog .post-thumbnail,
.blog .post-thumbnail-grid.blog .post-thumbnail {
	align-items: start;
	text-align: left;
}

.home .post-thumbnail,
.blog .post-thumbnail {
	width: calc(33.33% - 17px);
	gap: 15px;
}

.home .post-thumbnail__title,
.blog .post-thumbnail__title {
	font-weight: 600;
	font-size: 18px;
	line-height: 1.4;
}

@media (max-width: 991px) {
	.home .post-thumbnail,
	.blog .post-thumbnail {
		width: calc(50% - 13px);
	}
}

@media (max-width: 449px) {
	.home .post-thumbnail,
	.blog .post-thumbnail {
		width: 100%;
	}
}

.banner {
	//background: url(../img/banner-bg.jpg) center no-repeat;
	background: center no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	color: #FFFFFF;
	padding: 120px 0 100px;
}

.banner__title {
	margin-top: 0;
	margin-bottom: 30px;
	color: #FFFFFF;
	font-weight: 900;
	font-size: 60px;
	line-height: 1.3;
}

.banner__subtitle {
	font-weight: 700;
	font-size: 34px;
	line-height: 1.3;
}

.banner__content {
	margin-left: auto;
	margin-right: auto;
	padding-left: 25px;
	padding-right: 25px;
	max-width: 700px;
	text-align: center;
}

@media (max-width: 767px) {
	.banner__title {
		font-size: 36px;
	}
	.banner__subtitle {
		font-size: 28px;
	}
}

/*# sourceMappingURL=style.css.map */