* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  -webkit-overflow-scrolling: touch;
}
html {
  font-size: 16px;
}

body * {
  outline: none !important;
}

body {
  background: #27a8bf;
  font-family: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: auto;
  line-height: 1.5;
  color: #000;
  min-width: 320px;
  padding: 0;
  margin: 0;
  font-size: 19px;
}

body._loading {
  pointer-events: none;
  user-select: none;
  opacity: 0.6;
}

html,
body,
.b-page {
  min-height: 100vh;
}
hr {
  border: 1px solid #eee;
}

.b-page {
  background: url(sun.png) 50% 0 no-repeat;
  background-attachment: fixed;
  width: 100%;
  /* height: 100%; */
  /* height: 100vh; */
  min-height: 100dvh;
  padding: 20px 0 50px 0;
}

.b-page-header {
  background: url(header-siluets.png) 0px 0px no-repeat;
  background-size: contain;
  width: 342px;
  min-height: 141px;
  margin: 0 auto;
  padding-top: 50px;
}
@media (max-width: 480px) {
  .b-page-header {
    background: none;
    padding-top: 0;
  }
}

.b-page-header__logo {
  background: url(logo-big.png) 0px 0px no-repeat;
  background-size: contain;
  width: 260px;
  height: 70px;
  margin: 0 auto;
}

.b-page-content {
  background: #fff;
  box-shadow: 0 0 110px rgba(0, 0, 0, 0.25);
  border-radius: 25px;
  border: 10px solid #48b2c5;
  padding: 50px 70px;
  max-width: 768px;
  min-height: 300px;
  margin: 0 auto;
  text-align: center;
}

.b-page-content__title {
  margin-top: 0;
  margin-bottom: 30px;
  color: #eb15b0;
  line-height: 1.2;
  font-size: 1.6rem;
}

.b-page-content__action {
  margin-top: 33px;
  margin-bottom: 43px;
}

.b-page-content__btn {
  background: #eb15b0;
  border-radius: 36px;
  /* box-shadow: 0 0px 25px rgb(235 21 176 / 49%); */
  color: #fff;
  font-weight: bold;
  font-size: 0.85rem;
  line-height: 20px;
  width: 100%;
  max-width: 9rem;
  text-align: center;
  padding: 0.6rem 0.8rem;
  text-decoration: none;
  display: inline-block;
  border: 0;
  cursor: pointer;
}
._slp .b-page-content__btn {
  /* background: #27a8bf; */
}
._sf .b-page-content__btn {
  /* background: #1c68d2; */
}
.b-page-content__btn:hover {
  background: #d4139f;
  color: #fff;
}

.b-page-content__signature {
  font-size: 14px;
}

.b-page-content__signature p:last-of-type {
  margin-bottom: 0;
}

/* МОБИЛЬНАЯ АДАПТАЦИЯ */

@media (max-width: 480px) {
  body {
    font-size: 15px;
  }
  .b-page {
    height: auto;
    padding: 10px;
  }

  .b-page-content {
    padding: 30px;
    border: 0;
  }
}

@media (max-width: 480px) {
  .b-page-header {
    width: 280px;
    min-height: 65px;
  }

  .b-page-header__logo {
    width: 180px;
    height: 49px;
  }
}

@media (max-width: 340px) {
  .b-page-header {
    width: 260px;
    min-height: 107px;
  }

  .b-page-content__btn {
    padding: 15px 40px;
  }

  .b-page-content {
    padding: 20px;
  }
}

/* ----- КАРТОЧКИ РЕСУРСОВ (b-items) ----- */

.b-items {
  display: flex;
  flex-direction: column;
  gap: 45px;
  margin-top: 45px;
}

@media (max-width: 480px) {
  .b-items {
    display: flex;
    flex-direction: column;
    gap: 35px;
    margin-top: 35px;
  }
}

.b-items__item {
  background: #ffffff;
  /* color: white; */
  /* font-size: .9rem; */
  border-radius: 20px;
  padding: 30px;
  text-align: left;
  /* box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12); */
  display: flex;
  flex-direction: column;
  /* align-items: flex-start; */
  /* gap: 15px; */
  opacity: 0;
  transform: translateY(20px);
  animation: cardFadeIn 0.6s ease forwards;
}

.b-items__item._sf {
  /* background: #1c68d2; */
  /* color: #1c68d2; */
  border: 3px solid #1c68d2;
}

.b-items__item._slp {
  /* background: #27a8bf; */
  /* color: #27a8bf; */
  border: 3px solid #27a8bf;
}

/* задержка появления карточек */
.b-items__item:nth-child(1) {
  animation-delay: 0.1s;
}
.b-items__item:nth-child(2) {
  animation-delay: 0.25s;
}
.b-items__item:nth-child(3) {
  animation-delay: 0.4s;
}

.b-items__item img {
  width: 50px;
  height: auto;
  display: block;
  /* margin-bottom: 10px; */
}

/* hover эффект */
.b-items__item:hover {
  transform: translateY(-5px);
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2); */
  transition: 0.25s ease;
}

/* анимация появления */
@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.b-items__item-logo {
  border-radius: 50%;
  border: 0px solid white;
  position: absolute;
  top: -20px;
  left: -20px;
}
@media (max-width: 480px) {
  .b-items__item {
    padding: 25px 20px;
  }

  .b-items__item img {
    width: 35px;
  }
  .b-items__item-logo {
    top: -15px;
    left: -15px;
  }
}
.b-items__item-logo-inner {
  border-radius: 50%;
  background-color: white;
  /* width: 80px;
    height: 80px;
    align-items: center; */
  display: flex;
  justify-content: center;
  /* border: 5px solid #27a8bf; */
}

._slp .b-items__item-logo-inner {
  /* background-color: #2294a7; */
  background-color: #27a8bf;
  border: 10px solid #27a8bf;
}

._sf .b-items__item-logo-inner {
  /* background-color: #135abd; */
  background-color: #1c68d2;
  border: 10px solid #1c68d2;
}

.b-items__item-content {
  margin-left: 30px;
  margin-top: -15px;
}
.b-items__item-footer {
  margin-left: 30px;
}
