:root {
	--blue: #b7d8e4;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: Arial, sans-serif;
	background-color: #000;
	color: #fff;
	position: relative;
}

/* MENU */
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 15px 20px;
	background-color: black;
	box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
	position: fixed;
	width: 100%;
	height: 4rem;
	z-index: 100;
}

.logo {
	font-size: 1.5rem;
	font-weight: bold;
	text-transform: uppercase;
	text-decoration: none;
	color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logo:hover {
	color: #03e8fc;
}

.logo img {
	width: 3rem;
	height: 3rem;
	border-radius: 20%;
}

.logo__text {
	margin-left: 0.5rem;
}

.nav-links {
	display: flex;
	gap: 20px;
}

.nav-links a {
	font-weight: bold;
	text-decoration: none;
	color: white;
	transition: color 0.3s;
}

.nav-links a:hover {
	color: #03e8fc;
}

.btn {
	background-color: var(--blue);
	font-weight: bold;
	color: black;
	padding: 10px 15px;
	border: none;
	border-radius: 0.5rem;
	cursor: pointer;
	text-transform: uppercase;
}

.btn:hover {
	background-color: #03e8fc;
	color: #fff;
}

.burger {
	display: none;
	font-size: 24px;
	cursor: pointer;
	background: none;
	border: none;
	color: white;
}

/* .burger:hover {
	color: #03e8fc;
} */

.mobile-nav {
	display: none;
	flex-direction: column;
	background: black;
	position: fixed;
	top: 60px;
	left: 0;
	width: 100%;
	padding: 20px;
	z-index: 100;
}

.mobile-nav a {
	padding: 10px 0;
	text-decoration: none;
	color: white;
	display: block;
	font-weight: bold;
	text-align: center;
}

.mobile-nav a:hover {
	color: #03e8fc;
}

.mobile-nav .btn {
	margin-top: 4rem;
	width: 100%;
	text-align: center;
}

@media (max-width: 768px) {
	.nav-links,
	.btn-desktop {
		display: none;
	}
	.burger {
		display: block;
	}
	.mobile-nav.open {
		display: flex;
	}
}
/* MENU */

/* HEAD */
.head_wrapper {
	padding: 4rem;
	display: flex;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	background-image: url('img/back1.jpg');
	background-size: no-repeat;
	background-position: center;
	background-size: cover;
}

.head__title {
	width: 100%;
	font-size: 3.5rem;
}

.head__title span {
	color: var(--blue);
}

.head__left {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 2px solid var(--blue);
	border-radius: 2rem;
	padding: 1rem;
	max-width: 50rem;
}

.head__right {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.head__contacts {
	display: flex;
	align-items: center;
	flex-direction: row;
	border-radius: 2rem;
	padding: 2rem 1.5rem;
	margin: 1rem;
	width: 100%;
	background: rgba(0, 0, 0, 0.4);
	margin: 0.5rem 0;
}

.head__contacts__icon {
	font-size: 2rem;
	margin-right: 1rem;
}

.string1 {
	color: #fff;
	font-weight: bold;
	font-size: 1rem;
}

.string2 {
	color: gray;
	margin: 0.5rem 0;
}

.string3 {
	color: var(--blue);
	font-weight: bold;
	font-size: 1rem;
}

.string3:hover {
	color: #03e8fc;
}

.contacts__icons {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	margin: 1rem 0;
}

.contacts__icons_1 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.contacts__icons_2 {
	display: flex;
	align-items: center;
	justify-content: center;
}

.header__number {
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	text-decoration: none;
	padding: 1rem;
}

.header__number:hover {
	color: #03e8fc;
}

.header__number i {
	background: var(--blue);
	padding: 0.3rem;
	border-radius: 0.3rem;
	color: black;
}

.contact__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: black;
	font-size: 2rem;
	width: 3rem;
	height: 3rem;
	margin: 0.3rem;
	border-radius: 0.5rem;
	background: var(--blue);
}

.contact__icon:hover {
	color: #fff;
	background: #03e8fc;
}

.services__list {
	display: flex;
	align-items: center;
	/* justify-content: center; */
	flex-wrap: wrap;
}

.services__item {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0.5rem;
	background: rgba(0, 0, 0, 0.5);
}

.services__subitem {
	border: 2px solid var(--blue);
	border-radius: 0.2rem;
	padding: 0.2rem;
	font-weight: 600;
	width: 17rem;
	height: 3rem;
	display: flex;
	align-items: center;
	line-height: 1;
}

.item__arrow {
	background: var(--blue);
	color: #000;
	font-size: 1rem;
	margin-left: 0.3rem;
	border-radius: 0.3rem;
	width: 3rem;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
}

.item__arrow:hover {
	background: #03e8fc;
}

.header__buttom {
	display: flex;
	align-items: center;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	margin: 2rem 0;
}

.buttom1 {
	background: var(--blue);
	font-size: 1.1rem;
	font-weight: bold;
	color: #000;
	cursor: pointer;
	padding: 1.5rem;
	border-radius: 0.5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.calc_btn {
	margin-left: 0.5rem;
	text-align: center;
}

.buttom1 i {
	font-size: 1.5rem;
}

.buttom1:hover {
	background: #03e8fc;
	color: #fff;
}

.buttom2 {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
}

.buttom22 {
	font-size: 2rem;
	margin-right: 0.7rem;
}

.buttom222 {
	font-size: 0.9rem;
}

.buttom3 {
	font-size: 1.1rem;
	margin: 2rem;
	font-weight: bold;
}

.buttom3 span {
	color: var(--blue);
}
/* HEAD */

/* accordion */
.accordion {
	max-width: 800px;
	border-radius: 0.5rem;
	overflow: hidden;
	box-shadow: 0px 0px 8px 4px #03e8fc;;
}

.accordion-item {
	border-bottom: 1px solid #ccc;
}

.accordion-header {
	display: block;
	padding: 15px;
	cursor: pointer;
	background: #f5f5f5;
	font-weight: bold;
	transition: background 0.3s;
	color: #000;
}

.accordion-header h1 {
	font-size: 1rem;
}

.accordion-header:hover {
	background: #e0e0e0;
}

.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.3s ease-out;
	padding: 0 15px;
	background: #fafafa;
	color: #000;
}

.accordion-content p {
	margin: 15px 0;
}

.accordion-item.active .accordion-content {
	max-height: fit-content; /* Adjust as needed */
}

.content__img {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: row;
}

.content__img img {
	width: 9rem;
	margin: 0.5rem;
	height: 15rem;
	border-radius: 0.5rem;
	object-fit: cover;
}
/* accordion */

/* ABOUT */
.about_wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	padding-top: 4rem;
}

.advantages__wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.advantages__card {
	background: #fff;
	padding: 1rem;
	margin: 1rem;
	border-radius: 1rem;
	cursor: pointer;
	width: 20rem;
	height: 25rem;
	position: relative;
	z-index: 3;
}

.advantages__title {
	color: #000;
	font-weight: bold;
	font-size: 1.3rem;
	text-align: center;
	line-height: 1.4;
	background: #fff;
}

.advantages__text {
	background: #f7f7f7;
	color: #000;
	text-align: center;
	border-radius: 1rem;
	padding: 0.5rem;
	font-size: 0.9rem;
	line-height: 1.5;
}

.advantages__img video {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 1rem;
	margin: 0.5rem 0;
}

.a__fon {
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
	background: #fff;
	top: 0;
	left: 0;
	transition: transform 0.4s;
	z-index: -100;
}

.advantages__card:hover .a__fon {
	transform: rotate(7deg);
}
/* ABOUT */

/* REVIEWS */
.reviews_wrapper {
	display: flex;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	padding-top: 4rem;
}
/* REVIEWS */

/* SERVICES */
.services_wrapper {
	display: flex;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	padding-top: 4rem;
	/* background-image: url('img/back1.jpg');
	background-size: no-repeat;
	background-position: center;
	background-size: cover; */
}

.services__title {
	width: 100%;
	margin: 1rem;
	font-size: 2.5rem;
	font-weight: 400;
	padding-left: 2rem;
}

.services__title strong {
	color: var(--blue);
}

.services__subtitle {
	width: 100%;
	font-size: 1.3rem;
	margin: 1rem;
	color: gray;
	font-weight: 400;
	margin-bottom: 2rem;
	padding-left: 2rem;
}

.services__cards {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	margin-bottom: 2rem;
}

.card__service {
	height: 30rem;
	width: 20rem;
	border-radius: 1rem;
	perspective: 1000px;
	margin: 0.5rem;
}

.flip-card-container {
	height: 100%;
	width: 100%;
	box-sizing: border-box;
	position: relative;
	transform-style: preserve-3d;
	transition: transform 0.8s;
}

.front,
.back {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-direction: column;
	height: 100%;
	width: 100%;
	border-radius: 0.75rem;
	background: #fff;
	box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
	position: absolute;
	backface-visibility: hidden;
	padding: 1rem;
}

.back {
	transform: rotateY(180deg);
	background: var(--blue);
	padding: 0.5rem;
}

.front:hover {
	box-shadow: 0px 0px 8px 4px #03e8fc;
}

.flip-card {
	transform: rotateY(180deg);
}

/* photo style */

.main_img {
	height: 14rem;
	width: 100%;
	border-radius: 0.75rem;
	object-fit: cover;
	cursor: pointer;
}

.card__title {
	font-size: 1.3rem;
	font-weight: bold;
	color: #1a1a1d;
	margin: 0.5rem 1rem 0.5rem 1rem;
	text-align: center;
	line-height: 1;
	width: 100%;
	text-align: center;
	height: 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.card__subtitle {
	font-weight: normal;
	font-size: 1rem;
	text-align: center;
	line-height: 1.1;
	color: #1a1a1d;
	margin-top: 1rem;
	width: 100%;
	height: 7rem;
}

/* buttons */
.buttons {
	display: flex;
	width: 100%;
	justify-content: space-between;
}

.card__btn {
	width: 100%;
	height: 3rem;
	border-radius: 0.5rem;
	justify-self: center;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	text-decoration: none;
	font-weight: 600;
	font-size: 1rem;
	transition: 0.3s ease;
	color: black;
	background: var(--blue);
	margin: 0 0.5rem;
}

.card__btn:hover {
	background: #03e8fc;
}
/* BACK CARD */

/* close btn */
.close {
	font-size: 1.5rem;
	position: absolute;
	cursor: pointer;
	color: #fff;
	right: 0.3rem;
	top: 0.3rem;
}

.close:hover {
	color: #03e8fc;
}

/* other information */
.more__information {
	color: #1a1a1d;
	font-weight: 500;
	font-size: 1rem;
	margin-top: 1.8rem;
	text-align: left;
	padding: 0.5rem;
	justify-self: center;
	width: 100%;
	height: 100%;
	border-radius: 0.75rem;
	background-color: #fff;
	overflow: hidden;
}

.scroll_css {
	overflow: auto;
}

ul {
	padding: 0 1rem;
}

li {
	margin-bottom: 0.5rem;
}

/* SERVICES */

/* FOR WHAT */
.fw__wrapper {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-bottom: 2rem;
	padding-top: 2rem;
}
.fw_left {
	background-image: url('files/fw1.JPG');
	background-size: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	width: 40%;
	height: 20rem;
	border-radius: 1rem;
}

.fwl_block {
	background: rgba(0, 0, 0, 0.7);
	padding: 1rem;
	border-radius: 1rem;
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 1.5;
	width: 80%;
	position: absolute;
	bottom: 1rem;
	left: 1rem;
}

.fwl_block span {
	color: #e65a1c;
}

.fw_right {
	background-image: url('files/fw2.JPG');
	background-size: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	width: 40%;
	height: 20rem;
	border-radius: 1rem;
}

.fwr_block {
	background: rgba(0, 0, 0, 0.7);
	padding: 1rem;
	border-radius: 1rem;
	font-weight: bold;
	font-size: 1.1rem;
	line-height: 1.5;
	width: 80%;
	position: absolute;
	top: 1rem;
	right: 1rem;
}

.fwr_block span {
	color: var(--blue);
}
/* FOR WHAT */

/* CONTACTS */
.contacts_wrapper {
	padding-top: 4rem;
	display: flex;
	justify-content: space-around;
	width: 100%;
	flex-wrap: wrap;
	flex-direction: column;
	align-items: center;
	background-image: url('img/back1.jpg');
	background-size: no-repeat;
	background-position: center;
	background-size: cover;
}

.main__title {
	width: 100%;
	font-size: 2.5rem;
	font-weight: bold;
	padding-left: 2rem;
}

.main__title span {
	color: var(--blue);
}

.subtitle {
	width: 100%;
	font-size: 1.3rem;
	color: gray;
	font-weight: 400;
	margin-bottom: 2rem;
	padding-left: 2rem;
}

.contacts__form {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	border: 2px solid var(--blue);
	padding: 1rem;
	border-radius: 1rem;
	width: 100%;
	max-width: 900px;
	backdrop-filter: blur(3px);
	margin-top: 2rem;
	margin-bottom: 2rem;
}

.contacts__title {
	font-size: 2.5rem;
	font-weight: bold;
	color: var(--blue);
	line-height: 0;
}

.contacts__icons_list {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 2rem;
}

.contact__icon1 {
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: black;
	font-size: 1.5rem;
	width: 2.5rem;
	height: 2.5rem;
	margin: 0.3rem;
	border-radius: 0.5rem;
	background: var(--blue);
}

.contact__icon1:hover {
	color: #fff;
	background: #03e8fc;
}

.input {
	border: 2px solid var(--blue);
	outline: none;
	font-size: 1rem;
	font-weight: bold;
	padding: 0.5rem;
	margin: 0.5rem;
	border-radius: 0.5rem;
	width: 100%;
	max-width: 24rem;
	height: 3rem;
}

.input:focus {
	border: 3px solid #03e8fc;
}

textarea {
	border: 2px solid var(--blue);
	outline: none;
	font-size: 1.1rem;
	font-weight: bold;
	padding: 0.5rem;
	margin: 0.5rem;
	border-radius: 0.5rem;
	width: 100%;
	max-width: 24rem;
	resize: none;
	height: 6rem;
}

textarea:focus {
	border: 3px solid #03e8fc;
}

#button {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	outline: none;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 0.5rem;
	padding: 0.5rem;
	width: 100%;
	max-width: 24rem;
	cursor: pointer;
	margin-top: 1rem;
}

#button:hover {
	color: #fff;
	background: #03e8fc;
}

.header__number1 {
	color: #fff;
	font-weight: bold;
	font-size: 1.1rem;
	text-decoration: none;
	padding: 0.5rem;
}

.header__number1:hover {
	color: #03e8fc;
}

.header__number1 i {
	background: var(--blue);
	padding: 0.3rem;
	border-radius: 0.3rem;
	color: black;
	width: 1.8rem;
	text-align: center;
}

.contacts_bottom_wrapper {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 2rem;
}
/* CONTACTS */

/* LARGE TEXT */
#more_text {
	display: none;
}

.text__wrapper {
	margin: 1rem;
}

.text__wrap {
	font-size: 0.9rem;
	padding: 1rem;
}

.text__btn__wrap {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.large__text__title {
	line-height: 1;
}

#moreBtn {
	background: var(--blue);
	color: #000;
	font-size: 1rem;
	padding: 0.3rem;
	border-radius: 0.5rem;
	font-weight: bold;
	cursor: pointer;
	width: 8rem;
	border-style: none;
}

#moreBtn:hover {
	background: #03e8fc;
}
/* LARGE TEXT */

/* FOOTER */
.footer {
	display: flex;
	align-items: center;
	justify-content: space-around;
	flex-wrap: wrap;
	margin-top: 5rem;
	margin-bottom: 1rem;
}

.footer__left {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	text-decoration: none;
}

.footer__left img {
	width: 4rem;
	height: 4rem;
	border-radius: 20%;
}

.footer__left__text {
	margin-left: 0.5rem;
	color: gray;
	font-size: 1rem;
}

.footer__right {
	padding: 1rem;
	display: flex;
	align-items: center;
	flex-direction: column;
}

.footer__right__href {
	color: gray;
	font-size: 1rem;
	text-decoration: none;
	margin-top: 0.5rem;
	font-weight: bold;
}

.footer__right__href:hover {
	color: #03e8fc;
}
/* FOOTER */

/* Модальное окно с листанием картинок */
.img_slider {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	background: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	display: none;
}

.open-img_slider {
	visibility: visible;
	display: flex;
}

.open-img_slider img {
	width: 100%;
	max-height: 100vh;
	object-fit: contain;
}

.img_slider_close {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	color: #fff;
	cursor: pointer;
	font-size: 2rem;
}

.img_slider_close:hover {
	color: #03e8fc;
}

.img_slider_count {
	position: absolute;
	top: 0.5rem;
	left: 0.5rem;
	color: #fff;
	font-size: 1.2rem;
	font-weight: bold;
}

.img_slider_arrow {
	position: absolute;
	color: #fff;
	cursor: pointer;
	font-size: 2rem;
	background: #262626;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.5rem;
	height: 2.5rem;
}

.img_slider_arrow:hover {
	background: #333333;
	color: #03e8fc;
}

.img_slider_arrow.left {
	top: 50%;
	left: 0.5rem;
	transform: translate(0%, -50%);
}

.img_slider_arrow.right {
	top: 50%;
	right: 0.5rem;
	transform: translate(0%, -50%);
}

/* BACK TO TOP */
.back-to-top {
	position: fixed;
	bottom: 3rem;
	right: 0.5rem;
	display: none;
	font-size: 2rem;
	color: #fff;
	background: var(--blue);
	padding: 0rem 0.2rem;
	border-radius: 5px;
	cursor: pointer;
	text-decoration: none;
	z-index: 99;
	width: 2.5rem;
	height: 2.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.back-to-top:hover {
	background: #333;
	text-decoration: none;
}
/* BACK TO TOP */

/* MODAL */
.modal__wrapper {
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, 0.9);
	width: 100%;
	height: 100%;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	visibility: hidden;
	display: none;
	padding: 0.5rem;
}

.modal__wrapper.active-modal {
	display: flex;
	visibility: visible;
}

.modal__window {
	margin: 0.5rem;
	background: #fff;
	width: 100%;
	max-width: 40rem;
	border-radius: 1rem;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.close__modal {
	position: absolute;
	top: 0.5rem;
	right: 0.5rem;
	color: #000;
	cursor: pointer;
	font-size: 1.5rem;
}

.close__modal:hover {
	color: #03e8fc;
}

.modal__title {
	color: #000;
	font-size: 1.2rem;
	display: block;
	padding: 1.5rem 0.5rem;
	text-align: center;
	line-height: 1;
}

.input1 {
	border: 2px solid var(--blue);
	outline: none;
	font-size: 1rem;
	font-weight: bold;
	padding: 0.5rem;
	margin: 0.5rem;
	border-radius: 0.5rem;
	width: 90%;
	max-width: 24rem;
	height: 3rem;
}

.input1:focus {
	border: 3px solid #03e8fc;
}

select {
	background: #fff;
	border: 2px solid var(--blue);
	outline: none;
	font-size: 1rem;
	font-weight: bold;
	padding: 0.5rem;
	margin: 0.5rem;
	border-radius: 0.5rem;
	width: 90%;
	max-width: 24rem;
	height: 3rem;
}

#button2 {
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--blue);
	outline: none;
	border: none;
	font-size: 1.5rem;
	font-weight: bold;
	border-radius: 0.5rem;
	padding: 0.5rem;
	width: 80%;
	max-width: 24rem;
	cursor: pointer;
	margin: 1rem;
}

#button2:hover {
	color: #fff;
	background: #03e8fc;
}

/* MODAL */

@media (max-width: 768px) {
	.accordion {
		margin: .3rem;
	}

	.contacts__icons_1 {
		position: fixed;
		bottom: 0;
		z-index: 100;
		background: #1a1a1d;
		width: 100%;
	}

	.contact__icon {
		width: 33%;
		font-size: 1.3rem;
		height: 2rem;
	}

	.head__title {
		font-size: 1.6rem;
	}

	.head_wrapper {
		padding: 4rem 0.5rem 0rem 0.5rem;
		width: auto;
	}

	.head__left {
		padding: 1rem;
		width: 100%;
		margin-bottom: 2rem;
	}

	.services__list {
		transform: scale(0.9);
		justify-content: center;
	}

	.buttom1 {
		font-size: 0.9rem;
		padding: 0.5rem;
		width: 10rem;
	}

	.buttom222 {
		font-size: 0.7rem;
	}

	.buttom22 {
		font-size: 1.3rem;
	}

	.buttom3 {
		font-size: 0.7rem;
		width: 100%;
		text-align: center;
	}

	.main__title {
		font-size: 1.5rem;
		margin: 2rem 0 0 0;
		padding-left: 0.5rem;
	}

	.subtitle {
		font-size: 0.9rem;
		padding-left: 1rem;
	}

	.head__contacts {
		padding: 0.5rem 1.5rem;
	}

	.about_wrapper {
		padding-top: 2rem;
	}

	.advantages__card {
		width: 45%;
		height: 15rem;
		padding: 0.5rem;
		margin: 0.5rem;
	}

	.advantages__title {
		font-size: 0.7rem;
		line-height: 1;
	}

	.advantages__text {
		padding: 0.2rem;
		font-size: 0.6rem;
		line-height: 1.1;
	}

	.advantages__wrapper {
		margin-bottom: 4rem;
	}

	.fw_left,
	.fw_right {
		width: 90%;
		height: 15rem;
		margin-bottom: 2rem;
	}

	.fwl_block,
	.fwr_block {
		font-size: 0.8rem;
		padding: 0.5rem;
	}

	.contacts__form {
		margin: 0.5rem;
		width: auto;
	}

	.footer__left__text {
		font-size: 0.6rem;
	}

	.footer {
		padding-bottom: 3rem;
	}
}
