@font-face {
  font-family: "Mulish";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Mulish/Mulish-Regular.woff2") format("woff2"), url("../fonts/Mulish/Mulish-Regular.woff") format("woff");
}
@font-face {
  font-family: "Everlasting";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Everlasting/Everlasting.woff2") format("woff2"), url("../fonts/Everlasting/Everlasting.woff") format("woff");
}
.content {
  position: relative;
  z-index: 5;
  overflow: visible;
  padding: 0 15px;
}

.footer {
  position: relative;
  z-index: 5;
  margin-top: -20px;
  background: #CB4632;
  border-radius: 40px 40px 0 0;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .footer {
    padding-top: 30px;
    border-radius: 30px 30px 0 0;
  }
}
@media screen and (max-width: 765px) {
  .footer {
    padding-top: 30px;
    border-radius: 30px 30px 0 0;
  }
}
.footer__list {
  display: flex;
  gap: 24px;
  flex-direction: column;
  font-size: 16px;
}
.footer__list-item {
  font-family: Mulish;
  font-weight: 400;
}
@media screen and (max-width: 765px) {
  .footer__list {
    gap: 20px;
  }
}
.footer__list a {
  color: #FFF;
}

.wrapper {
  overflow: hidden;
  position: relative;
  background: linear-gradient(180deg, #FFFAEC 5.77%, #DFD6CB 53.37%, #F1F0EC 98.08%);
  padding-top: 0;
}

.section-wrapper {
  max-width: 1260px;
  box-sizing: content-box;
  margin: 0 auto;
}

.section {
  margin-bottom: 60px;
}
.section:last-child {
  margin-bottom: 90px;
}

.pagination {
  padding-bottom: 0;
}
.pagination__item {
  font-weight: 500;
}
.pagination__item:hover {
  color: #000;
}
.pagination__item.active {
  background-color: #CB4632;
}
@media screen and (max-width: 765px) {
  .pagination button {
    width: 100%;
  }
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 765px) {
  .mobile-hide {
    display: none;
  }
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
[class*=srr-icon-] {
  display: inline-block;
  vertical-align: middle;
}

.logo {
  margin-right: 32px;
}
.logo img {
  width: 52px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .logo {
    margin: 0 0 32px 0;
  }
}
@media screen and (max-width: 765px) {
  .logo {
    margin: 0 0 32px 0;
  }
}

.menu-nav {
  gap: 32px;
  height: auto;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .menu-nav {
    display: block;
  }
}
@media screen and (max-width: 765px) {
  .menu-nav {
    display: block;
  }
}
.menu-nav__link {
  color: #9E1804;
  font-family: Mulish;
  font-size: 16px;
  text-transform: none;
}
.menu-nav__link:hover {
  color: #9E1804;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .menu-nav__link {
    justify-content: center;
    font-size: 24px;
    color: #CB4632;
  }
}
@media screen and (max-width: 765px) {
  .menu-nav__link {
    justify-content: center;
    font-size: 24px;
    color: #CB4632;
  }
}

.x-mobile-menu-opened {
  overflow: hidden;
}

.header {
  background: transparent;
  box-shadow: none;
  position: absolute;
  margin-top: 30px;
  z-index: 130;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .header__wrapper {
    display: none;
  }
  .x-mobile-menu-opened .header__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(238, 236, 231, 0.95);
  }
}
@media screen and (max-width: 765px) {
  .header__wrapper {
    display: none;
  }
  .x-mobile-menu-opened .header__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(238, 236, 231, 0.95);
  }
}

.srr-burger {
  margin-left: auto;
  min-width: 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #F8F8F8;
  align-items: center;
  padding: 0;
  box-sizing: unset;
  cursor: pointer;
  position: relative;
  right: 0;
  bottom: auto;
  z-index: 6;
  flex-direction: column;
  justify-content: center;
  display: none;
}
.srr-burger:after, .srr-burger:before,
.srr-burger i {
  content: "";
  display: block;
  background: #CB4632;
  width: 28px;
  height: 2px;
  transition: all 0.1s ease-in-out;
  border-radius: 2px;
  margin: 3px 0;
}
.srr-burger i {
  display: none;
  position: relative;
  margin: 6px 0;
}
.srr-burger.x-burger-active {
  z-index: 155;
}
.srr-burger.x-burger-active:after {
  transform: rotate(45deg);
  margin-top: -5px;
}
.srr-burger.x-burger-active:before {
  transform: rotate(-45deg);
}
.srr-burger.x-burger-active i {
  display: none;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-burger {
    display: flex;
  }
}
@media screen and (max-width: 765px) {
  .srr-burger {
    display: flex;
  }
}
.srr-like {
  cursor: pointer;
  display: flex;
  gap: 2px;
  border-radius: 40px;
  border: 1px solid #CB4632;
  background: #F8F8F8;
  align-items: center;
  box-sizing: border-box;
}
.srr-like-count {
  padding-right: 8px;
  color: #CB4632;
  font-family: Mulish;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
}
.srr-like .srr-icon-like {
  margin: -1px;
}
.srr-icon-arrow-left {
  width: 26px;
  height: 26px;
  background: url("../images/icon-arrow-left.svg") 50% 50% no-repeat;
  background-size: contain;
}
.srr-icon-arrow-right {
  width: 26px;
  height: 26px;
  background: url("../images/icon-arrow-left.svg") 50% 50% no-repeat;
  background-size: contain;
  transform: rotate(180deg);
}
.srr-icon-share {
  width: 20px;
  height: 20px;
  background: url("../images/icon-share.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-icon-vk {
  width: 20px;
  height: 20px;
  background: url("../images/icon-vk.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-icon-ok {
  width: 20px;
  height: 20px;
  background: url("../images/icon-ok.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-icon-tg {
  width: 20px;
  height: 20px;
  background: url("../images/icon-tg.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-icon-like {
  width: 36px;
  height: 36px;
  background: url("../images/icon-like.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-icon-like-active {
  width: 36px;
  height: 36px;
  background: url("../images/icon-like-active.svg") 50% 50% no-repeat;
  background-size: contain;
  min-width: 20px;
}
.srr-title {
  color: #CB4632;
  font-family: "Everlasting";
  font-size: 55px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 44px */
  text-transform: uppercase;
  margin-bottom: 20px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-title {
    font-size: 38px;
  }
}
@media screen and (max-width: 765px) {
  .srr-title {
    font-size: 30px;
  }
}
.srr-text {
  color: #444;
  font-family: "Mulish";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 22.5px */
}
@media screen and (max-width: 765px) {
  .srr-text {
    font-size: 16px;
  }
}
.srr-overflow {
  overflow: hidden;
  overflow-y: auto;
  padding-left: 0;
}
.srr-overflow::-webkit-scrollbar {
  background-color: transparent;
  width: 5px;
  background-color: #e0e0e0;
  border-radius: 5px;
}
.srr-overflow::-webkit-scrollbar-button {
  display: none;
}
.srr-overflow::-webkit-scrollbar-thumb {
  background-color: #CCC;
  border-radius: 5px;
}
.srr-overflow::-webkit-scrollbar-track {
  display: none;
}
.srr-overflow::-webkit-scrollbar-track-piece {
  display: none;
}
.srr-overflow::-webkit-scrollbar-corner {
  display: none;
}

.srr-block {
  margin-bottom: 50px;
}

.srr-x-modal-opened {
  overflow: hidden;
}
.srr-x-modal-opened .content {
  min-height: 740px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-x-modal-opened .content {
    min-height: 696px;
  }
}
@media screen and (max-width: 765px) {
  .srr-x-modal-opened .content {
    min-height: 720px;
  }
}
.srr-x-modal-fade:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 90;
  background: rgba(0, 0, 0, 0.55);
}

.srr-button__default {
  border-radius: 100px;
  border: 1px solid #CB4632;
  background: #FFF;
  color: #CB4632;
  height: 36px;
  padding: 8px 24px;
  font-family: "Mulish";
  font-size: 18px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%; /* 33px */
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 10;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
.srr-button__default:hover {
  background: #CB4632;
  color: #FFF;
}
@media screen and (max-width: 765px) {
  .srr-button__default {
    height: 36px;
  }
}
.srr-button__accent {
  border-radius: 100px;
  border: transparent;
  background: #CB4632;
  color: #FFF;
  height: 67px;
  padding: 12px 32px;
  font-family: "Mulish";
  font-size: 24px;
  font-style: normal;
  font-weight: 800;
  line-height: 110%; /* 33px */
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 10;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: all 0.1s ease-in-out;
}
@media screen and (max-width: 765px) {
  .srr-button__accent {
    height: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.srr-popup-title {
  font-size: 30px;
  font-style: normal;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 765px) {
  .srr-popup-title {
    font-size: 20px;
  }
}
.srr-popup-text {
  color: #000106;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
}
@media screen and (max-width: 765px) {
  .srr-popup-text {
    font-size: 16px;
  }
}
.srr-popup-control {
  width: 100%;
  display: flex;
  margin-top: 30px;
}
.srr-popup-control .btn {
  flex: 1;
}
.srr-label {
  background: url(../images/header-cloud.svg) 50% 50% no-repeat;
  background-size: 100% 100%;
  padding: 23px;
  width: 298.86px;
  min-height: 115.526px;
  text-align: center;
  transform: rotate(-5.626deg);
}
.srr-label-text {
  color: #CB4632;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Everlasting;
  font-size: 26.119px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%; /* 26.119px */
  text-transform: uppercase;
}
.srr-tag-reality {
  width: 75.031px;
  height: 17.841px;
  background: url(../images/tag-reality.png) 50% 50% no-repeat;
  background-size: cover;
  display: inline-block;
}
.srr-shares {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  width: 38px;
  height: 38px;
  border-radius: 50px;
  border-radius: 40px;
  background: #F8F8F8;
  border: 1px solid #CB4632;
}
.srr-shares-list {
  display: none;
}
.srr-shares:hover {
  width: auto;
  padding: 0 12px;
}
.srr-shares:hover .srr-icon-share {
  display: none;
}
.srr-shares:hover .srr-shares-list {
  display: block;
}
.srr-main {
  position: relative;
  margin-bottom: 50px;
  margin-left: -15px;
  margin-right: -15px;
}
.srr-main .section-wrapper {
  background: #D6CCC0 url(../images/header-top.png) 50% 50% no-repeat;
  background-size: cover;
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  height: 700px;
  padding-top: 120px;
  border-radius: 0 0 40px 40px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-main .section-wrapper {
    height: 768px;
    border-radius: 0 0 30px 30px;
    background-position: calc(50% + 20px) -30px;
    background-size: auto 970px;
  }
}
@media screen and (max-width: 765px) {
  .srr-main .section-wrapper {
    padding-top: 39px;
    height: 634px;
    border-radius: 0 0 30px 30px;
    background-position: calc(50% - 90px) calc(100% - 0px);
    background-size: auto 359px;
  }
  .srr-main .section-wrapper:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    right: 0;
    bottom: 45%;
    background: #B9AFA2;
    background: linear-gradient(0deg, rgba(185, 175, 162, 0) 0%, rgb(185, 175, 162) 20%, rgb(185, 175, 162) 100%);
  }
  .srr-main .section-wrapper:after {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    left: calc(50% + 195px);
    top: 0;
    right: -200px;
    bottom: 0;
    background: #D6CCC0;
    background: linear-gradient(90deg, rgba(214, 204, 192, 0) 0%, rgb(214, 204, 192) 12%, rgb(214, 204, 192) 100%);
    border-radius: 0 0 30px 0;
  }
}
.srr-main .srr-label {
  position: absolute;
  z-index: 3;
  right: 110px;
  bottom: 50px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-main .srr-label {
    right: 40px;
    bottom: 30px;
  }
}
@media screen and (max-width: 765px) {
  .srr-main .srr-label {
    right: calc(50% - 150px);
    bottom: -20px;
  }
}
.srr-main-content {
  position: relative;
  z-index: 1;
  width: 458px;
  margin-right: 53%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-main-content {
    margin-left: 50px;
    margin-right: auto;
  }
}
@media screen and (max-width: 765px) {
  .srr-main-content {
    width: auto;
    margin-right: 0;
    padding-left: 15px;
    padding-right: 15px;
  }
  .srr-main-content .srr-main-control {
    margin-top: 6px;
  }
}
.srr-main-logo {
  width: 458px;
  height: 281px;
  background: url("../images/title.png") 50% 50% no-repeat;
  background-size: contain;
  text-indent: -10000px;
  margin-bottom: 17px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-main-logo {
    width: 418px;
    height: 256px;
    margin-bottom: 14px;
  }
}
@media screen and (max-width: 765px) {
  .srr-main-logo {
    width: 242px;
    height: 149px;
    margin-bottom: 10px;
  }
}
.srr-main-text {
  color: #2F2B29;
  text-align: center;
  font-family: Mulish;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 26.389px;
}
@media screen and (max-width: 765px) {
  .srr-main-text {
    font-size: 18px;
  }
}
.srr-main-control {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}
.srr-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 17px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-list {
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 765px) {
  .srr-list {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}
.srr-list-item {
  border-radius: 20px;
  background: #FFF;
  padding: 27px;
  box-shadow: 0px 0px 20px 0px rgba(13, 119, 135, 0.2);
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 0.5;
  height: 418px;
}
.srr-list-item__paper {
  background: url("../images/media-item-bg.png") 50% 0px;
  background-size: 100% 100%;
  border-radius: 0;
  box-shadow: none;
}
.srr-list-item__title {
  color: #2F2B29;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Everlasting;
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.srr-list-item__text {
  color: #2F2B29;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Mulish;
  font-size: 24.512px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  display: -webkit-box;
  -webkit-line-clamp: 9;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-list-item__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 765px) {
  .srr-list-item__text {
    font-size: 18px;
  }
}
.srr-list-item__control {
  margin-top: auto;
  display: flex;
  gap: 10px;
}
.srr-list-item__control button {
  flex: 1;
}
.srr-how-list {
  display: flex;
  flex-flow: wrap row;
  gap: 20px;
}
.srr-how-list-item {
  display: flex;
  align-items: center;
  gap: 35px;
  border: 2.962px solid #CB4632;
  background: #FFF;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 240px;
  flex: 0.5;
  position: relative;
  border-radius: 29.624px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-how-list-item {
    min-height: 139px;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item {
    min-height: 139px;
    padding-right: 20px;
    padding-left: 20px;
    gap: 20px;
  }
}
.srr-how-list-item:nth-child(1)::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background: url(../images/arrow.svg);
  background-size: contain;
  position: absolute;
  z-index: 1;
  right: -75px;
  top: calc(50% - 60px);
}
@media screen and (max-width: 765px) {
  .srr-how-list-item:nth-child(1)::after {
    right: 0;
    top: calc(100% - 30px);
    transform: rotate(100deg);
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item:nth-child(1) {
    flex: 1;
    min-width: 100%;
  }
}
.srr-how-list-item:nth-child(2)::after {
  content: "";
  display: block;
  width: 120px;
  height: 120px;
  background: url(../images/arrow.svg);
  background-size: contain;
  transform: scaleX(-1) rotate(70deg);
  position: absolute;
  z-index: 1;
  left: 55px;
  top: calc(100% - 40px);
}
@media screen and (max-width: 765px) {
  .srr-how-list-item:nth-child(2)::after {
    width: 100px;
    height: 100px;
    left: 20px;
    transform: scaleX(-1) rotate(90deg);
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item:nth-child(2) {
    flex: 1;
    min-width: 100%;
  }
}
.srr-how-list-item:nth-child(3) {
  flex: 1;
  min-width: 100%;
}
.srr-how-list-item:nth-child(3)::after {
  content: "";
  display: block;
  width: 450px;
  height: 100%;
  background: url(../images/rules-block.png) 100% 0px no-repeat;
  background-size: contain;
  z-index: 1;
  right: 0;
  top: 0;
  margin-right: -40px;
  border-radius: 0 28px 28px 0;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-how-list-item:nth-child(3)::after {
    width: 260px;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item:nth-child(3)::after {
    display: none;
  }
}
.srr-how-list-item__numb {
  color: #CB4632;
  text-align: center;
  font-variant-numeric: lining-nums proportional-nums;
  font-family: Everlasting;
  font-size: 200px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 220px */
  text-transform: uppercase;
  padding-bottom: 4px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-how-list-item__numb {
    font-size: 120px;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item__numb {
    font-size: 120px;
  }
}
.srr-how-list-item__text {
  color: #2F2B29;
  font-family: Mulish;
  font-size: 23.7px;
  font-style: normal;
  font-weight: 500;
  line-height: 27.897px;
  flex: 1;
  padding-bottom: 5px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-how-list-item__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-item__text {
    font-size: 18px;
  }
}
.srr-how-list-control {
  flex: 1;
  min-width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-how-list-control button {
    flex: 1;
  }
}
@media screen and (max-width: 765px) {
  .srr-how-list-control button {
    flex: 1;
  }
}
.srr-paginator {
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
.srr-paginator-item {
  width: 43px;
  height: 43px;
  display: block;
  color: #444444;
  font-family: "Mulish";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 125%; /* 22.5px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.1s ease-in-out;
}
.srr-paginator-item:hover {
  color: #F20038;
}
.srr-paginator-item-active {
  background: #02B0C4;
  color: #FFF;
}
.srr-paginator-item-active:hover {
  color: #FFF;
}
.srr-paginator-item-way {
  width: auto;
}

.srr-popup {
  position: fixed;
  white-space: nowrap;
  text-align: center;
  overflow: auto;
  max-height: 100%;
  z-index: 150;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  padding: 60px 0;
  box-sizing: border-box;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-popup {
    display: block;
  }
}
@media screen and (max-width: 765px) {
  .srr-popup {
    display: block;
  }
}
.srr-popup-loader {
  z-index: 9;
}
.srr-popup-loader-counter {
  margin-top: 20px;
  color: #FFF;
  text-align: center;
}
.srr-popup .srr-list-item__title {
  margin-bottom: 10px;
}
.srr-popup .srr-list-item__text {
  flex: auto;
  font-size: 20px;
  display: -webkit-box;
  -webkit-line-clamp: none;
  -webkit-box-orient: vertical;
  overflow: hidden;
  overflow: visible;
}
.srr-popup .srr-list-item__control {
  margin-top: 20px;
  display: flex;
  justify-content: flex-end;
}
.srr-popup-window {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  vertical-align: middle;
  white-space: normal;
  text-align: left;
  background: #FFF;
  box-sizing: border-box;
  background: #FFFFFF;
  box-sizing: border-box;
  margin: auto 0;
  border-radius: 40px;
  box-shadow: -66px 46px 23px 0 rgba(171, 168, 160, 0), -42px 29px 21px 0 rgba(171, 168, 160, 0.01), -24px 16px 17px 0 rgba(171, 168, 160, 0.05), -11px 7px 13px 0 rgba(171, 168, 160, 0.09), -3px 2px 7px 0 rgba(171, 168, 160, 0.1);
}
.srr-popup-m .srr-popup-window {
  width: 900px;
  padding: 40px;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-popup-m .srr-popup-window {
    font-size: 12px;
    width: 100%;
  }
}
@media screen and (max-width: 765px) {
  .srr-popup-m .srr-popup-window {
    font-size: 11px;
    width: 100%;
    padding: 37px 20px 20px;
  }
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-popup-window .button {
    font-size: 13px;
    height: 40px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 765px) {
  .srr-popup-window .button {
    font-size: 12px;
    height: 40px;
    padding: 0 16px;
  }
}
.popup-loader .srr-popup-window {
  width: auto;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.srr-popup-window .text {
  font-size: 16px;
  font-weight: 400;
  text-align: left;
}
.srr-popup-window .text a {
  color: #000;
  text-decoration: underline;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-popup-window .text {
    font-size: 12px;
  }
}
@media screen and (max-width: 765px) {
  .srr-popup-window .text {
    font-size: 11px;
  }
}
.srr-popup-block {
  margin-bottom: 20px;
}
.srr-popup-close {
  position: absolute;
  z-index: 100;
  left: calc(100% + 10px);
  top: 0;
  cursor: pointer;
  border-radius: 50%;
  display: block;
}
.srr-popup-close:after {
  content: "";
  display: block;
  width: 36px;
  height: 36px;
  background: url("../images/icon-close-cl.svg") 50% 50% no-repeat;
  background-size: contain;
  background-size: contain;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-popup-close {
    left: auto;
    bottom: calc(100% + 10px);
    right: 0;
    top: auto;
  }
}
@media screen and (max-width: 765px) {
  .srr-popup-close {
    right: 0;
    left: auto;
    bottom: calc(100% + 10px);
    top: auto;
  }
}
.srr-popup-frame {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.srr-popup .form-field__input,
.srr-popup .form-field__textarea {
  border-radius: 29px;
  border-color: #FF91A1;
  font-weight: 400;
}
.srr-popup .form-field__textarea {
  border-radius: 10px;
  border-color: #FF91A1;
  min-height: 56px;
}
.srr-popup .btn {
  border-radius: 26px;
  background: linear-gradient(88deg, #EC1A3A 0%, #DD0063 100%);
  box-shadow: 0 0 10.417px 0 rgba(13, 119, 135, 0.1);
}
.srr-popup .btn:hover {
  background: linear-gradient(88deg, #DA072E 0%, #C60066 100%);
  box-shadow: 0 0 10.417px 0 rgba(13, 119, 135, 0.1);
}
.srr-popup .srr-list-item__title {
  color: #21212C;
  font-family: Mulish;
  font-size: 40px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 20px;
}
.srr-popup-sorry .srr-list-item__title {
  color: #2F2B29;
  font-family: Everlasting;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 5px;
}
.srr-popup-sorry .srr-list-item__text {
  font-size: 18px;
  line-height: 28px;
}
.srr-popup .form-field__label,
.srr-popup .form-input label {
  color: #21212C;
  font-family: Mulish;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
}
.srr-popup .inputCheckbox input + label:before,
.srr-popup .inputRadio input + label:before {
  border-color: #EC1A3A;
}
.srr-popup .inputCheckbox input:checked + label:before {
  background-color: #EC1A3A;
}
.srr-popup .popup__inner {
  height: auto;
  overflow: visible;
}

.x-modal-opened {
  overflow: hidden;
}
.x-modal-fade:after {
  content: "";
  display: block;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  position: fixed;
  z-index: 149;
  background: rgba(238, 236, 231, 0.9);
}
.x-modal-loader:after {
  z-index: 8;
}

.srr-x-popup {
  position: fixed;
  white-space: nowrap;
  text-align: center;
  overflow: auto;
  max-height: 100%;
  z-index: 151;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  padding: 150px 0 90px;
}
.srr-x-popup-window {
  position: relative;
  display: flex;
  flex-direction: column;
  vertical-align: middle;
  white-space: normal;
  text-align: left;
  box-sizing: border-box;
  margin: 10px 0;
  border-radius: 15px;
  background: #FFF;
  padding: 45px 20px;
  width: 620px;
  min-height: 220px;
  margin: auto;
}
.srr-x-popup-window .srr-content-footer {
  margin-top: 0;
}
@media screen and (max-width: 765px) {
  .srr-x-popup-window {
    width: 95%;
  }
  .srr-x-popup-window-pic {
    margin: -119px 20px 50px;
    min-height: 282px;
  }
}
.x-popup-gallery .srr-x-popup-window {
  max-width: 960px;
}
.srr-x-popup-view .srr-x-popup-window {
  background: transparent;
  display: flex;
  padding: 0;
  gap: 20px;
  width: auto;
  flex-direction: row;
  height: 473px;
}
.srr-x-popup-view .srr-x-popup-window-media {
  flex: 1;
  background: linear-gradient(98deg, #F20038 3.64%, #FF572D 54.07%, #F20038 105.51%), #EB0036;
  width: 840px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  border-radius: 15px;
}
.srr-x-popup-view .srr-x-popup-window-media img {
  max-width: 100%;
  max-height: 100%;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
.srr-x-popup-view .srr-x-popup-window-wrapper {
  border-radius: 15px;
  background: var(--white, #FFF);
  box-shadow: 2px 6px 5px 0px rgba(115, 30, 30, 0.4);
  padding: 20px;
  width: 400px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.srr-x-popup-view .srr-x-popup-window .srr-popup-footer {
  margin-top: auto;
  padding-top: 15px;
  display: flex;
  align-items: center;
}
.srr-x-popup-view .srr-x-popup-window .srr-popup-footer .srr-alt {
  margin-left: auto;
}
.srr-x-popup-view .srr-x-popup-window .srr-text {
  text-shadow: none;
  color: #444;
  font-family: "Mulish";
  font-size: 18px;
  font-weight: 400;
}
.srr-x-popup-view .srr-x-popup-window .srr-x-popup-close {
  top: auto;
  right: -7px;
  bottom: 100%;
}
@media screen and (min-width: 767px) and (max-width: 1259px) {
  .srr-x-popup-view .srr-x-popup-window {
    height: auto;
    flex-direction: column;
  }
  .srr-x-popup-view .srr-x-popup-window .srr-x-popup-close {
    right: 8px;
  }
  .srr-x-popup-view .srr-x-popup-window-media {
    width: calc(100% - 30px);
    margin: 0 auto;
  }
  .srr-x-popup-view .srr-x-popup-window-media img {
    height: 415px;
  }
  .srr-x-popup-view .srr-x-popup-window-wrapper {
    margin: 0 auto;
    width: calc(100% - 30px);
  }
}
@media screen and (max-width: 765px) {
  .srr-x-popup-view .srr-x-popup-window {
    height: auto;
    flex-direction: column;
    gap: 15px;
  }
  .srr-x-popup-view .srr-x-popup-window .srr-x-popup-close {
    right: 5px;
    width: 30px;
    height: 30px;
  }
  .srr-x-popup-view .srr-x-popup-window .srr-text {
    font-size: 14px;
  }
  .srr-x-popup-view .srr-x-popup-window-media {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  .srr-x-popup-view .srr-x-popup-window-media img {
    max-width: 100%;
    max-height: 500px;
  }
  .srr-x-popup-view .srr-x-popup-window-wrapper {
    margin: 0 auto;
    width: calc(100% - 20px);
  }
}
.srr-x-popup-papers .srr-x-popup-window {
  background: url(../images/papers.png) 0px 0px no-repeat;
  width: 758px;
  height: 673px;
  display: flex;
  padding: 70px 145px 0 93px;
}
.srr-x-popup-papers .srr-x-popup-window .srr-x-popup-close {
  top: auto;
  right: 53px;
  bottom: 100%;
}
@media screen and (max-width: 765px) {
  .srr-x-popup-papers .srr-x-popup-window {
    background: url(../images/papers-mobile.png) 50% 0px no-repeat;
    width: 100%;
    height: 923px;
    display: flex;
    padding: 70px 15px 0 15px;
  }
  .srr-x-popup-papers .srr-x-popup-window .srr-x-popup-window-wrapper {
    max-width: 670px;
    margin: 0 auto;
  }
  .srr-x-popup-papers .srr-x-popup-window .srr-x-popup-close {
    right: 5px;
    bottom: calc(100% - 20px);
    width: 30px;
    height: 30px;
  }
  .srr-x-popup-papers .srr-x-popup-window .srr-overflow {
    height: 630px;
  }
  .srr-x-popup-papers .srr-x-popup-window .srr-article .srr-overflow {
    height: 790px;
  }
}
.srr-x-popup-papers .srr-overflow {
  height: 410px;
}
.srr-x-popup-papers .srr-contest-list {
  width: 100%;
}
.srr-x-popup-papers .srr-contest-list-item {
  width: 150px;
}
.srr-x-popup-papers .srr-contest-list .srr-counter {
  padding: 7.5px;
  font-size: 9px;
  height: 28px;
  right: 7.5px;
  bottom: 7.5px;
}
.srr-x-popup-papers .srr-contest-list .srr-counter [class*=icon] {
  width: 13px;
  height: 13px;
}
.srr-x-popup-close {
  position: absolute;
  z-index: 100;
  right: 15px;
  top: 15px;
  cursor: pointer;
  width: 50px;
  height: 51px;
  background: url("../images/icon-close.svg") 50% 50% no-repeat;
  background-size: contain;
  transition: all 0.1s ease-in-out;
}
.srr-x-popup-close:hover {
  background-image: url(../images/icon-close-hover.svg);
}