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

:where(ul, ol):where([class]) {
  padding-left: 0;
}

body,
:where(blockquote, figure, fieldset):where([class]) {
  margin: 0;
}

: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]) {
  padding: 0;
  border: none;
}

:where(ul[class]) {
  list-style: none;
}

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

p {
  margin-block: 0;
}

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;
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  line-height: 1.5;
}

a:where([class]) {
  display: inline-flex;
}

button,
label {
  cursor: pointer;
}

button {
  -webkit-tap-highlight-color: transparent;
}

:where([fill]:not([fill=none],
[fill^=url])) {
  fill: currentColor;
}

:where([stroke]:not([stroke=none],
[stroke^=url])) {
  stroke: currentColor;
}

svg * {
  transition-property: fill, stroke;
}

: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: "Roboto Condensed";
  src: url("../fonts/RobotoCondensed-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/RobotoCondensed-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Roboto Condensed";
  src: url("../fonts/RobotoCondensed-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../fonts/OpenSans-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --font-primary: 'Roboto Condensed', sans-serif;
  --font-secondary: 'Open Sans', sans-serif;
  --color-dark: #1A2332;
  --color-blue: #003798;
  --color-dark-blue: #1A2332;
  --color-steel-blue: #3D5A80;
  --color-light: #F8F9FA;
  --color-gray: #ECEFF3;
  --color-gray-light: #F1F3F6;
  --container-padding-x: clamp(1rem, calc(-0.4084507042rem + 6.0093896714vw), 5rem);
  --section-padding-y: clamp(3.875rem, calc(2.8186619718rem + 4.5070422535vw), 6.875rem);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 1.375rem;
  --header-height: 3.4375rem;
}
@media (min-width: 64em) {
  :root {
    --header-height: 4.4375rem;
  }
}

.container {
  width: 100%;
  max-width: 90rem;
  margin-inline: auto;
  padding-inline: var(--container-padding-x);
}

.section-padding-y {
  padding-block: var(--section-padding-y);
}

html {
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-primary);
  color: var(--color-dark-blue);
  background-color: #b6c5df;
  background-image: linear-gradient(180deg, #ffffff 0%, #ffffff 7.5rem, #b6c5df 53.125rem);
  background-repeat: no-repeat;
}

h1 {
  font-size: clamp(2.375rem, calc(1.8468309859rem + 2.2535211268vw), 3.875rem);
  line-height: 1.2;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.875rem, calc(1.698943662rem + 0.7511737089vw), 2.375rem);
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--color-blue);
}

p {
  font-family: var(--font-secondary);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 100;
  background-color: var(--color-gray);
  border-bottom: 0.0625rem solid var(--color-blue);
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
@media (min-width: 64em) {
  .header__container {
    justify-content: space-between;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
  }
}
.header__logo {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  flex-shrink: 0;
}
.header__logo-img {
  width: 3.3125rem;
  height: 3.25rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 63.99875em) {
  .header__logo {
    display: none;
  }
}
.header__actions {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  flex-shrink: 0;
}
.header__buttons {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.625rem;
       column-gap: 0.625rem;
}
.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.375rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--border-radius-sm);
  white-space: nowrap;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.header__btn--primary {
  background-color: var(--color-blue);
  border: none;
  color: var(--color-light);
}
@media (any-hover: hover) {
  .header__btn--primary:hover {
    background-color: #2b3e58;
    border-color: #2b3e58;
  }
}
@media (any-hover: none) {
  .header__btn--primary:active {
    background-color: #2b3e58;
    border-color: #2b3e58;
  }
}
.header__btn--outline {
  background-color: transparent;
  border: 0.0625rem solid var(--color-dark-blue);
}
@media (any-hover: hover) {
  .header__btn--outline:hover {
    background-color: var(--color-steel-blue);
    color: var(--color-light);
  }
}
@media (any-hover: none) {
  .header__btn--outline:active {
    background-color: var(--color-steel-blue);
    color: var(--color-light);
  }
}
.header__burger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.4375rem;
  height: 1.25rem;
  padding: 0;
  background: transparent;
  border: none;
}
@media (min-width: 64em) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  position: relative;
  display: block;
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-dark-blue);
  border-radius: 0.125rem;
}
.header__burger span::before, .header__burger span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.25rem;
  background-color: var(--color-dark-blue);
  border-radius: 0.125rem;
}
.header__burger span::before {
  top: -0.5rem;
}
.header__burger span::after {
  top: 0.5rem;
}

@media (min-width: 64em) {
  .menu__header {
    display: none;
  }
  .menu__list {
    display: flex;
    align-items: center;
    -moz-column-gap: clamp(0.625rem, calc(0.4049295775rem + 0.9389671362vw), 1.25rem);
         column-gap: clamp(0.625rem, calc(0.4049295775rem + 0.9389671362vw), 1.25rem);
  }
  .menu__item--mobile-only {
    display: none;
  }
  .menu__link {
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.2s ease;
  }
}
@media (min-width: 64em) and (any-hover: hover) {
  .menu__link:hover {
    color: var(--color-steel-blue);
  }
}
@media (min-width: 64em) and (any-hover: none) {
  .menu__link:active {
    color: var(--color-steel-blue);
  }
}

@media (max-width: 63.99875em) {
  .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: var(--color-gray);
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .menu.is-open {
    transform: translateX(0);
  }
  .menu__header {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: var(--header-height);
    padding-inline: 1.25rem;
    border-bottom: 0.0625rem solid var(--color-steel-blue);
  }
  .menu__close {
    position: relative;
    width: 1.375rem;
    height: 1.375rem;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }
  .menu__close::before, .menu__close::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 0.25rem;
    background-color: var(--color-dark-blue);
    border-radius: 0.125rem;
  }
  .menu__close::before {
    transform: translateY(-50%) rotate(45deg);
  }
  .menu__close::after {
    transform: translateY(-50%) rotate(-45deg);
  }
  .menu__list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2.5rem 0 0 2.5rem;
  }
  .menu__link {
    font-size: 0.875rem;
    font-weight: 700;
    color: inherit;
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
  }
}
@media (max-width: 63.99875em) and (any-hover: hover) {
  .menu__link:hover {
    color: var(--color-steel-blue);
  }
}
@media (max-width: 63.99875em) and (any-hover: none) {
  .menu__link:active {
    color: var(--color-steel-blue);
  }
}
.hero {
  padding-top: calc(var(--header-height) + clamp(1.6875rem, calc(2.1100352113rem - 0.4694835681vw), 2rem));
  padding-bottom: clamp(3.875rem, calc(2.8186619718rem + 4.5070422535vw), 6.875rem);
}
.hero__container {
  display: flex;
  flex-direction: column;
  row-gap: clamp(3.75rem, calc(2.8697183099rem + 3.7558685446vw), 6.25rem);
}
.hero__card {
  display: flex;
  flex-direction: column;
  gap: 2.625rem;
}
@media (min-width: 64em) {
  .hero__card {
    flex-direction: row;
    align-items: center;
  }
}
.hero__media {
  width: 100%;
}
@media (min-width: 64em) {
  .hero__media {
    flex: 1 1 0;
  }
}
.hero__image {
  border-radius: var(--border-radius-sm);
}
.hero__content {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}
@media (min-width: 64em) {
  .hero__content {
    flex: 1 1 0;
  }
}
.hero__banner {
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
}

.features__cards {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
@media (min-width: 64em) {
  .features__cards {
    flex-direction: row;
  }
}
.features__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  gap: 1.375rem;
  padding: clamp(2rem, calc(1.6478873239rem + 1.5023474178vw), 3rem) clamp(0.75rem, calc(0.1338028169rem + 2.6291079812vw), 2.5rem);
  box-shadow: 0 0.125rem 0.5rem rgba(61, 90, 128, 0.4);
  background-color: var(--color-light);
}

.traditions__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, calc(-0.7728873239rem + 11.8309859155vw), 9.875rem) clamp(0rem, calc(-0.8802816901rem + 3.7558685446vw), 2.5rem);
  gap: 0.75rem;
  background-color: var(--color-light);
}
.traditions__card-title {
  text-align: center;
  margin-bottom: 0.625rem;
}
.traditions__card-text span {
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}
@media (min-width: 64em) {
  .traditions__card-text span {
    display: inline-flex;
  }
}

.research__cards {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.375rem;
  padding: clamp(2rem, calc(1.6478873239rem + 1.5023474178vw), 3rem) clamp(0.75rem, calc(0.1338028169rem + 2.6291079812vw), 2.5rem);
  box-shadow: 0 0.125rem 0.5rem rgba(61, 90, 128, 0.4);
  background-color: var(--color-light);
}
@media (min-width: 64em) {
  .research__cards {
    flex-direction: row;
  }
}
.research__media {
  width: 100%;
  flex: 1 1 0;
}
.research__content {
  display: flex;
  flex-direction: column;
  gap: 1.375rem;
  flex: 1 1 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}
.faq__item {
  box-shadow: 0.125rem 0.125rem 0.5rem rgba(58, 90, 128, 0.12);
  background-color: var(--color-light);
  border: 0.0625rem solid var(--color-blue);
  padding: clamp(1.375rem, calc(1.2429577465rem + 0.5633802817vw), 1.75rem) clamp(0.75rem, calc(0.3098591549rem + 1.8779342723vw), 2rem);
  transition: background-color 0.2s ease;
}
.faq__item[open] .faq__item-question::after {
  transform: rotate(180deg);
}
.faq__item-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(1.125rem, calc(1.036971831rem + 0.3755868545vw), 1.375rem);
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  list-style: none;
}
.faq__item-question::-webkit-details-marker {
  display: none;
}
.faq__item-question::after {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.0625rem;
  background-color: var(--color-blue);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transition: transform 0.25s ease;
}
.faq__answer {
  overflow: hidden;
}
.faq__answer-text {
  padding-top: 0.75rem;
}

.footer {
  background-color: var(--color-light);
  padding-top: 2rem;
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}
.footer__container {
  border-top: 0.0625rem solid var(--color-blue);
}
.footer__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
  padding: 2rem 0 1rem;
}
.footer__list {
  display: flex;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}
.footer__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
}
.footer__item-link, .footer__info-email {
  font-family: inherit;
  color: inherit;
  text-decoration: none;
  transition: opacity 0.2s ease, -webkit-text-decoration 0.2s ease;
  transition: opacity 0.2s ease, text-decoration 0.2s ease;
  transition: opacity 0.2s ease, text-decoration 0.2s ease, -webkit-text-decoration 0.2s ease;
}
@media (any-hover: hover) {
  .footer__item-link:hover, .footer__info-email:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
}
@media (any-hover: none) {
  .footer__item-link:active, .footer__info-email:active {
    text-decoration: underline;
    opacity: 0.8;
  }
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.modal.is-open .modal__window {
  transform: scale(1);
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(26, 35, 50, 0.9);
  backdrop-filter: blur(38px);
  cursor: pointer;
}
.modal__window {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 26.25rem;
  background-color: var(--color-gray);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background-color: var(--color-light);
}
.modal__title {
  font-size: clamp(1rem, calc(0.7799295775rem + 0.9389671362vw), 1.625rem);
  font-weight: 700;
  text-transform: uppercase;
  color: inherit;
}
.modal__close {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  background: transparent;
  border: none;
}
.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 0.125rem;
  background-color: var(--color-dark);
  border-radius: 0.0625rem;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.modal__close::before {
  transform: translateY(-50%) rotate(45deg);
}
.modal__close::after {
  transform: translateY(-50%) rotate(-45deg);
}
@media (any-hover: hover) {
  .modal__close:hover::before, .modal__close:hover::after {
    background-color: var(--color-blue);
  }
}
@media (any-hover: none) {
  .modal__close:active::before, .modal__close:active::after {
    background-color: var(--color-blue);
  }
}
.modal__body {
  padding: 1.5rem;
}
.modal__text {
  font-size: clamp(1rem, calc(0.911971831rem + 0.3755868545vw), 1.25rem);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.modal__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1.125rem 1.375rem;
  background-color: var(--color-blue);
  border: 0.0625rem solid var(--color-steel-blue);
  border-radius: var(--border-radius-sm);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--color-light);
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.modal__submit:active {
  transform: scale(0.98);
}
@media (any-hover: hover) {
  .modal__submit:hover {
    background-color: #2b3e58;
    box-shadow: 0 0.25rem 0.75rem rgba(61, 90, 128, 0.35);
  }
}
@media (any-hover: none) {
  .modal__submit:active {
    background-color: #2b3e58;
    box-shadow: 0 0.25rem 0.75rem rgba(61, 90, 128, 0.35);
  }
}

.form {
  display: flex;
  flex-direction: column;
  row-gap: 1.375rem;
  padding: 1.5rem;
  background-color: #d5ddec;
}
.form__group {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
}
.form__label {
  font-size: clamp(1rem, calc(0.911971831rem + 0.3755868545vw), 1.25rem);
}
.form__input {
  width: 100%;
  height: 2.25rem;
  padding-inline: 0.75rem;
  background-color: var(--color-light);
  border: none;
  border-radius: var(--border-radius-sm);
  font-size: 1rem;
  color: var(--color-dark);
  transition: border-color 0.2s ease;
}
.form__input::-moz-placeholder {
  color: #9aaec0;
  font-size: 0.6875rem;
}
.form__input::placeholder {
  color: #9aaec0;
  font-size: 0.6875rem;
}
.form__input:focus {
  outline: none;
  border-color: var(--color-steel-blue);
}
.form__checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  margin-bottom: clamp(1.5rem, calc(0.6637323944rem + 3.5680751174vw), 3.875rem);
}
.form__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  border: 0;
}
.form__checkbox:checked + .form__checkbox-custom {
  background-color: var(--color-steel-blue);
  border-color: var(--color-steel-blue);
}
.form__checkbox:checked + .form__checkbox-custom::after {
  opacity: 1;
}
.form__checkbox-custom {
  position: relative;
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.125rem;
  background-color: #ffffff;
  border: 0.0625rem solid var(--color-steel-blue);
  border-radius: 0.125rem;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.form__checkbox-custom::after {
  content: "";
  position: absolute;
  top: 45%;
  left: 50%;
  width: 0.25rem;
  height: 0.5rem;
  border: solid #ffffff;
  border-width: 0 0.125rem 0.125rem 0;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0;
  transition: opacity 0.15s ease;
}
.form__checkbox-text {
  font-size: 0.625rem;
  line-height: 1.4;
  color: #5a7a99;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.cookies {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translate(-50%, 1.875rem);
  z-index: 900;
  width: calc(100% - 2rem);
  max-width: 77.5rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.35s ease, visibility 0.35s ease;
}
.cookies.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.cookies__container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background-color: var(--color-steel-blue);
  border-radius: var(--border-radius-sm);
  padding: 1.125rem 1.5rem;
}
@media (min-width: 64em) {
  .cookies__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 2.25rem;
  }
}
.cookies__content {
  display: flex;
  flex-direction: column;
  row-gap: 0.625rem;
  flex: 1;
}
.cookies__title {
  font-size: 1.125rem;
  color: var(--color-light);
}
.cookies__link {
  color: #b7c6df;
}
.cookies__text {
  color: var(--color-light);
}
.cookies__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  width: 100%;
}
@media (min-width: 64em) {
  .cookies__actions {
    width: 10.625rem;
  }
}
.cookies__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--border-radius-sm);
  border: none;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, color 0.2s ease;
}
.cookies__btn:active {
  transform: scale(0.97);
}
.cookies__btn--accept {
  background-color: #1a2332;
  color: var(--color-light);
}
@media (any-hover: hover) {
  .cookies__btn--accept:hover {
    background-color: #0d141e;
  }
}
@media (any-hover: none) {
  .cookies__btn--accept:active {
    background-color: #0d141e;
  }
}
.cookies__btn--reject {
  background-color: var(--color-light);
  color: var(--color-dark, #1a2332);
}
@media (any-hover: hover) {
  .cookies__btn--reject:hover {
    background-color: #e2e8f0;
  }
}
@media (any-hover: none) {
  .cookies__btn--reject:active {
    background-color: #e2e8f0;
  }
}

.policy {
  padding-top: calc(var(--header-height) + clamp(1.6875rem, calc(2.1100352113rem - 0.4694835681vw), 2rem));
  padding-bottom: clamp(3.75rem, calc(2.8697183099rem + 3.7558685446vw), 6.25rem);
}
.policy__list {
  list-style-type: circle;
  margin-left: 20px;
}
.policy__title {
  margin-bottom: 1.25rem;
}/*# sourceMappingURL=main.css.map */