:root {
	--blue: #101444;
}

* {
	padding: 0;
	margin: 0;
	border: 0;
}
*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
:focus,
:active {
	outline: none;
}
a:focus,
a:active {
	outline: none;
}
nav,
footer,
header,
aside {
	display: block;
}
html,
body {
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	font-family: 'Montserrat', sans-serif;
	scroll-behavior: smooth;
	scroll-padding: 70px;
}

.wrapper {
	display: flex;
	flex-direction: column;
	min-height: 100%;
}
main {
	flex: 1 1 auto;
	padding-top: 100px;
}
input,
button,
textarea {
	font-family: inherit;
}
input::-ms-clear {
	display: none;
}
button {
	cursor: pointer;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0;
}
a,
a:visited {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
ul li {
	list-style: none;
}
img {
	vertical-align: top;
}
section {
	background-color: #f8f9fb;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}

.page__title {
	font-weight: 600;
	font-size: 28px;
	font-weight: 700;
	text-align: center;
	padding: 40px 0 30px;
	color: #1a1a1a;
	padding-top: 0;
}
.title {
	font-size: 30px;
	padding: 30px 0;
	text-align: center;
	font-weight: bold;
	color: var(--blue);
}
header {
	background-color: #19191b;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
header.no-fixed {
	position: static;
}
header .header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 80px;
	padding: 0 20px;
}
.header__logo img {
	width: 100px;
	height: 80px;
	object-fit: cover;
}

.nav ul {
	display: flex;
	align-items: center;
	gap: 15px;
}
.nav ul li a {
	color: #fff;
	font-size: 17px;
	font-family: 'Montserrat', sans-serif;
	text-transform: uppercase;
	text-decoration: none;
	transition: all 0.3s ease-out;
}

.nav ul li a:hover {
	color: yellow;
}
.nav-contact {
	line-height: 1.2;
	display: flex;
	align-items: center;
	gap: 20px;
}
.nav-phones {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 5px;
}
.nav-social img {
	width: 30px;
	height: 30px;
	object-fit: cover;
}
.nav-social {
	display: flex;
	gap: 5px;
}
.nav-social .facebook {
	display: inline-block;
}
.nav-contact .location-header,
.nav-contact .phone {
	font-size: 14px;
	color: #fff;
	margin-top: 2px;
}

.burger {
	display: none;
	flex-direction: column;
	justify-content: space-between;
	width: 25px;
	height: 20px;
	cursor: pointer;
}
.burger span {
	display: block;
	height: 3px;
	width: 100%;
	background: #fff;
	border-radius: 2px;
	transition: all 0.3s;
}

.burger.active span:nth-child(1) {
	transform: rotate(45deg) translate(5px, 7px);
}
.burger.active span:nth-child(2) {
	opacity: 0;
}
.burger.active span:nth-child(3) {
	transform: rotate(-45deg) translate(5px, -7px);
}
.btn {
	padding: 14px 28px;
	border-radius: 30px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	display: inline-block;
}

.btn-primary {
	background: #ffcc00;
	color: #111;
}

.btn-primary:hover {
	background: #ffd633;
	transform: translateY(-2px);
}

.btn-outline {
	border: 1px solid #fff;
	color: #fff;
}

.btn-outline:hover {
	background: #fff;
	color: #111;
}

.all__asnwers {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	position: sticky;
	top: 0px;
	left: -100px;
	padding: 10px 7px;
	border-radius: 12px;
	z-index: 98;
	max-width: 360px;
	overflow: auto;
	max-height: -webkit-fill-available;
}

.all__asnwers .ans {
	width: 20px;
	height: 20px;
	font-size: 12px;
	border-radius: 50%;
	color: #fff;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
	text-align: center;
}

.survey {
	display: flex;
	flex-direction: column;
	gap: 25px;
	max-width: 800px;
	margin: 0 auto 50px;
}
.questionnaire.no-fixed .survey {
	margin-left: 350px;
	max-width: none;
}
.questionnaire.no-fixed .container {
	margin: 0;
}

.questionnaire .page__title {
	padding-top: 20px;
}
.questionnaire.no-fixed .page__title {
	margin-left: 350px;
}
.question {
	background: #fff;
	padding: 25px 20px;
	border-radius: 16px;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
	transition: box-shadow 0.3s ease;
}

.question:hover {
	box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.question h3 {
	font-size: 18px;
	line-height: 133%;
	margin-bottom: 15px;
	color: #222;
}

.question img {
	max-width: -webkit-fill-available;
	margin-bottom: 15px;
	border-radius: 12px;
	margin-left: auto;
	margin-right: auto;
	display: block;
	max-height: 300px;
	object-fit: contain;
}

.question form label {
	display: flex;
	padding: 10px 12px;
	line-height: 130%;
	margin-bottom: 8px;
	border-radius: 12px;
	border: 1px solid #ddd;
	cursor: pointer;
	transition: all 0.3s ease;
	background: #f7f7f7;
}

.question form input[type='radio'],
.question form input[type='checkbox'] {
	margin-right: 10px;
}

.question form label:hover {
	background: #e6e6e6;
}

.confirm {
	display: inline-block;
	margin-top: 15px;
	padding: 10px 20px;
	border: none;
	background: #ffcc00;
	color: #111;
	font-weight: 600;
	border-radius: 25px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.confirm:hover {
	background: #ffd633;
	transform: translateY(-2px);
}

.result {
	max-width: 400px;
	margin: 20px auto 60px;
	padding: 15px 20px;
	background: #ffcc00;
	color: #fff;
	font-weight: 700;
	font-size: 18px;
	border-radius: 12px;
	text-align: center;
	display: none;
}

/* Footer */
footer.footer {
	background: #111;
	padding: 25px 20px;
	text-align: center;
	color: #ccc;
	font-size: 14px;
	border-top: 1px solid #222;
}

.footer {
	background: #19191b;
	color: #ccc;
	padding: 60px 20px 25px;
	font-family: Arial, sans-serif;
}

.footer .container {
	max-width: 1200px;
	margin: 0 auto;
}

.footer-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
	margin-bottom: 30px;
}

.footer-grid.fr3 {
	grid-template-columns: 1fr 1fr 1fr;
}
.footer-logo {
	color: #ffcc00;
	font-size: 26px;
	font-weight: bold;
}

.footer-logo span {
	color: #ffcc00;
	position: relative;
}
.footer-logo span b:nth-child(2) {
	font-size: 18px;
}
.footer-logo span b {
	font-weight: 700;
}

.footer-col ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-col ul li {
	margin-bottom: 20px;
	font-size: 14px;
}

.footer-col ul li a {
	color: #ccc;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-col ul li a:hover {
	color: #ffcc00;
}

.footer-contacts li {
	display: flex;
	align-items: center;
	gap: 8px;
}

.footer-bottom {
	border-top: 1px solid #222;
	padding-top: 15px;
	text-align: center;
	font-size: 13px;
	color: #777;
}

/* Responsive */
@media (max-width: 1200px) {
	.nav ul {
		gap: 8px;
	}
	.nav ul li a {
		font-size: 14px;
	}
	.nav-social img {
		width: 20px;
		height: 20px;
	}
	.header__logo img {
		width: 80px;
	}
	header .header__inner {
		padding: 0 10px;
	}
}
@media (max-width: 992px) {
	main {
		padding-top: 60px !important;
	}
	header .header__inner {
		height: 60px;
	}
	.header__logo img {
		width: 70px;
		height: 60px;
	}
	.burger {
		display: flex;
		z-index: 999;
	}
	.nav {
		position: fixed;
		top: 0;
		right: -100%;
		height: 100%;
		background: #111;
		z-index: 100;
		transition: right 0.3s ease;
		padding: 50px;
	}

	.nav.active {
		right: 0;
	}

	.nav ul {
		display: flex;
		flex-direction: column;
		gap: 20px;
		margin-top: 50px;
	}

	.nav-phones {
		margin-bottom: 0;
		gap: 2px;
	}
	.nav-contact .location-header,
	.nav-contact .phone {
		font-size: 12px;
	}
	.nav-contact {
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.all__asnwers {
		padding: 4px;
		max-width: 100%;
		gap: 2px;
	}
	.questionnaire.no-fixed .page__title {
		margin-left: 0px;
	}
	.questionnaire.no-fixed .survey {
		margin-left: 0;
	}
}

@media (max-width: 768px) {
	.questionnaire .survey {
		margin-left: 0;
	}
	.question h3 {
		font-size: 16px;
	}

	.question form label {
		font-size: 14px;
	}

	.page__title {
		font-size: 18px;
	}

	.footer-grid,
	.footer-grid.fr3 {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.footer-contacts li {
		justify-content: center;
	}
}

@media (max-width: 576px) {
	.title {
		font-size: 22px;
	}
}

@media (max-width: 480px) {
	.nav-contact {
		display: inline;
	}
	.question h3 {
		font-size: 15px;
	}

	.question form label {
		font-size: 13px;
	}
}
