/* reset */

*,
*::before,
*::after {
  box-sizing: border-box;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  line-height: 1;
}

body,
h1,
h2,
h3,
p,
dl,
dd,
figure {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  padding: 0;
}

input,
button,
textarea,
select {
  font: inherit;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  content-visibility: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  display: block;
  border-radius: 0;
  margin-bottom: 1rem;
  
}

img:last-of-type {
  margin-bottom: 0;
}

body {
  line-height: 1.5;
  font-size: 16px;
  color: #787878;
  font-family: "Fira Sans",sans-serif;
  -webkit-font-smoothing: antialiased;
}

footer {
  border-top: 1px solid #efefef;
  background-color: #f9f9f9;
  padding: 30px 0;
  font-size: 14px;
}

@media (min-width: 1200px) {
  .container {
    margin: 0 auto;
    width: 100%;
    max-width: 100%;
    padding: 0 15px;
  }
}

.pad-10 {
  padding: 10px;
}

.display-flex {
  display: flex;
}

.space-between {
  justify-content: space-between;
}
