@charset "UTF-8";
@font-face {
  font-family: "SF Pro text";
  src: url("../fonts/SFProText-Semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro text";
  src: url("../fonts/SFProText-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: "SF Pro text";
  src: url("../fonts/SFProText-Semibold.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
:root {
  --font-family-main: "SF Pro text";
  --font-family-secondary: "Inter";
  --font-size-xs: 14px;
  --font-line-xs: 130%;
  --font-xs: var(--font-size-xs) / var(--font-line-xs) var(--font-family-main);
  --font-size-sm: 16px;
  --font-line-sm: 130%;
  --font-sm: var(--font-size-sm) / var(--font-line-sm) var(--font-family-main);
  --font-size-lg: 20px;
  --font-line-lg: 130%;
  --font-lg: var(--font-size-lg) / var(--font-line-lg) var(--font-family-main);
  --font-size-xl: 54px;
  --font-line-xl: 72px;
  --font-xl: var(--font-size-xl) / var(--font-line-xl) var(--font-family-secondary);
  --black-color: #000;
  --white-color: #fff;
  --blue-color: #007AFF;
  --blue-color-1: rgba(0, 122, 255, 0.1);
  --blue-color-2: rgba(0, 122, 255, 0.2);
  --blue-color-3: rgba(0, 122, 255, 0.3);
  --blue-color-4: rgba(0, 122, 255, 0.4);
  --blue-color-5: rgba(0, 122, 255, 0.5);
  --blue-color-6: rgba(0, 122, 255, 0.6);
  --blue-color-7: rgba(0, 122, 255, 0.7);
  --blue-color-8: rgba(0, 122, 255, 0.8);
  --blue-color-9: rgba(0, 122, 255, 0.9);
  --gray-color: #707579;
  --gray-light-color: #A2AAB0;
  --header-height: 80px;
  --footer-height: 72px;
}

@media screen and (max-width: 865px) {
  :root {
    --font-size-xl: 32px;
    --footer-height: 60px;
  }
}
/*Обнуление*/
* {
  padding: 0;
  margin: 0;
  border: 0;
}

*, *:before, *:after {
  box-sizing: border-box;
}

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

a {
  color: #000;
}

a, button, input {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  font-size: 100%;
  line-height: 1;
  font-size: 14px;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* a:hover{text-decoration: none;} */
ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: 400;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-direction: column;
  height: 100svh;
  overflow: hidden;
}

.header {
  flex-shrink: 0;
  background: var(--white-color);
}
.header__content {
  height: var(--header-height);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}
.header__logo-text {
  font: var(--font-lg);
  font-weight: 590;
}
.header__socials {
  display: flex;
  gap: 4px;
}
.header__socials-button {
  padding: 6px;
}

.main {
  flex-grow: 1;
  min-height: 0;
  padding-top: 40px;
  padding-bottom: 110px;
  overflow-y: auto;
}
.main__content {
  display: flex;
  flex-direction: column;
  gap: 102px;
  align-items: center;
}

.release {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 100px;
  mix-blend-mode: multiply;
  background: var(--blue-color-1);
  font-weight: 510;
}
.release__date {
  font: var(--font-sm);
  padding: 4px 10px;
  background: var(--white-color);
  color: var(--blue-color);
  border-radius: 16px;
  border: 1px solid var(--blue-color-3);
}
.release__label {
  font: var(--font-sm);
  color: var(--blue-color);
  font-weight: 510;
  padding: 4px 10px;
}

.block {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.block__title {
  font: var(--font-xl);
  font-weight: 600;
  margin-bottom: 8px;
  text-align: center;
}
.block__subtitle {
  font: var(--font-lg);
  font-weight: 400;
  color: var(--gray-color);
  margin-bottom: 24px;
  text-align: center;
}
.block__button {
  gap: 8px;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 8px 16px;
  background: var(--black-color);
  color: var(--white-color);
  border-radius: 8px;
}
.block__button-icon {
  width: 32px;
  height: 32px;
}
.block__button-text {
  display: flex;
  flex-direction: column;
  font: var(--font-sm);
}
.block__button-text span {
  font-family: var(--font-family-main);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.26px;
}

.cards {
  display: flex;
  align-items: center;
  text-align: center;
  gap: 32px;
}
.cards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cards__item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.cards__item-icon {
  width: 44px;
  height: 44px;
}
.cards__item-title {
  font: var(--font-sm);
  font-weight: 590;
}
.cards__item-description {
  font: var(--font-sm);
  font-weight: 400;
  color: var(--gray-color);
}

.footer {
  flex-shrink: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.footer__content {
  height: var(--footer-height);
  padding-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__copyright {
  font: var(--font-xs);
  font-weight: 400;
  color: var(--gray-light-color);
}
.footer__links {
  display: flex;
  gap: 27px;
}
.footer__item {
  font: var(--font-xs);
  font-weight: 400;
  padding: 7px 0;
}
.footer__item-link {
  text-decoration: none;
}

.hidden {
  opacity: 0;
  pointer-events: none;
}

@media screen and (max-width: 1281px) {
  .container {
    margin: 0 20px;
  }
}
@media screen and (max-width: 865px) {
  .main {
    padding-top: 24px;
    padding-bottom: 24px;
  }
  .main__content {
    gap: 40px;
  }
  .block__title {
    margin-bottom: 16px;
    line-height: 100%;
  }
  .block__subtitle {
    margin-bottom: 48px;
  }
  .cards {
    flex-direction: column;
    gap: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
  .footer {
    background: var(--white-color);
  }
  .footer__content {
    justify-content: space-between;
    gap: 8px;
  }
  .footer__copyright {
    flex: 1 0 50%;
  }
  .footer__copyright.hidden {
    display: none;
  }
  .footer__links {
    flex: 1 0 50%;
    justify-content: flex-end;
  }
}/*# sourceMappingURL=index.css.map */