@charset "UTF-8";
/**
  Нормализация блочной модели
 */
*,
::before,
::after {
  box-sizing: border-box;
}

/**
  Убираем внутренние отступы слева тегам списков,
  у которых есть атрибут class
 */
:where(ul, ol):where([class]) {
  padding-left: 0;
}

ul {
  margin: 0;
}

/**
  Убираем внешние отступы body и двум другим тегам,
  у которых есть атрибут class
 */
body,
:where(blockquote, figure):where([class]) {
  margin: 0;
}

/**
  Убираем внешние отступы вертикали нужным тегам,
  у которых есть атрибут class
 */
:where(h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl):where([class]) {
  margin-block: 0;
}

:where(dd[class]) {
  margin-left: 0;
}

:where(fieldset[class]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

/**
  Убираем стандартный маркер маркированному списку,
  у которого есть атрибут class
 */
:where(ul[class]) {
  list-style: none;
}

:where(address[class]) {
  font-style: normal;
}

/**
  Обнуляем вертикальные внешние отступы параграфа,
  объявляем локальную переменную для внешнего отступа вниз,
  чтобы избежать взаимодействие с более сложным селектором
 */
p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

/**
  Внешний отступ вниз для параграфа без атрибута class,
  который расположен не последним среди своих соседних элементов
 */
p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

/**
  Упрощаем работу с изображениями и видео
 */
img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

/**
  Наследуем свойства шрифт для полей ввода
 */
input,
textarea,
select,
button {
  font: inherit;
}

html {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  height: 100%;
  /**
    Убираем скачок интерфейса по горизонтали
    при появлении / исчезновении скроллбара
   */
  scrollbar-gutter: stable;
}

/**
  Плавный скролл
 */
html,
:has(:target) {
  scroll-behavior: smooth;
}

body {
  /**
    Пригодится в большинстве ситуаций
    (когда, например, нужно будет "прижать" футер к низу сайта)
   */
  min-height: 100%;
  /**
    Унифицированный интерлиньяж
   */
  line-height: 1.5;
}

/**
  Нормализация высоты элемента ссылки при его инспектировании в DevTools
 */
a:where([class]) {
  display: inline-flex;
}

/**
  Курсор-рука при наведении на элемент
 */
button,
label {
  cursor: pointer;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут fill со значением 'none' или начинается с 'url')
 */
:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

/**
  Приводим к единому цвету svg-элементы
  (за исключением тех, у которых уже указан
  атрибут stroke со значением 'none')
 */
:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

/**
  Чиним баг задержки смены цвета при взаимодействии с svg-элементами
 */
svg * {
  transition-property: fill, stroke;
}

/**
  Приведение рамок таблиц в классический 'collapse' вид
 */
:where(table) {
  border-collapse: collapse;
  border-color: currentColor;
}

/**
  Удаляем все анимации и переходы для людей,
  которые предпочитают их не использовать
 */
@media (prefers-reduced-motion: reduce) {
  *,
  ::before,
  ::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Unbounded";
  src: url("../fonts/Unbounded-Black.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #ffffff;
  --color-dark: #141414;
  --color-pink: #f75581;
  --color-light-pink: #FAEFEF;
  --gradient: linear-gradient(90deg, #f75581 0%, #fe7e5b 70.19%, #fdab7c 100%);
  --gradient-hover: linear-gradient(90deg, #fdab7c 0%, #fe7e5b 29.81%, #f75581 100%);
  --font-family-base: "Inter", sans-serif;
  --font-family-accent: "Unbounded", sans-serif;
  --container-width: 90rem;
  --container-padding-x: 1rem;
  --transition-duration: 0.2s;
}
@media (width <= 90.06125rem) {
  :root {
    --container-width: 80rem;
  }
}

.container {
  max-width: calc(var(--container-width) + var(--container-padding-x) * 2);
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  border: 0 !important;
  padding: 0 !important;
  white-space: nowrap !important;
  clip-path: inset(100%) !important;
  clip: rect(0 0 0 0) !important;
  overflow: hidden !important;
}

@media (width <= 47.99875rem) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (width > 47.99875rem) {
  .visible-mobile {
    display: none !important;
  }
}

html.is-lock {
  overflow: hidden;
}
@media (width > 47.99875rem) {
  html {
    overflow-x: hidden;
  }
}

body {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
  display: flex;
  flex-direction: column;
  font-family: var(--font-family-base);
  letter-spacing: -0.03em;
  color: var(--color-dark);
  background-color: var(--color-light);
}

main {
  flex-grow: 1;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: var(--color-dark);
}

h1,
.h1,
h2,
.h2,
h3,
.h3 {
  font-family: var(--font-family-accent);
  font-weight: 500;
}

h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 600;
}

h1,
.h1 {
  font-size: clamp(2.25rem, 1.8995098039rem + 1.4379084967vw, 3.625rem);
  line-height: 1.2;
  font-weight: 900;
  font-family: var(--font-family-accent);
}

h2,
.h2 {
  font-size: clamp(1.5rem, 0.9583333333rem + 2.2222222222vw, 3.625rem);
  line-height: 1;
  font-weight: 900;
  font-family: var(--font-family-accent);
}

h3,
.h3 {
  font-size: clamp(1.5rem, 1.3406862745rem + 0.6535947712vw, 2.125rem);
  font-weight: 800;
  font-family: var(--font-family-accent);
}

h4,
.h4 {
  font-size: clamp(1rem, 0.8725490196rem + 0.522875817vw, 1.5rem);
  font-weight: 800;
  font-family: var(--font-family-accent);
}

h5,
.h5 {
  font-size: clamp(1.125rem, 1.0294117647rem + 0.3921568627vw, 1.5rem);
}

h6,
.h6 {
  font-size: clamp(1rem, 0.9362745098rem + 0.2614379085vw, 1.25rem);
}

a,
button,
label,
input,
textarea,
select,
svg * {
  transition-duration: var(--transition-duration);
}

a {
  color: inherit;
}
@media (any-hover: hover) {
  a:hover {
    color: var(--color-accent);
  }
}
@media (any-hover: none) {
  a:active {
    color: var(--color-accent);
  }
}
a[class] {
  text-decoration: none;
}

:focus-visible {
  outline: 0.125rem dashed var(--color-light);
  outline-offset: 0.25rem;
  transition-duration: 0s !important;
}

a[aria-label],
button[aria-label] {
  position: relative;
}
a[aria-label]::before,
button[aria-label]::before {
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 2.75rem;
  height: 2.75rem;
  content: "";
}

.header {
  width: 100vw;
  height: auto;
  background: url("../images/header/1.jpg") center/cover no-repeat;
}
@media (width <= 47.99875rem) {
  .header {
    background: url("../images/header/1-mobile.jpg") center/cover no-repeat;
    min-height: 23.75rem;
  }
}
.header__inner {
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 2;
}
@media (width <= 63.99875rem) {
  .header__inner {
    padding: 0.625rem;
    flex-direction: column;
    row-gap: 2.25rem;
  }
}
.header__title {
  padding-bottom: 1.375rem;
  text-wrap: pretty;
  color: var(--color-light);
}
.header__info {
  display: flex;
  column-gap: 3.125rem;
  align-items: center;
}
@media (width <= 47.99875rem) {
  .header__info {
    column-gap: 0.9375rem;
  }
}
.header__switcher {
  display: flex;
  column-gap: 0.3125rem;
  align-items: center;
}
.header__switcher-text {
  font-family: var(--font-family-base);
  font-weight: 800;
  font-size: 1rem;
}
.header__switcher-text:nth-child(1) {
  color: var(--color-light);
}
.header__switcher-switch {
  position: relative;
  display: inline-block;
  width: 3.875rem;
  height: 1.5rem;
}
@media (width <= 47.99875rem) {
  .header__switcher-switch {
    width: 3rem;
  }
}
.header__switcher-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.header__switcher-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition-duration: var(--transition-duration);
  border-radius: 1.25rem;
  background-color: var(--color-dark);
}
.header__switcher-slider:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.25rem;
  bottom: 0.1875rem;
  border-radius: 50%;
  transition-duration: var(--transition-duration);
  background-color: var(--color-pink);
}
@media (any-hover: hover) {
  .header__switcher-slider:before:hover {
    background-color: var(--color-light);
  }
}
@media (any-hover: none) {
  .header__switcher-slider:before:active {
    background-color: var(--color-light);
  }
}
.header__soc1als {
  display: flex;
  column-gap: 1.875rem;
}
@media (width <= 63.99875rem) {
  .header__soc1als {
    column-gap: 0.625rem;
  }
}
.header__soc1als svg {
  color: var(--color-light);
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .header__soc1als svg:hover {
    color: var(--color-dark);
  }
}
@media (any-hover: none) {
  .header__soc1als svg:active {
    color: var(--color-dark);
  }
}
@media (width <= 63.99875rem) {
  .header__soc1als svg {
    order: 1;
  }
}
.header__site {
  font-weight: 900;
  font-size: 2rem;
  color: var(--color-dark);
  font-family: var(--font-family-accent);
}
@media (width <= 63.99875rem) {
  .header__site {
    font-size: 1.5rem;
  }
}
.header__site-description {
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-dark);
  text-transform: uppercase;
}
@media (width <= 63.99875rem) {
  .header__site-description {
    font-size: 0.75rem;
  }
}
.header__description {
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-light);
  width: 33.75rem;
  line-height: 1.2;
}
@media (width <= 63.99875rem) {
  .header__description {
    font-size: 1rem;
    width: 18.75rem;
  }
}
@media (width <= 47.99875rem) {
  .header__description {
    width: 13.375rem;
  }
}
.header__bg {
  position: relative;
  float: right;
  z-index: 1;
}

.header__switcher-input:checked + .header__switcher-slider:before {
  transform: translateX(2.25rem);
}
@media (width <= 47.99875rem) {
  .header__switcher-input:checked + .header__switcher-slider:before {
    transform: translateX(1.375rem);
  }
}

.button {
  color: var(--color-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient);
  border-radius: 3rem;
  border: none;
  cursor: pointer;
  height: 3rem;
  width: 14.125rem;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 1rem;
  transition-duration: var(--transition-duration);
}
@media (any-hover: hover) {
  .button:hover {
    background: var(--gradient-hover);
    color: var(--color-light);
  }
}
@media (any-hover: none) {
  .button:active {
    background: var(--gradient-hover);
    color: var(--color-light);
  }
}
@media (width <= 63.99875rem) {
  .button {
    width: 11.625rem;
  }
}
.button--alt {
  background: transparent;
  border: 0.1875rem solid var(--color-light);
}
@media (any-hover: hover) {
  .button--alt:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
    background: transparent;
  }
}
@media (any-hover: none) {
  .button--alt:active {
    border-color: var(--color-dark);
    color: var(--color-dark);
    background: transparent;
  }
}

.cards {
  padding-bottom: 3.125rem;
}
.cards__title {
  color: var(--color-dark);
  padding-block: 1.25rem;
  text-align: center;
}
.cards__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
}
@media (width <= 47.99875rem) {
  .cards__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.card {
  width: 100%;
  max-width: 41.25rem;
  display: flex;
  flex-direction: column;
}
@media (width <= 47.99875rem) {
  .card {
    max-width: 100%;
  }
}
.card__title {
  color: var(--color-dark);
  text-transform: uppercase;
}
.card__title--alt {
  color: var(--color-pink);
}
.card__main {
  position: relative;
  width: 100%;
  max-width: 41.25rem;
}
@media (width <= 47.99875rem) {
  .card__main {
    max-width: 100vw;
  }
}
.card__main-image {
  border-radius: 2.5rem 2.5rem 0 0;
}
@media (width <= 47.99875rem) {
  .card__main-image {
    max-width: 100vw;
    width: 100%;
  }
}
.card__main-text {
  background-color: var(--color-pink);
  color: var(--color-light);
  position: absolute;
  padding: 0.625rem 1.25rem;
  text-transform: uppercase;
  right: 0;
  top: 3.125rem;
  font-size: 1rem;
}
@media (width <= 63.99875rem) {
  .card__main-text {
    padding: 0;
    width: 8.125rem;
    min-height: 1.875rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 0.75rem;
  }
}
.card__info {
  padding: 1.5625rem 1.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  background-color: var(--color-light-pink);
  max-width: 41.25rem;
  width: 100%;
  border-radius: 0 0 2.5rem 2.5rem;
}
@media (width <= 47.99875rem) {
  .card__info {
    max-width: 100vw;
    padding: 0.625rem;
  }
}
.card__description {
  padding-bottom: 1.5625rem;
}
.card__subtitle {
  display: inline-flex;
  align-items: start;
  font-weight: 800;
  font-size: 1.5rem;
  font-family: var(--font-family-accent);
  color: var(--color-dark);
  line-height: 0.4;
  column-gap: 0.5rem;
}
.card__subtitle--alt svg {
  rotate: 180deg;
  position: relative;
  bottom: 0.25rem;
}
@media (width <= 47.99875rem) {
  .card__subtitle {
    font-size: 1.25rem;
  }
}
.card__list {
  list-style-type: disc;
  margin-left: 2.25rem;
}
.card__list li {
  line-height: 1.2;
  padding-bottom: 0.625rem;
}
@media (width <= 47.99875rem) {
  .card__list {
    margin-left: 1.5rem;
  }
}
.card__button-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 41.25rem;
}
@media (width <= 63.99875rem) {
  .card__button {
    width: 14.125rem;
  }
}

.info {
  display: flex;
  flex-direction: column;
  row-gap: 1.25rem;
  padding-bottom: 1.25rem;
}
.info__title {
  color: var(--color-dark);
  text-align: center;
}
.info__main {
  display: grid;
  grid-template-columns: auto 41.25rem;
  gap: 2.5rem;
}
@media (width <= 90.06125rem) {
  .info__main {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.info__description {
  font-size: 1.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
@media (width <= 47.99875rem) {
  .info__description {
    font-size: 1rem;
  }
}
.info__image {
  border-radius: 2.5rem;
  width: 100%;
}
.info__button-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (width <= 63.99875rem) {
  .info__button {
    width: 14.125rem;
  }
}

.footer {
  width: 100vw;
  min-height: 26.25rem;
  background: url("../images/footer/bg.jpg") center/cover no-repeat;
}
@media (width > 120rem) {
  .footer {
    min-height: 34.375rem;
  }
}
.footer__inner {
  display: flex;
  column-gap: 16.875rem;
  justify-content: center;
  position: relative;
  top: 13.125rem;
  padding-inline: 2.5rem;
}
@media (width > 120rem) {
  .footer__inner {
    top: 16.875rem;
    column-gap: 23rem;
    left: 2rem;
  }
}
@media (width <= 63.99875rem) {
  .footer__inner {
    align-items: center;
  }
}
@media (width <= 47.99875rem) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 6.25rem;
    gap: 1rem;
  }
}
.footer__links {
  display: flex;
  gap: 2.5rem;
  justify-content: space-around;
  width: 90%;
  position: relative;
  right: 1.875rem;
}
@media (width <= 90.06125rem) {
  .footer__links {
    gap: 1rem;
    align-items: center;
  }
}
@media (width <= 63.99875rem) {
  .footer__links {
    flex-direction: column;
    right: 0;
  }
}
.footer__link {
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  column-gap: 0.625rem;
  color: var(--color-light);
  text-align: center;
}
@media (any-hover: hover) {
  .footer__link:hover {
    color: var(--color-pink);
  }
}
@media (any-hover: none) {
  .footer__link:active {
    color: var(--color-pink);
  }
}
.footer-mobile {
  margin-top: 9.375rem;
  width: 100vw;
  min-height: 19.375rem;
  background: url("../images/footer/bg.jpg") center/cover no-repeat;
}
.footer__main {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  position: relative;
  bottom: 21.25rem;
  align-items: center;
}
.footer__main a {
  color: var(--color-dark);
}
.footer__copyright {
  position: relative;
  bottom: 4.375rem;
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  text-wrap: nowrap;
}

.policy {
  padding-block: 5.625rem 2.5rem;
}
.policy__title {
  padding-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .policy__title {
    font-size: 1.5rem;
  }
}
@media (width <= 30.06125rem) {
  .policy__title {
    font-size: 1.25rem;
  }
}
.policy__subtitle {
  font-size: 2rem;
  padding-bottom: 2.5rem;
}
@media (width <= 47.99875rem) {
  .policy__subtitle {
    font-size: 1.25rem;
  }
}
@media (width <= 30.06125rem) {
  .policy__subtitle {
    font-size: 1.125rem;
  }
}
@media (width <= 47.99875rem) {
  .policy {
    padding-top: 2.125rem;
  }
}
@media (width <= 47.99875rem) {
  .policy__list-title {
    font-size: 1rem;
  }
}
.policy__list-title:not(:first-child) {
  padding-top: 1.5rem;
}

/*# sourceMappingURL=main.css.map */
