@charset "UTF-8";
/* = Nulled style = */
* {
  padding: 0;
  margin: 0;
  border: 0;
}

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

:focus, :active {
  outline: none;
}

a:focus, a:active {
  outline: none;
}

nav, footer, header, aside {
  display: block;
}

html, body {
  height: 100%;
  width: 100%;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

input, button, textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
}

/* Пример вызова данного миксина:
@include adaptive-value("padding", 50, 20, 0);
где:
"padding" - это свойство, которое нужно задать
50 - это изначальное, макетное значение (будь то ширина, размер шрифта, отступ и т.д.)
20 - это минимально допустимое значение, которое данное свойство может принять
0 - это цифровое значение, которое укажет, как миксин должен работать (значение по умолчанию. Его можно и НЕ указывать!) */
body._lock {
  overflow: hidden;
}

.menu__icon {
  display: none;
}

@media (max-width: 48.06125em) {
  .menu__icon {
    position: relative;
    z-index: 12;
    display: block;
    width: 1.875rem;
    height: 1.125rem;
    cursor: pointer;
    margin-right: 0.9375rem;
    margin-top: 0.75rem;
    margin-left: 0.3125rem;
  }
  .menu__icon span, .menu__icon::before, .menu__icon::after {
    left: 0;
    position: absolute;
    height: 10%;
    width: 100%;
    transition: all 0.3s ease 0s;
  }
  .menu__icon::before, .menu__icon::after {
    content: "";
  }
  .menu__icon::before {
    top: 0;
  }
  .menu__icon::after {
    bottom: 0;
  }
  .menu__icon span {
    top: 50%;
    transform: scale(1) translate(0px, -50%);
  }
  .menu__icon._active span {
    transform: scale(0) translate(0px, -50%);
  }
  .menu__icon._active::before {
    top: 50%;
    transform: rotate(-45deg) translate(0px, -50%);
  }
  .menu__icon._active::after {
    bottom: 50%;
    transform: rotate(45deg) translate(1px, 50%);
  }
  .menu__body {
    position: fixed;
    z-index: 10;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: rgba(230, 230, 230, 0.9);
    padding: 6.25rem 1.875rem 1.875rem 1.875rem;
    transition: left 0.3s ease 0s;
    overflow: auto;
    /*&::before {
    	content: "";
    	position: fixed;
    	width: 100%;
    	top: 0;
    	left: 0;
    	height: rem(70);
    	background-color: #912105;
    	z-index: 2;
    }*/
  }
  .menu__body._active {
    left: 0;
  }
  .menu__list {
    flex-direction: column;
  }
  .menu__list > li {
    flex-wrap: wrap;
    margin: 0rem 0rem 1.875rem 0rem;
  }
  .menu__list > li:last-child {
    margin: 0rem 0rem 0rem 0rem;
  }
  .menu__link {
    font-size: 1.5rem;
  }
}
.header {
  background-color: #000C36;
  color: #fff;
}
@media screen and (max-width: 48.06125em) {
  .header {
    position: relative;
    z-index: 10;
  }
}

.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 1px;
  padding-left: 52px;
}
@media (max-width: 1262px) {
  .header__logo {
    font-size: calc(16px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .header__logo {
    padding-left: calc(25px + 27 * ((100vw - 320px) / 942));
  }
}

.header__link {
  color: #fff;
}

._icon-logo {
  position: relative;
}
._icon-logo::before {
  font-size: 32px;
  margin-right: 20px;
  position: absolute;
  top: -0.1875rem;
  left: -52px;
}
@media (max-width: 1262px) {
  ._icon-logo::before {
    font-size: calc(24px + 8 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  ._icon-logo::before {
    margin-right: calc(12px + 8 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  ._icon-logo::before {
    left: calc(-30px + -22 * ((100vw - 320px) / 942));
  }
}

.header__item {
  flex: 0 1 33.7662337662%;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}
@media (max-width: 1262px) {
  .header__item {
    font-size: calc(12px + 3 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .header__item {
    flex: 0 1 50%;
  }
}

.header__link-domains {
  color: #fff;
  padding-top: 36px;
  padding-bottom: 40px;
  border-top: 4px solid #0066FF;
  display: inline-block;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .header__link-domains {
    padding-top: calc(15px + 21 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .header__link-domains {
    padding-bottom: calc(15px + 25 * ((100vw - 320px) / 942));
  }
}
.header__link-domains:hover {
  transition: all 0.3s ease;
  text-shadow: 2px 2px 2px #0066FF;
}

.footer {
  background-color: #000C36;
}

.footer__logo {
  color: #fff;
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  line-height: 26px;
  letter-spacing: 1px;
  margin-right: 280px;
  margin-left: 50px;
}
@media (max-width: 1262px) {
  .footer__logo {
    font-size: calc(16px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .footer__logo {
    margin-right: calc(30px + 250 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .footer__logo {
    margin-left: calc(25px + 25 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .footer__logo {
    margin-right: 150px;
  }
}
@media screen and (max-width: 48.06125em) and (max-width: 1262px) {
  .footer__logo {
    margin-right: calc(30px + 120 * ((100vw - 320px) / 942));
  }
}
.footer__logo::before {
  top: 0.125rem;
}

.footer__navigation {
  display: inline-block;
  width: 505px;
  margin-top: 57px;
  margin-bottom: 57px;
}
@media (max-width: 1262px) {
  .footer__navigation {
    width: calc(170px + 335 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .footer__navigation {
    margin-top: calc(5px + 52 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .footer__navigation {
    margin-bottom: calc(5px + 52 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .footer__navigation {
    width: 750px;
  }
}
@media screen and (max-width: 61.99875em) and (max-width: 1262px) {
  .footer__navigation {
    width: calc(170px + 580 * ((100vw - 320px) / 942));
  }
}

.footer__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.footer__item {
  color: #7781A4;
  font-size: 0.8125rem;
}
.footer__item:not(:last-child) {
  line-height: 2rem;
}
@media screen and (max-width: 61.99875em) and (min-width: 48.06125em) {
  .footer__item:not(:last-child) {
    margin-right: 100px;
  }
}
@media screen and (max-width: 61.99875em) and (min-width: 48.06125em) and (max-width: 1262px) {
  .footer__item:not(:last-child) {
    margin-right: calc(15px + 85 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .footer__item {
    margin: 0 auto;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
  }
}

.footer__link {
  color: #7781A4;
  transition: all 0.3s ease;
}
.footer__link:hover {
  transition: all 0.3s ease;
  color: #fff;
  text-decoration: underline;
}

@media screen and (max-width: 48.06125em) {
  .copyright {
    font-size: 16px;
  }
}
@media screen and (max-width: 48.06125em) and (max-width: 1262px) {
  .copyright {
    font-size: calc(9px + 7 * ((100vw - 320px) / 942));
  }
}

@media screen and (max-width: 48.06125em) {
  .footer__container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
}

.searching {
  overflow: hidden;
  margin-bottom: 80px;
}
@media (max-width: 1262px) {
  .searching {
    margin-bottom: calc(10px + 70 * ((100vw - 320px) / 942));
  }
}

.searching__headline {
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 29.99875em) {
  .searching__headline {
    flex-direction: column;
    align-items: flex-start;
  }
}

.searching__title {
  margin-right: 64px;
  display: inline-block;
  flex: 0 0 25%;
}
@media (max-width: 1262px) {
  .searching__title {
    margin-right: calc(0px + 64 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .searching__title {
    margin-bottom: 0.625rem;
  }
}

.title {
  color: #15100C;
  font-size: 40px;
  font-weight: 700;
}
@media (max-width: 1262px) {
  .title {
    font-size: calc(18px + 22 * ((100vw - 320px) / 942));
  }
}

.searching__form {
  padding-top: 32px;
  padding-bottom: 32px;
  padding-left: 40px;
  padding-right: 5px;
  background: #0066FF url("../img/02-searching/bg-searching.png") 140% 0/auto 100% no-repeat;
  flex: 0 0 100%;
}
@media (max-width: 1262px) {
  .searching__form {
    padding-top: calc(16px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form {
    padding-bottom: calc(8px + 24 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form {
    padding-left: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .searching__form {
    background: #0066FF;
  }
}
@media screen and (max-width: 29.99875em) {
  .searching__form {
    width: 100%;
  }
}
.searching__form form {
  position: relative;
  width: 810px;
}
@media (max-width: 1262px) {
  .searching__form form {
    width: calc(165px + 645 * ((100vw - 320px) / 942));
  }
}
.searching__form input {
  font-size: 18px;
  padding-top: 14px;
  padding-bottom: 14px;
  padding-left: 24px;
  width: 810px;
  border-radius: 0.5rem;
  font-weight: 700;
}
@media (max-width: 1262px) {
  .searching__form input {
    font-size: calc(12px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form input {
    padding-top: calc(5px + 9 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form input {
    padding-bottom: calc(5px + 9 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form input {
    padding-left: calc(8px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form input {
    width: calc(175px + 635 * ((100vw - 320px) / 942));
  }
}
.searching__form input::placeholder {
  font-weight: 400;
}
@media screen and (max-width: 29.99875em) {
  .searching__form input {
    width: 1200px;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .searching__form input {
    width: calc(250px + 950 * ((100vw - 320px) / 942));
  }
}
.searching__form button {
  background-color: #fff;
  width: 50px;
  height: 46px;
  height: 46px;
  padding: 14px;
  border-radius: 0.5rem;
  position: absolute;
  top: 0;
  top: 0px;
  right: 0px;
}
@media (max-width: 1262px) {
  .searching__form button {
    width: calc(20px + 30 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form button {
    height: calc(20px + 26 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form button {
    padding: calc(2px + 12 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form button {
    top: calc(5px + -5 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form button {
    right: calc(-10px + 10 * ((100vw - 320px) / 942));
  }
}
.searching__form button img {
  width: 22px;
  height: 22px;
}
@media (max-width: 1262px) {
  .searching__form button img {
    width: calc(16px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .searching__form button img {
    height: calc(16px + 6 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .searching__form button {
    right: -400px;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .searching__form button {
    right: calc(-80px + -320 * ((100vw - 320px) / 942));
  }
}

.setup-unsafe {
  margin-bottom: 104px;
}
@media (max-width: 1262px) {
  .setup-unsafe {
    margin-bottom: calc(30px + 74 * ((100vw - 320px) / 942));
  }
}

.setup-unsafe__content {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 29.99875em) {
  .setup-unsafe__content {
    flex-direction: column;
  }
}

.setup-unsafe__title {
  color: #15100C;
  font-size: 40px;
  width: 560px;
  font-weight: 700;
}
@media (max-width: 1262px) {
  .setup-unsafe__title {
    font-size: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .setup-unsafe__title {
    width: calc(100px + 460 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .setup-unsafe__title {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}

.setup-unsafe__text {
  color: #7781A4;
  font-size: 16px;
  line-height: 24px;
  width: 570px;
}
@media (max-width: 1262px) {
  .setup-unsafe__text {
    font-size: calc(12px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .setup-unsafe__text {
    line-height: calc(18px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .setup-unsafe__text {
    width: calc(200px + 370 * ((100vw - 320px) / 942));
  }
}
.setup-unsafe__text p:not(:last-child) {
  margin-bottom: 24px;
}
@media (max-width: 1262px) {
  .setup-unsafe__text p:not(:last-child) {
    margin-bottom: calc(14px + 10 * ((100vw - 320px) / 942));
  }
}
.setup-unsafe__text span {
  font-weight: 700;
}
@media screen and (max-width: 29.99875em) {
  .setup-unsafe__text {
    width: 100%;
  }
}

.popup-alert {
  position: fixed;
  z-index: 50;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(5px);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  overflow-x: hidden;
  transition: all 0.5s ease 0s;
}

.popup-alert.open {
  opacity: 1;
  visibility: visible;
}

.popup-alert.open .popup-alert__content {
  transform: perspective(600px) translate(0px, 0%) rotateX(0deg);
  opacity: 1;
}

.popup-alert__body {
  min-height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1.875rem 0.625rem;
  transition: all 0.5s ease 0s;
}

.popup-alert__content {
  border: 2px solid #FF2828;
  background-color: #FFF1F1;
  width: 610px;
  height: 300px;
  transition: all 0.5s ease 0s;
  opacity: 0;
  transform: perspective(600px) translate(0px, -100%) rotateX(45deg);
  position: relative;
}
@media (max-width: 1262px) {
  .popup-alert__content {
    width: calc(290px + 320 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .popup-alert__content {
    height: calc(200px + 100 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .popup-alert__content {
    padding: 2.875rem 1.5rem 1.5rem;
  }
}
.popup-alert__content .popup__close {
  position: absolute;
  top: 0.625rem;
  right: 0.625rem;
}

.popup__flex {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1262px) {
  .popup__flex {
    gap: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}

.popup__exclamation {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 156px;
}
@media (max-width: 1262px) {
  .popup__exclamation {
    flex-basis: calc(72px + 84 * ((100vw - 320px) / 942));
  }
}
.popup__exclamation img {
  max-width: 100%;
  height: auto;
}

.popup__info {
  flex: 0 1 17.1875rem;
  padding-bottom: 10px;
}
@media (max-width: 1262px) {
  .popup__info {
    padding-bottom: calc(5px + 5 * ((100vw - 320px) / 942));
  }
}

.popup__logo {
  color: #FF2828;
  font-size: 18px;
  font-weight: 900;
  line-height: 23.204px;
  line-height: 24px;
  letter-spacing: 0.9px;
  margin-bottom: 28px;
  padding-left: 45px;
}
@media (max-width: 1262px) {
  .popup__logo {
    font-size: calc(10px + 8 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .popup__logo {
    line-height: calc(20px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .popup__logo {
    margin-bottom: calc(10px + 18 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .popup__logo {
    padding-left: calc(25px + 20 * ((100vw - 320px) / 942));
  }
}
.popup__logo::before {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  font-size: 26px;
}
@media (max-width: 1262px) {
  .popup__logo::before {
    font-size: calc(18px + 8 * ((100vw - 320px) / 942));
  }
}

.popup__title {
  color: #15100C;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  .popup__title {
    font-size: calc(18px + 22 * ((100vw - 320px) / 942));
  }
}

.popup__text {
  color: #15100C;
  font-size: 22px;
  max-width: 7.5rem;
  max-width: 250px;
}
@media (max-width: 1262px) {
  .popup__text {
    font-size: calc(12px + 10 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .popup__text {
    max-width: calc(120px + 130 * ((100vw - 320px) / 942));
  }
}

.popup__sitename {
  font-weight: 700;
}

.popup__msg {
  font-weight: 500;
}

@font-face {
  font-family: Aspira;
  font-display: swap;
  src: url("../fonts/Aspira-Bold.woff2") format("woff2"), url("../fonts/Aspira-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Aspira;
  font-display: swap;
  src: url("../fonts/Aspira-Regular.woff2") format("woff2"), url("../fonts/Aspira-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: CeraPro;
  font-display: swap;
  src: url("../fonts/CeraPro-Bold.woff2") format("woff2"), url("../fonts/CeraPro-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: CeraPro;
  font-display: swap;
  src: url("../fonts/CeraPro-Medium.woff2") format("woff2"), url("../fonts/CeraPro-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: CeraPro;
  font-display: swap;
  src: url("../fonts/CeraPro-Regular.woff2") format("woff2"), url("../fonts/CeraPro-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Black.woff2") format("woff2"), url("../fonts/Gotham-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Bold.woff2") format("woff2"), url("../fonts/Gotham-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Medium.woff2") format("woff2"), url("../fonts/Gotham-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Gotham;
  font-display: swap;
  src: url("../fonts/Gotham-Regular.woff2") format("woff2"), url("../fonts/Gotham-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "icons";
  src: url("../fonts/icons.eot?lg2u9v");
  src: url("../fonts/icons.eot?lg2u9v#iefix") format("embedded-opentype"), url("../fonts/icons.ttf?lg2u9v") format("truetype"), url("../fonts/icons.woff?lg2u9v") format("woff"), url("../fonts/icons.svg?lg2u9v#icons") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=_icon-]::before, [class*=" _icon-"]::before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icons" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

._icon-logo:before {
  content: "\e900";
}

.compromised__grid {
  display: grid;
  grid-template-rows: repeat(27, auto);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  margin-top: 110px;
  margin-bottom: 110px;
}
@media (max-width: 1262px) {
  .compromised__grid {
    margin-top: calc(50px + 60 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid {
    margin-bottom: calc(50px + 60 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .compromised__grid {
    grid-template-rows: repeat(52, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 29.99875em) {
  .compromised__grid {
    grid-template-rows: repeat(102, auto);
    grid-template-columns: 1fr;
  }
}

.compromised__grid-header {
  background-color: #F1F7FF;
  margin-bottom: 0.25rem;
  padding-left: 0.3125rem;
  padding-right: 0.3125rem;
  grid-column: 1/span 4;
}
.compromised__grid-header form {
  display: inline-block;
}
@media screen and (max-width: 61.99875em) {
  .compromised__grid-header form {
    width: 100%;
    margin-bottom: 0.625rem;
  }
}
.compromised__grid-header input {
  font-size: 16px;
  padding-top: 16px;
  padding-bottom: 16px;
  width: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
@media (max-width: 1262px) {
  .compromised__grid-header input {
    font-size: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-header input {
    padding-top: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-header input {
    padding-bottom: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .compromised__grid-header {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 29.99875em) {
  .compromised__grid-header {
    grid-column: 1;
  }
}

.compromised__grid-title {
  display: inline-block;
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 85px;
  margin-right: 65px;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 6.25rem;
}
@media (max-width: 1262px) {
  .compromised__grid-title {
    font-size: calc(10px + 18 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title {
    padding-top: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title {
    padding-bottom: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title {
    padding-left: calc(40px + 45 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title {
    margin-right: calc(0px + 65 * ((100vw - 320px) / 942));
  }
}
.compromised__grid-title::before {
  content: "";
  display: inline-block;
  background: url("../img/04-elli/icon-compromised.svg") center center/cover no-repeat;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 20px;
  left: 40px;
}
@media (max-width: 1262px) {
  .compromised__grid-title::before {
    width: calc(22px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title::before {
    height: calc(22px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title::before {
    top: calc(10px + 10 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__grid-title::before {
    left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .compromised__grid-title {
    display: block;
  }
}
@media screen and (max-width: 48.06125em) {
  .compromised__grid-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 48.06125em) and (max-width: 1262px) {
  .compromised__grid-title {
    font-size: calc(18px + 10 * ((100vw - 320px) / 942));
  }
}

.compromised__inputs {
  display: inline-flex;
  width: 548px;
  position: relative;
}
@media (max-width: 1262px) {
  .compromised__inputs {
    width: calc(100px + 448 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .compromised__inputs {
    width: 100%;
  }
}
@media screen and (max-width: 29.99875em) {
  .compromised__inputs {
    flex-direction: column;
  }
}

.compromised__domain {
  flex: 0 1 50%;
}
.compromised__domain input {
  border-radius: 4px 0px 0px 4px;
  border-top: 1px solid #D2D7EA;
  border-bottom: 1px solid #D2D7EA;
  border-left: 1px solid #D2D7EA;
  border-right: 1px solid #D2D7EA;
  margin-bottom: 0;
}
.compromised__domain input::placeholder {
  color: rgba(119, 129, 164, 0.7);
}
@media screen and (max-width: 29.99875em) {
  .compromised__domain input {
    border-radius: 4px 4px 0px 0px;
    border-top: 1px solid #D2D7EA;
    border-left: 1px solid #D2D7EA;
    border-right: 1px solid #D2D7EA;
  }
}

.compromised__zone {
  flex: 0 1 50%;
  position: relative;
}
.compromised__zone input {
  border-radius: 0px 4px 4px 0px;
  border-top: 1px solid #D2D7EA;
  border-bottom: 1px solid #D2D7EA;
  border-right: 1px solid #D2D7EA;
  margin-bottom: 0;
}
.compromised__zone input::placeholder {
  color: rgba(119, 129, 164, 0.7);
}
@media screen and (max-width: 29.99875em) {
  .compromised__zone input {
    border-radius: 0px 0px 4px 4px;
    border-bottom: 1px solid #D2D7EA;
    border-left: 1px solid #D2D7EA;
    border-right: 1px solid #D2D7EA;
  }
}

.compromised__choose {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5.625rem;
  width: 4.25rem;
}
@media screen and (min-width: 61.99875em) {
  .compromised__choose {
    left: 5.3125rem;
  }
}

.choose {
  background-color: #0066FF;
  color: #FFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  transition: all 0.3s ease;
  width: auto;
}
.choose:hover {
  transition: all 0.3s ease;
  background-color: #2D81FF;
}
.choose:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
}

.compromised__search {
  border-radius: 4px;
  width: 54px;
  height: 54px;
  padding: 0.3125rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2px;
}
@media (max-width: 1262px) {
  .compromised__search {
    width: calc(48px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__search {
    height: calc(48px + 6 * ((100vw - 320px) / 942));
  }
}
.compromised__search img {
  max-width: 100%;
  height: auto;
}

.compromised__choose-domain {
  width: 100%;
  background-color: #fff;
  padding: 1.25rem 1.5rem 0.5rem;
  position: absolute;
  top: -100%;
  left: 0;
  opacity: 0;
  visibility: hidden;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.compromised__choose-domain._active {
  transition: all 0.3s ease;
  top: calc(100% + 8px);
  opacity: 1;
  visibility: visible;
}

.compromised__choose-button {
  margin-bottom: 1rem;
}
.compromised__choose-button span {
  color: #7781A4;
  font-size: 0.75rem;
}

.compromised__choose-default {
  margin-right: 0.75rem;
}

.compromised__choose-btn {
  margin-right: 0.75rem;
  margin-bottom: 0.75rem;
}

.compromised__item {
  background-color: #F1F7FF;
  text-align: center;
  margin-right: 0.25rem;
}
.compromised__item:nth-child(4n+1) {
  margin-right: 0;
}
@media screen and (max-width: 48.06125em) {
  .compromised__item:nth-child(2n+1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 29.99875em) {
  .compromised__item {
    margin-right: 0;
  }
}

.compromised__link {
  display: block;
  color: #15100C;
  font-size: 18px;
  transition: color 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 1262px) {
  .compromised__link {
    font-size: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.compromised__link:hover {
  transition: color 0.2s ease;
  background-color: #0066FF;
  color: #fff;
}
.compromised__link:active {
  background-color: #004BBB;
}

@media screen and (max-width: 29.99875em) {
  .compromised__item_mobile-hide {
    display: none;
  }
  .compromised__item_mobile-hide._active {
    display: block;
  }
}

@media screen and (max-width: 48.06125em) {
  .compromised__item_laptop-hide {
    display: none;
  }
  .compromised__item_laptop-hide._active {
    display: block;
  }
}

.compromised__grid-nav {
  grid-column: 1/span 4;
  background-color: #F1F7FF;
  margin-top: 0.25rem;
  text-align: center;
  padding-top: 2rem;
}
@media screen and (max-width: 48.06125em) {
  .compromised__grid-nav {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 29.99875em) {
  .compromised__grid-nav {
    grid-column: 1;
  }
}

.compromised__btn {
  background-color: #0066FF;
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  margin-bottom: 1rem;
  width: 13.4375rem;
  border-radius: 2.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .compromised__btn {
    font-size: calc(13px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__btn {
    padding-top: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .compromised__btn {
    padding-bottom: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.compromised__btn:hover {
  transition: all 0.3s ease;
  background-color: #2D81FF;
}
.compromised__btn:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
}

.compromised__grid-text {
  color: #7781A4;
  font-size: 0.75rem;
  margin-bottom: 2.125rem;
  padding: 0 0.625rem;
}

.compromised__page-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.page-nav__link {
  color: #7781A4;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 500;
}
.page-nav__link_current {
  color: #0066FF;
  pointer-events: none;
}
.page-nav__link:hover {
  text-decoration: underline;
}

.prev-page,
.next-page {
  display: inline-block;
  font-weight: 400;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  line-height: 1.375rem;
  background-color: #0066FF;
  color: #fff;
}
.prev-page._disabled,
.next-page._disabled {
  background-color: #DFE8F4;
  color: #7781A4;
  pointer-events: none;
}

.compromised__page-num {
  margin-bottom: 2rem;
  font-size: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border-radius: 0.5rem;
  width: 15rem;
  text-align: center;
}
.compromised__page-num::placeholder {
  color: rgba(119, 129, 164, 0.7);
}

body {
  font-family: Gotham;
}

body.lock {
  overflow: hidden;
}

[class*=__container] {
  max-width: 78.875rem;
  padding: 0 0.9375rem;
  margin: 0 auto;
}

.promo {
  background: #000C36 url("../img/01-promo/pattern.png") 111% 0/auto 100% no-repeat;
  padding-top: 100px;
  padding-bottom: 300px;
  margin-bottom: 80px;
}
@media (max-width: 1262px) {
  .promo {
    padding-top: calc(20px + 80 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo {
    padding-bottom: calc(55px + 245 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .promo {
    padding-top: 0px;
  }
}
@media (max-width: 1262px) {
  .promo {
    margin-bottom: calc(10px + 70 * ((100vw - 320px) / 942));
  }
}

.promo__container {
  position: relative;
}

.promo__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9375rem;
}
@media screen and (max-width: 29.99875em) {
  .promo__content {
    flex-direction: column-reverse;
  }
}

.promo__info {
  margin-top: 60px;
}
@media (max-width: 1262px) {
  .promo__info {
    margin-top: calc(0px + 60 * ((100vw - 320px) / 942));
  }
}

.promo__title {
  color: #FFF;
  text-shadow: 0px 0px 48px rgba(85, 123, 221, 0.5);
  font-size: 56px;
  line-height: 70px;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 35.625rem;
  margin-top: 50px;
  margin-bottom: 24px;
}
@media (max-width: 1262px) {
  .promo__title {
    font-size: calc(34px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__title {
    line-height: calc(42px + 28 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__title {
    margin-top: calc(10px + 40 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__title {
    margin-bottom: calc(10px + 14 * ((100vw - 320px) / 942));
  }
}

.promo__text {
  color: #A8B7EE;
  font-size: 19px;
  line-height: 26px;
  max-width: 35.625rem;
  margin-bottom: 40px;
}
@media (max-width: 1262px) {
  .promo__text {
    font-size: calc(15px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__text {
    line-height: calc(22px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__text {
    margin-bottom: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}

.promo__start {
  color: #FFF;
  display: inline-block;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  background-color: #0066FF;
  border-radius: 40px;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 215px;
  transition: all 0.3s ease;
  animation: waves 1.5s linear infinite;
}
@media (max-width: 1262px) {
  .promo__start {
    font-size: calc(14px + 1 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__start {
    border-radius: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__start {
    padding-top: calc(16px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__start {
    padding-bottom: calc(16px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__start {
    width: calc(205px + 10 * ((100vw - 320px) / 942));
  }
}
.promo__start:hover {
  transition: all 0.3s ease;
  background-color: #2D81FF;
}
.promo__start:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
}
@keyframes waves {
  0% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0 0 20px #0066FF;
  }
}

.promo__images {
  width: 555px;
  /*@media screen and (max-width: $md4) {
  	display: none;
  }*/
}
@media (max-width: 1262px) {
  .promo__images {
    width: calc(200px + 355 * ((100vw - 320px) / 942));
  }
}

.promo__lock-pc-img img {
  max-width: 100%;
  height: auto;
}

.promo__hook {
  position: absolute;
  top: -200px;
  left: 694px;
  width: 70px;
}
@media (max-width: 1262px) {
  .promo__hook {
    top: calc(-50px + -150 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__hook {
    left: calc(250px + 444 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .promo__hook {
    width: calc(20px + 50 * ((100vw - 320px) / 942));
  }
}
.promo__hook img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 29.99875em) {
  .promo__hook {
    left: 500px;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .promo__hook {
    left: calc(50px + 450 * ((100vw - 320px) / 942));
  }
}

.domains {
  margin-bottom: 160px;
}
@media (max-width: 1262px) {
  .domains {
    margin-bottom: calc(20px + 140 * ((100vw - 320px) / 942));
  }
}

.domains__grid {
  display: grid;
  grid-template-rows: repeat(11, auto);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (max-width: 48.06125em) {
  .domains__grid {
    grid-template-rows: repeat(21, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 29.99875em) {
  .domains__grid {
    grid-template-rows: repeat(41, auto);
    grid-template-columns: 1fr;
  }
}

.domains__title {
  grid-column: 1/span 4;
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 100px;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 6.25rem;
}
@media (max-width: 1262px) {
  .domains__title {
    font-size: calc(16px + 12 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title {
    padding-top: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title {
    padding-bottom: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title {
    padding-left: calc(50px + 50 * ((100vw - 320px) / 942));
  }
}
.domains__title::before {
  content: "";
  display: inline-block;
  background: url("../img/03-domains/icon-search.svg") center center/cover no-repeat;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 20px;
  left: 40px;
}
@media (max-width: 1262px) {
  .domains__title::before {
    width: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title::before {
    height: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title::before {
    top: calc(10px + 10 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__title::before {
    left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .domains__title {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 29.99875em) {
  .domains__title {
    grid-column: 1;
  }
}

.domains__item {
  background-color: #F1F7FF;
}
.domains__item:not(:first-child) {
  text-align: center;
  padding: 0.3125rem;
}
.domains__item:not(:last-child) {
  margin-right: 0.25rem;
}

@media screen and (max-width: 48.06125em) {
  .domains__item_laptop-hide {
    display: none;
  }
  .domains__item_laptop-hide._active {
    display: block;
  }
}

@media screen and (max-width: 29.99875em) {
  .domains__item_mobile-hide {
    display: none;
  }
  .domains__item_mobile-hide._active {
    display: block;
  }
}

.domains__link {
  display: block;
  color: #15100C;
  font-size: 18px;
  transition: color 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 1262px) {
  .domains__link {
    font-size: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.domains__link:hover {
  transition: color 0.2s ease;
  background-color: #0066FF;
  color: #fff;
}

.domains__show-more {
  margin-top: 48px;
  margin-bottom: 75px;
}
@media (max-width: 1262px) {
  .domains__show-more {
    margin-top: calc(24px + 24 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__show-more {
    margin-bottom: calc(60px + 15 * ((100vw - 320px) / 942));
  }
}
@media screen and (min-width: 48.06125em) {
  .domains__show-more {
    display: none;
  }
}

.domains__btn {
  background-color: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 13.4375rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2.5rem;
  border: 1px solid #2079FF;
  display: inline-block;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .domains__btn {
    padding-top: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .domains__btn {
    padding-bottom: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.domains__btn:hover {
  transition: all 0.3s ease;
  color: #0066FF;
}
.domains__btn:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
  color: #fff;
}

.main-searching {
  margin-top: 77px;
}
@media (max-width: 1262px) {
  .main-searching {
    margin-top: calc(20px + 57 * ((100vw - 320px) / 942));
  }
}

.elli {
  margin-bottom: 48px;
}
@media (max-width: 1262px) {
  .elli {
    margin-bottom: calc(20px + 28 * ((100vw - 320px) / 942));
  }
}

.elli__grid {
  display: grid;
  grid-template-rows: repeat(5, auto);
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 48.06125em) {
  .elli__grid {
    grid-template-rows: repeat(6, auto);
    grid-template-columns: 1fr;
  }
}

.elli__grid-header {
  padding-top: 25px;
  padding-bottom: 25px;
}
@media (max-width: 1262px) {
  .elli__grid-header {
    padding-top: calc(10px + 15 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__grid-header {
    padding-bottom: calc(10px + 15 * ((100vw - 320px) / 942));
  }
}
@media screen and (min-width: 48.06125em) {
  .elli__grid-header {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 48.06125em) {
  .elli__grid-header {
    order: 1;
  }
}
@media screen and (max-width: 29.99875em) {
  .elli__grid-header {
    padding-right: 800px;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .elli__grid-header {
    padding-right: calc(80px + 720 * ((100vw - 320px) / 942));
  }
}

.grid-header_ok {
  background-color: #F1F7FF;
}

.grid-header_alert {
  background-color: #FFF1F1;
}

.elli__grid-title {
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-left: 98px;
}
@media (max-width: 1262px) {
  .elli__grid-title {
    font-size: calc(16px + 12 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__grid-title {
    padding-left: calc(30px + 68 * ((100vw - 320px) / 942));
  }
}
.elli__grid-title::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 38px;
  position: absolute;
  left: 40px;
  top: -5px;
}
@media (max-width: 1262px) {
  .elli__grid-title::before {
    width: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__grid-title::before {
    height: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__grid-title::before {
    left: calc(7px + 33 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__grid-title::before {
    top: calc(0px + -5 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .elli__grid-title {
    display: block;
    margin-bottom: 1.5625rem;
  }
}
@media screen and (min-width: 48.06125em) {
  .elli__grid-title {
    margin-right: 170px;
  }
}
@media screen and (min-width: 48.06125em) and (max-width: 1262px) {
  .elli__grid-title {
    margin-right: calc(-150px + 320 * ((100vw - 320px) / 942));
  }
}

.grid-title_ok::before {
  content: "";
  background: url("../img/04-elli/icon-web.svg") center center/cover no-repeat;
}

.grid-title_alert::before {
  content: "";
  background: url("../img/04-elli/icon-alert-web.svg") center center/cover no-repeat;
}

.elli__link {
  color: #15100C;
  font-size: 15px;
  font-weight: 700;
  display: inline-block;
  position: relative;
  padding-right: 25px;
}
@media (max-width: 1262px) {
  .elli__link {
    font-size: calc(13px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__link {
    padding-right: calc(10px + 15 * ((100vw - 320px) / 942));
  }
}
.elli__link::after {
  content: ">";
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  border: 1px solid #000;
  border-radius: 50%;
  top: -0.3125rem;
  right: -1.25rem;
  width: 22px;
  height: 22px;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .elli__link::after {
    width: calc(20px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .elli__link::after {
    height: calc(20px + 2 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .elli__link::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
.elli__link:hover::after {
  transition: all 0.3s ease;
  background-color: #0066FF;
  border: 1px solid #0066FF;
  color: #fff;
}
@media screen and (max-width: 61.99875em) {
  .elli__link:nth-child(2) {
    padding-left: 95px;
  }
}
@media screen and (max-width: 61.99875em) and (max-width: 1262px) {
  .elli__link:nth-child(2) {
    padding-left: calc(28px + 67 * ((100vw - 320px) / 942));
  }
}
.elli__link:not(:last-child) {
  margin-right: 95px;
}
@media (max-width: 1262px) {
  .elli__link:not(:last-child) {
    margin-right: calc(-55px + 150 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .elli__link:not(:last-child) {
    margin-bottom: 1.125rem;
    margin-right: 95px;
  }
}
@media screen and (max-width: 61.99875em) and (max-width: 1262px) {
  .elli__link:not(:last-child) {
    margin-right: calc(0px + 95 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .elli__link:last-child {
    max-width: 575px;
    padding-left: 0.3125rem;
  }
}
@media screen and (max-width: 48.06125em) and (max-width: 1262px) {
  .elli__link:last-child {
    max-width: calc(100px + 475 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .elli__link {
    display: block;
  }
  .elli__link:nth-child(2) {
    max-width: 100%;
    margin-right: 0;
  }
  .elli__link:last-child {
    padding-left: 98px;
    max-width: 100%;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .elli__link:last-child {
    padding-left: calc(30px + 68 * ((100vw - 320px) / 942));
  }
}

.params {
  display: flex;
  justify-content: flex-start;
  padding-left: 40px;
  padding-top: 1.25rem;
  padding-left: 2.5rem;
}
@media (max-width: 1262px) {
  .params {
    padding-left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .params {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 29.99875em) {
  .params {
    padding-top: 0;
  }
}
@media screen and (min-width: 48.06125em) {
  .params {
    gap: 0.25rem;
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 48.06125em) {
  .params {
    order: 2;
  }
}

.params_ok {
  background-color: #F1F7FF;
}

.params_alert {
  background-color: #FFF1F1;
}

.params__item {
  color: #7781A4;
  font-size: 16px;
  flex-grow: 0;
  flex-shrink: 1;
  flex-basis: 280px;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media (max-width: 1262px) {
  .params__item {
    font-size: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .params__item {
    flex-basis: calc(40px + 240 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .params__item {
    padding-top: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .params__item {
    padding-bottom: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .params__item {
    flex-basis: 560px;
    padding-top: 0.75rem;
    padding-bottom: 1.5rem;
  }
}
@media screen and (max-width: 61.99875em) and (max-width: 1262px) {
  .params__item {
    flex-basis: calc(140px + 420 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .params__item {
    flex-basis: 1150px;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .params__item {
    flex-basis: calc(280px + 870 * ((100vw - 320px) / 942));
  }
}
.params__item:last-child {
  flex-basis: auto;
}

.params__name {
  font-weight: 700;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 61.99875em) {
  .params__name {
    font-size: 16px;
  }
}
@media screen and (min-width: 61.99875em) and (max-width: 1262px) {
  .params__name {
    font-size: calc(8px + 8 * ((100vw - 320px) / 942));
  }
}

.checking {
  color: #7781A4;
  font-size: 22px;
  font-weight: 500;
}
@media (max-width: 1262px) {
  .checking {
    font-size: calc(18px + 4 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .checking {
    order: 3;
  }
}

.checking-bg_ok {
  background-color: #F1F7FF;
}

.checking-bg_alert {
  background-color: #FFF1F1;
}

.checking__grid {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
  column-gap: 58px;
  margin-left: 40px;
  padding-top: 43px;
  padding-bottom: 43px;
  margin-right: 0.3125rem;
}
@media (max-width: 1262px) {
  .checking__grid {
    column-gap: calc(8px + 50 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .checking__grid {
    margin-left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .checking__grid {
    padding-top: calc(30px + 13 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .checking__grid {
    padding-bottom: calc(30px + 13 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .checking__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media screen and (max-width: 29.99875em) {
  .checking__grid {
    grid-template-rows: repeat(9, 1fr);
    grid-template-columns: 1fr;
  }
}

.checking__item {
  position: relative;
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
  padding-left: 3.125rem;
  display: flex;
  align-items: center;
}
.checking__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
}
@media (max-width: 1262px) {
  .checking__item::before {
    width: calc(28px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .checking__item::before {
    height: calc(28px + 4 * ((100vw - 320px) / 942));
  }
}

.checking_ok::before {
  content: "";
  background: url("../img/04-elli/icon-check.png") center center/contain no-repeat;
}

.checking_alert::before {
  content: "";
  background: url("../img/04-elli/icon-alert-check.png") center center/contain no-repeat;
}

.lock-place {
  background-color: #0066FF;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 54px;
  padding-top: 48px;
  padding-bottom: 48px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
@media (max-width: 1262px) {
  .lock-place {
    gap: calc(8px + 46 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .lock-place {
    padding-top: calc(32px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .lock-place {
    padding-bottom: calc(32px + 16 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 61.99875em) {
  .lock-place {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 48.06125em) {
  .lock-place_1 {
    order: 4;
  }
}

@media screen and (max-width: 48.06125em) {
  .lock-place_2 {
    order: 6;
  }
}

.lock-place__image {
  flex: 0 1 7.1875rem;
}
.lock-place__image img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 29.99875em) {
  .lock-place__image {
    flex: 0 1 3.4375rem;
  }
}

.lock-place__text {
  color: #FFF;
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  flex: 0 1 15rem;
}
@media (max-width: 1262px) {
  .lock-place__text {
    font-size: calc(15px + 17 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 29.99875em) {
  .lock-place__text {
    text-align: center;
  }
}

.safe {
  padding-left: 40px;
  padding-top: 40px;
}
@media (max-width: 1262px) {
  .safe {
    padding-left: calc(24px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .safe {
    padding-top: calc(24px + 16 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .safe {
    padding-top: 2.5rem;
    order: 5;
  }
}

.safe_ok {
  background-color: #F1F7FF;
}

.safe_alert {
  background-color: #FFF1F1;
}

.safe__title {
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  .safe__title {
    font-size: calc(22px + 6 * ((100vw - 320px) / 942));
  }
}

.safe__result {
  font-size: 28px;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  .safe__result {
    font-size: calc(22px + 6 * ((100vw - 320px) / 942));
  }
}

.result_ok {
  color: #0066FF;
}

.result_alert {
  color: #FF2828;
}

.safe__checked {
  color: #7781A4;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 32px;
}
@media (max-width: 1262px) {
  .safe__checked {
    font-size: calc(15px + 1 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .safe__checked {
    line-height: calc(22px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .safe__checked {
    margin-bottom: calc(20px + 12 * ((100vw - 320px) / 942));
  }
}

.safe__btn {
  color: #FFF;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  background-color: #0066FF;
  border-radius: 2.5rem;
  width: 10rem;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .safe__btn {
    font-size: calc(13px + 2 * ((100vw - 320px) / 942));
  }
}
.safe__btn:hover {
  transition: all 0.3s ease;
  background-color: #2D81FF;
}
.safe__btn:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
}

@media screen and (max-width: 48.06125em) {
  .audit-history {
    display: none;
    order: 7;
  }
}

.audit-history__title {
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  position: relative;
  padding-top: 35px;
  padding-bottom: 30px;
  padding-left: 100px;
  padding-right: 0.3125rem;
  margin-bottom: 0.25rem;
}
@media (max-width: 1262px) {
  .audit-history__title {
    font-size: calc(22px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__title {
    padding-top: calc(20px + 15 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__title {
    padding-bottom: calc(15px + 15 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__title {
    padding-left: calc(50px + 50 * ((100vw - 320px) / 942));
  }
}
.audit-history__title::before {
  content: "";
  width: 38px;
  height: 38px;
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1262px) {
  .audit-history__title::before {
    width: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__title::before {
    height: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__title::before {
    left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}

.audit_ok {
  background-color: #F1F7FF;
}
.audit_ok::before {
  content: "";
  background: url(../img/04-elli/icon-audit.svg) center center/cover no-repeat;
}

.audit_alert {
  background-color: #FFF1F1;
}
.audit_alert::before {
  content: "";
  background: url(../img/04-elli/icon-alert-audit.svg) center center/cover no-repeat;
}

.audit-history__grid {
  text-align: center;
  display: grid;
  grid-template-columns: 5fr 8fr 5fr;
  grid-template-rows: 1.3fr repeat(9, 1fr);
}

.audit-history__grid-head {
  color: #7781A4;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 0.25rem;
  padding-top: 16px;
  padding-bottom: 12px;
}
@media (max-width: 1262px) {
  .audit-history__grid-head {
    font-size: calc(16px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__grid-head {
    padding-top: calc(10px + 6 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__grid-head {
    padding-bottom: calc(8px + 4 * ((100vw - 320px) / 942));
  }
}
.audit-history__grid-head:first-child, .audit-history__grid-head:nth-child(2) {
  margin-right: 0.25rem;
}

.audit-head_ok {
  background-color: #F1F7FF;
}

.audit-head_alert {
  background-color: #FFF1F1;
}

.audit-history__grid-item {
  color: #7781A4;
  font-size: 16px;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-right: 0.25rem;
}
@media (max-width: 1262px) {
  .audit-history__grid-item {
    font-size: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__grid-item {
    padding-top: calc(7px + 3 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .audit-history__grid-item {
    padding-bottom: calc(7px + 3 * ((100vw - 320px) / 942));
  }
}
.audit-history__grid-item:nth-child(4), .audit-history__grid-item:nth-child(5), .audit-history__grid-item:nth-child(6) {
  padding-top: 16px;
}
@media (max-width: 1262px) {
  .audit-history__grid-item:nth-child(4), .audit-history__grid-item:nth-child(5), .audit-history__grid-item:nth-child(6) {
    padding-top: calc(12px + 4 * ((100vw - 320px) / 942));
  }
}
.audit-history__grid-item:nth-child(3n) {
  margin-right: 0;
}

.audit-item_ok {
  background-color: #F1F7FF;
}

.audit-item_alert {
  background-color: #FFF1F1;
}

.more {
  padding: 2.5rem;
  background-color: #0066FF;
}
@media screen and (max-width: 48.06125em) {
  .more {
    display: none;
    order: 8;
  }
}

.more__title {
  color: #FFF;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  .more__title {
    font-size: calc(28px + 12 * ((100vw - 320px) / 942));
  }
}

.more__subtitle {
  color: #FFF;
  font-size: 28px;
  font-weight: 500;
  max-width: 21.875rem;
  margin-bottom: 32px;
}
@media (max-width: 1262px) {
  .more__subtitle {
    font-size: calc(20px + 8 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .more__subtitle {
    margin-bottom: calc(20px + 12 * ((100vw - 320px) / 942));
  }
}

.more__link {
  color: #fff;
  line-height: 40px;
  position: relative;
  z-index: 2;
  transition: all 0.2s ease;
}
@media (max-width: 1262px) {
  .more__link {
    line-height: calc(20px + 20 * ((100vw - 320px) / 942));
  }
}
.more__link::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 11.25rem;
  height: 0.375rem;
  bottom: 0.125rem;
  left: 0;
  background-color: #569AFF;
}
.more__link:hover {
  transition: all 0.2s ease;
  color: #000C36;
  text-shadow: 2px 2px 2px #0066FF;
}

form textarea {
  color: #15100C;
  font-size: 13px;
  line-height: 1.125rem;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  border-radius: 0.5rem;
  padding-top: 20px;
  padding-bottom: 20px;
  width: 535px;
  resize: vertical;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  form textarea {
    font-size: calc(11px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form textarea {
    padding-top: calc(0px + 20 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form textarea {
    padding-bottom: calc(0px + 20 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form textarea {
    width: calc(100px + 435 * ((100vw - 320px) / 942));
  }
}
form input {
  color: #15100C;
  font-size: 16px;
  line-height: 24px;
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  width: 535px;
  margin-bottom: 0.75rem;
}
@media (max-width: 1262px) {
  form input {
    font-size: calc(14px + 2 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form input {
    line-height: calc(20px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form input {
    width: calc(100px + 435 * ((100vw - 320px) / 942));
  }
}
form input::placeholder {
  color: rgba(119, 129, 164, 0.5);
}
form p {
  color: #B2D3FF;
  font-size: 0.8125rem;
  line-height: 18px;
  padding-left: 1.25rem;
  margin-bottom: 24px;
}
@media (max-width: 1262px) {
  form p {
    line-height: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form p {
    margin-bottom: calc(16px + 8 * ((100vw - 320px) / 942));
  }
}
form button {
  color: #0066FF;
  font-size: 0.9375rem;
  font-weight: 700;
  background-color: #fff;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 10rem;
  border-radius: 2.5rem;
}
@media (max-width: 1262px) {
  form button {
    padding-top: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  form button {
    padding-bottom: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
form button:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
  color: #fff;
}

.similar {
  margin-bottom: 48px;
}
@media (max-width: 1262px) {
  .similar {
    margin-bottom: calc(20px + 28 * ((100vw - 320px) / 942));
  }
}

.similar__grid {
  display: grid;
  grid-template-rows: repeat(11, auto);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (max-width: 48.06125em) {
  .similar__grid {
    grid-template-rows: repeat(21, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 29.99875em) {
  .similar__grid {
    grid-template-rows: repeat(41, auto);
    grid-template-columns: 1fr;
  }
}

.similar__title {
  grid-column: 1/span 4;
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 100px;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 6.25rem;
}
@media (max-width: 1262px) {
  .similar__title {
    font-size: calc(16px + 12 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title {
    padding-top: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title {
    padding-bottom: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title {
    padding-left: calc(50px + 50 * ((100vw - 320px) / 942));
  }
}
.similar__title::before {
  content: "";
  display: inline-block;
  background: url("../img/03-domains/icon-search.svg") center center/cover no-repeat;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 20px;
  left: 40px;
}
@media (max-width: 1262px) {
  .similar__title::before {
    width: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title::before {
    height: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title::before {
    top: calc(10px + 10 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__title::before {
    left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .similar__title {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 29.99875em) {
  .similar__title {
    grid-column: 1;
  }
}

.similar__item {
  background-color: #F1F7FF;
  margin-right: 0.25rem;
}
.similar__item:not(:first-child) {
  text-align: center;
  padding: 0.3125rem;
}
.similar__item:nth-child(4n+1) {
  margin-right: 0;
}
@media screen and (max-width: 48.06125em) {
  .similar__item:nth-child(2n+1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 29.99875em) {
  .similar__item {
    margin-right: 0;
  }
}

.similar__link {
  display: block;
  color: #15100C;
  font-size: 18px;
  transition: color 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 1262px) {
  .similar__link {
    font-size: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.similar__link:hover {
  transition: color 0.2s ease;
  background-color: #0066FF;
  color: #fff;
}
.similar__link:active {
  background-color: #004BBB;
}

@media screen and (max-width: 48.06125em) {
  .similar__item_laptop-hide {
    display: none;
  }
  .similar__item_laptop-hide._active {
    display: block;
  }
}

@media screen and (max-width: 29.99875em) {
  .similar__item_mobile-hide {
    display: none;
  }
  .similar__item_mobile-hide._active {
    display: block;
  }
}

.similar__show-more {
  margin-top: 48px;
}
@media (max-width: 1262px) {
  .similar__show-more {
    margin-top: calc(24px + 24 * ((100vw - 320px) / 942));
  }
}
@media screen and (min-width: 48.06125em) {
  .similar__show-more {
    display: none;
  }
}

.similar__btn {
  background-color: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 13.4375rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2.5rem;
  border: 1px solid #2079FF;
  display: inline-block;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .similar__btn {
    padding-top: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .similar__btn {
    padding-bottom: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.similar__btn:hover {
  transition: all 0.3s ease;
  color: #0066FF;
}
.similar__btn:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
  color: #fff;
}

.typos {
  margin-bottom: 160px;
}
@media (max-width: 1262px) {
  .typos {
    margin-bottom: calc(20px + 140 * ((100vw - 320px) / 942));
  }
}

.typos__grid {
  display: grid;
  grid-template-rows: repeat(11, auto);
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
@media screen and (max-width: 48.06125em) {
  .typos__grid {
    grid-template-rows: repeat(21, auto);
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 29.99875em) {
  .typos__grid {
    grid-template-rows: repeat(41, auto);
    grid-template-columns: 1fr;
  }
}

.typos__title {
  grid-column: 1/span 4;
  color: #15100C;
  font-size: 28px;
  font-weight: 700;
  padding-top: 26px;
  padding-bottom: 26px;
  padding-left: 100px;
  margin-bottom: 0.25rem;
  position: relative;
  padding-left: 6.25rem;
}
@media (max-width: 1262px) {
  .typos__title {
    font-size: calc(16px + 12 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title {
    padding-top: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title {
    padding-bottom: calc(10px + 16 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title {
    padding-left: calc(50px + 50 * ((100vw - 320px) / 942));
  }
}
.typos__title::before {
  content: "";
  display: inline-block;
  background: url("../img/04-elli/icon-a.svg") center center/cover no-repeat;
  width: 38px;
  height: 38px;
  position: absolute;
  top: 20px;
  left: 40px;
}
@media (max-width: 1262px) {
  .typos__title::before {
    width: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title::before {
    height: calc(16px + 22 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title::before {
    top: calc(10px + 10 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__title::before {
    left: calc(5px + 35 * ((100vw - 320px) / 942));
  }
}
@media screen and (max-width: 48.06125em) {
  .typos__title {
    grid-column: 1/span 2;
  }
}
@media screen and (max-width: 29.99875em) {
  .typos__title {
    grid-column: 1;
  }
}

.typos__item {
  background-color: #F1F7FF;
  margin-right: 0.25rem;
}
.typos__item:not(:first-child) {
  text-align: center;
  padding: 0.3125rem;
}
.typos__item:nth-child(4n+1) {
  margin-right: 0;
}
@media screen and (max-width: 48.06125em) {
  .typos__item:nth-child(2n+1) {
    margin-right: 0;
  }
}
@media screen and (max-width: 29.99875em) {
  .typos__item {
    margin-right: 0;
  }
}

.typos__link {
  display: block;
  color: #15100C;
  font-size: 18px;
  transition: color 0.2s ease;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 1262px) {
  .typos__link {
    font-size: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.typos__link:hover {
  transition: color 0.2s ease;
  background-color: #0066FF;
  color: #fff;
}
.typos__link:active {
  background-color: #004BBB;
}

@media screen and (max-width: 48.06125em) {
  .typos__item_laptop-hide {
    display: none;
  }
  .typos__item_laptop-hide._active {
    display: block;
  }
}

@media screen and (max-width: 29.99875em) {
  .typos__item_mobile-hide {
    display: none;
  }
  .typos__item_mobile-hide._active {
    display: block;
  }
}

.typos__show-more {
  margin-top: 48px;
}
@media (max-width: 1262px) {
  .typos__show-more {
    margin-top: calc(24px + 24 * ((100vw - 320px) / 942));
  }
}
@media screen and (min-width: 48.06125em) {
  .typos__show-more {
    display: none;
  }
}

.typos__btn {
  background-color: #fff;
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  padding-top: 18px;
  padding-bottom: 18px;
  width: 13.4375rem;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2.5rem;
  border: 1px solid #2079FF;
  display: inline-block;
  transition: all 0.3s ease;
}
@media (max-width: 1262px) {
  .typos__btn {
    padding-top: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
@media (max-width: 1262px) {
  .typos__btn {
    padding-bottom: calc(14px + 4 * ((100vw - 320px) / 942));
  }
}
.typos__btn:hover {
  transition: all 0.3s ease;
  color: #0066FF;
}
.typos__btn:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
  color: #fff;
}
:root {
  --animate-duration:1s;
  --animate-delay:1s;
  --animate-repeat:1 ;
}

.animate__animated {
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  animation-iteration-count: 1;
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  animation-iteration-count: 2;
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  animation-iteration-count: 3;
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  animation-delay: 1s;
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  animation-delay: 2s;
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  animation-delay: 3s;
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  animation-delay: 4s;
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  animation-delay: 5s;
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__delay-6s {
  animation-delay: 6s;
  animation-delay: calc(var(--animate-delay) * 6);
}

.animate__animated.animate__faster {
  animation-duration: 0.5s;
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  animation-duration: 0.8s;
  animation-duration: calc(var(--animate-duration) * 0.8);
}

.animate__animated.animate__slow {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  animation-duration: 3s;
  animation-duration: calc(var(--animate-duration) * 3);
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 1ms !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}

@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    animation-timing-function: ease-in-out;
    transform: rotate(80deg);
  }
  40%, 80% {
    animation-timing-function: ease-in-out;
    opacity: 1;
    transform: rotate(60deg);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 700px, 0);
  }
}
.animate__fadein {
  animation-name: fadein;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.error-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.main {
  flex: 1 1 auto;
}

.error-page {
  text-align: center;
  overflow: hidden;
}

.error-page__content {
  display: inline-block;
  margin-top: 80px;
}
@media (max-width: 1262px) {
  .error-page__content {
    margin-top: calc(30px + 50 * ((100vw - 320px) / 942));
  }
}

.error-page__picture {
  margin-bottom: 3.125rem;
  position: relative;
}
.error-page__picture img {
  max-width: 100%;
}

.error-page__link {
  display: inline-block;
  color: #15100C;
  font-size: 0.9375rem;
  font-weight: 700;
  padding-top: 1.125rem;
  padding-bottom: 1.125rem;
  width: 13.4375rem;
  border-radius: 2.5rem;
  border: 2px solid #06F;
  margin-bottom: 3.125rem;
  transition: all 0.3s ease;
}
.error-page__link:hover {
  transition: all 0.3s ease;
  color: #0066FF;
}
.error-page__link:active {
  background: linear-gradient(180deg, #004ABA 0%, #06F 100%);
  color: #fff;
}

.error__four {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 8.125rem;
}
@media screen and (max-width: 29.99875em) {
  .error__four {
    width: 355px;
  }
}
@media screen and (max-width: 29.99875em) and (max-width: 1262px) {
  .error__four {
    width: calc(85px + 270 * ((100vw - 320px) / 942));
  }
}

@keyframes flip {
  0% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
  }
  40% {
    animation-timing-function: ease-out;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
  }
  50% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
  }
  80% {
    animation-timing-function: ease-in;
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translateZ(0) rotateY(0deg);
  }
  to {
    animation-timing-function: ease-in;
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0deg);
  }
}
.animate__animated.animate__flip {
  animation-name: flip;
  backface-visibility: visible;
}

.loading-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.main-loading {
  flex: 1 1 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-icon {
  width: 5.375rem;
  height: 5.375rem;
}
.loading-icon img {
  max-width: 100%;
}