@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap");
*,
:before,
:after {
  padding: 0;
  margin: 0;
  border: 0;
  box-sizing: border-box;
}

body {
  color: #333333;
  font-size: 13px;
  font-family: "Montserrat";
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body.lock {
  overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font: inherit;
  display: inline;
}

ol,
ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

li {
  display: block;
  list-style-image: none;
}

a {
  color: #333333;
  text-decoration: none;
  outline: none;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

input,
textarea,
button {
  outline: none;
  appearance: none;
}

var {
  font-style: normal;
}

strong {
  font-weight: 700;
}

i {
  font-style: normal;
}

img {
  display: block;
  max-width: 100% !important;
  max-height: 100% !important;
}

svg {
  display: block;
}

path,
circle,
rect,
line {
  transition: 0.3s;
}

.case {
  position: relative;
  width: calc(1170px + 20px);
  margin: 0 auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (max-width: 1200px) {
  .case {
    width: 950px;
  }
}
@media screen and (max-width: 991px) {
  .case {
    width: 750px;
  }
}
@media screen and (max-width: 767px) {
  .case {
    width: 100%;
  }
}

.grid {
  display: grid;
}

.row,
.col {
  display: flex;
  flex-wrap: wrap;
}

.row {
  flex-direction: row;
}

.col {
  flex-direction: column;
}

.btn {
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  cursor: pointer;
  border-bottom: none;
  overflow: hidden;
  background: transparent;
  color: #fff;
  border-radius: 30px;
  transition: 0.3s;
  font-size: 15px;
  font-family: "Montserrat";
  width: 100%;
}
.btn.--blue {
  min-height: 41px;
}
.btn.--blue:before,
.btn.--blue:after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.btn.--blue:before {
  opacity: 1;
  visibility: visible;
  background: linear-gradient(180deg, #4770ff 0%, rgba(0, 0, 0, 0.67) 100%);
}
.btn.--blue:after {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(180deg, #4770ff 100%, #000 0%);
}
.btn.--blue:hover {
  transition: 0.3s;
}
.btn.--blue:hover:before {
  opacity: 0;
  visibility: hidden;
}
.btn.--blue:hover:after {
  opacity: 1;
  visibility: visible;
}
.btn.--grad:before,
.btn.--grad:after {
  z-index: -1;
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.3s;
}
.btn.--grad:before {
  opacity: 1;
  visibility: visible;
  background: linear-gradient(103.9deg, #0085ff 31.58%, rgba(0, 0, 0, 0.4) 84.3%);
}
.btn.--grad:after {
  opacity: 0;
  visibility: hidden;
  background: linear-gradient(103.9deg, #0085ff 84.3%, #0085ff 31.58%);
}
.btn.--grad:hover {
  transition: 0.3s;
}
.btn.--grad:hover:before {
  visibility: hidden;
}
.btn.--grad:hover:after {
  opacity: 1;
  visibility: visible;
}

.inner {
  overflow: hidden;
}

.overflow-disable {
  overflow: hidden;
}

.bgw {
  z-index: 1;
  position: relative;
}

.bg {
  z-index: -1;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.h1 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 29px;
}

.h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 22px;
}

.header {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 12px;
  min-height: 60px;
}
.header__wrap {
  align-items: center;
}
.header__logo {
  display: block;
  margin-right: auto;
}
.header__nav {
  max-width: 820px;
  width: 100%;
}
.header__tel {
  margin-left: auto;
}
.header__tel-icon {
  overflow: hidden;
  border-radius: 8px;
}
.header__tel-text {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding-left: 2px;
}

.nav ul {
  justify-content: space-between;
}
.nav ul li {
  position: relative;
  transition: 0.3s;
}
.nav ul li:before,
.nav ul li:after {
  position: absolute;
  content: "";
  width: 50%;
  height: 1px;
  bottom: -5px;
  background: #fff;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.nav ul li:before {
  left: 0;
  transform: translateX(50%);
}
.nav ul li:after {
  right: 0;
  transform: translateX(-50%);
}
.nav ul li:hover:before,
.nav ul li:hover:after {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.nav ul li a {
  color: #fff;
  font-size: 18px;
  line-height: 22px;
}
.nav__item.active:before,
.nav__item.active:after {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.ham {
  display: none;
  flex-direction: column;
  cursor: pointer;
  transition: 0.3s;
  z-index: 100;
}
.ham__wrap {
  transition: 0.3s;
}
.ham__wrap div {
  position: relative;
  display: block;
  width: 35px;
  height: 3px;
  transition: 0.3s;
  background: #fff;
  margin-bottom: 8px;
}
.ham__wrap div:last-of-type {
  margin-bottom: 0;
}
.ham.--toggle .ham__wrap div {
  background: #fff;
}
.ham.--toggle .ham__wrap div:nth-of-type(1) {
  top: 9px;
  transform: rotate(40deg);
}
.ham.--toggle .ham__wrap div:nth-of-type(2) {
  opacity: 0;
}
.ham.--toggle .ham__wrap div:nth-of-type(3) {
  top: -12px;
  transform: rotate(-40deg);
}

.intro {
  padding-top: 90px;
  padding-bottom: 34px;
}
.intro__wrap {
  align-items: center;
}
.intro__img {
  position: relative;
  left: 60px;
}
.intro__info {
  position: relative;
  right: 110px;
  margin-left: auto;
  max-width: 500px;
  width: 100%;
  padding: 38px 28px 48px 40px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius:7px;
  background: linear-gradient(181.66deg, rgba(30, 30, 30, 0.81) 50%, rgba(65, 65, 65, 0.5994) 115.95%);
  color: #fff;
}
.intro__title {
  margin-bottom: 20px;
}
.intro__desc {
  margin-bottom: 26px;
}
.intro__btn {
  width: 220px;
}
.pros__string {
  display: flex;
}
.pros__block {
  margin: 5px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  padding: 12px 32px;
  float: left;
}
.pros__block--city {
  width: 39%; background: rgba(255, 255, 255, 0.95);
}
.pros__block--time {
  width: 25%;background: rgba(255, 255, 255, 0.95);
}
.pros__block--price {
  width: 30%;background: rgba(255, 255, 255, 0.95);
}
.park {
  padding-top: 42px;
  padding-bottom: 75px;
}
.park__title {
  text-align: center;
  margin-bottom: 17px;
}
.park__desc {
  text-align: center;
  max-width: 930px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 27px;
}
.park__list {
  grid: none/repeat(3, 1fr);
  gap: 43px 40px;
}
.park__item {
  background: linear-gradient(171.83deg, #c5c5c5 8.53%, rgba(231, 231, 231, 0.3) 93.72%);
  border: 1px solid rgba(0, 0, 0, 0.22);
  padding: 24px 28px 24px 34px;
}
.park__img {
  width: 292px;
  height: 240px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  margin-bottom: 20px;
}
.park__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.park__name {
  margin-bottom: 15px;
}
.park__price {
  border-top: 1px solid #808080;
  padding-top: 11px;
  margin-bottom: 22px;
}
.park__price-list {
  margin-left: 22px;
  text-align: center;
}
.park__price-item {
  margin-bottom: 5px;
}
.park__price-item:last-of-type {
  margin-bottom: 0;
}
.park__btns {
  max-width: 293px;
  justify-content: space-between;
}
.park__btn {
  font-size: 13px;
  width: 133px;
  min-height: 28px;
}

.pros {
  background: linear-gradient(130.41deg, rgba(227, 227, 227, 0.54) 27.59%, rgba(137, 137, 137, 0) 85.64%);
}
.pros__title {
  text-align: center;
  margin-bottom: 41px;
}
.pros__list {
  grid: none/repeat(3, 1fr);
  gap: 56px 46px;
}
.pros__item {
  background: linear-gradient(194.6deg, #ffffff 0.19%, rgba(255, 255, 255, 0) 89.67%);
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 30px 38px 44px 30px;
}
.pros__icon {
  margin-bottom: 20px;
}
.pros__name {
  margin-bottom: 10px;
}

.about {
  padding-top: 30px;
  padding-bottom: 45px;
}
.about__wrap {
  align-items: center;
}
.about__img {
  width: 454px;
  height: 383px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  position: relative;
}
.about__img:before {
  z-index: -1;
  position: absolute;
  content: "";
  top: 40px;
  left: -20px;
  width: 447px;
  height: 359px;
  border: 1px solid #939393;
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__info {
  max-width: 630px;
  width: 100%;
  margin-left: auto;
  margin-right: 40px;
}
.about__title {
  margin-bottom: 30px;
}
.about__text {
  margin-bottom: 42px;
}
.about__text p {
  margin-bottom: 26px;
}
.about__text p:last-of-type {
  margin-bottom: 0;
}
.about__btn {
  font-size: 18px;
  width: 226px;
  height: 37px;
}

.brands {
  background: linear-gradient(130.41deg, rgba(227, 227, 227, 0.54) 27.59%, rgba(137, 137, 137, 0) 85.64%);
  padding: 26px 0;
}
.brands__list {
  max-width: 1098px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  grid: none/repeat(6, 1fr);
  gap: 40px;
  justify-items: center;
  align-items: center;
}
.brands__item {
  max-height: 78px;
}

.contacts {
  z-index: 10;
  position: relative;
}
.contacts .case {
  z-index: 5;
  position: relative;
}
.contacts__inner {
  position: relative;
  padding-top: 61px;
  padding-bottom: 57px;
}
.contacts__info {
  z-index: 1;
  position: relative;
  background: #fff;
  max-width: 630px;
  width: 100%;
  padding: 33px 75px 40px 72px;
}
.contacts__title {
  margin-bottom: 27px;
}
.contacts__title a {
  position: relative;
  top: 5px;
}
.contacts__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -40px;
}
.contacts__item {
  max-width: 195px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 40px;
}
.contacts__item.--wide {
  max-width: 245px;
}
.contacts__icon {
  width: 25px;
}
.contacts__text {
  width: calc(100% - 25px);
  padding-left: 8px;
}
.contacts__name {
  margin-bottom: 12px;
}
.contacts__desc {
  color: #676767;
}
.contacts__btn {
  font-size: 18px;
  width: 206px;
  min-height: 37px;
  margin-top: 46px;
}

.map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.map__area {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 523px;
}

.footer {
  color: #fff;
  background: linear-gradient(267.1deg, #242424 -5.48%, rgba(2, 2, 2, 0.65) 52.41%);
  padding-top: 35px;
  padding-bottom: 32px;
}
.footer__panel {
  padding-bottom: 70px;
  justify-content: space-between;
}
.footer__info {
  max-width: 535px;
  width: 100%;
}
.footer__text p {
  margin-bottom: 17px;
}
.footer__text p:last-of-type {
  margin-bottom: 0;
}
.footer__logo {
  display: block;
  margin-bottom: 30px;
}
.footer__nav {
  padding-top: 30px;
  max-width: 570px;
  width: 100%;
  display: flex;
}
.footer__col {
  margin-right: 90px;
  max-width: 108px;
  width: 100%;
}
.footer__col.--wide {
  max-width: 180px;
  margin-right: 0;
}
.footer__col ul {
  flex-direction: column;
}
.footer__col ul li {
  margin-bottom: 12px;
}
.footer__col ul li:last-of-type {
  margin-bottom: 0;
}
.footer__col ul li a {
  color: #fff;
}
.footer__name {
  margin-bottom: 20px;
}
.footer__contacts-item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.footer__contacts-item:last-of-type {
  margin-bottom: 0;
}
.footer__contacts-item.--icons {
  margin-top: 12px;
}
.footer__contacts-icon {
  margin-right: 5px;
}
.footer__contacts-icon:last-of-type {
  margin-right: 0;
}
.footer__contacts-text {
  position: relative;
  top: 2px;
  font-weight: 700;
  color: #fff;
  padding-left: 3px;
}
.footer__copy {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  border-top: 1px solid #a9a9a9;
  padding-top: 17px;
  text-align: center;
}
.popup {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.8s ease 0s;
}

.popup.open {
  opacity: 1;
  visibility: visible;
}

.popup__body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100%;
  padding: 30px 10px;
}

.popup__content {
  background-color: #fff;
  box-shadow: 0px 0px 30px 0px rgb(0 0 0 / 35%);
  padding: 30px;
  max-width: 500px;
  position: relative;
}

.popup__close {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 15px;
  font-weight: 600;
}

.form__body {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form__title {
  font-size: 19px;
  font-weight: bold;
  text-align: center;
}

.form__item {
  width: 100%;
  display: flex;
  justify-content: center;
}

.form__input {
  width: 100%;
  border: 1px solid #ccc;
  margin: 15px 0;
  padding: 0 15px;
  height: 50px;
  font-size: 15px;
  box-sizing: border-box;
  border-radius: 3px;
}

.form__input:focus {
  border: 2px solid #000000;
}

.checkbox {
  text-align: center;
  margin: 0 0 20px 0;
}

.checkbox__input {
  appearance: auto;
}
.checkbox__label {
  font-size: 13px;
  color: #888;
}
