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

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

body {
	background: #EFF1F4;
	font-family: "Roboto", sans-serif;
	color: #2B2B2A;
	font-size: 18px;
	line-height: 1.4;
	font-weight: 400;
}

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

.site {
	min-height: 100vh;
	width: 100%;
	overflow-x: hidden;
	display: flex;
	flex-direction: column;
}

.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%;
	}
}

.content-flex {
	display: flex;
}

@media (max-width: 991px) {
	.content-flex {
		flex-direction: column;
	}
}

#primary {
	margin: 1.5em auto;
}

#primary,
#content-area {
	width: 100%;
	padding-right: 30px;
}

@media (max-width: 991px) {
	#primary,
	#content-area {
		width: 100%;
		padding-right: 0;
	}
}

.home #primary,
.single-post #primary,
.page #primary,
.category #primary {
	padding-right: 0;
}

.single-post #primary {
	width: 100%;
	margin: 0;
}

#secondary {
	width: 370px;
	flex-shrink: 0;
	margin: 1.5em 0;
}

@media (max-width: 991px) {
	#secondary {
		width: 100%;
	}
}

input[type="text"], input[type="email"], input[type="url"], input[type="password"], input[type="number"], input[type="tel"], textarea {
	padding: 12px 18px;
	outline: none;
	border-radius: 5px;
	width: 100%;
	border-top: 1px solid #3C59CD;
	box-shadow: inset 0px 1px 5px 1px rgba(0, 0, 0, 0.1);
}

input[type="text"].error, input[type="email"].error, input[type="url"].error, input[type="password"].error, input[type="number"].error, input[type="tel"].error, textarea.error {
	border: 1px solid red;
}

h1,
h2 {
	font-size: 32px;
	font-weight: 800;
	line-height: 1.3;
}

h1 a,
h1 a:visited,
h1 a:focus,
h2 a,
h2 a:visited,
h2 a:focus {
	color: #2B2B2A;
	text-decoration: none;
}

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

h3 {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
}

a,
a:visited,
a:focus,
a:hover {
	color: #3C59CD;
}

a:hover {
	text-decoration: none;
}

.color-text {
	color: #3C59CD;
}

ul, ol {
	margin-left: 0;
}

.content-cropped {
	overflow: hidden;
	opacity: 0;
}

.sm-padding {
	padding: 0 25px;
}

input[type="button"], input[type="reset"], input[type="submit"],
button, [type="button"], [type="reset"], [type="submit"],
.btn {
	font-weight: 700;
	font-size: 20px;
	line-height: 1.3;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border: none;
	cursor: pointer;
}

input[type="submit"].btn,
.btn {
	padding: 11px 50px 13px;
}

button, [type="button"], [type="reset"], [type="submit"],
input[type="button"], input[type="reset"], input[type="submit"],
input.search-submit {
	padding: 10px 15px 13px;
	border: none;
	background: #3C59CD;
	color: #FFFFFF;
}

button:hover, [type="button"]:hover, [type="reset"]:hover, [type="submit"]:hover,
input[type="button"]:hover, input[type="reset"]:hover, input[type="submit"]:hover,
input.search-submit:hover {
	opacity: .9;
	color: #FFFFFF;
}

button a {
	color: #FFFFFF;
	text-decoration: none;
}

button a:hover {
	opacity: .9;
	color: #FFFFFF;
}

a.btn-main,
.btn-main {
	background: #3C59CD;
	color: #FFFFFF;
}

a.btn-main:hover,
.btn-main:hover {
	opacity: .9;
	color: #FFFFFF;
}

.btn-main-border {
	border-top: 1px solid #3C59CD;
	color: #3C59CD;
	background: #FFFFFF;
}

.btn-main-border:hover {
	opacity: .8;
	color: #3C59CD;
}

button.menu-toggle {
	color: #2B2B2A;
	background: none;
	padding: 0;
	display: block;
	line-height: 1;
	transform: scale(1.4);
	font-weight: 400;
}

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

.btn-100 {
	width: 100%;
}

.header {
	background: #ffffff;
	display: flex;
	flex-direction: column;
}

.header .logo {
	margin-right: auto;
}

.header-btn {
	flex-shrink: 0;
	margin-left: 30px;
}

.header-search {
	margin-left: 30px;
	max-width: 570px;
	width: 100%;
}

@media (max-width: 991px) {
	.header-search {
		margin-left: 0;
		flex: 1;
		max-width: 100%;
	}
	.header-btn {
		flex: 1;
	}
}

@media (max-width: 767px) {
	.header-search {
		margin-left: 0;
	}
	.header-btn {
		margin-top: 25px;
		margin-left: 0;
	}
}

.header-top {
	border-bottom: 1px solid #9C9C9C;
}

.header-top .logo {
	display: none;
}

@media (max-width: 991px) {
	.header-top {
		padding: 15px 0;
	}
	.header-top .container {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.header-top .logo {
		display: block;
	}
	.header-top .logo a {
		font-size: 24px;
	}
}

.header-bottom {
	padding: 35px 0;
}

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

@media (max-width: 991px) {
	.header-bottom {
		gap: 30px;
	}
	.header-bottom .logo {
		display: none;
	}
}

@media (max-width: 767px) {
	.header-bottom .container {
		flex-direction: column;
	}
}

.logo a {
	font-weight: 900;
	font-size: 50px;
	line-height: 1.3;
	color: #000000;
	text-decoration: none;
	display: flex;
}

.footer .logo a {
	color: #000000;
}

.footer .logo a .white-text {
	color: #FFFFFF;
}

#searchform.search-form {
	position: relative;
}

#searchform .search-submit {
	position: absolute;
	background: url(../img/icon-search.svg) center no-repeat #FF8E3E;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	border: none;
	right: 10px;
	top: calc(50% - 15px);
	cursor: pointer;
}

#searchform .search-input {
	width: 100%;
}

#searchform:not(.search-form) input[type="search"] {
	padding-right: 45px;
}

.search-form {
	display: flex;
}

input[type="search"] {
	padding: 12px 18px;
	border-top: 1px solid #3C59CD;
	box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
	outline: none;
	border-radius: 5px;
}

input[type="search"]::placeholder {
	color: #B5B2B2;
}

.search_result {
	display: none;
	background: #FFFFFF;
	position: absolute;
	top: 50px;
	left: 0;
	width: 100%;
	max-height: 200px;
	overflow-y: auto;
	box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
}

.search_result ul {
	list-style: none;
	margin: 0;
	padding: 5px 15px;
}

.search_result ul li {
	margin: 10px 0;
	font-size: 14px;
}

.search_result ul li a {
	color: #2B2B2A;
}

.menu li a {
	width: 100%;
	font-weight: 400;
	font-size: 18px;
}

@media (max-width: 991px) {
	.menu {
		display: flex;
		flex-direction: column;
	}
}

.main-navigation {
	width: auto;
}

.main-navigation .menu-item-has-children {
	cursor: pointer;
}

.main-navigation .menu-item-has-children > a {
	position: relative;
}

.main-navigation .menu-item-has-children > a:after {
	position: absolute;
	content: '';
	display: block;
	background: url(../img/caret-down.svg) center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	width: 15px;
	height: 10px;
	top: calc(50% - 5px);
	right: 6px;
	transition: all 0.2s ease-in-out;
}

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

.main-navigation .sub-menu {
	display: flex;
	flex-direction: column;
	background: #FFFFFF;
	box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
	max-width: 400px;
	width: max-content;
}

.main-navigation .sub-menu a {
	width: 100%;
}

.main-navigation.toggled .menu {
	display: flex;
}

.header .main-navigation li a {
	padding: 18px 30px 17px;
	color: #2B2B2A;
}

.header .main-navigation li a:hover, .header .main-navigation li a:active {
	color: #FFFFFF;
	background: #3C59CD;
}

.header .main-navigation li.current-menu-item {
	background: #3C59CD;
}

.header .main-navigation li.current-menu-item a {
	color: #FFFFFF;
}

.header .main-navigation li.menu-item-has-children a:hover {
	background: none;
	color: #2B2B2A;
}

@media (max-width: 991px) {
	.header .main-navigation {
		display: none;
	}
	.header .main-navigation ul {
		display: flex;
	}
	.header .main-navigation .menu-toggle {
		margin: 20px 20px 20px auto;
	}
	.header .main-navigation .sub-menu {
		width: 100%;
		max-width: 100%;
	}
	.header .main-navigation.active {
		display: flex;
		flex-direction: column;
		width: 100%;
		max-width: 400px;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		background: #FFFFFF;
		z-index: 99;
	}
}

.footer .menu li {
	margin-left: 24px;
}

.footer .main-navigation .sub-menu {
	right: 0;
}

.footer .main-navigation .sub-menu li {
	margin-left: 0;
	padding: 10px 15px;
}

.footer .main-navigation .sub-menu li a {
	color: #2B2B2A;
}

.footer .main-navigation .menu-item-has-children > a {
	padding-right: 30px;
}

.footer .main-navigation .menu-item-has-children > a:after {
	background: url(../img/caret-down-white.svg) center no-repeat;
}

@media (max-width: 991px) {
	.footer .menu {
		align-items: flex-end;
	}
	.footer .menu li {
		margin-top: 20px;
		margin-left: 0;
	}
	.footer .main-navigation .sub-menu li {
		margin-top: 0;
	}
	.footer .main-navigation .sub-menu li:hover {
		background: #3C59CD;
	}
	.footer .main-navigation .sub-menu li:hover a {
		color: #FFFFFF;
	}
}

@media (max-width: 767px) {
	.footer .menu {
		align-items: flex-start;
	}
	.footer .main-navigation .menu-item-has-children:hover .sub-menu {
		display: flex;
	}
	.footer .main-navigation .sub-menu {
		display: none;
		right: auto;
		left: 0;
	}
}

.category-list {
	list-style: none;
	padding-left: 0;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 15px;
}

.category-list .cat-item {
	margin-right: 24px;
	margin-bottom: 10px;
}

.category-list .cat-item a {
	display: inline-block;
	background: #3C59CD;
	color: #FFFFFF;
	border-radius: 5px;
	font-size: 16px;
	line-height: 1.2;
	text-decoration: none;
	padding: 10px 24px 11px;
}

.category-list .cat-item a:hover {
	opacity: .9;
}

.breadcrumbs {
	margin-top: 35px;
}

@media (max-width: 767px) {
	.breadcrumbs {
		margin-top: 15px;
	}
}

.breadcrumbs .breadcrumbs-nav a,
.breadcrumbs-nav {
	color: #3E3C3C;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.2;
}

.breadcrumbs .breadcrumbs-nav a {
	position: relative;
	padding-right: 15px;
	text-decoration: none;
}

.breadcrumbs .breadcrumbs-nav a:hover {
	text-decoration: underline;
}

.breadcrumbs .breadcrumbs-nav a:after {
	position: absolute;
	content: '/';
	top: 0;
	right: 3px;
}

@media (max-width: 1249px) {
	.slider-posts-wrap {
		margin-right: 35px;
	}
}

.slider-posts {
	position: relative;
	margin-bottom: 1.5em;
}

.slider-posts .thumbnail-link {
	color: #2B2B2A;
	text-decoration: none;
}

.slider-posts .post-thumbnail {
	height: 170px;
	display: flex;
}

.slider-posts .post-title {
	font-size: 16px;
	line-height: 1.2;
	margin-top: 15px;
}

.slider-posts.owl-carousel .owl-item img {
	object-fit: cover;
}

.slider-posts.owl-carousel .owl-nav {
	display: block;
	position: absolute;
	right: -35px;
	top: calc(50% - 12px);
}

.slider-posts.owl-carousel .owl-nav button.owl-prev {
	display: none;
}

.slider-posts.owl-carousel .owl-nav button.owl-next {
	background: url(../img/arrow-next.svg) center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	height: 24px;
	width: 14px;
}

.slider-posts.owl-carousel .owl-nav button.owl-next span {
	display: none;
}

@media (max-width: 1249px) {
	.slider-posts .post-thumbnail {
		height: 150px;
	}
}

.post-image {
	background: #FFFFFF;
	padding: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 200px;
}

.post-value {
	font-size: 16px;
	line-height: 1.2;
	flex: 1;
}

.post-voted-amount,
.post-category {
	margin-top: 10px;
}

.post-list.card-shadow {
	padding: 20px;
}

.post-list .post-thumbnail,
.post-grid .post-thumbnail {
	display: flex;
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.post-list .post-thumbnail .post-rating, .post-list .post-thumbnail .post-voted-amount, .post-list .post-thumbnail .post-category,
.post-grid .post-thumbnail .post-rating,
.post-grid .post-thumbnail .post-voted-amount,
.post-grid .post-thumbnail .post-category {
	margin-top: 8px;
	font-size: 14px;
}

.post-list .post-thumbnail .post-image,
.post-grid .post-thumbnail .post-image {
	flex-shrink: 0;
	padding: 0;
	margin-right: 15px;
}

.post-list .post-thumbnail .post-title,
.post-grid .post-thumbnail .post-title {
	font-weight: 600;
	font-size: 16px;
	line-height: 1.2;
}

.post-list .post-thumbnail .post-title a,
.post-grid .post-thumbnail .post-title a {
	color: #2B2B2A;
	text-decoration: none;
}

.post-list .post-thumbnail .post-title a:hover,
.post-grid .post-thumbnail .post-title a:hover {
	text-decoration: underline;
}

.post-list .post-thumbnail {
	color: #9C9C9C;
}

.post-list .post-thumbnail:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.post-list .post-thumbnail .post-rating, .post-list .post-thumbnail .post-voted-amount, .post-list .post-thumbnail .post-category {
	font-size: 16px;
	line-height: 1.2;
}

.post-grid {
	margin-left: -15px;
	margin-right: -15px;
}

@media (max-width: 767px) {
	.post-grid {
		margin-left: 0;
		margin-right: 0;
	}
}

.post-company {
	width: calc(33.3% - 30px);
	margin-right: 15px;
	margin-left: 15px;
}

@media (max-width: 1199px) {
	.post-company {
		width: calc(50% - 30px);
	}
}

@media (max-width: 767px) {
	.post-company {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		position: static !important;
	}
}

.entry-header .post-image {
	margin-bottom: auto;
}

.entry-header-row {
	display: flex;
	align-items: stretch;
	gap: 30px;
}

.entry-header-row__flex {
	display: flex;
	align-items: stretch;
	gap: 30px;
	flex: 43%;
	flex-shrink: 0;
}

@media (max-width: 1199px) {
	.entry-header-row {
		flex-direction: column;
	}
}

@media (max-width: 529px) {
	.entry-header-row__flex {
		flex-direction: column;
	}
}

.entry-header__col {
	display: flex;
	flex-direction: column;
	align-items: stretch;
}

.entry-header__col .btn {
	padding-left: 15px;
	padding-right: 15px;
	margin-top: 20px;
}

@media (max-width: 529px) {
	.entry-header__col .post-image {
		margin-left: auto;
		margin-right: auto;
	}
}

.card-shadow {
	background: #FFFFFF;
	box-shadow: 0 1px 5px 1px rgba(0, 0, 0, 0.1);
	border-radius: 5px;
	padding: 15px 30px;
}

.card-shadow.post-company {
	padding-left: 20px;
	padding-right: 20px;
}

.rating-bar {
	margin-top: 10px;
}

.rating-bar__item {
	display: flex;
	align-items: center;
	margin: 5px 0;
}

.rating-bar__bar {
	background: #D9D9D9;
	display: block;
	margin-left: 10px;
	margin-right: 10px;
	height: 3px;
	width: calc(100% - 20px);
}

.rating-bar__gradation {
	background: #FF8E3E;
	display: block;
	height: 100%;
}

.company-info h2 {
	margin: 0;
	font-size: 24px;
}

.company-info__top {
	display: flex;
	flex-direction: column;
	border-bottom: 1px solid #D9D9D9;
	padding-bottom: 15px;
}

.company-info a:not(.phone) {
	padding-left: 40px;
	color: #0938c2;
	font-size: 16px;
	line-height: 1.2;
	margin-top: 15px;
	min-height: 22px;
}

.company-info a {
	display: flex;
	align-items: center;
	text-decoration: none;
}

.company-info a.phone {
	color: #0938c2;
	font-weight: 700;
	font-size: 18px;
}

.company-info__site {
	background: url(../img/icon-site.svg) left center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.company-info__email {
	background: url(../img/icon-email.svg) left center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
}

.company-info__address {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.company-info__address-top {
	display: flex;
	align-items: center;
	font-weight: 700;
}

.company-info__address-top img {
	margin-right: 10px;
	width: 30px;
	height: 20px;
}

.company-info__col {
	flex: 1;
	margin-top: 15px;
	font-size: 15px;
	line-height: 1.3;
	min-width: 150px;
}

.company-info__col p {
	margin: .8em 0;
}

@media (max-width: 767px) {
	.company-info__address {
		gap: 0;
	}
	.company-info__col {
		min-width: 250px;
	}
}

@media (max-width: 529px) {
	.company-info a:not(.phone) {
		padding-left: 37px;
		-webkit-hyphens: auto;
		-moz-hyphens: auto;
		-ms-hyphens: auto;
		hyphens: auto;
		word-break: break-all;
	}
}

.comment-form {
	display: flex;
	flex-direction: column;
}

.comment-form-author, .comment-form-email, .comment-form-title, .comment-form-dignity, .comment-form-limitations, .comment-form-comment, .comment-form-rating, .comment-form-cookies-consent,
.comment-form .form-submit {
	margin-top: 10px;
}

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

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

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

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

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

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

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

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

.comment-form-cookies-consent {
	order: 8;
}

.comment-form .form-submit {
	order: 9;
	margin-left: auto;
	margin-right: auto;
}

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

.comment-form .star {
	background: url(../img/star-grey.svg) center no-repeat;
	-webkit-background-size: 26px 27px;
	background-size: 26px 27px;
	width: 26px;
	height: 27px;
	cursor: pointer;
	padding: 2px;
}

.comment-form .star.active {
	background: url(../img/star-yellow.svg) center no-repeat;
}

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

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

.comment-form #wp-comment-cookies-consent {
	position: absolute;
	z-index: -1;
	opacity: 0;
}

.comment-form .comment-form-cookies-consent label {
	display: inline-flex;
	align-items: center;
	user-select: none;
	padding-left: 30px;
	cursor: pointer;
}

.comment-form #wp-comment-cookies-consent + label::before,
.comment-form #wp-comment-cookies-consent-error + label::before {
	content: '';
	display: inline-block;
	width: 1em;
	height: 1em;
	flex-shrink: 0;
	flex-grow: 0;
	border: 1px solid #adb5bd;
	border-radius: 0.25em;
	margin-right: 0.5em;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 50% 50%;
	z-index: 2;
	position: absolute;
	top: 2px;
	left: 0;
}

.comment-form #wp-comment-cookies-consent:checked + label::before {
	border-color: #3C59CD;
	background-color: #3C59CD;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3e%3c/svg%3e");
}

.comment-form .comment-form-cookies-consent {
	position: relative;
}

.comment-form .comment-form-cookies-consent span.error {
	position: absolute;
	display: block;
	bottom: -20px;
	left: 0;
}

.comment__top {
	display: flex;
	position: relative;
}

.comment__photo {
	margin-right: 15px;
}

.comment__photo img {
	box-shadow: 0 0 0 1px #3C59CD;
	border-radius: 50%;
}

.comment__content {
	position: relative;
	width: 100%;
}

.comment__date {
	position: absolute;
	top: 4px;
	right: 0;
	color: #2B2B2A;
	font-size: 10px;
	line-height: 1.3;
}

.comment__name {
	font-size: 16px;
	line-height: 1.2;
}

.comment__location {
	color: #2B2B2A;
	padding-left: 20px;
	background: url(../img/icon-location.svg) left center no-repeat;
	-webkit-background-size: contain;
	background-size: contain;
	margin-top: 8px;
	font-size: 12px;
}

.comment__title {
	font-weight: 700;
	font-size: 24px;
	line-height: 1.3;
}

.comment__text {
	line-height: 1.4;
}

.comment__rating {
	margin-top: 30px;
}

.comment__dignity {
	background: #4caf502b;
}

.comment__limitations {
	background: #ff2a2a26;
}

.comment__title, .comment__dignity, .comment__limitations, .comment__text,
.comment .cld-like-dislike-wrap {
	margin-top: 15px;
}

.comment .cld-like-dislike-wrap img {
	width: 22px;
	height: 22px;
}

@media (max-width: 767px) {
	.comment__title {
		font-size: 18px;
	}
}

.comment-list .comment {
	margin: 30px 0;
	padding: 25px 20px;
	display: flex;
}

.comment-list .comment__name {
	font-size: 20px;
	line-height: 30px;
}

.comment-list .comment__location {
	font-size: 18px;
	padding-left: 30px;
}

.comment-list .comment__date {
	font-size: 14px;
	top: 8px;
}

.comment-reply-title {
	margin-bottom: 0.5em;
}

.comment-respond .logged-in-as {
	margin-top: 0;
}

.nav-links {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 30px 0;
}

.nav-links a {
	text-decoration: none;
}

.nav-links .page-numbers:not(.dots) {
	margin: 0 7px;
}

.footer {
	margin-top: auto;
	display: flex;
	flex-direction: column;
}

.footer a {
	color: #FFFFFF;
}

.footer-search {
	margin-top: 60px;
	margin-bottom: 60px;
	margin-left: auto;
	max-width: 570px;
	width: 100%;
}

@media (max-width: 991px) {
	.footer-search {
		margin-top: 25px;
		margin-bottom: 25px;
	}
}

@media (max-width: 767px) {
	.footer-search {
		margin: 40px 0;
		max-width: 100%;
	}
}

.footer-top {
	background: #3C59CD;
	padding: 40px 0;
}

.footer-top__row {
	display: flex;
	align-items: center;
}

.footer-top .email {
	margin-left: auto;
	font-size: 20px;
	font-weight: 700;
	text-decoration: none;
}

.footer-top .main-navigation {
	margin-left: auto;
	width: auto;
}

@media (max-width: 991px) {
	.footer-top__row {
		align-items: flex-start;
	}
}

@media (max-width: 767px) {
	.footer-top__row {
		flex-direction: column;
	}
	.footer-top .main-navigation {
		margin-left: 0;
	}
	.footer-top .main-navigation ul {
		display: flex;
	}
	.footer-top .email {
		margin-left: auto;
		margin-right: auto;
		margin-top: 25px;
	}
}

.footer-bottom {
	background: #ffffff;
	color: #9C9C9C;
	padding: 19px 0;
	text-align: center;
}

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

.socials a {
	margin-right: 60px;
}

@media (max-width: 767px) {
	.socials {
		margin-left: auto;
		margin-right: auto;
	}
	.socials a {
		margin-right: 35px;
	}
	.socials a:last-child {
		margin-right: 0;
	}
}

.for-companies-list ol {
	background: #FFFFFF;
	color: #3C59CD;
	font-weight: 600;
	padding-top: 10px;
	padding-bottom: 10px;
}

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