@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Light.eot");
  src: local("Geometria Light"), local("Geometria-Light"),
    url("../fonts/Geometria-Light.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Geometria-Light.woff") format("woff"), url("../fonts/Geometria-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Bold.eot");
  src: local("Geometria Bold"), local("Geometria-Bold"),
    url("../fonts/Geometria-Bold.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Geometria-Bold.woff") format("woff"), url("../fonts/Geometria-Bold.ttf") format("truetype");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Geometria";
  src: url("../fonts/Geometria-Medium.eot");
  src: local("Geometria Medium"), local("Geometria-Medium"),
    url("../fonts/Geometria-Medium.eot?#iefix") format("embedded-opentype"),
    url("../fonts/Geometria-Medium.woff") format("woff"), url("../fonts/Geometria-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --default-font-family: "Geometria", sans-serif;
  --default-font-color: #4d4d4d;
  --blue-color: #8dc63f;
  --hover-color: #83aa43;
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--default-font-family);
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

* {
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

content {
  flex: 1 0 auto;
}

@media (min-width: 320px) {
  html {
    font-size: calc(100vw / 375 * 10);
  }

  .container {
    max-width: 100vw;
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin: 0 auto;
  }
}

@media (min-width: 768px) {
  html {
    font-size: calc(100vw / 1920 * 10);
  }

  .container {
    max-width: 1750px;
    width: 100%;
    padding-left: 1.2rem;
    padding-right: 1.2rem;
    margin: 0 auto;
  }
}

/* .container {
  margin: 0 auto;
  padding-right: 15px;
  padding-left: 15px;
  width: 100%;
  max-width: 1750px;
} */

* {
  font-smooth: antialiased;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

a,
a:hover {
  text-decoration: none;
  color: var(--blue-color);
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  scrollbar-color: #8dc63f #fff;
  scrollbar-width: thin;
}

* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  background-color: #fff;
  padding: 4rem 0;
}

.header .logo {
  text-align: center;
  margin: 0 auto;
  width: 36.3rem;
  height: 5.7rem;
}
.header .logo img {
  width: 100%;
  height: auto;
}

content {
  background-color: #95c12b;
}

.antikollektor {
  overflow: hidden;
}

.antikollektor__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
  padding-right: 0;
  padding-left: 14.4rem;
  padding-top: 7.6rem;
}
.antikollektor__description {
  padding-bottom: 13rem;
}

.antikollektor__titile {
  font-size: 5.9rem;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 4.2rem;
}
.antikollektor__titile span {
  display: block;
  font-size: 8.7rem;
  margin-top: 2.6rem;
}
.antikollektor__description p {
  font-size: 3.6rem;
  font-weight: 500;
  color: #ffffff;
}

.antikollektor__qr {
  display: flex;
  border-radius: 3.4rem;
  padding: 5.4rem;
  gap: 6.3rem;
  background: rgba(255, 255, 255, 0.18);
  margin-top: 5.5rem;
}

.antikollektor__qr a {
    color: #8dc63f;
    text-align: center;
    font-size: 2.7rem;
    margin-top: 1.5rem;
    display: block;
    background: #fff;
    border-radius: 1.8rem;
    width: 100%;
    padding: 1rem;
}

.antikollektor__image {
  max-width: 91.6rem;
  position: relative;
  margin-bottom: -1rem;
}

.footer {
  background-color: #818181;
  padding-top: 5rem;
  padding-bottom: 8rem;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: flex-start;
  gap: 9rem;
}

.footer__ooo p {
  color: rgb(89, 89, 89);
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0;
}

.footer__ooo a {
  color: rgb(89, 89, 89);
  text-decoration: underline;
}

.social__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.footer__contacts {
  text-align: right;
}

.footer__contacts span {
  display: block;
  color: rgb(149, 193, 43);
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__contacts a {
  color: rgb(255, 255, 255);
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 1.2rem 0;
}

@media (max-width: 768px) {
  .header {
    padding: 2.5rem 0;
  }

  .header .logo {
    width: 32.3rem;
    height: auto;
  }

  .antikollektor__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 0;
    flex-wrap: wrap;
  }

  .antikollektor__description {
    padding-bottom: 3rem;
  }

  .antikollektor__titile {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .antikollektor__titile span {
    font-size: 3.8rem;
    margin-top: 1.6rem;
  }

  .antikollektor__description p {
    font-size: 1.8rem;
  }
  .antikollektor__qr {
    flex-wrap: wrap;
    padding: 4.4rem;
    gap: 2.3rem;
  }

  .antikollektor__image {
    margin-right: -1.5rem;
  }

  .footer__container {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem;
  }
  .footer__logo {
    display: none;
  }
  .footer__ooo p {
    text-align: center;
  }
  .social__list {
    justify-content: center;
  }
  .footer__contacts {
    text-align: center;
  }
  .footer__contacts a {
    font-size: 3rem;
  }
}
