@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800&family=Open+Sans:wght@400;700&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

body {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  color: #000000;
}
@media (max-width: 576px) {
  body {
    font-size: 20px;
  }
}
@media (max-width: 470px) {
  body {
    font-size: 17px;
  }
}

ul {
  list-style-type: none;
}
ul li {
  position: relative;
  padding-left: 38px;
  line-height: 48px;
}
@media (max-width: 576px) {
  ul li {
    line-height: 32px;
    padding-left: 28px;
  }
}
@media (max-width: 470px) {
  ul li {
    padding-left: 15px;
    line-height: 28px;
  }
}
ul li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #000000;
  position: absolute;
  top: 22px;
  left: 15px;
}
@media (max-width: 576px) {
  ul li::before {
    top: 15px;
  }
}
@media (max-width: 470px) {
  ul li::before {
    left: 0;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

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

.container {
  max-width: 1315px;
  padding: 0 15px;
  margin: 0 auto;
}

.square-bg {
  position: relative;
  z-index: 1;
}
.square-bg::before, .square-bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 940px;
  z-index: -1;
}
@media (max-width: 470px) {
  .square-bg::before, .square-bg::after {
    opacity: 0.4;
  }
}
.square-bg::before {
  top: 0;
  left: 0;
  background: url("/i/bg/bg-square-left.webp") left top/contain no-repeat;
}
.square-bg::after {
  bottom: 0;
  right: 0;
  background: url("/i/bg/bg-square-right.webp") right bottom/contain no-repeat;
}
.square-bg.gray::before, .square-bg.gray::after {
  filter: grayscale(1);
}

.section-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 45px;
  color: #F7FBFC;
  margin-bottom: 100px;
  padding: 0 15px;
}
@media (max-width: 576px) {
  .section-title {
    font-size: 35px;
  }
}
@media (max-width: 470px) {
  .section-title {
    font-size: 30px;
    margin-bottom: 60px;
  }
}
.section-title.black {
  color: #000000;
}

.section-subtitle {
  font-size: 40px;
  font-weight: 800;
  color: #541941;
  text-transform: uppercase;
  text-align: center;
  padding: 0 15px;
}
@media (max-width: 576px) {
  .section-subtitle {
    font-size: 30px;
  }
}
@media (max-width: 470px) {
  .section-subtitle {
    font-size: 22px;
  }
}

.animated {
  transition: 0.1s;
}

.promo {
  background-color: #541941;
  color: #F4CEE8;
  padding-bottom: 248px;
}
@media (max-width: 470px) {
  .promo {
    padding-bottom: 120px;
    height: 100svh;
    position: relative;
  }
}
.promo .scroll-down-arrow {
  display: none;
  width: 29px;
  height: 31px;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translate(-50%, 0);
  animation: ease-in-out 2s scrollDownAnimation infinite;
}
@media (max-width: 470px) {
  .promo .scroll-down-arrow {
    display: block;
  }
}
.promo .wrapper {
  max-width: 1160px;
  padding: 0 15px;
  margin: 0 auto;
}
.promo .wrapper .header {
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  justify-content: end;
  padding: 34px 0;
}
@media (max-width: 1200px) {
  .promo .wrapper .header {
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
  .promo .wrapper .header {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .header {
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
  }
}
.promo .wrapper .header .menu {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1200px) {
  .promo .wrapper .header .menu {
    position: unset;
    transform: none;
  }
}
@media (max-width: 768px) {
  .promo .wrapper .header .menu {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .header .menu {
    opacity: 0;
    visibility: hidden;
    width: calc(100% - 30px);
    padding: 70px 70px 20px 20px;
    border-radius: 4px;
    position: absolute;
    left: 50%;
    top: 20px;
    transform: translateX(-50%);
    z-index: 1;
    text-align: left;
    background: transparent;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(155, 47, 90, 0.5);
  }
  .promo .wrapper .header .menu.active {
    opacity: 1;
    visibility: visible;
    transition: 0.1s;
  }
}
.promo .wrapper .header .menu .list {
  list-style-type: none;
  padding: 0;
  display: flex;
}
@media (max-width: 768px) {
  .promo .wrapper .header .menu .list {
    justify-content: center;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .header .menu .list {
    flex-wrap: wrap;
  }
}
.promo .wrapper .header .menu .list .item {
  padding: 0;
  line-height: 28px;
  cursor: pointer;
}
@media (max-width: 470px) {
  .promo .wrapper .header .menu .list .item {
    width: 100%;
    padding: 5px 15px;
    color: #F4CEE8;
    border: 1px solid rgba(251, 240, 247, 0.2);
    border-radius: 4px;
    font-size: 16px;
  }
}
.promo .wrapper .header .menu .list .item::before {
  display: none;
}
.promo .wrapper .header .menu .list .item:not(:last-child) {
  margin-right: 87px;
}
@media (max-width: 768px) {
  .promo .wrapper .header .menu .list .item:not(:last-child) {
    margin-right: 30px;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .header .menu .list .item:not(:last-child) {
    margin: 0 0 10px 0;
  }
}
.promo .wrapper .header .lang {
  display: flex;
}
.promo .wrapper .header .lang.menu-mode {
  transition: 0.1s;
}
@media (max-width: 470px) {
  .promo .wrapper .header .lang.menu-mode {
    z-index: 2;
    padding-left: 20px;
  }
  .promo .wrapper .header .lang.menu-mode .item {
    background-color: #9B2F5A;
    color: #F4CEE8;
    border: none;
  }
  .promo .wrapper .header .lang.menu-mode .item.active {
    background-color: #541941;
  }
}
.promo .wrapper .header .lang .item {
  cursor: pointer;
}
@media (max-width: 470px) {
  .promo .wrapper .header .lang .item {
    background-color: rgba(84, 25, 65, 0.6);
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid rgba(251, 240, 247, 0.15);
    font-size: 18px;
  }
}
.promo .wrapper .header .lang .item:not(:last-child) {
  margin-right: 19px;
}
@media (max-width: 470px) {
  .promo .wrapper .header .lang .item:not(:last-child) {
    margin-right: 10px;
  }
}
.promo .wrapper .header .lang .item.active {
  color: #9B2F5A;
}
.promo .wrapper .header .hamburger {
  display: none;
  width: 50px;
  height: 50px;
  background-color: #9B2F5A;
  border-radius: 4px;
  padding: 13px 10px;
  z-index: 2;
}
.promo .wrapper .header .hamburger span {
  display: block;
  height: 4px;
  background-color: #FBF0F7;
  border-radius: 2px;
  transition: opacity 0.1s, transform 0.1s;
}
.promo .wrapper .header .hamburger span:nth-child(1) {
  margin-bottom: 6px;
  width: 70%;
}
.promo .wrapper .header .hamburger span:nth-child(2) {
  margin-bottom: 6px;
  width: 100%;
}
.promo .wrapper .header .hamburger span:nth-child(3) {
  width: 85%;
}
.promo .wrapper .header .hamburger.active span:nth-child(1) {
  width: 100%;
  transform: rotate(45deg) translate(7px, 7px);
}
.promo .wrapper .header .hamburger.active span:nth-child(2) {
  opacity: 0;
}
.promo .wrapper .header .hamburger.active span:nth-child(3) {
  width: 100%;
  transform: rotate(-45deg) translate(7px, -7px);
}
@media (max-width: 470px) {
  .promo .wrapper .header .hamburger {
    display: block;
  }
}
.promo .wrapper .content {
  text-align: center;
  padding-top: 95px;
}
@media (max-width: 470px) {
  .promo .wrapper .content {
    padding-top: 40px;
  }
}
.promo .wrapper .content .emblem {
  margin-bottom: 17px;
}
@media (max-width: 470px) {
  .promo .wrapper .content .emblem {
    width: 150px;
  }
}
.promo .wrapper .content .title {
  font-size: 58px;
  font-weight: 800;
  text-transform: uppercase;
  color: #F7FBFC;
  margin-bottom: 17px;
}
@media (max-width: 576px) {
  .promo .wrapper .content .title {
    font-size: 40px;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .content .title {
    font-size: 32px;
  }
}
.promo .wrapper .content .subtitle {
  font-size: 50px;
  font-weight: 500;
  margin-bottom: 30px;
}
@media (max-width: 576px) {
  .promo .wrapper .content .subtitle {
    font-size: 34px;
  }
}
@media (max-width: 470px) {
  .promo .wrapper .content .subtitle {
    font-size: 26px;
  }
}
.promo .wrapper .content .text {
  line-height: 28px;
}

.about {
  background: url("/i/bg/bg-gradient.webp") top center/cover repeat;
  padding: 95px 0 75px;
  overflow: hidden;
}
@media (max-width: 470px) {
  .about {
    padding: 75px 0 55px;
  }
}
.about .block {
  background-color: #FFFFFF;
  padding: 80px 75px 65px 92px;
  margin-bottom: 50px;
  line-height: 28px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .about .block {
    padding: 50px 30px;
  }
}
@media (max-width: 470px) {
  .about .block {
    padding: 40px 20px 20px 20px;
    margin-bottom: 20px;
  }
}
.about .block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: url("/i/bg/bg-square-left-small.webp") left top/contain no-repeat;
  width: 300px;
  height: 300px;
  z-index: -1;
}
@media (max-width: 470px) {
  .about .block::before {
    opacity: 0.4;
  }
}
.about .block.block-about {
  padding: 80px 75px 50px 82px;
}
@media (max-width: 768px) {
  .about .block.block-about {
    padding: 60px 40px;
  }
}
@media (max-width: 470px) {
  .about .block.block-about {
    padding: 40px 20px 20px 20px;
  }
}
.about .block.bg-purple {
  background-color: #FBF0F7;
}
.about .block .block-title {
  font-size: 39px;
  color: #000000;
  margin-bottom: 46px;
}
@media (max-width: 768px) {
  .about .block .block-title {
    text-align: center;
  }
}
@media (max-width: 470px) {
  .about .block .block-title {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
.about .block-wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 1200px) {
  .about .block-wrap {
    flex-wrap: wrap;
  }
}
.about .block-wrap .block {
  width: 48%;
  padding: 80px 75px 110px 92px;
}
@media (max-width: 1200px) {
  .about .block-wrap .block {
    width: 100%;
  }
}
@media (max-width: 768px) {
  .about .block-wrap .block {
    padding: 50px 30px;
  }
}
@media (max-width: 470px) {
  .about .block-wrap .block {
    padding: 40px 20px 20px 20px;
  }
}

.activity {
  background-color: #541941;
  padding: 75px 0 152px;
}
@media (max-width: 470px) {
  .activity {
    padding: 75px 0;
  }
}
.activity .wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.activity .wrapper .block {
  background-color: #FBF0F7;
  width: 570px;
  margin-bottom: 75px;
  padding: 70px 100px 78px 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 1300px) {
  .activity .wrapper .block:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media (max-width: 470px) {
  .activity .wrapper .block:not(:last-child) {
    margin-bottom: 20px;
  }
}
@media (max-width: 1300px) {
  .activity .wrapper .block {
    width: 100%;
    margin: 0 45px;
  }
}
@media (max-width: 576px) {
  .activity .wrapper .block {
    padding: 50px;
  }
}
@media (max-width: 470px) {
  .activity .wrapper .block {
    margin: 0;
    padding: 30px;
    overflow: hidden;
  }
}
.activity .wrapper .block::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  background: url("/i/bg/bg-square-right-small.webp") left top/contain no-repeat;
  width: 300px;
  height: 300px;
  z-index: -1;
}
@media (max-width: 470px) {
  .activity .wrapper .block::after {
    opacity: 0.4;
  }
}
.activity .wrapper .block:nth-child(odd) {
  margin-left: 45px;
}
@media (max-width: 470px) {
  .activity .wrapper .block:nth-child(odd) {
    margin-left: 0;
  }
}
.activity .wrapper .block .num {
  width: 135px;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 78px;
  font-weight: 700;
  line-height: 1;
  background-color: #FBF0F7;
  border: 5px solid #9B2F5A;
  border-radius: 50%;
  color: #9B2F5A;
  position: absolute;
  left: -45px;
  top: -40px;
}
@media (max-width: 576px) {
  .activity .wrapper .block .num {
    width: 100px;
    height: 100px;
    font-size: 68px;
  }
}
@media (max-width: 470px) {
  .activity .wrapper .block .num {
    display: none;
  }
}
.activity .wrapper .block .content .title {
  font-size: 39px;
  color: #000000;
  margin-bottom: 43px;
}
@media (max-width: 576px) {
  .activity .wrapper .block .content .title {
    font-size: 34px;
    margin-bottom: 30px;
  }
}
@media (max-width: 470px) {
  .activity .wrapper .block .content .title {
    font-size: 28px;
  }
}
.activity .wrapper .block .content .text {
  padding-left: 28px;
  line-height: 28px;
  position: relative;
}
.activity .wrapper .block .content .text::before {
  content: "";
  width: 12px;
  height: 100%;
  background-color: #D9D9D9;
  position: absolute;
  top: 0;
  left: 0;
}

.contacts {
  background: url("/i/bg/bg-gradient.webp") top center/cover repeat;
  padding: 82px 0 130px;
}
@media (max-width: 470px) {
  .contacts {
    padding: 75px 0;
  }
}
.contacts .section-title {
  margin-bottom: 58px;
}
@media (max-width: 470px) {
  .contacts .section-title {
    margin-bottom: 20px;
  }
}
.contacts .section-subtitle {
  margin-bottom: 75px;
}
@media (max-width: 470px) {
  .contacts .section-subtitle {
    margin-bottom: 50px;
  }
}
.contacts .wrapper {
  max-width: 935px;
  padding: 0 15px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  .contacts .wrapper {
    flex-wrap: wrap;
  }
}
.contacts .wrapper .block {
  background-color: #FFFFFF;
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .contacts .wrapper .block {
    width: 100%;
  }
}
.contacts .wrapper .block.info {
  padding: 33px 78px 36px 38px;
}
@media (max-width: 768px) {
  .contacts .wrapper .block.info {
    margin-bottom: 20px;
    padding: 20px;
  }
}
.contacts .wrapper .block .item {
  display: flex;
  align-items: center;
}
.contacts .wrapper .block .item:not(:last-child) {
  margin-bottom: 25px;
}
.contacts .wrapper .block .item .icon {
  margin-right: 17px;
}
.contacts .wrapper .block .item .text {
  font-size: 21px;
  font-weight: 700;
}
@media (max-width: 470px) {
  .contacts .wrapper .block .item .text {
    font-size: 18px;
  }
}
.contacts .wrapper .block .qr {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.footer {
  padding: 65px 0;
  background-color: #541941;
  font-size: 19px;
  color: #F4CEE8;
}
@media (max-width: 576px) {
  .footer {
    font-size: 16px;
    padding: 40px 0;
  }
}
.footer .wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 576px) {
  .footer .wrapper {
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
  }
  .footer .wrapper .copyright {
    width: 100%;
    margin-bottom: 20px;
  }
}

@keyframes scrollDownAnimation {
  from {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  to {
    transform: translate(-50%, 0);
  }
}
