/* global */

body > .container {
  padding-top: 36px;
  padding-bottom: 36px;
}

.ref-categories {
  padding-left: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

@media (min-width: 960px) {
  .split {
    flex-direction: row !important;
    gap: 48px;
  }
}

@media (min-width: 768px) {
  body > .container main h1 {
    margin-top: 36px;
  }
}

@media (min-width: 768px) {
  body > .container main h1 {
    margin-top: 0 !important;
  }
}

/* nav */

.navbar-nav {
  flex: 1;
  justify-content: end;
}

nav.navbar #logo {
  display: block;
  width: 120px;
  aspect-ratio: 2/1;
}

nav.navbar, body > footer {
  background-color: #f8f9fa;
  box-shadow: 0 0 1px grey;
}

nav.navbar #navcol-1 .btn {
  border-radius: .3rem;
}

/* contact */

#contact li {
  font-size: larger;
  display: flex;
  align-items: center;
  color: black;
  gap: 1rem;
}

#contact ul {
  display: flex;
  flex-direction: column;
  width: max-content;
  margin-bottom: 25px;
  padding-left: 0;
  gap: 8px;
}

#contact {
  display: flex;
  flex-direction: column;
}

#contact .gmap {
  display: block;
  box-shadow: 0 0 1px grey;
}

h1 {
  margin-bottom: 25px;
}

#payments {
  list-style-type: none;
  display: flex;
  justify-content: center;
  padding-left: 0;
}

#payments li img {
  aspect-ratio: 1/1;
  max-width: 50px;
}

body > footer {
  padding: 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  /*position: fixed;*/
  left: 0;
  bottom: 0;
  width: 100%;
}

@media (min-width: 992px) {
  body > footer {
    flex-direction: row;
  }
}

body > footer > div {
  flex: 1;
}

html, body {
  height: 100%;
}

body {
  display: grid;
  height: 100vh;
  grid-template-rows: auto 1fr auto;
}

