* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	border: none;
	outline: none;
}
html, body {
	font-family: sans-serif;
	font-size: 24px;
}
img {
	display: block;
	max-width: 100%;
	height: auto;
	margin: 0 auto 20px;
}
h1 {
	width: 960px;
	font-size: 46px;
	font-weight: bold;
	color: rgb(68, 192, 254);
	margin: 50px auto 0;
	padding: 0 15px;
	text-align: center;
}
h2 {
	font-size: 46px;
	color: rgb(68, 192, 254);
	margin-bottom: 30px;
}
h3 {
	font-size: 36px;
	color: rgb(68, 192, 254);
	margin-bottom: 30px;
}
section:not(#map) {
	width: 960px;
	margin: auto;
	padding: 50px 15px;
}
section#map {
	padding: 50px 0;
}
p {
	max-width: 700px;
	margin-bottom: 30px;
	line-height: 1.5;
}
ul {
	line-height: 1.5;
	padding-left: 20px;
	margin-bottom: 30px;
	margin-left: 15px;
}
a {
	color: #ff8562;
	text-decoration: none;
}
a:focus {
	color: #ff8562;
}
span {
	font-size: 16px;
}
header {
	padding: 20px 15px;
	background: #cdeeff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
}
header > div {
	max-width: 960px;
	margin: auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
header > div > a {
	font-size: 36px;
	color: #000;
	font-weight: bold;
}
header > div > a > img {
	margin: 0;
}
.m-twoColumns {
	display: flex;
	align-items: flex-start;
	justify-content: space-around;
	text-align: center;
}
.m-twoColumns > div {
	flex: 0 0 25%;
}
.m-twoColumns > div > img {
	max-width: 180px;
}
.m-twoColumns.t-small {
	align-items: center;
}
.m-twoColumns.t-small > div > img {
	max-width: 60px;
}
.t-wide {
	margin: 0 -20px 20px;
}
.t-center {
	text-align: center;
}
#filter, #heart, #time {
	position: relative;
}
#filter::before, #heart::before, #time::before {
	position: absolute;
	top: -5px;
	left: -90px;
	width: 65px;
}
#filter::before {
	content: url(../img/filter.svg);
}
#heart::before {
	content: url(../img/heart.svg);
}
#time::before {
	content: url(../img/time.svg);
}
.m-threeColumns {
	/* display: flex;
	align-items: flex-start;
	justify-content: space-between; */
	display: grid;
	/* По умолчанию — 1 колонка, но автоматически подстраивается под ширину */
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 20px; /* расстояние между элементами */
	width: 100%;
	margin: 0 auto;
	box-sizing: border-box;
}

@media (max-width: 768px) {
	.m-threeColumns {
	  grid-template-columns: 1fr; /* всегда одна колонка на маленьких экранах */
	}
  }

.m-threeColumns > div {
	/* flex: 0 0 30%; */
}
.m-threeColumns > div > p {
	font-size: 20px;
}
.m-threeColumns > div > span {
	line-height: 1.5;
}
.m-threeColumns > div > a > img {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 4px 19px 0px;
}
.m-faq > h4 {
	cursor: pointer;
	margin-bottom: 20px;
	position: relative;
	padding-left: 30px;
}
.m-faq > h4::before {
	content: '\2716';
	position: absolute;
	top: 0;
	left: 0;
	width: 30px;
	height: 30px;
	color: rgb(68, 192, 254);
	font-size: 24px;
	transform: rotateZ(45deg);
}
.m-faq > h4.js-opened::before {
	transform: rotateZ(0deg);
	line-height: 27px;
}
.m-faq > div {
	display: none;
	padding-left: 30px;
}
.m-faq > div.js-opened {
	display: block;
}
footer {
	background: #cdeeff;
	padding-top: 100px;
}
footer > div {
	width: 960px;
	margin: auto;
	background: #fff;
	padding: 100px 200px 200px;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 5px 0px;
}
footer > div > a {
	display: block;
	position: relative;
	font-size: 60px;
	font-weight: bold;
	color: #000;
}
footer > div > a:focus {
	color: #000;
}
footer > div > a::before {
	content: url(../img/phone.svg);
	position: absolute;
	top: 0;
	left: -100px;
}

#maps {
    width: 100%;
    height: 500px;
    display: block; /* или убери вовсе */
    margin: 0;
    padding: 0;
	overflow: visible;
	pointer-events: auto;
  }
  
  #maps * {
	pointer-events: auto !important;
  }
