/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/poppins-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/poppins-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

:root {
  --space-l: 3rem;
  --space-m: 2rem;
  --space-s: 1rem;
  --color-black: #000;
  --color-white: #fff;
  --color-grey: #777;
  --color-light: #efefef;
  --color-green: #1bda13;
  --color-text: var(--color-white);
  --color-link: var(--color-green);
  --color-link-hover: #1bda13;
  --color-text-grey: var(--color-grey);
  --color-background: #5b5b5b;
  --font-family-sans: 'Poppins', Roboto, Helvetica, Arial, sans-serif, -apple-system, BlinkMacSystemFont;
  --font-size: 16px;
}


html {
  font-family: var(--font-family-sans);
  font-weight: 400;
  color: var(--color-text);
  background: var(--color-background);
}
body {
  font-size: var(--font-size);
  margin: 0;
  min-width: 300px;
}
img {
  max-width: 100%;
  height: auto;
}
ul {
  margin: 0;
  padding: 0;
}
li {
  list-style: none;
}
.custom-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 8px;
}
.custom-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.1em;
  width: 24px;
  height: 24px;
  background-image: url('../images/paw.png');
  background-size: contain;
  background-repeat: no-repeat;
}
a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover {
  opacity: .75;
}
strong, b {
  font-weight: 600;
}
h1, h2, h3, h4 {
  font-weight: 600;
}
.margin-s {
  margin-bottom: .75rem;
}
.margin-m {
  margin-bottom: 1.5rem;
}
.margin-l {
  margin-bottom: 3rem;
}
.margin-xl {
  margin-bottom: 4.5rem;
}
.margin-xxl {
  margin-bottom: 6rem;
}


.header,
.main,
.footer {
  margin: 0 auto;
  max-width: 960px;
  padding: var(--space-s);
}


.flex {
  display: flex;
}
.column {
  flex-direction: column;
}
.between {
  justify-content: space-between;
}
.end {
  justify-content: flex-end;
}
.center {
  align-items: center;
}


.header {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.header .logo {
  max-width: 180px;
}


.footer {
  display: flex;
  max-width: 1440px;
  flex-direction: column;
  align-items: flex-start;
  padding: var(--space-l) var(--space-s);
}
.footer-img {
  order: 2;
}
.footer-text {
  order: 1;
  margin-bottom: var(--space-m);
}
.footer p{
  margin-bottom: 0;
}
.footer p.copyright {
  font-size: 12px;
  margin-top: var(--space-m);
}
.footer .icon {
  margin-right: 8px;
}
.footer .legal {
  display: flex;
  font-size: 12px;
  text-transform: uppercase;
  margin-top: var(--space-s);
}
.footer .legal a {
  color: var(--color-white);
  margin-right: 24px;
}


#doggo-bg {
  width: 100%;
  padding-right: 0;
}


@media screen and (min-width: 50rem) {
  :root {
    --font-size: 18px;
  }
  .header {
    justify-content: space-between;
    flex-direction: row;
  }
  .header .logo {
    max-width: 250px;
  }
  .footer {
    flex-direction: row;
    align-items: center;
  }
  .footer-img {
    order: 1;
  }
  .footer-text {
    order: 2;
    margin-bottom: 0;
  }
  #doggo-bg {
    width: 50%;
    padding-right: var(--space-m);
  }
}

#svg-background {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.svg-icon {
  position: absolute;
  width: 50px;
  height: 50px;
  opacity: 0.1;
}
