:root {
  --c-white: #fff;
  --red-parkingo-100: #DF0030;
  --red-parkingo-dark: #7B0000;
  --grey-parkingo-10: #E7E7E7;
  --grey-parkingo-15: #DBDBDC;
  --grey-parkingo-100: #101014;
  --grey-parkingo-dark: #000000;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.govalet-btn-primary {
  border-radius: 10px;
  text-transform: uppercase;
  font-weight: 600;
  line-height: 1;
  display: inline-block;
  background-color: var(--red-parkingo-100);
  color: var(--c-white);
  border: none;
  -webkit-transition: 0.4s ease background-color;
  transition: 0.4s ease background-color;
  padding: 1rem 1.5rem;
  text-decoration: none;
}
.govalet-btn-primary.active, .govalet-btn-primary:focus, .govalet-btn-primary:hover {
  background-color: var(--red-parkingo-dark);
}

html {
  font-family: var(--ff-poppins);
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  overflow-x: hidden;
}

.logo img {
  max-width: 100%;
}

header {
  position: relative;
  padding: 20px 0;
  z-index: 2;
  border-bottom: 1px solid var(--grey-parkingo-15);
}

.hero {
  position: relative;
  padding: 160px 0;
  background-image: url(../images/medium-shot-man-traveling.jpg);
  background-size: cover;
  background-position-y: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--grey-parkingo-100);
  opacity: 0.25;
  z-index: 4;
}
.hero .hero-content {
  color: var(--c-white);
  z-index: 9;
  position: relative;
  text-align: center;
}

.location {
  padding: 80px 0;
}
.location .location-card {
  background-color: var(--c-white);
  border: 2px solid var(--red-parkingo-100);
  border-radius: 10px;
  color: var(--grey-parkingo-100);
  position: relative;
  padding: 15px;
  -webkit-transition: 0.4s ease all;
  transition: 0.4s ease all;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.location .location-card a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.location .location-card img {
  max-width: 40px;
  max-height: 40px;
}
.location .location-card .location-card-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.location .location-card:active, .location .location-card:focus, .location .location-card:hover {
  background-color: var(--red-parkingo-100);
  color: var(--c-white);
}

.about {
  background: var(--grey-parkingo-10);
  padding: 80px 0;
  text-align: center;
}
.about .about-card {
  background: var(--c-white);
  padding: 40px;
  border-radius: 12px;
  -webkit-box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.1);
          box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.1);
  height: 100%;
}

.description {
  padding: 100px 0;
}
.description p {
  font-size: 18px;
}

footer {
  background-color: var(--grey-parkingo-10);
}
footer .footer-top {
  padding: 40px 0;
}
footer .footer-top .group-paragraph h4 {
  color: var(--red-parkingo-100);
}
footer .footer-top .group-paragraph img {
  max-width: 100%;
}
footer .footer-bottom {
  padding: 20px 15px;
  border-top: 1px solid hsla(0, 0%, 18%, 0.2);
}
footer .footer-bottom .copyright {
  text-align: center;
}

.go-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 5;
  width: 45px;
  height: 45px;
  background-color: var(--red-parkingo-100);
  -webkit-box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.25);
          box-shadow: 0 2px 4px hsla(0, 0%, 0%, 0.25);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--c-white);
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.go-top.active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}/*# sourceMappingURL=style.css.map */