@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

html, body {
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	font-family: Inter;
}

body.mobileMenu-opened {
	min-height: auto !important;
	max-height: 100vh;
	overflow: hidden;
}

* {
	font-smooth: antialiased;
	-webkit-font-smoothing: antialiased;
	box-sizing: border-box;
}

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

.container {
	margin: 0 auto;
	padding-right: 40px;
	padding-left: 40px;
	width: 100%;
	max-width: 1200px;
}
@media (max-width: 959px) {
	.container {
		padding-right: 5px;
		padding-left: 5px;
	}
}

.container_main {
	padding-top: 60px;
}

header {
	position: fixed;
	z-index: 99;
	top: 5px;
	right: 0;
	left: 0;
}

header .header-content {
	padding: 4px 60px 4px 40px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-color: rgba(236, 232, 227, 0.7);
	border-radius: 30px;
}
@media (max-width: 959px) {
	header .header-content {
		padding: 4px 25px 4px 15px;
	}
}
@media (max-width: 639px) {
	header .header-content {
		padding: 10px 18px 10px 15px;
	}
}

header .header-logo img {
	display: block;
}
@media (max-width: 639px) {
	header .header-logo img {
		width: 73px;
		height: 30px;
	}
}

header .header-menu {
	padding: 0;
	margin: 0;
	display: flex;
	align-items: center;
	gap: 40px;
	list-style: none;
}
@media (max-width: 959px) {
	header .header-menu {
		display: none;
	}
}

header .header-menu li.menu-item-has-children {
	position: relative;
	padding-right: 12px;
}

header .header-menu li.menu-item-has-children:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 3px 0 3px;
	transform: rotate(0deg);
	border-color: transparent;
	border-top-color: inherit;
	transition: all 0.3s ease-in-out;
}
header .header-menu li.menu-item-has-children:hover:after {
	transform: rotate(180deg);
}

header .header-menu li a {
	font-size: 12px;
	line-height: 19px;
	color: black;
	text-decoration: none;
}

header .header-menu .sub-menu {
	position: absolute;
	top: 40px;
	left: 50%;
	margin: 0 0 0 -100px;
	padding: 18px 0;
	display: none;
	width: 200px;
	background-color: white;
	border-radius: 30px;
    box-shadow: 0 0 7px 0 rgb(0 0 0 / 20%);
    list-style: none;
}
header .header-menu li.menu-item-has-children:hover .sub-menu {
	display: block;
}

header .header-menu .sub-menu:before {
	position: absolute;
	z-index: 1;
	top: -8px;
	left: 50%;
	margin-left: -10px;
	width: 15px;
	height: 15px;
	display: block;
	content: '';
    transform: rotate(45deg);
    background-color: white;
}

header .header-menu .sub-menu:after {
	position: absolute;
	z-index: 2;
	bottom: 100%;
	left: 0;
	display: block;
	content: '';
	height: 19px;
	width: 100%;
}

header .header-menu .sub-menu li {
	margin-top: 12px;
}
header .header-menu .sub-menu li:first-child {
	margin-top: 0;
}

header .header-menu .sub-menu li a {
	padding: 0 20px;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	color: #4b4b4b;
}

header .header-right {
	display: flex;
	align-items: center;
	gap: 24px;
}
@media (max-width: 959px) {
	header .header-right {
		flex-direction: row-reverse;
	}
}
@media (max-width: 639px) {
	header .header-right {
		gap: 0;
	}
}

header .header-telegram img {
	display: block;
}

header .header-phone {
	font-size: 20px;
	line-height: 31px;
	color: black;
	text-decoration: none;
}
@media (max-width: 639px) {
	header .header-phone {
		font-size: 12px;
		line-height: 19px;
	}
	header .header-right .header-phone {
		display: none;
	}
}
@media (min-width: 640px) {
	header .header-center .header-phone {
		display: none;
	}
}

header .header-burger {
	margin-left: 25px;
	display: block;
	width: 60px;
	height: 30px;
	background-image: url(../images/header-burger.svg);
	background-position: center;
	background-size: cover;
	cursor: pointer;
}
@media (max-width: 639px) {
	header .header-burger {
		margin-left: 16px;
		width: 27px;
	}
}
@media (min-width: 960px) {
	header .header-burger {
		display: none;
	}
}

.mobile-menu {
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: 0;
	overflow: auto;
	padding: 42px 25px 25px 25px;
	width: 280px;
	flex-direction: column;
	background-color: #3D4ED1;
}

.mobileMenu-closeTrigger {
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
}

.mobileMenu-closeTrigger svg {
	display: block;
	pointer-events: none;
}

.mobileMenu-items {
	padding: 0;
	margin: 25px 0 0 0;
	display: flex;
	flex-direction: column;
	gap: 18px;
	flex-grow: 1;
	list-style: none;
}

.mobileMenu-items li a {
	font-size: 14px;
	line-height: 16.94px;
	text-decoration: none;
	color: white;
}

.mobileMenu-items li.menu-item-has-children > a {
	position: relative;
	padding-right: 12px;
}

.mobileMenu-items li.menu-item-has-children > a:after {
	position: absolute;
	top: 50%;
	right: 0;
	display: block;
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 4px 3px 0 3px;
	transform: rotate(0deg);
	border-color: transparent;
	border-top-color: white;
}
.mobileMenu-items li.menu-item-has-children.opened > a:after {
	transform: rotate(180deg);
}

.mobileMenu-items .sub-menu {
	padding: 0;
	margin: 10px 0 0 20px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.mobileMenu-items li.menu-item-has-children:not(.opened) .sub-menu {
	display: none;
}

.mobileMenu-items .sub-menu li::marker {
	color: white;
}

.mobileMenu-bottom {
	padding-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 28px;
}

.mobileMenu-phone {
	font-size: 13px;
	line-height: 18px;
	color: white;
	text-decoration: none;
}

.mobile-menu .contactUs-trigger {
	padding: 16px 20px;
	border-radius: 30px;
	font-size: 14px;
	line-height: 16px;
}

content {
	display: block;
}

.button {
	cursor: pointer;
	text-align: center;
	color: white;
	transition: all 0.2s ease-in-out;
	white-space: nowrap;
}

.button_green {
	background-color: #2D96C9;
}
.button_green:hover {
	background-color: white;
	color: #0098c4;
}

.button_blue {
	background-color: #143F9F;
}
.button_blue:hover {
	background-color: white;
	color: #143F9F;
}

.button_transparent {
	border: 1px solid white;
	background-color: #3D4ED1;
}
.button_transparent:hover {
	background-color: white;
	color: #3D4ED1;
}

.first-block {
	padding: 116px 40px;
	display: flex;
	gap: 40px;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.first-block {
		padding: 35px 55px;
		flex-direction: column-reverse;
		gap: 0;
	}
}
@media (max-width: 639px) {
	.first-block {
		padding: 43px 15px 78px 15px;
	}
}
@media (min-width: 960px) {
	.first-block {
		min-height: 540px;
	}
}

.firstBlock-left {
	display: flex;
	flex-direction: column;
	width: calc(100% / 2 - 20px);
}
@media (max-width: 959px) {
	.firstBlock-left {
		width: 100%;
	}
}
@media (max-width: 639px) {
	.firstBlock-left {
		margin-top: 20px;
	}
}

.firstBlock-left h1 {
	padding: 0;
	margin: 0;
	font-size: 44px;
	line-height: 44px;
	color: #4b4b4b;
}
@media (max-width: 959px) {
	.firstBlock-left h1 {
		max-width: 500px;
	}
}
@media (max-width: 639px) {
	.firstBlock-left h1 {
		font-size: 25px;
		line-height: 28px;
	}
}

.firstBlock-text {
	margin: 40px 0 0 0;
	font-size: 14px;
	line-height: 22px;
}
@media (max-width: 959px) {
	.firstBlock-text {
		margin-top: 27px;
	}
}

.firstBlock-list {
	padding: 0;
	margin: 40px 0 0 0;
	list-style: none;
}
@media (max-width: 959px) {
	.firstBlock-list {
		margin-top: 27px;
	}
}

.firstBlock-list li {
	position: relative;
	margin-top: 17px;
	padding-left: 19px;
	font-size: 14px;
	line-height: 22px;
	color: #767472;
}
.firstBlock-list li:first-child {
	margin-top: 0;
}

.firstBlock-list li:before {
	position: absolute;
	top: 5px;
	left: 0;
	display: block;
	content: '';
	width: 10px;
	height: 10px;
	background-color: #2D96C9;
	border-radius: 50%;
}

.firstBlock-actions {
	padding-top: 77px;
	margin-top: auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
@media (max-width: 959px) {
	.firstBlock-actions {
		padding-top: 70px;
	}
}
@media (max-width: 639px) {
	.firstBlock-actions {
		padding-top: 34px;
	}
}

.firstBlock-actions .wp-block-buttons {
	display: flex;
	gap: 20px;
}
@media (max-width: 499px) {
	.firstBlock-actions .wp-block-buttons {
		flex-direction: column;
	}
}

.firstBlock-actions .button,
.firstBlock-actions .button:hover {
	background-color: transparent;
}

.firstBlock-actions .button a {
	padding: 20px 40px;
	border-radius: 30px;
	display: block;
	font-weight: bold;
	font-size: 12px;
	line-height: 15px;
	color: white;
	text-decoration: none;
	transition: all 0.2s ease-in-out;
}

.firstBlock-actions .button_green a {
	background-color: #2D96C9;
}
.firstBlock-actions .button_green a:hover {
	background-color: white;
	color: #0098c4;
}

.firstBlock-actions .button_blue a {
	background-color: #143F9F;
}
.firstBlock-actions .button_blue a:hover {
	background-color: white;
	color: #143F9F;
}

.firstBlock-right {
	width: calc(100% / 2 - 20px);
}
@media (max-width: 959px) {
	.firstBlock-right {
		width: 100%;
	}
}

.firstBlock-image {
	margin: 0;
}
@media (max-width: 959px) {
	.firstBlock-image {
		margin: 0 auto;
		width: 389px;
	}
}
@media (max-width: 639px) {
	.firstBlock-image {
		margin: 0 auto;
		width: 236px;
	}
}

.firstBlock-image img {
	display: block;
}

.advantages-block {
	margin-top: 10px;
	padding: 137px 40px 89px 40px;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.advantages-block {
		padding: 120px 35px 59px 35px;
	}
}

.advantagesBlock-title {
	padding: 0;
	margin: 0;
	font-size: 44px;
	line-height: 44px;
	color: #4b4b4b;
}
@media (max-width: 639px) {
	.advantagesBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.advantagesBlock-items {
	margin-top: 40px;
	display: flex;
	gap: 10px;
	flex-wrap: wrap !important;
}

.advantagesBlock-item {
	padding: 20px 15px 30px 20px;
	display: flex;
	align-items: center;
	gap: 20px;
	width: calc(100% / 3 - 7px);
	background-color: white;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.advantagesBlock-item {
		padding: 20px 16px;
		gap: 17px;
		width: calc(100% / 2 - 5px);
	}
}
@media (max-width: 639px) {
	.advantagesBlock-item {
		padding: 26px 25px 24px 18px;
		gap: 18px;
		width: 100%;
	}
}

.advantagesBlockItem-image {
	width: 40px;
}
@media (max-width: 959px) {
	.advantagesBlockItem-image {
		width: 32px;
	}
}
@media (max-width: 639px) {
	.advantagesBlockItem-image {
		width: 44px;
	}
}

.advantagesBlockItem-image img {
	display: block;
}

.advantagesBlockItem-content {
	width: calc(100% - 60px);
}
@media (max-width: 959px) {
	.advantagesBlockItem-content {
		width: calc(100% - 49px);
	}
}
@media (max-width: 639px) {
	.advantagesBlockItem-content {
		width: calc(100% - 52px);
	}
}

.advantagesBlockItem-title {
	margin: 0;
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	color: #4B4B4B;
}

.advantagesBlockItem-text {
	margin: 10px 0 0 0;
	font-size: 12px;
	line-height: 14px;
	color: #4B4B4B;
}
@media (max-width: 959px) {
	.advantagesBlockItem-text {
		margin: 5px 0 0 0;
		font-size: 10px;
		line-height: 12px;
	}
}
@media (max-width: 639px) {
	.advantagesBlockItem-text {
		margin: 10px 0 0 0;
		font-size: 11px;
		line-height: 13px;
	}
}

.advantagesBlockItem-text p {
	margin: 0;
}

.categories-block {
	margin-top: 10px;
	padding: 151px 40px 53px 40px;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.categories-block {
		padding: 107px 35px 47px 35px;
	}
}
@media (max-width: 639px) {
	.categories-block {
		padding: 141px 15px 60px 15px;
	}
}

.categoriesBlock-title {
	margin: 0;
	font-size: 44px;
	line-height: 44px;
	color: #4B4B4B;
}
@media (max-width: 639px) {
	.categoriesBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.categoriesBlock-items {
	margin-top: 40px;
}
@media (max-width: 959px) {
	.categoriesBlock-items {
		margin-top: 50px;
	}
}

.categoriesBlock-items {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.categoriesBlock-item {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}
@media (max-width: 959px) {
	.categoriesBlock-item:nth-child(1),
	.categoriesBlock-item:nth-child(2),
	.categoriesBlock-item:nth-child(3),
	.categoriesBlock-item:nth-child(4),
	.categoriesBlock-item:nth-child(5),
	.categoriesBlock-item:nth-child(6) {
		width: calc(100% / 2 - 5px)
	}
	.categoriesBlock-item:nth-child(7),
	.categoriesBlock-item:nth-child(8) {
		width: 100%;
	}
}
@media (max-width: 639px) {
	.categoriesBlock-item:nth-child(1),
	.categoriesBlock-item:nth-child(2),
	.categoriesBlock-item:nth-child(3),
	.categoriesBlock-item:nth-child(4),
	.categoriesBlock-item:nth-child(5),
	.categoriesBlock-item:nth-child(6),
	.categoriesBlock-item:nth-child(7),
	.categoriesBlock-item:nth-child(8) {
		width: 100%;
	}
}
@media (min-width: 960px) {
	.categoriesBlock-item:nth-child(1),
	.categoriesBlock-item:nth-child(6) {
		width: calc(100% / 3 - 90px)
	}
	.categoriesBlock-item:nth-child(2),
	.categoriesBlock-item:nth-child(3),
	.categoriesBlock-item:nth-child(4),
	.categoriesBlock-item:nth-child(5) {
		width: calc(100% / 3 + 35px)
	}
	.categoriesBlock-item:nth-child(7),
	.categoriesBlock-item:nth-child(8) {
		width: calc(100% / 2 - 5px);
	}
}

.categoriesBlock-item:before {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: block;
	content: '';
	background-color: rgba(75, 75, 75, 0.4);
	transition: all 0.4s ease-in-out;
	pointer-events: none;
}
.categoriesBlock-item:hover:before {
	background-color: rgba(75, 75, 75, 0.2);
}

.categoriesBlock-item:after {
	position: absolute;
	z-index: 2;
	right: 28px;
	bottom: 23px;
	display: block;
	content: '';
	width: 30px;
	height: 30px;
	background-image: url(../images/catalog-item-icon.svg);
	transition: all 0.4s ease-in-out;
	transform: rotate(0);
}
.categoriesBlock-item:hover:after {
	transform: rotate(-45deg);
}

.categoriesBlockItem-image {
	margin: 0;
	display: flex;
	justify-content: center;
}

.categoriesBlockItem-image img {
	display: block;
	height: 185px;
	object-fit: contain;
}

.categoriesBlockItem-title {
	margin: 0;
	padding: 0 8px;
	position: absolute;
	z-index: 2;
	bottom: 16px;
	left: 13px;
	max-width: calc(100% - 80px);
	background-color: white;
	border-radius: 11px;
	font-size: 14px;
	line-height: 22px;
	font-weight: bold;
	color: #4B4B4B;
}
@media (max-width: 959px) {
	.categoriesBlockItem-title {
		bottom: 21px;
		left: 14px;
	}
}

.containers-block {
	margin-top: 10px;
	padding: 151px 40px 53px 40px;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.containers-block {
		padding: 107px 35px 47px 35px;
	}
}
@media (max-width: 639px) {
	.containers-block {
		padding: 141px 15px 60px 15px;
	}
}

.containersBlock-title {
	margin: 0;
	font-size: 44px;
	line-height: 44px;
	color: #4B4B4B;
}
@media (max-width: 639px) {
	.containersBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.containersBlock-items {
	margin-top: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
@media (max-width: 959px) {
	.containersBlock-items {
		margin-top: 50px;
	}
}

.containersBlock-item {
    display: flex;
    flex-direction: column;
	width: calc(100% / 4 - 8px);
	background-color: white;
	border-radius: 30px;
	overflow: hidden;
}
@media (max-width: 959px) {
	.containersBlock-item {
		width: calc(100% / 3 - 7px);
	}
}
@media (max-width: 767px) {
	.containersBlock-item {
		width: calc(100% / 2 - 10px);
	}
}
@media (max-width: 449px) {
	.containersBlock-item {
		width: 100%;
	}
}

.containersBlockItem-image img {
	width: 100%;
}

.containersBlockItem-content {
	padding: 20px;
	display: flex;
	flex-direction: column;
	flex: 1 0 auto;
}

.containersBlockItem-title {
	margin-bottom: 10px;
	font-size: 16px;
	font-weight: bold;
	line-height: 19px;
	color: #4B4B4B;
}

.containersBlockItem-prices {
	margin-top: auto;
	display: flex;
	gap: 10px;
}

.containersBlockItem-price {
    font-size: 14px;
    line-height: 16px;
    color: #4B4B4B;
}

.containersBlockItem-price_old {
	text-decoration: line-through;
}

.containersBlockItem-actions {
	margin-top: 20px;
}

.containersBlockItem-actions .button {
	padding: 15px 20px;
	border-radius: 30px;
	display: block;
	font-weight: bold;
	font-size: 12px;
	line-height: 15px;
	text-decoration: none;
}


.aboutUs-block {
	margin-top: 10px;
	padding: 90px 40px;
	min-height: 580px;
	display: flex;
	align-items: center;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.aboutUs-block {
		padding: 100px 35px;
	}
}
@media (max-width: 639px) {
	.aboutUs-block {
		padding: 153px 15px;
	}
}

.aboutUsBlock-wrapper {
	display: flex;
	gap: 40px;
}
@media (max-width: 959px) {
	.aboutUsBlock-wrapper {
		flex-direction: column-reverse;
		gap: 60px;
	}
}
@media (max-width: 639px) {
	.aboutUsBlock-wrapper {
		flex-direction: column;
		gap: 29px;
	}
}

.aboutUsBlock-left {
	width: calc(100% / 2 + 20px);
}
@media (max-width: 959px) {
	.aboutUsBlock-left {
		width: 100%;
	}
}

.aboutUsBlock-image {
	margin: 0 0 0 40px;
}
@media (max-width: 639px) {
	.aboutUsBlock-image {
		margin: 53px 0 0 0;
	}
}

.aboutUsBlock-image img {
	border-radius: 30px;
}

.aboutUsBlock-advantages {
	position: relative;
	z-index: 1;
	margin: -35px 0 0 0;
	padding: 0 10px 20px 10px;
	max-width: 480px;
	display: flex;
	justify-content: space-between;
	background-color: white;
	border-radius: 30px;
}
@media (max-width: 499px) {
	.aboutUsBlock-advantages {
		margin: -44px 0 0 -10px;
		justify-content: center;
		flex-wrap: wrap !important;
	}
}

.aboutUsBlock-advantage {

}
.aboutUsBlock-advantage:nth-child(1) {
	width: calc(100% / 3 - 50px);
}
.aboutUsBlock-advantage:nth-child(2) {
	width: calc(100% / 3);
}
.aboutUsBlock-advantage:nth-child(3) {
	width: calc(100% / 3 - 30px);
}
@media (max-width: 499px) {
	.aboutUsBlock-advantage:nth-child(1),
	.aboutUsBlock-advantage:nth-child(2),
	.aboutUsBlock-advantage:nth-child(3) {
		width: calc(100% / 2 - 50px);
	}
}
@media (max-width: 429px) {
	.aboutUsBlock-advantage:nth-child(1),
	.aboutUsBlock-advantage:nth-child(2),
	.aboutUsBlock-advantage:nth-child(3) {
		width: 100%;
	}
}

.aboutUsBlockAdvantage-title {
	margin: 0;
	font-size: 40px;
	line-height: 78px;
	color: #3D4ED1;
}
@media (max-width: 429px) {
	.aboutUsBlock-advantage:nth-child(3) .aboutUsBlockAdvantage-title {
		margin-left: 30px;
	}
}

.aboutUsBlockAdvantage-text {
	margin: -10px 0 0 0;
	font-size: 17px;
	line-height: 20px;
	color: #3D4ED1;
}
.aboutUsBlock-advantage:nth-child(1) .aboutUsBlockAdvantage-text,
.aboutUsBlock-advantage:nth-child(2) .aboutUsBlockAdvantage-text {
	margin-left: 40px;
}
@media (max-width: 429px) {
	.aboutUsBlock-advantage:nth-child(1) .aboutUsBlockAdvantage-text,
	.aboutUsBlock-advantage:nth-child(2) .aboutUsBlockAdvantage-text,
	.aboutUsBlock-advantage:nth-child(3) .aboutUsBlockAdvantage-text {
		margin-left: 30px;
	}
	.aboutUsBlock-advantage .aboutUsBlockAdvantage-text br {
		display: none;
	}
}

.aboutUsBlock-right {
	width: calc(100% / 2 - 60px);
}
@media (max-width: 959px) {
	.aboutUsBlock-right {
		width: 100%;
		max-width: 480px;
	}
}

.aboutUsBlock-title {
	margin: 0;
	font-size: 44px;
	font-weight: 700;
	line-height: 44px;
	color: #4b4b4b;
}
@media (max-width: 639px) {
	.aboutUsBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
	.aboutUsBlock-right .aboutUsBlock-title {
		display: none
	}
}
@media (min-width: 640px) {
	.aboutUsBlock-left .aboutUsBlock-title {
		display: none
	}
}

.aboutUsBlock-text {
	margin-top: 30px;
}
@media (max-width: 639px) {
	.aboutUsBlock-text {
		margin-top: 0;
	}
}

.aboutUsBlock-text p {
	margin: 18px 0 0 0;
	font-size: 14px;
	line-height: 17px;
	color: #767472;
}
.aboutUsBlock-text p:first-child {
	margin-top: 0;
}

.reasons-block {
	margin-top: 10px;
	padding: 146px 40px 90px 40px;
	background-color: #3D4ED1;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.reasons-block {
		padding: 163px 35px 68px 35px;
	}
}
@media (max-width: 639px) {
	.reasons-block {
		padding: 140px 15px 57px 15px;
	}
}

.reasonsBlock-title {
	margin: 0;
	font-size: 44px;
	font-weight: 700;
	line-height: 44px;
	color: white;	
}
@media (max-width: 639px) {
	.reasonsBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.reasons-block .faq-items {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
@media (max-width: 959px) {
	.reasons-block .faq-items {
		margin-top: 38px;
	}
}
@media (max-width: 639px) {
	.reasons-block .faq-items {
		margin-right: -9px;
		margin-left: -9px;
	}
}

.reasons-block .faq-item {
	position: relative;
	padding: 36px 120px 36px 30px;
	width: calc(100% / 2 - 5px);
	border: 1px solid white;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.reasons-block .faq-item {
		width: 100%;
	}
}
@media (max-width: 639px) {
	.reasons-block .faq-item {
		padding: 32px 20px 39px 88px;
	}
}

.reasons-block .faq-item:before {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	right: 38px;
	display: block;
	content: '';
	width: 50px;
	height: 50px;
	background-image: url(../images/reasons-icon.svg);
	background-size: cover;
}
@media (max-width: 639px) {
	.reasons-block .faq-item:before {
		right: unset;
		left: 20px;
	}
}

.reasons-block .faqItem-question {
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	color: white;
}

.reasons-block .faqItem-answer {
	margin-top: 11px;
	font-size: 12px;
	line-height: 14px;
	color: #d8dcf6;
}

.types-block {
	margin-top: 10px;
	padding: 146px 40px 90px 40px;
	background-color: #ECE8E3;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.types-block {
		padding: 163px 35px 68px 35px;
	}
}
@media (max-width: 639px) {
	.types-block {
		padding: 140px 15px 57px 15px;
	}
}

.typesBlock-title {
	margin: 0;
	font-size: 44px;
	font-weight: 700;
	line-height: 44px;
	color: #4B4B4B;	
}
@media (max-width: 639px) {
	.typesBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.types-block .faq-items {
	margin-top: 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
@media (max-width: 959px) {
	.types-block .faq-items {
		margin-top: 38px;
	}
}
@media (max-width: 639px) {
	.types-block .faq-items {
		margin-right: -9px;
		margin-left: -9px;
	}
}

.types-block .faq-item {
	position: relative;
	padding: 36px 120px 36px 30px;
	width: calc(100% / 2 - 5px);
	border: 1px solid #4B4B4B;
	border-radius: 30px;
}
@media (max-width: 959px) {
	.types-block .faq-item {
		width: 100%;
	}
}
@media (max-width: 639px) {
	.types-block .faq-item {
		padding: 32px 20px 39px 88px;
	}
}

.types-block .faq-item:before {
	position: absolute;
	top: 50%;
	margin-top: -25px;
	right: 38px;
	display: block;
	content: '';
	width: 50px;
	height: 50px;
	background-image: url(../images/types-icon.svg);
	background-size: cover;
}
@media (max-width: 639px) {
	.types-block .faq-item:before {
		right: unset;
		left: 20px;
	}
}

.types-block .faqItem-question {
	font-size: 16px;
	font-weight: 700;
	line-height: 19px;
	color: #4B4B4B;
}

.types-block .faqItem-answer {
	margin-top: 11px;
	font-size: 12px;
	line-height: 14px;
	color: #767472;
}

.contactUs-block {
	margin-top: 10px;
	padding: 91px 40px;
	min-height: 580px;
	border-radius: 30px;
}

.contactUs-block_grey {
	background-color: #ECE8E3;
}
@media (max-width: 959px) {
	.contactUs-block_grey {
		padding: 180px 35px;
	}
}
@media (max-width: 639px) {
	.contactUs-block_grey {
		padding: 30px 15px 70px 15px;
	}
}

.contactUs-block_blue {
	position: relative;
	padding: 91px 82px;
	display: flex;
	align-items: center;
	background-color: #3D4ED1;
}
@media (max-width: 959px) {
	.contactUs-block_blue {
		padding: 150px 35px;
	}
}
@media (max-width: 639px) {
	.contactUs-block_blue {
		padding: 30px 15px 70px 15px;
	}
}

.contactUs-block_blue:before {
	position: absolute;
	top: 40px;
	right: 40px;
	bottom: 40px;
	left: 40px;
	display: block;
	content: '';
	border: 1px solid white;
	border-radius: 30px;
	pointer-events: none;
}
@media (max-width: 959px) {
	.contactUs-block_blue:before {
		display: none
	}
}

.contactUsBlock-wrapper {
	display: flex;
	gap: 60px;
	width: 100%;
}
@media (max-width: 959px) {
	.contactUsBlock-wrapper {
		flex-direction: column-reverse;
		gap: 0;
	}
}

.contactUs-block_grey .contactUsBlock-left {
	width: calc(100% / 2 - 70px);
}
.contactUs-block_blue .contactUsBlock-left {
	width: calc(100% / 2 + 480px);
}

@media (max-width: 959px) {
	.contactUs-block_grey .contactUsBlock-left,
	.contactUs-block_blue .contactUsBlock-left {
		width: 100%;
	}
}
@media (max-width: 639px) {
	.contactUsBlock-left {
		margin-top: 20px;
	}
}

.contactUsBlock-title {
	font-size: 44px;
	font-weight: 700;
	line-height: 44px;
	text-align: left;
	color: #4b4b4b;
}
@media (max-width: 639px) {
	.contactUsBlock-title {
		font-size: 30px;
		line-height: 30px;
	}
}

.contactUs-block_blue .contactUsBlock-title {
	color: white;
}

.contactUsBlock-text {
	margin-top: 24px;
	font-size: 15px;
	line-height: 21px;
    color: #767472;
}
@media (max-width: 959px) {
	.contactUsBlock-text {
		margin-top: 40px;
	}
}

.contactUs-block_blue .contactUsBlock-text {
	color: #9da2dc;
}

.contactUsBlock-form {
	margin-top: 40px;
}
@media (max-width: 639px) {
	.contactUsBlock-form {
		margin-top: 20px;
	}
}

.contactUsBlock-form form {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.contactUs-block_blue .contactUsBlock-form form {
	flex-direction: row;
	flex-wrap: wrap;
	gap: 20px 10px;
}
@media (max-width: 639px) {
	.contactUs-block_blue .contactUsBlock-form form {
		flex-direction: column;
	}
}

.contactUs-block_grey .contactUsBlock-form .form-row {
	position: relative;
}
.contactUs-block_blue .contactUsBlock-form .form-row {
	width: calc(100% / 3 + 7px);
}
.contactUs-block_blue .contactUsBlock-form .form-row:nth-child(4) {
	width: calc(100% / 3 - 34px);
}
@media (max-width: 639px) {
	.contactUs-block_blue .contactUsBlock-form .form-row,
	.contactUs-block_blue .contactUsBlock-form .form-row:nth-child(4) {
		width: 100%;
	}
}

.contactUs-block_grey .contactUsBlock-form .form-row_fullwidth,
.contactUs-block_blue .contactUsBlock-form .form-row_fullwidth {
	width: 100%;
}

.contactUsBlock-form .form-row,
#contactUs-popup .form-row {
	position: relative;
}

.contactUsBlock-form .form-row p,
#contactUs-popup .form-row p {
	margin: 0;
}

.contactUsBlock-form .wpcf7-spinner {
	position: absolute;
	top: 50%;
	margin: -12px 0 0 0;
	right: 10px;
}

.contactUsBlock-form .wpcf7-acceptance .wpcf7-list-item {
	margin: 0;
}

.contactUs-block_blue .contactUsBlock-form .wpcf7-acceptance {
	color: white;
}

.contactUs-block_blue .contactUsBlock-form .wpcf7-acceptance a {
	color: white;
}


.contactUsBlock-form .form-row input[type="text"],
.contactUsBlock-form .form-row input[type="tel"],
#contactUs-popup .form-row input[type="text"],
#contactUs-popup .form-row input[type="tel"] {
	font-family: Inter;
	padding: 14px 20px;
	width: 100%;
	border: 1px solid white;
	border-radius: 25px;
	font-size: 16px;
	line-height: 20px;
	color: #1c1c1c;
}
.contactUsBlock-form .form-row .iti__selected-country-primary,
#contactUs-popup .form-row .iti__selected-country-primary {
	padding: 0 0 0 15px;
}
.contactUsBlock-form .form-row input[type="text"]::placeholder,
.contactUsBlock-form .form-row input[type="tel"]::placeholder,
#contactUs-popup .form-row input[type="text"]::placeholder,
#contactUs-popup .form-row input[type="tel"]::placeholder {
	color: #767472;
}
.contactUsBlock-form .form-row input[type="text"].wpcf7-not-valid,
.contactUsBlock-form .form-row input[type="tel"].wpcf7-not-valid,
#contactUs-popup .form-row input[type="text"].wpcf7-not-valid,
#contactUs-popup .form-row input[type="tel"].wpcf7-not-valid {
	border-color: red;
}

.contactUsBlock-form .form-row .iti,
#contactUs-popup .form-row .iti {
	width: 100%;
}

#contactUs-popup .iti--inline-dropdown .iti__country-list {
	max-height: 140px;
}

.contactUsBlock-form .form-row input[type="submit"],
#contactUs-popup .form-row input[type="submit"] {
	padding: 16px 20px;
	width: 100%;
	font-size: 14px;
	font-weight: 700;
	line-height: 18px;
	border: none;
	border-radius: 25px;
	-webkit-appearance: none;
}

#contactUs-popup .form-row input[type="submit"] {
	background-color: #143F9F;
}
#contactUs-popup .form-row input[type="submit"]:hover {
	background-color: white;
	color: #143F9F;
}

.contactUsBlock-form .form-row .wpcf7-not-valid-tip,
.contactUsBlock-form .wpcf7-response-output,
#contactUs-popup .form-row .wpcf7-not-valid-tip,
#contactUs-popup .wpcf7-response-output {
	display: none;
}

.contactUsBlock-actions {
	margin-top: 40px;
}

.contactUsBlock-actions a {
	text-decoration: none;
	font-size: 12px;
	line-height: 19px;
	color: #767472;
}
.contactUs-block_blue .contactUsBlock-actions a {
	color: #9da2dc;
}

.contactUsBlock-right {
	display: flex;
	align-items: center;
	justify-content: center;

}

.contactUs-block_grey .contactUsBlock-right { 
	width: calc(100% / 2 + 20px);
}
.contactUs-block_blue .contactUsBlock-right { 
	width: calc(100% / 2 - 10px);
}

@media (max-width: 959px) {
	.contactUsBlock-right {
		display: none;
	}
}
@media (max-width: 639px) {
	.contactUs-block_grey .contactUsBlock-right,
	.contactUs-block_blue .contactUsBlock-right {
		display: flex;
		width: 100%;
	}
}

footer {
	margin: 15px 0 5px 0;
	padding: 95px 40px 85px 40px;
	display: flex;
	gap: 40px;
	justify-content: space-between;
	background-color: #3D4ED1;
	border-radius: 30px;
}
@media (max-width: 959px) {
	footer {
		padding: 93px 35px 44px 35px;
		flex-direction: column;
		align-items: center;
		gap: 0;
	}
}
@media (max-width: 639px) {
	footer {
		padding: 35px 15px 39px 15px;
	}
}

footer .footer-column {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	width: calc(100% / 3 - 27px);
	max-width: 250px;
}
@media (max-width: 959px) {
	footer .footer-column {
		width: 100%;
	}
}

footer .footer-column_left {}
@media (max-width: 959px) {
	footer .footer-column_left {
		margin-top: 76px;
		align-items: center;
		order: 3;
	}
}
@media (max-width: 639px) {
	footer .footer-column_left {
		margin-top: 57px;
	}
}

footer .footer-logo img {
	display: block;
}

footer .footer-telegram {
	margin-top: 41px;
}
@media (min-width: 960px) {
	footer .footer-column_right .footer-telegram {
		display: none;
	}
}
@media (max-width: 959px) {
	footer .footer-column_left .footer-telegram {
		display: none;
	}
	footer .footer-column_right .footer-telegram {
		margin-top: 0;
	}
}
@media (max-width: 639px) {
	footer .footer-column_right .footer-telegram {
		display: none;
	}
}

footer .footer-logo img {
	display: block;
}

footer .footer-copyright {
	margin-top: 56px;
	font-size: 10px;
	line-height: 12px;
	color: #ECE8E3;
}
@media (max-width: 959px) {
	footer .footer-copyright {
		margin-top: 17px;
		font-size: 12px;
		line-height: 14px;
		text-align: center;
	}
}
@media (max-width: 639px) {
	footer .footer-copyright {
		margin-top: 12px;
	}
}

footer .footer-copyright a {
	text-decoration: none;
	color: #ECE8E3;
}

footer .footer-column_center {
	align-items: center;
}
@media (max-width: 959px) {
	footer .footer-column_center {
		order: 1;
	}
}

footer .footer-phone {
	font-size: 30px;
	line-height: 47px;
	color: white;
	text-decoration: none;
}

footer .footer-email {
	margin-top: 44px;
	font-size: 20px;
	line-height: 31px;
	color: white;
	text-decoration: none;
}

footer .contactUs-trigger {
	margin-top: 38px;
	border-radius: 30px;
	padding: 18px 70px;
	font-size: 14px;
	line-height: 19px;
}

footer .footer-column_right {}
@media (max-width: 959px) {
	footer .footer-column_right {
		margin-top: 53px;
		flex-direction: row;
		justify-content: space-between;
		order: 2;
	}
}
@media (max-width: 639px) {
	footer .footer-column_right {
		margin-top: 57px;
	}
}

footer .footer-menu {
	padding: 0;
	margin: 0;
	list-style: none;
	column-count: 2;
	column-gap: 60px;
}
@media (max-width: 959px) {
	footer .footer-menu {
		gap: 30px;
	}
}
@media (max-width: 639px) {
	footer .footer-menu {
		gap: 60px;
	}
}

footer .footer-menu li {
	margin-top: 20px;
}
@media (max-width: 959px) {
	footer .footer-menu li {
		margin-top: 15px;
	}
}
footer .footer-menu li:first-child {
	margin-top: 0;
}

footer .footer-menu li a {
	display: inline-block;
	font-size: 14px;
	line-height: 19px;
	color: white;
	text-decoration: none;
}
@media (max-width: 959px) {
	footer .footer-menu li a {
		font-size: 12px;
		line-height: 12px;
	}
}

#contactUs-popup {
	padding: 90px 40px;
	width: 900px;
	height: 500px;
	justify-content: center;
	background-color: #ECE8E3;
	border-radius: 30px;
	overflow: auto;
	transform: scale(1) !important;
}
@media (max-width: 959px) {
	#contactUs-popup {
		padding: 90px 35px;
		width: 600px;
		height: 400px;
	}
}
@media (max-width: 639px) {
	#contactUs-popup {
		padding: 70px 25px 10px 25px;
		width: 310px;
		height: 500px;
	}
}

#contactUs-popup:before {
	position: absolute;
	top: 30px;
	left: 40px;
	display: block;
	content: '';
	width: 107px;
	height: 42px;
	background-image: url(../images/popup-logo.svg);
	background-size: cover;
}

#contactUs-popup .popup-close {
	position: absolute;
	top: 30px;
	right: 40px;
	cursor: pointer;
}

#contactUs-popup .popup-close svg {
	display: block;
	pointer-events: none;
}

#contactUs-popup .popup-wrapper {
	display: flex;
	gap: 50px;
}
@media (max-width: 959px) {
	#contactUs-popup .popup-wrapper {
		gap: 40px;
	}
}
@media (max-width: 639px) {
	#contactUs-popup .popup-wrapper {
		flex-direction: column;
		gap: 0;
	}
}

#contactUs-popup .popup-left {
	width: calc(100% / 2 - 70px);
}
@media (max-width: 959px) {
	#contactUs-popup .popup-left {
		width: calc(100% / 2 - 40px);
	}
}
@media (max-width: 639px) {
	#contactUs-popup .popup-left {
		width: 100%;
	}
}

#contactUs-popup .popup-title {
	font-size: 40px;
	line-height: 62px;
	font-weight: bold;
	color: #4b4b4b;
}
@media (max-width: 959px) {
	#contactUs-popup .popup-title {
		font-size: 30px;
		line-height: 40px;
	}
}
@media (max-width: 639px) {
	#contactUs-popup .popup-title {
		font-size: 20px;
		line-height: 31px;
	}
}

#contactUs-popup .popup-text {
	margin-top: 18px;
	font-size: 15px;
	line-height: 23px;
	color: #4b4b4b;
}
@media (max-width: 639px) {
	#contactUs-popup .popup-text {
		line-height: 20px;
	}
}

#contactUs-popup .popup-right {
	width: calc(100% / 2 - 10px);
}
@media (max-width: 959px) {
	#contactUs-popup .popup-right {
		width: calc(100% / 2);
	}
}
@media (max-width: 639px) {
	#contactUs-popup .popup-right {
		width: 100%;
	}
}