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

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

body,
:where(blockquote, figure):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]) {
  margin-left: 0;
  padding: 0;
  border: none;
}

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

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

p {
  --paragraphMarginBottom: 24px;
  margin-block: 0;
}

p:where(:not([class]):not(:last-child)) {
  margin-bottom: var(--paragraphMarginBottom);
}

img {
  display: block;
  max-width: 100%;
}

input,
textarea,
select,
button {
  font: inherit;
}

html {
  height: 100%;
}

html,
:has(:target) {
  scroll-behavior: smooth;
}

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

svg *[fill] {
  fill: currentColor;
}

svg *[stroke] {
  stroke: currentColor;
}

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

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Light.woff2) format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Montserrat";
  src: url(../fonts/Montserrat-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "ci";
  src: url(../fonts/icomoon.ttf) format("ttf");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --color-light: #fff;
  --color-accent: #007844;
  --color-accent-alt: #0088cc;
  --border-accent: 1px solid var(--color-accent);
  --border-accent-alt: 1px solid var(--color-accent-alt);
  --border-radius: 5px;
  --font-family-base: "Montserrat", sans-serif;
  --container-width-wider: 1780px;
  --container-width: 1240px;
  --container-padding-x-desktop: 80px;
  --container-padding-x-tablet: 50px;
  --container-padding-x-mobile: 20px;
  --section-padding-y: 80px;
  --button-height: 42px;
  --transition-duration: 0.2s;
}

.container, .container--wider {
  margin-inline: auto;
  padding-inline: var(--container-padding-x-desktop);
  max-width: calc(var(--container-width) + var(--container-padding-x-desktop) * 2);
}
@media (max-width: 1023px) {
  .container, .container--wider {
    max-width: calc(var(--container-width) + var(--container-padding-x-tablet) * 2);
    padding-inline: var(--container-padding-x-tablet);
  }
}
@media (max-width: 767px) {
  .container, .container--wider {
    max-width: calc(var(--container-width) + var(--container-padding-x-mobile) * 2);
    padding-inline: var(--container-padding-x-mobile);
  }
}
.container--wider {
  max-width: calc(var(--container-width-wider) + var(--container-padding-x-desktop) * 2);
}

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

@media (max-width: 767px) {
  .hidden-mobile {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .visible-mobile {
    display: none !important;
  }
}

body {
  font-size: clamp(16px, 1.25vw, 18px);
  position: relative;
  font-family: var(--font-family-base);
  font-weight: 400;
  background-color: var(--color-light);
}

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

a {
  text-decoration: none;
  color: inherit;
}

h1,
h2,
h3,
h4 {
  font-weight: 700;
}

h1 {
  font-size: clamp(27px, 2.3611111111vw, 34px);
}

h2 {
  font-size: clamp(18px, 1.3888888889vw, 20px);
}

h3 {
  font-size: clamp(16px, 1.25vw, 18px);
}

h4 {
  font-size: clamp(15px, 1.1111111111vw, 16px);
}

@keyframes pulsate {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}
.recena {
  position: relative;
  overflow: hidden;
}

.recena::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url("../1/bg.webp");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(5px);
  z-index: -2;
}

.recena::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}

.container, .container--wider {
  height: 100vh;
}

.inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  position: relative;
  height: 100vh;
}

.title {
  text-align: center;
  font-size: clamp(14px, 2.7777777778vw, 40px);
}

.location {
  display: flex;
  -moz-column-gap: 5px;
       column-gap: 5px;
  justify-content: end;
  align-items: center;
  padding-bottom: 1rem;
}
.location__text {
  text-align: right;
  color: #2f3f60;
  font-size: 24px;
}

.logo {
  height: 90px;
}
@media (max-width: 768px) {
  .logo {
    height: 80px;
  }
}
@media (max-width: 480px) {
  .logo {
    height: 80px;
  }
}

.header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
}

.date {
  font-weight: 500;
  color: #34375c;
  font-size: clamp(18px, 1.9444444444vw, 28px);
}

.content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.subtitle__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 375px) {
  .subtitle__wrapper {
    flex-direction: column;
    align-items: start;
    gap: 1rem;
  }
}
.subtitle__item {
  display: flex;
  flex-direction: column;
}
.subtitle__item span {
  color: #34375c;
  font-size: clamp(12px, 1.6666666667vw, 16px);
  font-weight: 500;
}
.subtitle__item a {
  color: #34375c;
  font-size: clamp(12px, 1.6666666667vw, 16px);
  font-weight: 300;
}
.subtitle__item a:hover {
  text-decoration: underline;
}
@media (max-width: 375px) {
  .subtitle__item:last-of-type {
    align-self: center;
  }
}

.buttons {
  display: flex;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 2rem 0;
}

.button {
  cursor: pointer;
  padding: 1rem;
  background: #d9d9f4;
  border: 2px solid #d9d9f4;
  border-radius: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
}
.button:hover {
  color: #d9d9f4;
  background: #4469cf;
  border: 2px solid #4469cf;
}

.subtitle--bottom {
  text-align: center;
  font-weight: 500;
}
.subtitle--top {
  padding-top: 1rem;
  text-align: center;
  font-size: clamp(12px, 2.2222222222vw, 16px);
}

.text-main {
  color: #34375c;
}

.text-accent {
  color: #4469cf !important;
}/*# sourceMappingURL=styles.css.map */