@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Roboto:100,100italic,300,300italic,regular,italic,500,500italic,700,700italic,900,900italic);
@import url(https://fonts.googleapis.com/css?family=Inter:100,200,300,regular,500,600,700,800,900);

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
}

* {
	box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

ul {
	list-style: none;
}

body {
	margin: 0;
}

a {
	margin: 0;
	padding: 0;
	text-decoration: none;
	color: inherit;
}

input,
textarea,
select,
button,
.slick-slide,
.slick-tarck,
.slick-list {
	outline: none;
}

input,
textarea {
	margin: 0;
	border: none;
	background: transparent;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border-radius: 0;
}

button {
	border: none;
	background: transparent;
	border-radius: 0;
	cursor: pointer;
	margin: 0;
	padding: 0;
	display: block;
	font-size: inherit;
	color: inherit;
}

img {
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

*::before,
*::after {
	content: "";
	position: absolute;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

body {
	font-family: "Roboto", sans-serif;
}

html,
body {
	height: 100%;
	min-height: 100%;
	display: flex;
	flex-direction: column;
}

main {
	flex: 1 1 auto;
}

.container {
	max-width: 1320px;
	margin: 0 auto;
	padding: 0 60px;
}

@media (max-width: 1200px) {
	.container {
		padding: 0 40px;
	}
}

@media (max-width: 600px) {
	.container {
		padding: 0 20px;
	}
}

:root {
	--greenLight: #01A585;
	--greenDark: #35725B;
	--gray: #808080;
	--white: #FFFFFF;
	--blackText: #2D3436;
	--grayLight: #EDF0F8;
	--iconColor: #09E4BA;
	--blueLight: #E6F6F5;
	--grayLight2: #FAFAFA;
	--yellow: #FFF567;
}

.title {
	font-size: 46px;
	line-height: 1.3;
}

@media (max-width: 1900px) {
	.title {
		font-size: 2.9vw;
	}
}

@media (max-width: 800px) {
	.title {
		font-size: 26px;
	}
}

.title.green {
	color: var(--greenDark);
}

.anim-btn {
	position: relative;
	overflow-x: hidden;
}

.anim-btn::before {
	width: 35px;
	height: 100%;
	top: 0;
	left: -150%;
	transform: skewX(-25deg);
	background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.4));
	animation: flareAnimation 2.3s infinite ease-in;
}

@keyframes flareAnimation {
	0% {
		left: -150%;
	}

	100% {
		left: 150%;
	}
}

.row>* {
	padding: 0;
	margin: 0;
}

.modal-dialog {
	max-width: 400px;
}

.modal-content {
	border-radius: 30px;
	padding: 30px 20px;
}

.modal-content .modal-header {
	margin-bottom: 30px;
}

.modal-content .modal-title {
	font-size: 20px;
}

.modal-content .modal-body {
	margin-bottom: 20px !important;
}

.modal-content .modal-body .input__wrapper {
	margin-bottom: 12px;
	width: 100%;
}

.modal-content .modal-body .input__wrapper input {
	width: 100%;
	padding: 14px 30px;
	border-radius: 12px;
	border: 1px solid var(--grey-light, #EDF0F8);
	background: #FAFAFA;
	color: var(--gray);
}

.modal-content .modal-body .input__wrapper input::-moz-placeholder {
	color: var(--gray);
	font-size: 16px;
}

.modal-content .modal-body .input__wrapper input::placeholder {
	color: var(--gray);
	font-size: 16px;
}

.modal-content .modal-body button {
	padding: 15px;
	border-radius: 12px;
	background: var(--green-light, #01A585);
	color: var(--white);
}

.modal-content .modal-footer {
	font-size: 10px;
}

.modal-content .modal-footer a {
	color: var(--greenLight);
	text-decoration: underline;
	display: inline-block;
	margin: 0;
}

.header {
	border-bottom: 3px solid var(--greenDark);
}

@media (max-width: 600px) {
	.header {
		padding: 12px 0;
		border-bottom: 2px solid var(--greenDark);
	}
}

.header__inner {
	padding: 30px 0;
	gap: 96px;
}

@media (max-width: 1250px) {
	.header__inner {
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.header__inner {
		gap: 24px;
		padding: 0;
	}
}

.header .logo {
	display: block;
	max-width: 215px;
}

@media (max-width: 1024px) {
	.header .logo {
		max-width: 170px;
	}
}

@media (max-width: 600px) {
	.header .logo {
		max-width: 110px;
	}
}

.header .logo img {
	display: block;
}

@media (max-width: 600px) {
	.header .logo img {
		margin-bottom: 14px;
	}
}

.header__location {
	max-width: 167px;
	line-height: 1.4;
	font-size: 14px;
	color: var(--gray);
}

@media (max-width: 600px) {
	.header__location {
		font-size: 10px;
		max-width: 120px;
	}
}

@media (max-width: 350px) {
	.header__location {
		font-size: 8px;
	}
}

@media (max-width: 800px) {
	.header__phone {
		display: none;
	}
}

.header__phone p {
	font-size: 14px;
	line-height: 1.4;
	font-size: 14px;
	color: var(--gray);
}

.header__phone a {
	font-size: 20px;
	transition: 0.3s ease;
}

.header__info {
	gap: 98px;
}

@media (max-width: 1250px) {
	.header__info {
		gap: 30px;
	}
}

@media (max-width: 600px) {
	.header__info {
		margin-right: auto;
	}
}

.header__btn {
	padding: 13px 23px;
	background: var(--greenLight);
	color: var(--white);
	border-radius: 12px;
}

@media (max-width: 950px) {
	.header__btn {
		font-size: 0;
		padding: 0;
		width: 32px;
		height: 32px;
		background-image: url("../images/icons/header_call.png");
		background-position: center;
		background-repeat: no-repeat;
		background-size: contain;
		background-color: transparent;
	}
}

.header .menu {
	margin-bottom: 12px;
}

@media (max-width: 800px) {
	.header .menu {
		display: none;
	}
}

.header .menu .menu__list {
	gap: 20px;
}

.header .menu .menu__list li a {
	transition: 0.3s ease;
}

@media (max-width: 600px) {
	.header__workTime {
		color: var(--gray);
		font-size: 10px;
	}
}

@media (max-width: 350px) {
	.header__workTime {
		font-size: 8px;
	}
}

.promo {
	padding: 75px 0 90px 0;
	background-image: url("../images/promo_bg.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

@media (max-width: 600px) {
	.promo {
		padding: 12px 0 35px 0;
	}
}

.promo__inner {
	position: relative;
}

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

.promo__title {
	font-size: 58px;
	margin-bottom: 50px;
	max-width: 790px;
}

@media (max-width: 600px) {
	.promo__title {
		font-size: 26px;
		margin-bottom: 10px;
		order: 1;
	}
}

.promo__items {
	max-width: 670px;
	font-size: 24px;
	line-height: 1.5;
	gap: 60px;
	margin-bottom: 40px;
}

@media (max-width: 600px) {
	.promo__items {
		order: 2;
		font-size: 18px;
		margin-bottom: 20px;
		flex-direction: column;
		gap: 12px;
	}
}

.promo__item {
	padding-left: 50px;
	position: relative;
}

.promo__item::before {
	width: 30px;
	height: 30px;
	top: 10px;
	left: 0;
	background-image: url("../images/icons/checkRadial.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 600px) {
	.promo__item::before {
		width: 23px;
		height: 23px;
	}
}

.promo__flex {
	gap: 40px;
	margin-bottom: 85px;
}

@media (max-width: 600px) {
	.promo__flex {
		order: 4;
		flex-direction: column;
		text-align: center;
		gap: 12px;
		margin-bottom: 40px;
	}
}

.promo__btn {
	padding: 17px 40px;
	border-radius: 12px;
	background: var(--greenLight);
	color: var(--white);
}

@media (max-width: 600px) {
	.promo__btn {
		padding: 12px 20px;
		width: 100%;
	}
}

.promo__text {
	font-size: 14px;
	color: #6F6F6F;
	line-height: 1.6;
}

@media (max-width: 1112px) {
	.promo__text {
		max-width: 250px;
	}
}

@media (max-width: 600px) {
	.promo__text {
		max-width: 180px;
		order: -1;
	}
}

.promo__carts {
	gap: 20px 30px;
}

@media (max-width: 600px) {
	.promo__carts {
		order: 3;
		gap: 12px;
		flex-direction: column;
		margin-bottom: 12px;
	}
}

.promo__cart {
	padding: 23px;
	border-radius: 30px;
	border: 7px solid #FFF;
	opacity: 0.9;
	background: var(--white, #FFF);
	box-shadow: 0px 4px 50px 0px rgba(0, 0, 0, 0.1);
	display: grid;
	grid-auto-flow: row;
	grid-template: 1fr auto auto auto/1fr;
}

@media (max-width: 600px) {
	.promo__cart {
		padding: 10px 20px;
		border-radius: 15px;
	}
}

.promo__cart:nth-child(1) img {
	max-width: 175px;
	display: block;
	margin: 0 auto;
	margin-bottom: 8px;
}

@media (max-width: 600px) {
	.promo__cart:nth-child(1) img {
		max-width: 109px;
		margin: 0;
	}
}

.promo__cart:nth-child(2) img {
	display: block;
	max-width: 120px;
	margin: 0 auto;
	margin-bottom: 18px;
	margin-top: 8px;
}

@media (max-width: 600px) {
	.promo__cart:nth-child(2) img {
		max-width: 80px;
		margin: 0;
	}
}

@media (max-width: 600px) {
	.promo__cart:nth-child(2) .promo__cart-top {
		gap: 28px;
	}
}

@media (max-width: 600px) {
	.promo__cart-top {
		display: flex;
		gap: 13px;
		align-items: center;
		margin-bottom: 11px;
	}
}

.promo__cart-title {
	color: var(--greenLight);
	margin-bottom: 30px;
}

@media (max-width: 600px) {
	.promo__cart-title {
		margin-bottom: 0;
	}
}

.promo__cart-price {
	padding-left: 68px;
	font-size: 22px;
	position: relative;
	margin-bottom: 30px;
}

@media (max-width: 600px) {
	.promo__cart-price {
		padding-left: 47px;
		margin: 0;
	}
}

.promo__cart-price::before {
	width: 60px;
	height: 60px;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	background-image: url("../images/icons/salem_1.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 600px) {
	.promo__cart-price::before {
		width: 35px;
		height: 35px;
	}
}

.promo__cart-btn {
	margin: 0 auto;
	text-decoration: underline;
	line-height: 1.8;
}

@media (max-width: 600px) {
	.promo__cart-btn {
		display: none;
	}
}

.promo__reviews {
	height: auto;
	margin-top: auto;
}

.promo__reviews img {
	display: block;
	max-width: 202px;
}

@media (max-width: 900px) {
	.promo__reviews {
		display: none;
	}
}

.promo__img {
	position: absolute;
	display: block;
	max-width: 770px;
	width: 40.1vw;
	top: 45%;
	transform: translate(0, -50%);
	right: -15.63vw;
}

@media (max-width: 1820px) {
	.promo__img {
		right: -12vw;
	}
}

@media (max-width: 1680px) {
	.promo__img {
		right: -8vw;
	}
}

@media (max-width: 1490px) {
	.promo__img {
		right: -6vw;
	}
}

@media (max-width: 1450px) {
	.promo__img {
		right: 0;
		width: 38vw;
	}
}

@media (max-width: 1000px) {
	.promo__img {
		position: static;
		display: none;
	}
}

@media (max-width: 600px) {
	.promo__img {
		order: 5;
		display: block;
		top: 0;
		right: 0;
		max-width: 312px;
		width: 100%;
		transform: translate(0, 0);
		margin-bottom: 25px;
	}
}

.promo__reviews2 {
	order: 6;
	max-width: 202px;
	margin: 0 auto;
}

.promo__reviews2 img {
	display: block;
}

.promo .marquiz__container {
	text-align: left !important;
	width: -moz-max-content;
	width: max-content;
}

.promo .marquiz__button {
	border-radius: 12px !important;
	font-size: 16px !important;
	padding: 17px 35px !important;
}

.promoDscr {
	padding-top: 120px;
}

@media (max-width: 600px) {
	.promoDscr {
		padding: 40px 0;
	}
}

.promoDscr__title {
	margin-bottom: 75px;
}

@media (max-width: 600px) {
	.promoDscr__title {
		font-size: 26px;
		margin-bottom: 20px;
	}
}

.promoDscr__nextTitle {
	margin-bottom: 20px;
	font-size: 20px;
	color: var(--blackText);
}

.promoDscr__inner {
	gap: 70px;
	margin-bottom: 80px;
}

@media (max-width: 600px) {
	.promoDscr__inner {
		margin-bottom: 24px;
	}
}

.promoDscr__img {
	max-width: 485px;
	border-radius: 30px;
	overflow: hidden;
}

@media (max-width: 600px) {
	.promoDscr__img {
		margin-bottom: 20px;
	}
}

.promoDscr__content {
	max-width: 623px;
	font-size: 22px;
	color: var(--blackText);
	line-height: 1.45;
}

.promoDscr__content p {
	margin-bottom: 20px;
}

.promoDscr__content span {
	color: var(--greenLight);
}

.promoDscr__content ul {
	margin: 27px 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

@media (max-width: 600px) {
	.promoDscr__content ul {
		margin: 20px 0;
		font-size: 14px;
	}
}

.promoDscr__content ul li {
	padding-left: 43px;
	position: relative;
}

.promoDscr__content ul li::before {
	width: 17px;
	height: 17px;
	top: 10px;
	left: 0;
	background-image: url("../images/icons/checkList_bold.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.promoDscr__item {
	padding: 5px;
	display: grid;
	grid-auto-flow: row;
	grid-template: 1fr/1fr;
}

.promoDscr__item .promoDscr__item-img+.promoDscr__item-img {
	margin-top: 4px;
}

.promoDscr__item-img {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
	cursor: pointer;
}

.promoDscr__item-img::before {
	border-radius: 12px;
	transition: 0.3s ease;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	background: rgba(0, 0, 0, 0.5);
}

.promoDscr__item-img::after {
	transition: 0.3s ease;
	opacity: 0;
	width: 32px;
	height: 32px;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background-image: url("../images/icons/loop.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.promoDscr__item-img:hover::before,
.promoDscr__item-img::after {
	opacity: 1;
}

.promoDscr__item img {
	height: 100%;
	display: block;
}

.promoDscr iframe {
	display: block;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	border-radius: 30px;
	border: none;
	aspect-ratio: 16/9;
}

.possibility {
	padding: 120px 0;
}

@media (max-width: 600px) {
	.possibility {
		padding: 0 0 40px 0;
	}
}

.possibility__title {
	margin-bottom: 75px;
}

@media (max-width: 600px) {
	.possibility__title {
		margin-bottom: 20px;
	}
}

.possibility__items {
	margin: 0 -5px;
	margin-bottom: 75px;
}

@media (max-width: 600px) {
	.possibility__items {
		margin: -6px -2.5px;
		margin-bottom: 40px;
	}
}

.possibility__item-wrapper {
	padding: 0 5px;
}

@media (max-width: 600px) {
	.possibility__item-wrapper {
		padding: 6px 2.5px;
	}
}

.possibility__item {
	border-radius: 30px;
	overflow: hidden;
	border: 1px solid var(--grayLight);
	background: var(--grayLight2);
	display: grid;
	grid-auto-flow: row;
	grid-template: 1fr auto/1fr;
	height: 100%;
}

@media (max-width: 600px) {
	.possibility__item {
		border-radius: 15px;
	}
}

.possibility__item-text {
	padding: 24px 20px;
	color: var(--blackText);
}

@media (max-width: 600px) {
	.possibility__item-text {
		padding: 15px 10px;
		font-size: 13px;
	}
}

.possibility__item-img img {
	height: 407px;
	display: block;
}

@media (max-width: 1340px) {
	.possibility__item-img img {
		height: auto;
		aspect-ratio: 4/5.5;
	}
}

.possibility__benefits {
	border-radius: 30px;
	background: var(--blueLight);
	padding: 40px 50px;
}

@media (max-width: 600px) {
	.possibility__benefits {
		padding: 14px 22px;
		border-radius: 15px;
	}
}

.possibility__benefits-top {
	gap: 30px;
	margin-bottom: 30px;
}

@media (max-width: 600px) {
	.possibility__benefits-top {
		margin-bottom: 20px;
		gap: 17px;
	}
}

.possibility__benefits-top img {
	max-width: 60px;
	display: block;
	margin-top: 5px;
}

@media (max-width: 600px) {
	.possibility__benefits-top img {
		max-width: 30px;
	}
}

.possibility__benefits-title {
	font-size: 26px;
	color: var(--blackText);
	line-height: 1.4;
}

@media (max-width: 600px) {
	.possibility__benefits-title {
		font-size: 18px;
	}
}

.possibility__benefits-title span {
	color: var(--white);
	background: var(--greenLight);
	padding: 0 3px;
}

.possibility__benefits-items {
	margin: 0;
}

.possibility__benefits-item-wrapper {
	padding: 0 15px 20px 0;
}

.possibility__benefits-item {
	height: 100%;
	padding-left: 60px;
	position: relative;
	font-size: 18px;
	color: var(--blackText);
}

@media (max-width: 600px) {
	.possibility__benefits-item {
		font-size: 15px;
		padding-left: 50px;
	}
}

.possibility__benefits-item::before {
	width: 30px;
	height: 30px;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	background-image: url("../images/icons/checkRadial.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.result.main {
	padding-bottom: 227px;
}

@media (max-width: 600px) {
	.result.main {
		padding-bottom: 40px;
	}
}

.trigger {
	padding-bottom: 120px;
}

.trigger.top {
	margin-top: -190px;
}

@media (max-width: 600px) {
	.trigger.top {
		margin-top: 0;
		padding-top: 40px;
		padding-bottom: 40px;
	}
}

.trigger.two {
	padding-top: 120px;
}

@media (max-width: 600px) {
	.trigger.two {
		padding-top: 45px;
		padding-bottom: 40px;
	}
}

.trigger img {
	position: relative;
	height: 190px;
}

.trigger__inner {
	border-radius: 30px;
	overflow: hidden;
	margin-bottom: 40px;
	position: relative;
	z-index: 1;
}

@media (max-width: 600px) {
	.trigger__inner {
		border-radius: 15px;
		box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
	}
}

.trigger__inner::before {
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-image: url("../images/bg_form_grey.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	z-index: 0;
}

@media (max-width: 600px) {
	.trigger__inner::before {
		display: none;
	}
}

.trigger__body {
	background: var(--greenLight);
	padding: 60px 60px 90px 60px;
	color: var(--white);
}

@media (max-width: 600px) {
	.trigger__body {
		padding: 20px 15px;
		padding-bottom: 0;
	}
}

.trigger__body-inner {
	gap: 20px;
}

.trigger__body-form {
	position: relative;
	padding: 47px 44px;
	border-radius: 30px;
	background: #FFF;
	box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.05);
}

@media (max-width: 600px) {
	.trigger__body-form {
		padding: 20px 26px;
		border-radius: 15px;
		margin: 0 -20px;
	}
}

.trigger__body-form form {
	gap: 14px;
	margin-bottom: 24px;
}

@media (max-width: 600px) {
	.trigger__body-form form {
		flex-direction: column;
		gap: 12px;
		margin-bottom: 12px;
	}
}

.trigger__body-form form .input__wrapper {
	max-width: 285px;
}

@media (max-width: 600px) {
	.trigger__body-form form .input__wrapper {
		max-width: 100%;
	}
}

.trigger__body-form form .input__wrapper input {
	padding: 17px 30px;
	width: 100%;
	color: var(--gray);
	border-radius: 12px;
	border: 1px solid var(--grey, #808080);
	background: #FAFAFA;
}

.trigger__body-form form .input__wrapper input::-moz-placeholder {
	font-size: 16px;
	color: var(--gray);
}

.trigger__body-form form .input__wrapper input::placeholder {
	font-size: 16px;
	color: var(--gray);
}

.trigger__body-form form button {
	border-radius: 12px;
	padding: 17px 14px;
	background: var(--greenLight);
	white-space: nowrap;
}

.trigger__body-form .polis-text {
	max-width: 463px;
	color: var(--gray);
	font-size: 12px;
}

.trigger__title {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 30px;
}

@media (max-width: 600px) {
	.trigger__title {
		font-size: 26px;
		margin-bottom: 12px;
	}
}

.trigger__text {
	max-width: 425px;
	font-size: 18px;
	margin-bottom: 35px;
}

@media (max-width: 600px) {
	.trigger__text {
		font-size: 16px;
		margin-bottom: 12px;
	}
}

.trigger__text2 {
	font-size: 18px;
	margin-bottom: 13px;
	line-height: 2.5;
}

@media (max-width: 600px) {
	.trigger__text2 {
		line-height: 1.5;
	}
}

.trigger__text2 span {
	color: var(--yellow);
}

.trigger a {
	font-size: 36px;
	line-height: 1.3;
}

@media (max-width: 1000px) {
	.trigger a {
		font-size: 28px;
		margin-bottom: 20px;
		display: block;
	}
}

.trigger a:hover {
	color: var(--white);
}

.trigger__info {
	margin-left: 60px;
	gap: 120px;
}

@media (max-width: 1300px) {
	.trigger__info {
		margin-left: 0;
	}
}

@media (max-width: 600px) {
	.trigger__info {
		gap: 20px;
		display: grid;
		grid-template-columns: repeat(2, minmax(auto, 1fr));
	}
}

.trigger__info-item {
	gap: 14px;
	font-size: 14px;
}

@media (max-width: 600px) {
	.trigger__info-item {
		gap: 10px;
	}
}

@media (max-width: 600px) {
	.trigger__info-item:nth-child(2) {
		order: -1;
	}
}

.trigger__info-item img {
	max-width: 48px;
	height: 48px;
	display: block;
}

@media (max-width: 600px) {
	.trigger__info-item img {
		max-width: 30px;
		height: 30px;
	}
}

.trigger__info-item b {
	color: var(--greenLight);
	margin-bottom: 3px;
}

@media (max-width: 600px) {
	.trigger__info-item b {
		display: none !important;
	}
}

.trigger__info-item p {
	max-width: 180px;
	color: var(--gray);
}

@media (max-width: 600px) {
	.trigger__info-item p span {
		display: none;
	}
}

.why__title {
	margin-bottom: 75px;
}

@media (max-width: 600px) {
	.why__title {
		margin-bottom: 20px;
		font-size: 26px;
	}
}

.why__inner {
	margin: 0 -30px 0 0;
}

@media (max-width: 600px) {
	.why__inner {
		margin: -20px 0 0 0;
	}
}

.why__item-wrapper {
	padding: 15px 30px;
}

@media (max-width: 600px) {
	.why__item-wrapper {
		padding: 20px 0 0 20px;
	}
}

.why__item-wrapper:nth-child(1) .why__item {
	background: var(--grayLight);
}

.why__item-wrapper:nth-child(1) .why__item img {
	max-width: 212px;
	right: -4px;
}

.why__item-wrapper:nth-child(2) .why__item {
	background: var(--blueLight);
}

.why__item-wrapper:nth-child(2) .why__item img {
	max-width: 180px;
}

.why__item {
	height: 100%;
	position: relative;
	border-radius: 30px;
	padding: 45px;
	color: var(--blackText);
}

@media (max-width: 600px) {
	.why__item {
		border-radius: 15px;
		padding: 20px 20px 20px 40px;
	}
}

.why__item::before {
	width: 44px;
	height: 30px;
	top: 60px;
	left: -27px;
	background-image: url("../images/icons/why_check.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 600px) {
	.why__item::before {
		width: 32px;
		height: 24px;
		left: -20px;
	}
}

.why__item-title {
	font-size: 18px;
	margin-bottom: 25px;
}

@media (max-width: 600px) {
	.why__item-title {
		margin-bottom: 12px;
	}
}

.why__item-text {
	max-width: 300px;
	font-size: 20px;
}

@media (max-width: 600px) {
	.why__item-text {
		font-size: 14px;
	}
}

.why__item img {
	display: block;
	position: absolute;
	right: 0;
	bottom: 0;
}

@media (max-width: 1350px) {
	.why__item img {
		display: none;
	}
}

.youHave {
	padding: 120px 0;
}

@media (max-width: 600px) {
	.youHave {
		padding: 40px 0;
	}
}

.youHave__title {
	margin-bottom: 75px;
}

@media (max-width: 600px) {
	.youHave__title {
		margin-bottom: 35px;
	}
}

.youHave__inner {
	margin: -20px -30px 0 -30px;
}

@media (max-width: 600px) {
	.youHave__inner {
		margin: -10px 0;
	}
}

.youHave__item-wrapper {
	padding: 20px 30px;
}

@media (max-width: 600px) {
	.youHave__item-wrapper {
		padding: 10px 0px;
	}
}

.youHave__item {
	padding-left: 60px;
	position: relative;
}

@media (max-width: 600px) {
	.youHave__item {
		padding-left: 50px;
	}
}

.youHave__item::before {
	width: 30px;
	height: 30px;
	top: 10px;
	left: 0;
	background-image: url("../images/icons/checkRadial.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

@media (max-width: 600px) {
	.youHave__item::before {
		top: 0;
	}
}

.youHave__item-title {
	margin-bottom: 20px;
	color: var(--blackText);
	line-height: 1.45;
	font-size: 22px;
}

@media (max-width: 600px) {
	.youHave__item-title {
		font-size: 18px;
	}
}

.youHave__item-text {
	font-size: 20px;
	line-height: 1.5;
}

@media (max-width: 600px) {
	.youHave__item-text {
		font-size: 16px;
	}
}

.product {
	padding: 120px 0;
	background: var(--blueLight);
}

@media (max-width: 600px) {
	.product {
		padding: 40px 0;
	}
}

.product__title {
	margin-bottom: 26px;
}

@media (max-width: 600px) {
	.product__title {
		margin-bottom: 20px;
	}
}

.product__nextTitle {
	margin-bottom: 34px;
	font-size: 24px;
	line-height: 2.5;
}

@media (max-width: 600px) {
	.product__nextTitle {
		font-size: 18px;
		margin-bottom: 20px;
	}
}

.product__item+.product__item {
	margin-top: 20px;
}

.product__item {
	padding: 30px;
	border-radius: 30px;
	border: 1px solid var(--dashed-line-light, #E8E8E8);
	background: var(--white, #FFF);
	display: grid;
	grid-template-columns: repeat(2, minmax(auto, 1fr));
}

@media (max-width: 1000px) {
	.product__item {
		grid-template-columns: repeat(1, minmax(auto, 1fr));
		gap: 12px;
		padding: 20px 45px;
	}
}

.product__item-img {
	gap: 20px 30px;
}

@media (max-width: 600px) {
	.product__item-img {
		flex-direction: column;
		gap: 12px;
	}
}

.product__item-img img {
	display: block;
	border-radius: 5px;
	max-width: 160px;
	height: 100%;
}

@media (max-width: 600px) {
	.product__item-img img {
		max-width: 223px;
	}
}

.product__item-name {
	font-size: 20px;
	line-height: 1.4;
}

@media (max-width: 600px) {
	.product__item-name {
		width: 100%;
	}
}

.product__item-info {
	display: grid;
	grid-template-columns: 1fr 0.45fr;
	align-items: center;
}

@media (max-width: 600px) {
	.product__item-info {
		display: block;
	}
}

.product__item-info ul {
	padding: 30px 0;
	margin: -30px 0;
	max-width: 410px;
	width: 100%;
	padding-right: 30px;
	border-right: 1px dashed #E8E8E8;
	font-size: 14px;
	display: flex;
	flex-direction: column;
	gap: 16px;
}

@media (max-width: 600px) {
	.product__item-info ul {
		border-right: 0;
		border-bottom: 1px dashed #E8E8E8;
		margin: 0;
		padding: 0;
		padding-bottom: 20px;
	}
}

.product__item-info ul li {
	position: relative;
	padding-left: 26px;
}

.product__item-info ul li::before {
	width: 13px;
	height: 12px;
	top: 50%;
	transform: translate(0, -50%);
	left: 0;
	background-image: url("../images/icons/checkList_bold.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.product__item-price {
	padding-left: 40px;
	color: var(--greenLight);
	font-size: 22px;
	line-height: 1.4;
	white-space: nowrap;
}

@media (max-width: 600px) {
	.product__item-price {
		padding-left: 0;
		font-size: 18px;
		padding-top: 12px;
		text-align: center;
		display: block;
		line-height: 1.6;
	}
}


@media (min-width: 992px) and (max-width: 1240px) { 
.trigger__body-form form button {
	    padding: 8px 12px;    
   white-space: normal;
    font-size: 14px;
}
	
}

@media (min-width: 601px) and (max-width: 741px) { 
.trigger__body-form form button {
	    padding: 8px 12px;    
   white-space: normal;
    font-size: 14px;
}
	
}



@media (min-width: 1112px) and (max-width: 1150px) { 
.promo__text {
	max-width: 200px;
}
	
}

a.header__btn2 {
	display:none;
	font-size: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background-image: url(../images/icons/header_call.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;
}

@media (max-width: 950px) {
	.header__btn {
	display:none;
	}
	a.header__btn2 {
	display:block;
	font-size: 0;
    padding: 0;
    width: 32px;
    height: 32px;
    background-image: url(../images/icons/header_call.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    background-color: transparent;	
	}
}

.promoThanks {
  padding: 30px 0 90px 0;
  background-image: url("../images/promo_bg.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.promoThanks__inner {
  gap: 20px;
}
.promoThanks__title {
  margin-bottom: 80px;
  font-size: 58px;
}
@media (max-width: 1920px) {
  .promoThanks__title {
    font-size: 3.02vw;
  }
}
@media (max-width: 600px) {
  .promoThanks__title {
    margin-bottom: 20px;
    font-size: 26px;
  }
}
.promoThanks__text {
  font-size: 30px;
}
@media (max-width: 1920px) {
  .promoThanks__text {
    font-size: 1.56vw;
  }
}
@media (max-width: 600px) {
  .promoThanks__text {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
  }
}
.promoThanks__img {
  max-width: 588px;
  margin-right: -250px;
}
@media (max-width: 1920px) {
  .promoThanks__img {
    margin-right: 0;
    max-width: 488px;
    width: 33.89vw;
  }
}
@media (max-width: 600px) {
  .promoThanks__img {
    max-width: 340px;
    margin: 0 auto;
    width: 100%;
  }
}

.infoSaleThanks {
  margin-top: -60px;
}
.infoSaleThanks__inner {
  background: var(--greenDark);
  color: var(--white);
  padding: 27px 25px;
  border-radius: 30px;
}
@media (max-width: 600px) {
  .infoSaleThanks__inner {
    padding: 16px;
    padding-bottom: 180px;
    border-radius: 15px;
  }
}
.infoSaleThanks__img {
  left: 25px;
  top: 12px;
  max-width: 210px;
  width: 100%;
}
@media (max-width: 1250px) {
  .infoSaleThanks__img {
    display: none;
  }
}
@media (max-width: 600px) {
  .infoSaleThanks__img {
    top: auto;
    display: block;
    bottom: -48px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.infoSaleThanks__img img {
  display: block;
}
.infoSaleThanks__text-wrapper {
  max-width: 712px;
  margin-left: auto;
  margin-right: 156px;
}
@media (max-width: 600px) {
  .infoSaleThanks__text-wrapper {
    margin-right: 0;
  }
}
.infoSaleThanks__text {
  font-size: 24px;
  line-height: 1.1;
  margin-bottom: 20px;
}
.infoSaleThanks__text span {
  color: var(--yellow);
}
.infoSaleThanks__dscr {
  font-size: 18px;
}

.triggerСonsultation {
  margin-top: 170px;
}
@media (max-width: 600px) {
  .triggerСonsultation {
    margin-top: 88px;
  }
}
.triggerСonsultation__title {
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .triggerСonsultation__title {
    margin-bottom: 20px;
  }
}
.triggerСonsultation__dcsr {
  font-size: 20px;
  line-height: 1.5;
  color: var(--blackText);
  margin-bottom: 40px;
}
@media (max-width: 1600px) {
  .triggerСonsultation__dcsr {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .triggerСonsultation__dcsr {
    margin-bottom: 82px;
  }
}
.triggerСonsultation__item {
  gap: 44px;
  position: relative;
}
.triggerСonsultation__item img {
  display: block;
  max-width: 130px;
}
@media (max-width: 768px) {
  .triggerСonsultation__item img {
    position: absolute;
    top: -62px;
    z-index: 10;
  }
}
.triggerСonsultation__item-text {
  width: 100%;
  padding: 30px 40px;
  background: var(--grayLight);
  border-radius: 30px;
  line-height: 1.5;
}
@media (max-width: 768px) {
  .triggerСonsultation__item-text {
    padding: 94px 16px 60px 16px;
  }
}
.triggerСonsultation__item-text::before {
  width: 130px;
  height: 100px;
  bottom: -20px;
  right: 20px;
  background-image: url("../images/triggerСonsultation__item_el.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 10;
}
@media (max-width: 1024px) {
  .triggerСonsultation__item-text::before {
    display: none;
  }
}
@media (max-width: 768px) {
  .triggerСonsultation__item-text::before {
    width: 120px;
    height: 90px;
    display: block;
    bottom: -30px;
  }
}
.triggerСonsultation__item-text span {
  margin-top: 30px;
  display: block;
  color: var(--gray);
}
@media (max-width: 768px) {
  .triggerСonsultation__item-text span {
    margin-top: 20px;
  }
}
.triggerСonsultation__btn {
  cursor: pointer;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  margin-top: 100px;
  width: 42px;
  height: 50px;
  background-image: url("../images/triggerСonsultation__btn.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.steps {
  padding-top: 75px;
}
@media (max-width: 600px) {
  .steps.main .steps__content-title {
    font-size: 16px;
    color: var(--greenDark);
    text-decoration: underline;
    cursor: pointer;
    font-weight: 700;
  }
}
@media (max-width: 600px) {
  .steps.main .steps__content-text {
    position: fixed;
    z-index: 200;
    background: var(--white);
    width: 100%;
    display: block;
    max-width: 90%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
    font-size: 18px;
    line-height: 1.5;
  }
}
.steps.main .steps__content-text ul {
  list-style: inside;
  margin-left: 10px;
}
.steps.main .steps__content-text .close {
  width: 15px;
  height: 15px;
  background-image: url("../images/icons/close.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  top: 12px;
  right: 12px;
  position: absolute;
}
@media (max-width: 600px) {
  .steps.main .steps__content-text {
    display: none;
  }
}
.steps__title {
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .steps__title {
    margin-bottom: 20px;
  }
}
.steps__inner {
  gap: 90px;
  margin-bottom: 80px;
}
@media (max-width: 600px) {
  .steps__inner {
    margin-bottom: 40px;
  }
}
@media (max-width: 768px) {
  .steps__content {
    margin-bottom: 40px;
  }
}
.steps__content-title {
  font-size: 26px;
  color: var(--blackText);
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .steps__content-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.steps__content-text {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 40px;
  max-width: 476px;
}
@media (max-width: 600px) {
  .steps__content-text {
    margin-bottom: 20px;
  }
}
.steps__content-list {
  max-width: 380px;
  font-size: 18px;
  line-height: 1.1;
  color: var(--blackText);
}
@media (max-width: 768px) {
  .steps__content-list {
    max-width: 100%;
  }
}
.steps__content-list li {
  padding: 30px 20px 30px 0;
  gap: 40px;
  border-bottom: 1px dashed #808080;
}
@media (max-width: 600px) {
  .steps__content-list li {
    padding: 18px;
    padding-left: 0;
  }
}
.steps__content-list li img {
  display: block;
  max-width: 35px;
}
@media (max-width: 600px) {
  .steps__content-list li img {
    max-width: 60px;
  }
}
.steps__slider {
  overflow: hidden;
  max-width: 1920px;
  margin: 0 auto;
}
.steps__slider .slick-list {
  margin: 0 -15px;
}
@media (max-width: 800px) {
  .steps__slider .slick-list {
    margin: 0 -10px;
  }
}
.steps__slider-item {
  margin: 0 15px;
  border-radius: 30px;
  overflow: hidden;
}
@media (max-width: 800px) {
  .steps__slider-item {
    margin: 0 10px;
  }
}
.steps__slider-item img {
  display: block;
  height: 220px;
}
@media (max-width: 1500px) {
  .steps__slider-item img {
    height: 190px;
  }
}
@media (max-width: 470px) {
  .steps__slider-item img {
    height: 140px;
  }
}
.steps__imgs {
  max-width: 640px;
}

.doctors {
  padding-top: 223px;
  padding-bottom: 70px;
}
.doctors.main {
  background: #F7F7F7;
  padding: 100px 0 120px 0;
}
@media (max-width: 600px) {
  .doctors.main {
    padding: 40px 0;
  }
}
.doctors.thanks {
  padding-bottom: 30px;
}
.doctors.thanks .triggerСonsultation__btn {
  margin-top: 30px;
}
@media (max-width: 600px) {
  .doctors {
    padding-top: 40px;
  }
}
.doctors__title {
  line-height: 1.3;
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .doctors__title {
    margin-bottom: 30px;
  }
}
.doctors__items {
  margin: -20px -22px !important;
}
@media (max-width: 1024px) {
  .doctors__items {
    margin: -10px !important;
  }
}
.doctors__item {
  padding: 20px 22px !important;
}
@media (max-width: 1024px) {
  .doctors__item {
    padding: 10px !important;
  }
}
.doctors__item-img {
  margin-bottom: 16px;
}
.doctors__item-img img {
  display: block;
}
.doctors__item-expertise {
  width: -moz-max-content;
  width: max-content;
  margin-bottom: 16px;
  padding: 6px 20px;
  border-radius: 15px;
  border: 1px solid var(--gray);
  background: var(--white);
}
.doctors__item-title {
  max-width: 240px;
  margin-bottom: 32px;
  font-size: 20px;
  line-height: 1.2;
}
.doctors__item-title::before {
  width: 66px;
  height: 1px;
  bottom: -16px;
  left: 0;
  background: var(--greenDark);
}
.doctors__item-dscr {
  font-size: 20px;
  line-height: 1.2;
}

.result {
  background: #F7F7F7;
  padding: 120px 0 45px 0;
  overflow: hidden;
}
@media (max-width: 600px) {
  .result {
    padding: 20px 0;
  }
}
.result__title {
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .result__title {
    margin-bottom: 35px;
  }
}
@media (max-width: 1600px) {
  .result__slider-wrapper {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 60px;
  }
}
@media (max-width: 1200px) {
  .result__slider-wrapper {
    padding: 0 40px;
  }
}
@media (max-width: 600px) {
  .result__slider-wrapper {
    padding: 0 20px;
  }
}
.result__slider {
  width: 100%;
}
.result__slider .slick-list {
  display: grid;
  margin: 0 -15px;
}
@media (max-width: 600px) {
  .result__slider .slick-list {
    margin: 0;
  }
}
.result__slider .slick-dots {
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .result__slider .slick-dots {
    margin-top: 16px;
  }
}
.result__slider .slick-dots li {
  list-style: none;
  cursor: pointer;
  height: 15px;
  width: 15px;
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid var(--gray);
  transition: 0.3s ease;
}
.result__slider .slick-dots li button {
  display: none;
}
.result__slider .slick-dots li.slick-active {
  background-color: var(--greenLight);
  border-color: var(--greenLight);
}
.result__slider-arrows {
  width: 77%;
  top: 43%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 20;
}
@media (max-width: 1600px) {
  .result__slider-arrows {
    width: 105%;
  }
}
@media (max-width: 1440px) {
  .result__slider-arrows {
    width: 97%;
  }
}
.result__slider-arrows .slick-arrow {
  font-size: 0;
  border-radius: 50%;
  border: none;
  display: block;
  width: 75px;
  height: 75px;
  cursor: pointer;
  padding: 0;
  z-index: 50;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 0px 4px 30px 0px rgba(0, 0, 0, 0.25);
}
@media (max-width: 1112px) {
  .result__slider-arrows .slick-arrow {
    width: 55px;
    height: 55px;
  }
}
@media (max-width: 600px) {
  .result__slider-arrows .slick-arrow {
    width: 30px;
    height: 30px;
  }
}
.result__slider-arrows .slick-prev {
  background-image: url("../images/icons/slick_prev.svg");
}
.result__slider-arrows .slick-next {
  background-image: url("../images/icons/slick_next.svg");
}
.result__item {
  transition: 0.3s ease;
  margin: 0 15px;
  border-radius: 30px;
  border: 1px solid #EDF0F8;
  background: var(--grayLight2);
  opacity: 0.3;
}
@media (max-width: 1600px) {
  .result__item {
    opacity: 1;
  }
}
@media (max-width: 600px) {
  .result__item {
    margin: 0;
  }
}
.result__item.slick-active {
  opacity: 1;
}
.result__item-img {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .result__item-img {
    margin-bottom: 16px;
  }
}
.result__item-img img {
  display: block;
}
.result__item-text {
  padding: 0 25px 30px 25px;
}
@media (max-width: 600px) {
  .result__item-text {
    padding: 0 18px 20px 18px;
  }
}
.result .triggerСonsultation__btn {
  margin-top: 37px;
}

.certificates {
  padding: 120px 0;
}
.certificates.main {
  padding-top: 0;
}
@media (max-width: 600px) {
  .certificates {
    padding: 90px 0 50px 0;
  }
}
.certificates__title {
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .certificates__title {
    margin-bottom: 35px;
  }
}
.certificates__inner {
  display: grid;
  grid-template-columns: repeat(5, minmax(auto, 1fr));
  gap: 15px;
}
@media (max-width: 1000px) {
  .certificates__inner {
    grid-template-columns: repeat(3, minmax(auto, 1fr));
  }
}
@media (max-width: 650px) {
  .certificates__inner {
    grid-template-columns: repeat(2, minmax(auto, 1fr));
  }
}
@media (max-width: 484px) {
  .certificates__inner {
    grid-template-columns: repeat(1, minmax(auto, 1fr));
  }
}
.certificates__item {
  cursor: pointer;
}

.dscrThanks {
  padding: 120px 0;
  background: #F7F7F7;
}
@media (max-width: 600px) {
  .dscrThanks {
    padding: 20px 0;
  }
}
.dscrThanks__title {
  margin-bottom: 75px;
}
@media (max-width: 600px) {
  .dscrThanks__title {
    margin-bottom: 20px;
  }
}
.dscrThanks p {
  font-size: 20px;
  color: var(--blackText);
  line-height: 1.4;
  display: block;
}
.dscrThanks p:nth-child(1) {
  margin-bottom: 40px;
}
.dscrThanks ul {
  font-size: 20px;
  color: var(--blackText);
  margin: 20px 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
@media (max-width: 600px) {
  .dscrThanks ul {
    margin: 20px 0;
  }
}
.dscrThanks ul li {
  line-height: 1.8;
  padding-left: 52px;
  position: relative;
}
.dscrThanks ul li::before {
  width: 22px;
  height: 20px;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
  background-image: url("../images/icons/checkList.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.info {
  background: var(--blueLight);
  padding: 40px 0;
}
.info__inner {
  gap: 40px;
  max-width: 83%;
}
@media (max-width: 600px) {
  .info__inner {
    max-width: 100%;
    flex-direction: column;
    gap: 12px;
    padding-left: 44px;
  }
}
@media (max-width: 400px) {
  .info__inner {
    padding-left: 34px;
  }
}
@media (max-width: 350px) {
  .info__inner {
    padding-left: 0;
  }
}
.info__item {
  gap: 15px;
}
.info__item-title {
  color: var(--greenLight);
  margin-bottom: 3px;
  font-weight: 700;
}
.info__item img {
  display: block;
  max-width: 48px;
}

@media (max-width: 600px) {
  .contact {
    padding-bottom: 30px;
  }
}
.contact__inner {
  gap: 111px;
}
.contact__map {
  max-width: 689px;
  width: 100%;
}
.contact__map iframe {
  width: 100%;
  height: 533px;
}
@media (max-width: 600px) {
  .contact__map iframe {
    width: calc(100% + 40px);
    margin: 0 -20px;
    height: 334px;
  }
}
.contact__title {
  margin-bottom: 55px;
  font-size: 40px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 600px) {
  .contact__list {
    margin-top: 10px;
  }
}
.contact__item:first-child a {
  color: #000000;
}
.contact__item-title {
  font-weight: 700;
}
.contact__item a {
  font-weight: 400;
  transition: 0.3s ease;
  color: var(--greenDark);
}
.contact__text {
  margin-top: 30px;
}
.contact__text a {
  color: var(--greenDark);
}

.footer {
  background: #2D3436;
  padding: 40px 0;
  color: var(--white);
}
.footer__inner {
  gap: 120px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
@media (max-width: 600px) {
  .footer__inner {
    gap: 25px 18px;
    margin-bottom: 50px;
  }
}
@media (max-width: 600px) {
  .footer__logo {
    width: 100%;
  }
}
.footer__logo .logo {
  display: block;
  margin-bottom: 25px;
}
.footer__logo img {
  display: block;
  max-width: 150px;
}
.footer__logo p {
  font-size: 15px;
}
.footer__item {
  font-size: 15px;
  line-height: 24px;
}
@media (max-width: 600px) {
  .footer__item {
    width: 47%;
  }
}
@media (max-width: 350px) {
  .footer__item {
    width: 45%;
  }
}
.footer__item-title {
  margin-bottom: 30px;
}
@media (max-width: 600px) {
  .footer__item-title {
    margin-bottom: 20px;
  }
}
.footer__bottom b {
  color: var(--iconColor);
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
}
.footer__bottom p {
  font-size: 14px;
  line-height: 20px;
}

.modal-dialog {
	height: 100vh;
	display: flex;
	align-items: center;
	margin: 0 auto;
}