:root {
  --font-logo: "NTSomic", sans-serif;
  --font-heading: "NTSomic", sans-serif;
  --font-buttons: "Geologica", sans-serif;
  --font-text: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue",
    "Noto Sans", "Liberation Sans", Arial, sans-serif, "Apple Color Emoji",
    "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --color-black: #000;
  --color-white: #fff;
  --color-blue-400: #0077ff;
  --color-soft-blue-400: #3864f0;
  --color-button-border: #acbbc5;
  --header-side-parts-width: 250px;
}

html,
body {
  font-size: 20px;
}

html:has(.smooth-scrolling) {
  scroll-behavior: smooth;
}

body {
  display: flex;
  flex-direction: column;
  gap: 70px;
  margin: 0px;
  padding: 0px;
  font-family: var(--font-text);
  font-weight: 400;
  color: #071024;
  background-color: #F8F8FA;
  min-height: 100%;
}

*,
*::after,
*::before {
  box-sizing: border-box;
  background-repeat: no-repeat;
  transition: 0.15s ease;
  -webkit-tap-highlight-color: transparent;
  overflow-wrap: break-word;
  word-wrap: anywhere;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  color: #3864f0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-logo);
  font-weight: 100;
  font-size: 34px;
  color: #00132c;
}

input,
textarea,
a {
  outline: none;
}

button,
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
  padding: 11px 20px;
  border-radius: 19px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-black);
  cursor: pointer;
  font-weight: 300;
  font-family: var(--font-buttons);
  font-size: 16px;
  flex-shrink: 0;
}

button:hover,
.button:hover {
  background-color: #eeeeee;
  color: #000;
}

button:active,
.button:active {
  transform: scale(102%);
  transition: 0.05s;
}

ul {
  list-style: none;
}

ul,
li {
  padding: 0;
  margin: 0;
}

img {
  user-select: none;
  max-width: 100%;
  float: left;
}

@-moz-document url-prefix() {
  * {
    scrollbar-color: #222222 #f2f2f2;
    scrollbar-width: thin;
  }
}

*::-webkit-scrollbar {
  width: 4px;
  height: 3px;
}

*::-webkit-scrollbar-thumb {
  background: #222222;
  border-radius: 6px;
}

*::-webkit-scrollbar-track {
  background: #f2f2f2;
}

[data-fancybox] {
  cursor: zoom-in;
  display: block;
  overflow: hidden;
  width: fit-content;
  margin: auto;
  border: 1px solid #ddd;
  border-radius: 12px;
}

[data-fancybox]:hover {
  filter: brightness(0.95);
}

[data-fancybox] img {
  width: 100%;
  background-size: contain;
  background-position: center;
}

.hidden-checkbox-input {
  display: none;
}

.dn {
  display: none !important;
}

input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  width: 100%;
}

.container--medium {
  max-width: 1620px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

.container--small {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.container--smaller {
  max-width: 999px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  width: 100%;
}

.container--tiny {
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 40px;
  width: 100%;
}

.main-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
}

.content {
  flex: 1 0 auto;
  width: 100%;
}

.link-anchor {
  position: relative;
  top: -22px;
}

.link-anchor#for-whom {
  top: -75px;
}

::selection {
  background: #3864f0;
  color: #ffffff;
  text-shadow: none;
}

.row{
  display: flex;
}

.col{
  display: flex;
  flex-direction: column;
}

.gap3{
  gap: 3px;
}

.gap5{
  gap: 5px;
}

.gap10{
  gap: 10px;
}

.gap30{
  gap: 30px;
}

.header .mobile-menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 18px;
  background-image: url("../img/hamburger-soft-blue.svg");
  background-position: center;
  border: 0;
  border-radius: 19px;
}

.modal-window-container {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 11;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  overflow-y: auto;
}

.modal-window-mobile-menu-row {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo-mobile {
  width: 100%;
  margin: 0 auto;
  justify-content: center;
  border-radius: 100px;
  padding-top: 7px;
  padding-bottom: 14px;
  margin-bottom: 20px;
}

.menu-main-menu-container {
  width: 100%;
  padding: 0 10px;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 13;
}

.mobile-menu-a {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  padding: 13px 22px;
  border-radius: 19px;
  text-align: center;
  background-color: var(--color-white);
  font-size: 20px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.mobile-menu-a:hover {
background-color: #bfe1ff;
  color: #3864f0;
}

.mobile-login-button {
  width: 100%;
  max-width: 270px;
  text-align: center;
  font-size: 18px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
}

.mobile-menu-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
  font-weight: 100;
}

.mobile-menu-reg-button {
  text-align: center;
  font-size: 18px;
}

.mobile-menu-language-button {
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
  background-color: var(--color-white);
  color: var(--color-black);
}

.underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

.h1,
.h2 {
  font-size: 46px;
  max-width: 1020px;
  text-align: center;
  margin: 0 auto;
}

.h3 {
  line-height: 125%;
  font-size: 32px;
  font-weight: 100;
  text-wrap: balance;
}

.h4 {
  line-height: 125%;
  font-size: 22px;
}

.mobile-navigator {
  padding: 7px 0;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.mobile-navigator-container {
  display: none;
  font-weight: 400;
  font-size: 22px;
  line-height: 130%;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}

.mobile-navigator-container:hover .mobile-navigator {
  color: #3864f0;
}

.mobile-navigator.fade-out {
  animation: fadeOut 0.1s ease-out forwards;
}

.mobile-navigator.fade-in {
  animation: fadeIn 0.1s ease-in forwards;
}

@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-10px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header {
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 5px 10px;
  z-index: 10;
  outline: 0 solid #e7e7e7;
}

.header-scrolling {
  background-color: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px) saturate(180%);
  transition-duration: 800ms;
  transition-timing-function: cubic-bezier(0.2, 1, 1, 1 );
  outline: 1px solid #e7e7e7;
}

.header-spacer {
  height: 100px;
}

.header-left-part,
.header-right-part {
  width: var(--header-side-parts-width);
}

.header-right-part {
  display: flex;
  justify-content: flex-end;
  gap: 9px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 5px;
  font-family: var(--font-logo);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 22px;
  white-space: nowrap;
  position: relative;
  width: fit-content;
}

.logo::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #000;
  mask: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6754_234)'%3E%3Cg clip-path='url(%23clip1_6754_234)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00320018 25.1215C-0.234177 8.91957 12.7805 0.0804405 23.6177 0.0804405C31.9845 0.0804405 38.124 0.0471816 42.5075 0.0234351C48.3493 -0.00821346 51.0723 -0.0229646 51.7928 0.0804405C61.6877 0.0804405 64.0656 1.34367 63.9987 12.6568L63.832 40.8021C63.2405 55.0235 51.8488 63.9941 41.0656 63.9941C31.272 63.9941 26.8803 63.9395 24.7005 63.9941C24.1756 64.0072 23.1952 63.9941 22.9455 63.9941C10.7909 63.9941 -0.15162 51.6896 0.00320018 40.7896C0.145315 30.7843 0.0637491 29.2541 0.00320018 25.1215ZM6.26088 39.7005C6.42139 52.8899 19.3906 57.5264 23.5241 57.5264L38.4 57.6C54.2979 57.6 57.7392 44.3547 57.7392 39.7005V10.4586C57.7392 9.09347 57.2864 6.76053 57.0435 6.43477C56.8005 6.10904 51.7928 6.08696 51.7928 6.08696H25.5317C13.9339 6.08696 6.42139 15.581 6.42139 23.9705L6.26088 39.7005Z' fill='black'/%3E%3Cpath d='M17.5205 29.4465C16.675 27.951 17.2598 26.9761 17.782 26.4718C18.3613 25.9123 18.8467 25.6988 20.4242 26.0936C22.7321 26.6711 27.3069 30.3563 30.7747 33.2864C32.0052 34.4098 32.5573 34.9619 33.0076 35.3399C33.4579 35.7179 34.646 35.5059 35.0001 35.1738C36.1985 34.05 33.9427 33.441 33.9427 33.441L31.3907 32.7847C34.4878 29.9668 44.5449 21.33 44.5449 21.33C44.5449 21.33 46.7995 19.363 48.2046 19.4865C50.4075 19.6801 49.0454 22.8633 49.0454 22.8633C49.0454 22.8633 43.6598 33.4177 40.583 37.4772C37.5065 41.5366 35.899 43.5057 33.7867 44.5868C32.0449 45.478 29.4921 44.8198 28.3577 43.8321C21.8489 37.043 18.5775 31.3156 17.5205 29.4465Z' fill='black'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6754_234'%3E%3Crect width='64' height='64' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6754_234'%3E%3Crect width='64' height='64' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.logo::after {
  display: block;
  position: absolute;
  bottom: -1px;
  left: 0;
  transform: translateX(calc(50% - 1px));
  content: attr(data-subheader);
  font-size: 13px;
  font-family: Geologica;
  font-weight: 200;
}

.logo:hover {
  color:#5e85ff;
}

.logo:hover::before {
  background-color: #3864f0;
}

.logo-header {
  margin: -10px -10px -4px -10px;
  padding: 15px 10px;
}

.header-main-menu {
  display: flex;
  gap: 15px;
}

.header-main-menu .main-menu-a,
.header-main-menu .main-menu-li {
  padding: 10px 15px;
  font-weight: 200;
  font-size: 20px;
  color: #444;
  font-family: var(--font-buttons);
  background-color: transparent;
}
.header-main-menu .main-menu-li:hover{
  color: #3864f0;
}
.header-main-menu .main-menu-li:active{
  transform: none;
}

.main-menu-li--has-child:after{
  content: "";
  width: 18px;
  height: 22px;
  margin: 0px -2px -2px 1px;
  background-color: #000;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13.0533 8L10 11.0904L6.94 8L6 8.95142L10 13L14 8.95142L13.0533 8Z' fill='black'/%3E%3C/svg%3E%0A");
  mask-size: 22px 22px;
  mask-position: center;
  mask-repeat: no-repeat;
}

.header-main-menu .main-menu-li:hover.main-menu-li--has-child:after{
  background-color: #3864f0;
}

.current-block.main-menu-li--has-child:after{
  width: 25px;
  height: 29px;
  mask-size: 29px 29px;
  margin: 0px -2px -3px 0;
}

.header-main-menu .main-menu-a:hover {
  color: #3864f0;
}



.main-menu-li-child-list{
  flex-direction: column;
  gap: 2px;
  background-color: #fff;
  padding: 6px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(149, 185, 223, 0.55);
  transition: 0s;
}

.header-main-menu .main-menu-li-child-list a{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-size: 17px;
  padding: 8px 12px;
}

.header-main-menu .current-block {
  font-weight: 500;
  font-size: 23px;
}

.composite-button {
  display: flex;
  align-items: center;
  max-width: 100%;
  border-radius: 19px;  
}

.composite-button--blue-400 {
  border: 0;
  background-color: var(--color-blue-400);
  color: var(--color-white);
  border-radius: 19px;
}

.composite-button--soft-blue-400 {
  border: 0;
  background-color: #ddefff;
  color: #4473ff;
  border-radius: 19px;
}

.composite-button__button {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  border-right: 1px solid #cbe6ff;
  color: #4473ff;
  height: 100%;
  padding: 11px 13px 11px 18px;
  font-weight: 300;
  font-family: var(--font-buttons);
  font-size: 16px;
  
  border-top-left-radius: 19px;
  border-bottom-left-radius: 19px;
}

.composite-button__dropdown-chevron--white {
  padding: 10px;
  border-radius: 0;
  height: 100%;
  margin-left: -1px;
  background-color: transparent;
  border-top-right-radius: 19px;
  border-bottom-right-radius: 19px;
}

.composite-button__dropdown-chevron--white:before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-color: #4473ff;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41 8.57996L12 13.17L16.59 8.57996L18 9.99996L12 16L6 9.99996L7.41 8.57996Z' fill='white'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.composite-button__button:hover,
.composite-button__dropdown-chevron--white:hover {
  background-color: #bfe1ff;
  color: #4473ff;
}
.composite-button__dropdown-chevron--white:active {
  transform: none;
}

.header-login-toggle {
  max-width: 250px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  white-space: nowrap;
  padding: 16px 30px;
  font-weight: 300;
  font-family: var(--font-buttons);
  font-size: 16px;
}

.header-login-toggle:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.header-login-list {
  display: none;
  transition: 0s;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 15;
  min-width: 100%;
  width: auto;
  max-width: 450px;
  padding: 12px 10px 10px 10px;
}

.header-login-list-item {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0px;
  border-radius: 0px;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  user-select: none;
  transition: all;
  border-radius: 19px;
  margin-bottom: 9px;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--font-buttons);
  padding: 14px 21px;
  background-color: #ecf6ff;
  color: #3864f0;
  box-shadow: 0 0 10px rgba(107, 179, 255, 0.55);
}

.header-login-list-item:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.header-login-list-item--checks-list {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header-login-list-item--checks-list::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background-color: #000;
  mask: url("data:image/svg+xml,%3Csvg width='64' height='64' viewBox='0 0 64 64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_6754_234)'%3E%3Cg clip-path='url(%23clip1_6754_234)'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M0.00320018 25.1215C-0.234177 8.91957 12.7805 0.0804405 23.6177 0.0804405C31.9845 0.0804405 38.124 0.0471816 42.5075 0.0234351C48.3493 -0.00821346 51.0723 -0.0229646 51.7928 0.0804405C61.6877 0.0804405 64.0656 1.34367 63.9987 12.6568L63.832 40.8021C63.2405 55.0235 51.8488 63.9941 41.0656 63.9941C31.272 63.9941 26.8803 63.9395 24.7005 63.9941C24.1756 64.0072 23.1952 63.9941 22.9455 63.9941C10.7909 63.9941 -0.15162 51.6896 0.00320018 40.7896C0.145315 30.7843 0.0637491 29.2541 0.00320018 25.1215ZM6.26088 39.7005C6.42139 52.8899 19.3906 57.5264 23.5241 57.5264L38.4 57.6C54.2979 57.6 57.7392 44.3547 57.7392 39.7005V10.4586C57.7392 9.09347 57.2864 6.76053 57.0435 6.43477C56.8005 6.10904 51.7928 6.08696 51.7928 6.08696H25.5317C13.9339 6.08696 6.42139 15.581 6.42139 23.9705L6.26088 39.7005Z' fill='black'/%3E%3Cpath d='M17.5205 29.4465C16.675 27.951 17.2598 26.9761 17.782 26.4718C18.3613 25.9123 18.8467 25.6988 20.4242 26.0936C22.7321 26.6711 27.3069 30.3563 30.7747 33.2864C32.0052 34.4098 32.5573 34.9619 33.0076 35.3399C33.4579 35.7179 34.646 35.5059 35.0001 35.1738C36.1985 34.05 33.9427 33.441 33.9427 33.441L31.3907 32.7847C34.4878 29.9668 44.5449 21.33 44.5449 21.33C44.5449 21.33 46.7995 19.363 48.2046 19.4865C50.4075 19.6801 49.0454 22.8633 49.0454 22.8633C49.0454 22.8633 43.6598 33.4177 40.583 37.4772C37.5065 41.5366 35.899 43.5057 33.7867 44.5868C32.0449 45.478 29.4921 44.8198 28.3577 43.8321C21.8489 37.043 18.5775 31.3156 17.5205 29.4465Z' fill='black'/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_6754_234'%3E%3Crect width='64' height='64' fill='white'/%3E%3C/clipPath%3E%3CclipPath id='clip1_6754_234'%3E%3Crect width='64' height='64' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.section-land {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  width: 100%;
  padding: 110px 30px 30px 30px;
  margin-top: -100px;
  margin-bottom: 120px;
}

.land-h1 {
  font-size: 62px;
  max-width: 1280px;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  color: #568cf5;
  font-family: var(--font-heading);
  line-height: 120%;
}

.land-text {
  text-align: center;
  line-height: 155%;
  max-width: 800px;
  font-size: 20px;
}

.section-land [data-fancybox]{
  border: none;
}

.section-land-buttons{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
}

.land-additional-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 5px 10px;
  font-size: 15px;
  margin: 0;
  text-align: center;
  text-wrap: balance;
}

.land-additional-info .element {
  color: #3864f0;
  padding: 5px 12px 6px 12px;
  border-radius: 23px;
  background-color: #ddefff;
  font-family: var(--font-heading);
}

.land-buttons-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 40px;
}

.land-buttons-container .left-part {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.land-buttons-container .right-part {
  display: flex;
}

.button-white-200 {
  background-color: #fff;
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 19px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.button-white-200:hover {
  background-color: #fff;
  box-shadow: 0 0 15px #b4b4b4;
  color: #000;
}

.button-white-400 {
  background-color: #fff;
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 19px;
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.15);
}

.button-white-400:hover {
  background-color: #fff;
  box-shadow: 0 0 15px #b4b4b4;
  color: #000;
}

.button-white-500 {
  background-color: #fff;
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 19px;
  box-shadow: 1px 1px 12px rgba(0, 0, 0, 0.15);
}

.button-white-600:hover {
  background-color: #fff;
  box-shadow: 0 0 15px #a3a3a3;
  color: #000;
}

.button-white-600 {
  background-color: #fff;
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 19px;
  box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.2);
}

.button-white-600:hover {
  background-color: #fff;
  box-shadow: 0 0 15px #a3a3a3;
  color: #000;
}

.button-blue-400 {
  border: 0;
  background-color: var(--color-blue-400);
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 19px;
}

.button-blue-400:hover {
  color: var(--color-white);
  background-color: #55a3fc;
}

.button-grey-border-400 {
  background-color: rgba(255, 255, 255, 0.4);
  color: var(--color-black);
  border: 1px solid var(--color-button-border);
  padding: 12px 20px;
  border-radius: 19px;
}

.button-grey-border-400:hover {
  color: var(--color-black);
  background-color: #eeeeee;
}

.button-grey-transparent-400 {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--color-black);
  padding: 12px 20px;
  border-radius: 19px;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.15);
}

.button-grey-transparent-400:hover {
  color: var(--color-black);
  background-color: #e4e4e4;
}

.button-black-300 {
  background-color: #00132c;
  color: var(--color-white);
  padding: 12px 20px;
  border-radius: 19px;
}

.button-black-300:hover {
  background-color: #1e395c;
}

.button-soft-blue-300{
background-color: #f0f8ff;
  color: #6684e3;
}

.button-soft-blue-300:hover{
  background-color: #bfe1ff;
  color: #3864f0;
}

.button-soft-blue-400{
  background-color: #ebf6ff;
  color: #3864f0;
}

.button-soft-blue-400:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.button-soft-blue-500{
background-color: #ddefff;
  color: #3864f0;
}

.button-soft-blue-500:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.button-soft-blue-600{
  background-color: #bfe1ff;
  color: #3864f0;
}

.button-soft-blue-600:hover {
  background-color: #ecf6ff;
  color: #3864f0;
}

.link-soft-blue-600{
  display: inline;
  color: #3864f0;
  background: transparent;
  padding: 0;
  text-decoration: underline;
  width: fit-content;
}

.link-soft-blue-600:hover{
  color: #85a2ff;
  background: transparent;
}


.button-open-modal-right--black-400::after {
  margin-left: 2px;
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background-color: #000;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 18V20H4C3.46957 20 2.96086 19.7893 2.58579 19.4142C2.21071 19.0391 2 18.5304 2 18V8H4V18M22 6V14C22 14.5304 21.7893 15.0391 21.4142 15.4142C21.0391 15.7893 20.5304 16 20 16H8C7.46957 16 6.96086 15.7893 6.58579 15.4142C6.21071 15.0391 6 14.5304 6 14V6C6 5.46957 6.21071 4.96086 6.58579 4.58579C6.96086 4.21071 7.46957 4 8 4H20C20.5304 4 21.0391 4.21071 21.4142 4.58579C21.7893 4.96086 22 5.46957 22 6ZM20 6H8V14H20V6Z' fill='black'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.button--chevron-right-white {
  position: relative;
  padding-right: 37px;
}

.header-right-part .button--chevron-right-white {
  padding-right: 37px;
}

.button--chevron-right-white:after {
  position: absolute;
  top: 15px;
  right: 10px;
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  mask: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.41 8.57996L12 13.17L16.59 8.57996L18 9.99996L12 16L6 9.99996L7.41 8.57996Z' fill='white'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
}

.modal {
  position: fixed;
  overflow-y: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  z-index: 1000;
  display: flex;
  padding: 20px;
}

.modal-bg {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 100%;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  z-index: 1001;
}

.modal-content {
  margin: auto;
  position: relative;
  z-index: 1002;
  background-color: #fff;
  box-shadow: 0 0 30px #f6f6f6;
  color: #000;
  padding: 20px;
  border-radius: 12px;
  max-width: 950px;
  min-width: 280px;
}

.modal-content.small{
  max-width: 650px;
}

.modal-close {
  position: absolute;
  right: -16px;
  top: -16px;
  width: 43px;
  height: 43px;
  box-sizing: border-box;
  padding: 3px;
  border-radius: 19px;
  background-color: #ffffff;
  cursor: pointer;
  transition: 0.4s ease;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.07);
  border: 0;
}

.modal-close:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.modal-close:hover::before,
.modal-close:hover::after {
  background-color: #3864f0;
}

.modal-close::before {
  content: "";
  border-radius: 50px;
  display: block;
  position: absolute;
  width: 2px;
  height: 20px;
  background: #000000;
  transform: rotate(45deg);
  top: 12px;
  left: 20px;
}

.modal-close::after {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 20px;
  border-radius: 50px;
  background: #000000;
  transform: rotate(135deg);
  top: 12px;
  left: 20px;
}

.modal-window-mobile-menu {
  flex-direction: column;
  margin: auto;
  gap: 10px;
  border-radius: 20px;
  min-width: 280px;
  padding: 10px;
  border-radius: 12px;
  background-color: rgba(0, 0, 0, 0.02);
  width: auto;
}

.modal-window-mobile-menu .modal-close {
  right: -28px;
  top: -32px;
}

.modal-content-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 18px;
}

.modal-content-block .h3 {
  text-align: center;
  margin-top: -5px;
  margin-bottom: 7px;
}

.modal-content-block a{
  text-decoration: underline;
}

.land-1-img-container {
  max-width: 1280px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: 40px;
}

.advantages-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  padding: 40px;
  border-radius: 50px;
  border-top-right-radius: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}

.advantages-card--2-col {
  grid-column: span 2;
  background-image: url("../img/advantages/1.png");
  background-size: 100%;
  color: #fff;
  background-size: cover;
}

.advantages-card--2-col .advantages-h2 {
  color: #fff;
  font-size: 68px;
}

.advantages-h2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: left;
  color: #0077ff;
  margin: 0;
  line-height: 100%;
  font-size: 51px;
}

.advantages-h2 .heading-small-text {
  font-size: 28px;
  line-height: 120%;
}

.advantages-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-wrap: balance;
}

.advantages-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.advantages-li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.advantages-li span:nth-child(2) {
  font-weight: 300;
}

.statistic-key-value {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.statistic-key-value .key {
  line-height: 145%;
}

.statistic-key-value .value {
  color: var(--color-blue-400);
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 300;
}

.section-land-2 {
  margin-top: 40px;
  margin-bottom: 100px;
}

.land-2-grid-2 {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.land-2-grid-2-element {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-grow: 1;
  flex-basis: 280px;
  gap: 20px;
  padding: 16px 20px;
  border-radius: 15px;
  border-top-right-radius: 5px;
  line-height: 125%;
  font-size: 17px;
  font-weight: 400;
}
.land-2-grid-2-element--2-col {
  grid-column: span 2;
}
.land-2-grid-2-element:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}
.land-2-grid-2-ru-logo-1 {
  display: block;
  background-image: url("../img/land-2/rsr.svg");
  padding-top: 100px;
  background-position: 40px 30px;
}

.land-2-grid-2-ru-logo-2 {
  display: block;
  background-image: url("../img/land-2/moeasor.svg");
  padding-top: 100px;
  background-position: 40px 30px;
}

.land-2-grid-2-ru-logo-3 {
  display: block;
  background-image: url("../img/land-2/raia.svg");
  padding-top: 100px;
  background-position: 40px 30px;
}

.section-for-whom {
  margin-top: 160px;
  margin-bottom: 160px;
}

.for-whom-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.for-whom-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-grow: 1;
  gap: 20px;
  padding: 40px;
  padding-top: 40px;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-top-right-radius: 10px;
  line-height: 150%;
  background-color: #fff;
  text-shadow: 1px 1px 2px #fff;
}

.for-whom-card .h3 {
  text-shadow: 0 0 5px #fff;
}

.for-whom-card .description {
  text-shadow: 1px 1px 2px #fff;
}

.for-whom-card.institute {
  background-image: url("../img/for-whom/1.png");
  background-size: contain;
  background-position: right 0% bottom 0;
  padding-right: 40%;
}

.for-whom-card.research {
  background-image: url("../img/for-whom/2.png");
  background-size: contain;
  background-position: right 0 bottom 0;
}

.for-whom-card.publisher {
  background-image: url("../img/for-whom/3.png");
  background-size: contain;
  background-position: right 0% bottom 0;
}

.for-whom-card .description {
  max-width: calc(100% - 160px);
}

.for-whom-card .button {
  margin-top: auto;
}

.section-features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 100px;
  margin-bottom: 200px;
}

.features-grid {
  display: grid;
  gap: 200px;
  max-width: 1265px;
  margin-top: 40px;
}

.features-card {
  display: grid;
  gap: 20px;
}

.features-card-header {
  display: grid;
  gap: 10px;
}

.features-card .h3 {
  max-width: 980px;
}

.features-text {
  max-width: 850px;
  line-height: 155%;
  text-wrap: balance;
}

.main-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(340px, 100%), 1fr));
  gap: 20px;
}

.main-features-grid .card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 25px;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-top-right-radius: 30px;
  border-top-right-radius: 10px;
  line-height: 135%;
  background-color: #fff;
}

.card.transparent-reports {
  background-image: url("../img/features/2.png");
  background-size: 53%;
  background-position: right 10px bottom 0;
  transition: none;
}

.card.feature-ai-detection {
background-image: url("../img/features/1.png");
background-size: 160px;
  background-position: right 0px bottom 0px;
  transition: none;
}

.card.disguises-detector {
  background-image: url("../img/features/3.png");
  background-size: 110px;
  background-position: right 0px bottom 20px;
  transition: none;
}
.card.row-2 {
  grid-row: span 2;
}

.card.col-2 {
  grid-column: span 2;
}

.card .button {
  margin-top: auto;
  align-self: flex-start;
  background-color: #ecf6ff;
  color: #3864f0;
  box-shadow: none;
}

.card .button:hover {
background-color: #bfe1ff;
  color: #3864f0;
}

.card .statistics {
  font-family: var(--font-heading);
  color: #3864f0;
  font-size: 18px;
  line-height: 125%;
  max-width: 200px;
}

.hor-card .h3 {
  margin-bottom: 40px;
}

.hor-card .block {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 60px;
  margin-bottom: 60px;
}

.hor-card .block:last-child {
  margin-bottom: 0;
}

.hor-card .block > * {
  flex-grow: 1;
  flex-basis: 280px;
}

.hor-card .block .h4 {
  margin-bottom: 10px;
}

.hor-card .block .button {
  margin: 40px 0;
  width: fit-content;
}

.card .h3 {
  line-height: 110%;
}

.card .grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(520px, 100%), 1fr));
  gap: 20px;
}

.card .grid .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 35px;
  padding: 40px;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-top-right-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
  background-color: #fff;
}

.section-db {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 200px;
}

.db-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.db-card {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 0;
  gap: 20px;
  padding: 25px;
  background-color: #ffffff;
  border-radius: 30px;
  border-top-right-radius: 30px;
  border-top-right-radius: 10px;
  font-weight: 400;
}

.db-card .button {
  margin-top: auto;
}

.db-card .button:hover {
  box-shadow: 0 0 15px #b4b4b4;
  background-color: inherit;
}

.db-card-header .value-key {
  display: grid;
  gap: 15px;
}

.db-card-header .value-key .value {
  font-family: var(--font-heading);
  color: var(--color-soft-blue-400);
  font-size: 43px;
  font-weight: 500;
  line-height: 90%;
}

.db-card-header .value-key .key {
  font-size: 20px;
  font-weight: 400;
  line-height: 155%;
  color: #033166;
}

.db-card .h3 {
  text-wrap: balance;
  font-size: 26px;
  line-height: 135%;
}

.db-card-decription .value {
  font-family: var(--font-heading);
  color: var(--color-blue-400);
  font-size: 43px;
  font-weight: 500;
  line-height: 90%;
}

.db-card-decription:has(.underline) .value {
  margin-bottom: 10px;
}

.db-card-decription .underline {
  display: inline;
}

.db-spoiler {
  display: none;
  flex-direction: column;
  gap: 10px;
  padding-top: 20px;
  margin-top: auto;
}

.db-spoiler summary {
  display: flex;
  cursor: pointer;
  user-select: none;
  font-size: 16px;
}

.db-spoiler summary:hover {
  color: #3d7ccf;
}

.db-spoiler summary:hover::before {
  color: #3d7ccf;
}

.db-spoiler summary::marker {
  content: "";
}

.db-spoiler summary::before {
  content: "+";
  display: block;
  color: #00132c;
  align-self: flex-start;
  margin-right: 3px;
}

.db-spoiler:open summary::before {
  transform: rotate(45deg);
}

.db-spoiler:open .db-spoiler-content {
  animation: spoiler 0.2s;
}

.db-card-content {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.db-segment {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.db-summed-up-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-top: 50px;
}

.db-summed-up-results .value-key {
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 300px;
  text-align: center;
}

.db-summed-up-results .value {
  font-family: var(--font-heading);
  color: var(--color-soft-blue-400);
  font-size: 32px;
  font-weight: 500;
  line-height: 90%;
}

.db-summed-up-results .key {
  font-size: 20px;
  font-weight: 400;
  line-height: 148%;
  color: #033166;
}

.section-pricing {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 200px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.pricing-type-container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.pricing-type-header {
  display: flex;
  flex-direction: column;
  gap: 5px;
  text-align: center;
}

.pricing-type-description {
  line-height: 180%;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(420px, 100%), 1fr));
  gap: 40px;
}

.pricing-card,
.pricing-type-form {
  background-color: var(--color-white);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-type-form {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
}

.pricing-type-blue-button {
  min-height: 52px;
}

.pricing-card {
  border-radius: 30px;
  border-top-right-radius: 10px;
  padding: 40px;
}

.pricing-card .h3 {
  font-size: 30px;
}

.pricing-card-description {
  line-height: 150%;
}

.pricing-card-cost {
  gap: 10px;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  border-radius: 19px;
  border: 1px solid #fff;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.45);
  margin-top: auto;
  font-size: 24px;
  min-height: 106px;
}

.pricing-card-cost > * {
  flex-grow: 1;
  flex-basis: 0;
}

.unit-price .key {
  font-size: 18px;
}

.unit-price .value {
  font-size: 38px;
}

.total-price-wrap {
  margin-top: 30px;
}

.total-price-wrap .key {
  font-size: 18px;
}

.total-price-wrap .value {
  font-size: 38px;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 8px;
}

.total-price-wrap .value .old-price {
  margin-bottom: 3px;
  font-weight: 100;
  font-size: 28px;
  text-decoration: line-through;
  opacity: 0.7;
}

.limitations {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 20px;
  line-height: 86%;
}

.tariff-basic {
  background-image: url("../img/pricing/1.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-scientific {
  background-image: url("../img/pricing/2.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-dissertation {
  background-image: url("../img/pricing/3.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-legal {
  background-image: url("../img/pricing/4.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-max {
  background-image: url("../img/pricing/5.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-disscouncil {
  background-image: url("../img/pricing/6.jpg");
  background-position: center;
  background-size: cover;
}

.tariff-for-legal-entities {
  background-image: url("../img/pricing/u1.png");
  background-position: center;
  background-size: cover;
}

.tariff-for-legal-entities .limitations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  font-size: 20px;
  line-height: 86%;
}

.pricing-type-input-text {
  outline: none;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 19px;
  border: 2px solid var(--color-black);
  background-color: rgba(255, 255, 255, 0.3);
  font-weight: 400;
  font-family: var(--font-heading);
}

.pricing-type-blue-button {
  width: 100%;
}

.pricing-type-input-text::placeholder {
  color: #666;
  font-weight: 400;
  opacity: 1;
  font-family: var(--font-heading);
}

.order-content-block-range .heading {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 7px;
  margin-bottom: 8px;
  line-height: 115%;
}

.order-content-block-range .heading .right-side {
  display: flex;
  gap: 7px;
  margin-left: 10px;
}

.order-content-block-range .heading .right-side .button {
  width: 42px;
  height: 42px;
  padding: 6px;
  background-color: #fff;
  border-radius: 16px;
  font-size: 24px;
}
.order-content-block-range .heading .right-side .button:hover {
  background-color: #fff;
  box-shadow: 0 0 20px #cccccc;
}

.order-content-block-range .heading .right-side .button:active {
  transform: scale(0.95);
  transition: 0.1s;
}

.order-content-block-range-h2 {
  font-size: 16px;
  font-weight: 400;
  width: 100%;
}

#items-in-tariff {
  width: 60px;
}

.order-content-block-range .col {
  gap: 5px;
}

.order-content-block-range .row {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.order-content-block-range .old-price {
  text-decoration: line-through;
  font-size: 16px;
}

.tariff-for-legal-entities .pricing-card-cost {
  padding: 30px;
}

.tariff-for-legal-entities .pricing-card-cost .row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.tariff-for-legal-entities .pricing-card-cost .row > * {
  flex-basis: 0;
  flex-grow: 1;
}

.order-content-block-range .current-price {
  font-size: 20px;
  font-weight: 600;
}

.unit-price .current-price {
  font-size: 31px;
}

.order-content-block-range .input-type-text {
  max-width: 48px;
  font-size: 16px;
}

.label-range {
  display: flex;
  align-items: center;
  gap: 5px;
  width: 100%;
  position: relative;
}

.input-type-range {
  appearance: none;
  height: 24px;
  width: 100%;
  background-color: transparent;
  cursor: pointer;
}

.input-type-range::-webkit-slider-runnable-track {
  box-sizing: border-box;
  height: 15px;
  background-color: #7e74ce;
  height: 2px;
}

.input-type-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px inset #2b2a33;
  transition: 300ms;
  cursor: grab;
}

.input-type-range::-moz-range-thumb {
  width: 24px;
  height: 24px;
  margin-top: 0;
  border: none;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 0 3px inset #2b2a33;
  transition: 300ms;
  cursor: grab;
}

.input-type-range::-webkit-slider-runnable-track {
  box-sizing: border-box;
  height: 4px;
  background-color: #000000;
  border-radius: 10px;
}

.input-type-range::-moz-range-track {
  box-sizing: border-box;
  height: 4px;
  background-color: #000000;
  border-radius: 10px;
}

.input-type-range::-webkit-slider-thumb {
  margin-top: -11px;
}

.input-type-range:focus-visible {
  outline: none;
}

#items-in-tarrif {
  text-align: center;
}

.pricing-card .submit-button {
  padding: 24px 26px;
  box-shadow: 0 0 15px #eee;
  font-size: 20px;
  transition: 0.2s;
  background-color: #fff;
}

.pricing-card .submit-button:hover {
  background-color: #8cc9ff;
  color: #3864f0;
  box-shadow: 0 0 55px #6db4ff;
}

.section-clients {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 150px;
}

.clients-grid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: 20px;
}

.clients-block {
  flex-grow: 1;
  flex-basis: calc(25% - 20px);
  min-width: 350px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 40px;
  border-radius: 30px;
  border-top-right-radius: 10px;
  font-weight: 400;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
}

.clients-block .h4 {
  font-family: var(--font-text);
  font-weight: 400;
  line-height: 135%;
  color: #000;
  font-size: 20px;
}

.clients-block-img {
  max-width: 100%;
  height: 50px;
  border-radius: 4px;
  border: 0;
}

.clients-description {
  display: block;
  align-self: center;
  text-align: center;
  margin: auto;
}

.section-famous-asked-questions {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 200px;
}

.questions-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.question-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.question-card summary {
  display: flex;
  gap: 8px;
  cursor: pointer;
  width:fit-content;
}

.question-card summary .h3{
  font-size: 22px;
}

.question-card summary:hover .h3,
.question-card summary:hover::before {
  color: #3864f0;
}

.question-card summary::marker {
  content: "";
}

.question-card summary::before {
  content: "+";
  font-family: var(--font-logo);
  font-weight: 100;
  font-size: 22px;
  color: #00132c;
  align-self: flex-start;
}

.question-card:open summary::before {
  transform: rotate(45deg);
}

.question-card:open .question-answer {
  animation: spoiler 0.2s;
}

.question-answer {
  line-height: 160%;
  padding: 0 20px;
  margin-bottom: 20px;
}

@keyframes spoiler {
  0% {
    opacity: 0;
    margin-top: -20px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}

.section-docs {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 200px;
}

.docs-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-feedback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 200px;
}

/* Компоненты формы и инпутов */
.form-card {
  background-color: var(--color-white);
  border-radius: 19px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.04);
}

.button-form-submit {
  padding: 18px 26px;
  box-shadow: 0 0 15px #d8d8d8;
  background-color: #fff;
}

.button-form-submit:hover{
background-color: #8cc9ff;
  color: #3864f0;
  box-shadow: 0 0 55px #6db4ff;
}

.input-text {
  outline: none;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 19px;
  border: 2px solid #575757;
  font-weight: 400;
  font-family: var(--font-heading);
}

.textarea {
  outline: none;
  width: 100%;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 19px;
  border: 2px solid #575757;
  font-family: var(--font-heading);
}

.input-text::placeholder,
.textarea::placeholder {
  font-family: var(--font-heading);
  opacity: 1;
  color: var(--color-black);
}

/* Компонент кнопка-чекбокс */
.hidden-checkbox {
  display: none;
}

.modal-window-checkbox-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.modal-window-login-labeled-checkbox__label {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  padding: 10px 13px;
  margin: 0 -8px;
  border-radius: 12px;
  font-size: 15px;
  line-height: 115%;
  cursor: pointer;
  user-select: none;
}

.modal-window-login-labeled-checkbox__label a {
  color: #292a2d;
  text-decoration: underline;
}

.modal-window-login-labeled-checkbox__label a:hover {
  color: #3864f0;
}

.modal-window-login-labeled-checkbox__visual-checkbox {
  flex-shrink: 0;
  position: relative;
  border-radius: 7px;
  width: 20px;
  height: 20px;
  border: 2px solid #000;
  margin: 0 7px 0 0;
}

.modal-window-login-labeled-checkbox__input-checkbox:checked
  ~ .modal-window-login-labeled-checkbox__visual-checkbox {
  border: 2px solid #000;
}

.modal-window-login-labeled-checkbox__input-checkbox:checked
  ~ .modal-window-login-labeled-checkbox__visual-checkbox::before {
  content: " ";
  display: block;
  position: absolute;
  width: 3px;
  height: 9px;
  background: #000;
  transform: rotate(45deg);
  top: 3px;
  left: 8px;
  border-radius: 2px;
}

.modal-window-login-labeled-checkbox__input-checkbox:checked
  ~ .modal-window-login-labeled-checkbox__visual-checkbox::after {
  content: " ";
  display: block;
  position: absolute;
  width: 3px;
  height: 6px;
  background: #000;
  transform: rotate(-45deg);
  top: 6px;
  left: 4px;
  border-radius: 2px;
}

.modal-window-login-labeled-checkbox__content {
  text-wrap: balance;
}

/* Пост */

.post-h1 {
  font-size: 46px;
  max-width: 1020px;
  margin: 0 auto;
}

.post-content {
  line-height: 150%;
  margin: 40px 0 100px 0;
}

.post-content h2 {
  line-height: 135%;
  font-size: 38px;
  font-weight: 200;
  text-wrap: balance;
  margin: 60px 0 10px 0;
}

.post-content h3 {
  line-height: 135%;
  font-size: 32px;
  font-weight: 200;
  text-wrap: balance;
  margin: 30px 0 10px 0;
}

.post-content h4 {
  line-height: 135%;
  font-size: 26px;
  font-weight: 200;
  text-wrap: balance;
  margin: 20px 0 5px 0;
}

.post-content ul {
  list-style: "· ";
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 20px;
}

/* 404 */

.not-found {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;
  gap: 10px;
  min-height: 50dvh;
  padding-bottom: 111px;
}

.not-found-h1 {
  font-size: 156px;
}

/* Слайдер занимает всю ширину родителя */
.slider {
  position: relative;
  width: 100%;
  user-select: none;
}

.slider__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: 8px;
}
.slider__viewport.is-dragging { cursor: grabbing; }

.slider__track {
  display: flex;
  flex-wrap: nowrap;
  transition: transform .4s ease;
  will-change: transform;
}
.slider__track.is-dragging { transition: none; }

/* Ширину слайдов выставляет JS, но flex: 0 0 auto обязателен */
.slider__slide {
  flex: 0 0 auto;
  min-width: 0;
  box-sizing: border-box;
}

.slide-inner {
  padding: 10px;          /* чтобы текст не упирался в стрелки */
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.slide-inner .text{
  font-size: 20px;
  background-color: #f7f7f7;
  border-radius: 10px;
  padding: 5px 10px;
}

.slide-inner img {
  display: block;
  max-width: 100%;             /* ключевая строка — иначе картинка распирает слайд */
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
}

.slider-nav{
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  margin-bottom: -10px;
}

.slider__btn {
   border: 0; border-radius: 50%;
  cursor: pointer; z-index: 10;
  width: 43px;
  height: 43px;
  background-color: #fff;
  transition: 0.1s ease;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
  border: 1px solid #d2deff;
}
.slider__btn:hover {
  background-color: #bfe1ff;
}
.slider__btn:hover::before,
.slider__btn:hover::after{
  background-color: #3864f0;
}
.slider__btn:disabled { opacity: .2; cursor: default;}
.slider__btn:disabled:hover { background-color: #fff;box-shadow: 0 0 7px rgba(0, 0, 0, 0.05);
  border: 1px solid #d2deff;}
.slider__btn:active{
  transition: 0s;
}

.slider__btn--prev:before{
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-color: #333333;
  mask: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.17167 7.35964e-08L3.5 2.47233L0.8225 9.80821e-09L3.86231e-08 0.761134L3.5 4L7 0.761134L6.17167 7.35964e-08Z' fill='%23FFF'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transform: rotate(90deg);
  flex-shrink: 0;
  margin-left: -1px;
}

.slider__btn--next:before{
  content: '';
  display: block;
  width: 13px;
  height: 13px;
  background-color: #333333;
  mask: url("data:image/svg+xml,%3Csvg width='7' height='4' viewBox='0 0 7 4' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.17167 7.35964e-08L3.5 2.47233L0.8225 9.80821e-09L3.86231e-08 0.761134L3.5 4L7 0.761134L6.17167 7.35964e-08Z' fill='%23FFF'/%3E%3C/svg%3E%0A");
  mask-size: contain;
  mask-position: center;
  mask-repeat: no-repeat;
  transform: rotate(-90deg);
  flex-shrink: 0;
  margin-right: -1px;
}

.slider__btn--next.is-hint {
  animation: nextBtnHint 1.65s ease 3.2s 1;
}

@keyframes nextBtnHint {
  0%, 100% { transform: translateY(0) scale(1); background-color: #fff; }
  17%      { transform: translateY(-16px) scale(1.45); border: 1px solid #5e85ff; background-color: #3864f0; }
  80%      { border: 1px solid #5e85ff; background-color: #3864f0; }
}



.slider__counter { color: #333333;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px; border-radius: 12px; font-size: 16px;font-weight: 600;
  z-index: 10; pointer-events: none;
}

.footer {
  background-color: #fafbff;
  background-image: linear-gradient(to bottom, #fafbff, #fbfbfb, #fff, #fdfeff, #eef5ff);
  padding: 50px 30px 30px 30px;
  color: #fff;
  flex: 0 0 auto;
}

.footer-menus-grid {
  display: flex;
  gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex-grow: 1;
  flex-basis: 260px;
  max-width: 260px;
}

.footer-block .h5 {
  font-size: 20px;
  color: #86a1d4;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.footer-menu-li,
.footer-menu-li-a {
  line-height: 135%;
  font-size: 20px;
  display: inline-block;
  color: #4b6184;
}

.footer-menu-li {
  color: #7798cd;
}

.footer-menu-li-a:hover {
  color: #3864f0;
}

.logo-footer {
  color: #86a1d4;
}

.logo-footer::before {
  background-color: #86a1d4;
}

.logo-footer:hover {
  color: #3864f0;
}

.logo-footer:hover::before {
  background-color: #3864f0;
}

.copyright {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px 20px;
  margin-top: 50px;
  font-family: var(--font-text);
}

.copyright-text {
  line-height: 155%;
  text-align: center;
  color: #86a1d4;
}

.copyright-link {
  color: #86a1d4;
}
.copyright-link:hover {
  color: #3864f0;
}
/* kastrulya-pricing-plans--black-select-2 */
.kastrulya-pricing-plans--black-select-2 {
  position: relative;
  width: 100%;
  min-width: 240px;
}

.kastrulya-pricing-plans--black-select-2 * {
  transition: 0s;
}

.kastrulya-pricing-plans--black-select-2__option {
  overflow: hidden;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  text-wrap: balance;
  appearance: none;
  padding: 9px 20px;
  cursor: pointer;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  color: var(--color-black);
  user-select: none;
  text-align: left;
  font-weight: 200;
  font-size: 18px;
}

.kastrulya-pricing-plans--black-select-2__dropdown
  .kastrulya-pricing-plans--black-select-2__option:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.kastrulya-pricing-plans--black-select-2__option:hover {
  background-color: #ddd;
}

.kastrulya-pricing-plans--black-select-2__option--value {
  padding-right: 47px;
  border-radius: 19px;
  background-color: var(--color-black);
  color: #fff;
  width: 100%;
  min-height: 61px;
}

.kastrulya-pricing-plans--black-select-2__option--value::after {
  position: absolute;
  box-sizing: border-box;
  width: 10px;
  height: 6px;
  top: calc(50% - 2px);
  right: 27px;
  content: "";
  background: url("../img/chevron-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}

.kastrulya-pricing-plans--black-select-2__option.kastrulya-pricing-plans--black-select-2__option--value:hover {
  background-color: #202020;
  color: #fff;
}

.kastrulya-pricing-plans--black-select-2__search-input {
  box-sizing: border-box;
  display: block;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
  border-radius: 0;
  appearance: none;
  z-index: 1;
  padding: 9px 16px;
  min-height: 34px;
  font-size: 16px;
  color: var(--color-black);
  font-weight: 500;
}

.kastrulya-pricing-plans--black-select-2__dropdown {
  box-sizing: border-box;
  overflow: hidden;
  z-index: 15;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  min-width: 100%;
  width: auto;
  max-width: 100%;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.2);
}

.kastrulya-pricing-plans--black-select-2__dropdown
  .kastrulya-pricing-plans--black-select-2__option.kastrulya-pricing-plans--black-select-2__option--value:hover {
  background-color: #4f5257;
}

.kastrulya-pricing-plans--black-select-2--active
  .kastrulya-pricing-plans--black-select-2__option--value::after {
  transform: rotate(-180deg);
}

.kastrulya-pricing-plans--black-select-2--active
  .kastrulya-pricing-plans--black-select-2__option--value:hover,
.kastrulya-pricing-plans--black-select-2--active
  .kastrulya-pricing-plans--black-select-2__option--value:focus {
  background-color: var(--color-black);
}

.kastrulya-pricing-plans--black-select-2__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}

.kastrulya-pricing-plans--black-select-2__option[disabled]:hover,
.kastrulya-pricing-plans--black-select-2__option[disabled]:focus {
  background-color: transparent;
}

.kastrulya-pricing-plans--black-select-2__dropdown
  > .kastrulya-pricing-plans--black-select-2__option:focus {
  background-color: #dddddd;
  transition: 0s;
}

/* Компонент выбора языка */

.header-language {
  display: flex;
  position: relative;
}

.header-language__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  user-select: none;
  transition: 0s;
  text-align: center;
  font-size: 16px;
}

.header-language__option:hover {
  color: #3864f0;
  background: none;
}

.header-language__option:focus {
  transform: none;
}

.header-language__option--value {
  width: 100%;
  max-width: 350px;
  border: 0;
  margin-right: -7px;
  white-space: nowrap;
  background-color: transparent;
  flex-grow: 1;
}

.header-language__dropdown {
  transition: 0s;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 15;
  min-width: 100%;
  width: auto;
  max-width: 450px;
  padding: 12px 10px 10px 10px;
}

.header-language__dropdown .header-language__option {
  background-color: #ecf6ff;
  color: #3864f0;
  border-radius: 19px;
  margin-bottom: 7px;
  font-size: 18px;
  padding: 14px 21px;
  box-shadow: 0 0 10px rgba(149, 185, 223, 0.55);
}

.header-language__dropdown .header-language__option:hover {
background-color: #bfe1ff;
  color: #3864f0;
}

.header-language--active .header-language__option--value:hover,
.header-language--active .header-language__option--value:focus {
  background-color: transparent;
}

.header-language__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}

.header-language__option[disabled]:hover,
.header-language__option[disabled]:focus {
  background-color: transparent;
}

.mobile-language {
  display: flex;
  position: relative;
}

.mobile-language__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  user-select: none;
  transition: 0s;
  text-align: center;
}

.mobile-language__option:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.mobile-language__option:focus {
  transform: none;
}

.mobile-language__option--value {
  width: 100%;
  max-width: 350px;
  border: 0;
  white-space: nowrap;
  background-color: #ddefff;
  color: #3864f0;
  flex-grow: 1;
  font-size: 18px;
  border-radius: 19px;
}

.mobile-language__dropdown {
  transition: 0s;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 15;
  min-width: 100%;
  width: auto;
  max-width: 450px;
  padding: 15px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.15);
  background-color: rgba(0, 0, 0, 0.02);
  border-radius: 19px;
  backdrop-filter: blur(10px);
}

.mobile-language__dropdown .mobile-language__option {
  border-radius: 19px;
  margin-bottom: 7px;
  font-size: 18px;
  padding: 14px 21px;
  background-color: #ddefff;
  color: #3864f0;
  padding: 12px 20px;
  border-radius: 19px;
}

.mobile-language__dropdown .mobile-language__option:hover {
  background-color: #bfe1ff;
  color: #3864f0;
}

.mobile-language--active .mobile-language__option--value:hover,
.mobile-language--active .mobile-language__option--value:focus {
  background-color: #ddefff;
  color: #3864f0;
}

.mobile-language__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}

.mobile-language__option[disabled]:hover,
.mobile-language__option[disabled]:focus {
  background-color: #e4e4e4;
}

/* Выпадающий список */

.kastrulya-float {
  display: flex;
  position: relative;
}

.kastrulya-float__option {
  overflow: hidden;
  box-sizing: border-box;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  white-space: nowrap;
  text-overflow: ellipsis;
  cursor: pointer;
  appearance: none;
  user-select: none;
  transition: 0s;
  text-align: center;
}

.kastrulya-float__option:hover {
  color: #999999;
  background: none;
}

.kastrulya-float__option:focus {
  transform: none;
}

.kastrulya-float__option--value {
  width: 100%;
  max-width: 350px;
  border: 0;
  margin-right: -7px;
  white-space: nowrap;
  background-color: transparent;
  flex-grow: 1;
}

.kastrulya-float__dropdown {
  transition: 0s;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 15;
  min-width: 100%;
  width: auto;
  max-width: 450px;
  padding: 12px 10px 10px 10px;
}

.kastrulya-float__dropdown .kastrulya-float__option {
  background-color: rgba(255, 255, 255, 0.97);
  border-radius: 19px;
  margin-bottom: 7px;
  font-size: 18px;
  padding: 14px 21px;
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.08);
}

.kastrulya-float__dropdown .kastrulya-float__option:hover {
  background-color: rgba(250, 250, 250, 0.8);
  backdrop-filter: blur(5px);
  color: #000;
  box-shadow: 0 0 16px rgba(1, 1, 8, 0.1);
}

.kastrulya-float--active .kastrulya-float__option--value:hover,
.kastrulya-float--active .kastrulya-float__option--value:focus {
  background-color: transparent;
}

.kastrulya-float__option[disabled] {
  color: #a1a1a1;
  cursor: default;
}

.kastrulya-float__option[disabled]:hover,
.kastrulya-float__option[disabled]:focus {
  background-color: transparent;
}

/* Компонент выпадающего списка */
.dropdown-2-container {
  position: relative;
  display: flex;
  flex-direction: column;
}

.dropdown-2-label {
  cursor: pointer;
  max-width: 280px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  appearance: none;
  user-select: none;
  transition: 0s;
  text-align: center;
}

.dropdown-2-label--icon-right {
  background-image: url("./img/uni/chevron-black.svg");
  background-repeat: no-repeat;
  background-position: right 12px top 17px;
  background-size: 12px 6px;
  padding-right: 30px;
}

.dropdown-2-label--icon-right--blue-200 {
  background-image: url("./img/uni/chevron-blue-200.svg");
  background-repeat: no-repeat;
  background-position: right 12px top 17px;
  background-size: 12px 6px;
  padding-right: 30px;
}

.dropdown-2-checkbox {
  display: none;
}

.dropdown-2-checkbox + .dropdown-2-list {
  box-sizing: border-box;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  width: 0;
}

.dropdown-2-checkbox:checked + .dropdown-2-list {
  max-height: 1000px;
  opacity: 1;
  overflow-y: auto;
  width: auto;
  min-width: 100%;
}

.dropdown-2-list {
  display: flex;
  flex-direction: column;
  list-style: none;
  position: absolute;
  margin: 0;
  padding: 0;
  background: white;
  border: 1px solid #dddddd;
  border-radius: 6px;
  z-index: 15;
  top: 100%;
  left: 0;
  width: auto;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  transition: 0s;
}

.dropdown-2-list-item {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #292a2d;
  min-width: max-content;
  width: 100%;
  word-wrap: anywhere;
  z-index: 20;
}

.dropdown-2-list-item:not(:last-child) {
  border-bottom: 1px solid #dddddd;
}

.dropdown-2-list-item-button {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
  color: #292a2d;
  padding: 12px;
  min-height: 42px;
  box-sizing: border-box;
  flex-grow: 1;
  flex-shrink: 0;
  cursor: pointer;
}

.dropdown-2-list-item-button:hover {
  background-color: #efefef;
}

/* Стили со старого лендинга */

.ask-a-question-button {
  bottom: 30px;
  right: 30px;
  position: fixed;
  cursor: pointer;
  border: 2px solid #292A2D;
  box-sizing: border-box;
  border-radius: 17px;
  padding: 15px 37px;
  font-family: 'PT Root UI', sans-serif;
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.025em;
  color: #292A2D;
  background: rgba(248, 248, 250, 0.76);
  z-index: 25;
  backdrop-filter: blur(4px);
}

.ask-a-question-button:hover {
  background-color: #CAD7F4;
}

.section-1-and-section-2-container {
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.container-ai-detector {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 60px;
  width: 100%;
  box-sizing: border-box;
}

.section-ai-detector-1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding-top: 180px;
  padding-bottom: 140px;
  overflow: hidden;
}

.section-ai-detector-1__h1 {
  display: block;
  max-width: 1110px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  line-height: 120%;
  color: #292A2D;
  font-size: 65px;
  text-align: center;
}

.section-ai-detector-1__buttons {
  display: flex;
  gap: 15px 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.section-ai-detector-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
}

.section-ai-detector-block .row {
  display: flex;
  align-items: center;
  gap: 5px;
}

.section-ai-detector-h2 {
  font-size: 31px;
  text-align: center;
}

.section-ai-detector-h3{
  font-size: 26px;
  margin-bottom: 5px;
}

.section-ai-detector-text {
  line-height: 150%;
  font-size: 20px;
  text-wrap: balance;
}

.section-ai-detector-2 {
  display: grid;
  gap: 60px;
  margin-bottom: 130px;
}

.section-ai-detector-2 .section-ai-detector-block:first-child {
  margin-bottom: 40px;
}

.section-ai-detector-block-2 {
  display: grid;
  gap: 20px;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFF;
}

.section-ai-detector-block-2 .section-ai-detector-text {
  font-weight: 500;
}

.section-ai-detector-block-3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-radius: 10px;
  background-color: #FFF;
}

.section-ai-detector-block-3 .col {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 730px;
  gap: 20px;
}

.section-ai-detector-block-3 .section-ai-detector-text {
  text-align: center;
  text-wrap: balance;
  font-weight: 500;
}

.section-ai-detector-block-3 .row {
  display: flex;
  gap: 20px;
}

.section-ai-detector-3 {
  margin-bottom: 130px;
}

.section-ai-detector-4 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 130px;
}

.section-ai-detector-4-grid {
  display: grid;
  gap: 90px;
}

.section-ai-detector-5{
    display: flex;
  flex-direction: column;
  gap: 60px;
  margin-bottom: 130px;
}

.section-ai-detector-pointer {
  position: relative;
}

.section-ai-detector-pointer-text {
  display: block;
  width: 200px;
  line-height: 110%;
  font-size: 20px;
  margin: -5px 0 0 60px;
}

.section-ai-detector-block-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 10px;
}

.section-ai-detector-block-steps-img {
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-ai-detector-block-steps-img [data-fancybox]{
  border-radius: 12px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border: 1px solid #ececec;
}

.section-3 {
  display: flex;
  flex-direction: column;
}

.section-3__content {
  display: flex;
  flex-direction: column;
  margin: 40px 0 0 0;
}

.section-3__step-content {
  display: flex;
  align-items: center;
  margin: 0 0 60px 0;
}

.section-3__step-content>*:first-child {
  max-width: 1330px;
  width: 60%;
  display: flex;
  flex-direction: column;
  margin: 0 20px 0 0;
}

.section-3__step-content__heading-container {
  margin: 0 0 20px 0;
}

.section-3__step-content__heading {
  font-family: 'PT Root UI', sans-serif;
  font-weight: bold;
  font-size: 31px;
  line-height: 140%;
  letter-spacing: 0.025em;
  color: #292A2D;
  text-shadow: 0px 0px 15px #F8F8FA;
  z-index: 5;
  position: relative;
}

.section-3__step-content__step-number {
  font-family: 'Gilroy', sans-serif;
  font-weight: 800;
  font-size: 100px;
  line-height: 100%;
  color: #DDDDDD;
}

.section-3__step-content__instruction-text {
  line-height: 145%;
  text-wrap: balance;
  margin: 30px 0;
}

.section-3__step-content__right-part {
  display: flex;
  align-items: center;
}

.section-3__step-content__video {
  max-width: 1500px;
  margin: 0;
  width: 100%;
  min-height: 200px;
  max-height: 65vh;
  border: 1px solid #E5E6EB;
  border-radius: 10px;
  box-sizing: border-box;
}

.section-4 {
  margin-bottom: 60px;
}

.section-4__content {
  display: flex;
  flex-direction: column;
  margin: 0 0 0 0;
}

.section-4__feature-content {
  display: flex;
  align-items: center;
  margin: 0 0 60px 0;
  flex-shrink: 0;
}

.section-4__feature-content>* {
  display: flex;
  flex-direction: column;
}

.section-4__feature-content>*:first-child {
  margin: 0 20px 0 0;

}

.section-4__feature-content--right-part {
  max-width: 1330px;
  width: 60%;
}

.section-4__feature-content__text-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.section-4__feature-content__video {
  box-sizing: border-box;
  max-width: 100%;
  width: 100%;
  min-height: 200px;
  border: 3px solid #E5E6EB;
  border-radius: 20px;
}

.section-4__feature-content__heading {
  font-family: 'PT Root UI', sans-serif;
  font-weight: bold;
  font-size: 31px;
  line-height: 130%;
  letter-spacing: 0.025em;
  color: #292A2D;
  margin: 0 0 20px 0;
  width: 100%;
}

.section-4__feature-content__instruction-text {
  padding: 0 0 20px 0;
  line-height: 150%;
  width: 100%;
}

.section-5__clarification {
  max-width: 960px;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.015em;
  color: #292A2D;
  margin: 0 0 60px 0;
}

.section-5__dropdown-container {
  display: flex;
  flex-direction: column;
}

.section-5__dropdown-container:not(:last-child) {
  margin: 0 0 80px 0;
}

.section-5__dropdown-toggle {
  margin: 0 0 0 -40px;
  padding: 0 0 0 40px;
}

.dropdown__content__index-databases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(calc(240px + 10vw), 1fr));
  gap: 30px;
  width: 100%;
  font-weight: normal;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.015em;
  color: #292A2D;
  z-index: 5;
  left: 0;
}

.toggler+.dropdown__content__index-databases-grid {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  overflow-y: hidden;
}

.toggler:checked+.dropdown__content__index-databases-grid {
  max-height: max-content;
  opacity: 1;
  overflow-y: auto;
  margin-bottom: 0;
  margin-top: 25px;
}

.h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: 0.025em;
  margin: 0 0 5px 0;
}

.section-6 {
  margin: 80px auto 140px auto;
}

.section-6__h2 {
  margin: 0 0 25px 0;
}

.section-7 {
  max-width: 1880px;
  padding: 0 23px;
  width: calc(100% - 46px);
  display: flex;
  flex-direction: column;
  margin-bottom: 130px;
  display: none;
}

.section-7__content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -30px 0 0;
  width: 100%;
}

.section-7__content>* {
  width: calc(25% - 30px);
  padding: 15px;
  display: flex;
  flex-direction: column;
  margin: 0 0 30px 0;
  color: #292A2D;
  transition: .1s ease;
}

.section-7__news-card:hover {
  background-color: #EBEFF8;
  border-radius: 12px;
}

.section-7__news-card:hover>.section-7__news-card__text-container .section-7__news-card__h4 {
  color: #59A9F3;
}

.section-7__news-card:hover>.section-7__news-card__img-container .section-7__news-card__img {
  background-color: #EBEFF8;
}

.section-7__news-card__img-container {
  position: relative;
  flex-shrink: 0;
}

.section-7__news-card__date {
  position: absolute;
  left: 22px;
  top: 20px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
  line-height: 77.5%;
  letter-spacing: 0.015em;
}

.section-7__news-card__category {
  position: absolute;
  right: 22px;
  top: 20px;
  padding: 8px 15px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: 6px;
  font-weight: bold;
  font-size: 13px;
  line-height: 77.5%;
  letter-spacing: 0.015em;
}

.section-7__news-card__img {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  height: calc(20vw + (200px - 10vw));
}

.section-7__news-card__h4 {
  font-size: 26px;
  line-height: 110%;
  margin: 18px 0 11px 0;
  transition: .1s ease;
}

.section-7__news-card__text {
  font-weight: normal;
  font-size: 20px;
  line-height: 150%;
  letter-spacing: 0.015em;
}

.section-7__more-news {
  display: block;
  margin: 60px auto 0 auto;
  padding: 18px 20%;
  font-weight: normal;
  font-size: 22px;
  line-height: 120%;
  letter-spacing: 0.025em;
  color: #292A2D;
  border: 1px solid #292A2D;
  border-radius: 10px;
}

.section-7__more-news:hover {
  background-color: #CAD7F4;
}

.section-8 {
  display: flex;
  flex-direction: column;
  margin: 0 0 100px 0;
  display: none;
}

.section-8__content {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -40px 0 0;
  width: 100%;
}

.section-8__content>* {
  margin: 0 40px 25px 0;
  width: calc(50% - 40px);
}

.section-8__review__using-since {
  font-weight: normal;
  font-size: 18px;
  line-height: 135%;
  letter-spacing: 0.025em;
  color: #6C6D71;
  margin: 0 9px 6px 0;
  text-align: right;
}

.section-8__review__content {
  padding: 21px 32px;
  border: 1px solid #292A2D;
  border-radius: 10px;
}

.section-8__review__profession {
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.025em;
  color: #6C6D71;
  margin-top: 1px;
}

.section-8__review__review-text {
  margin: 36px 0 15px 0;
  font-weight: normal;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.015em;
  color: #292A2D;
}

.section-8__review__answer-heading {
  margin: 69px 0 9px;
}

.section-8__review__answer-text {
  font-weight: normal;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.015em;
  color: #292A2D;
  margin: 0 0 15px 0;
}

.section-9 {
  margin: 0 auto 140px auto;
  max-width: 1920px;
}

.section-9__content {
  display: flex;
  flex-wrap: wrap;
  margin: 52px 0 0 0;
}

.section-9__content>* {
  margin: 0 10px 48px 0;
  width: calc(25% - 10px);
}

.section-9__client {
  display: flex;
}

.section-9__client:hover>.section-9__client__name {
  text-decoration: underline;
}

.section-9__client__logo {
  max-height: 50px;
  align-self: flex-start;
}

.section-9__client__name {
  font-weight: normal;
  font-size: 18px;
  line-height: 160%;
  letter-spacing: 0.075em;
  color: #87888C;
  margin: 0 0 0 18px;
}

.section-9-more-clients-container {
  width: 100%;
  display: flex;
}

.section-9-more-clients {
  margin: auto;
  font-weight: normal;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0.015em;
  color: #292A2D;
}

.section-documents {
  margin-bottom: 60px;
}

.documents-grid {
  display: flex;
  flex-direction: column;
}

.documents-grid>a {
  text-decoration: underline;
  color: #292A2D;
  margin: 0 20px 20px 0;
  word-wrap: break-word;
  word-break: break-all;
}

.documents-grid>a:hover {
  color: #3392EA;
}

.section-10 {
  background-color: #F8F8FA;
  background-image: url(./img/bg-form.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
}

.section-10-container {
  display: flex;
}

.section-10__h2 {
  margin: 0 0 30px 0;
}

.section-10__form {
  max-width: 474px;
  background: white;
  border-radius: 26px;
  padding: 41px 37px;
  display: flex;
  flex-direction: column;
  width: calc(100% - 66px);
  border: 1px solid #b7b7b7;
}

.section-10__form__email__container,
.section-10__form__textarea__container {
  padding: 8px 14px 14px 14px;
  border: 1px solid #292A2D;
  border-radius: 10px;
  display: flex;
  position: relative;
}

.section-10__form__textarea__container {
  margin: 30px 0;
}

.section-10__form__email-label {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.section-10__form__email-label__heading {
  font-weight: normal;
  font-size: 18px;
  line-height: 130%;
  letter-spacing: 0.025em;
  color: #292A2D;
  order: 1;
  transition: .2s ease;
}

.section-10__form__email__prompt-button {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 19px;
  height: 19px;
  cursor: pointer;
  display: none;
}

.section-10__form__email-label__input-text {
  order: 2;
}

.section-10__form__email-label__input-text:focus~.section-10__form__email-label__heading,
.section-10__form__email-label__textarea:focus~.section-10__form__email-label__heading {
  font-size: 15px;
  line-height: 100%;
  margin: -29px 0 18px 0;
}

.section-10__form__email-label__textarea {
  max-width: 444px;
  order: 2;
}

.section-10__form__disclaimer {
  font-weight: normal;
  font-size: 18px;
  line-height: 150%;
  letter-spacing: 0.015em;
  margin: 0 0 30px 0;
}

.section-10__form__note {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
  font-weight: 400;
  font-size: 18px;
  padding: 20px 15px 15px 15px;
  border: 1px solid #caecff;
  background-color: #e7f6ff;
  color: #001b31;
  border-radius: 10px;
  margin: 15px 0 30px 0;
  line-height: 130%;
}

.section-10__form__note::before {
  content: attr(data-tag-header);
  position: absolute;
  top: -25px;
  left: -20px;
  padding: 6px 12px;
  border-radius: 6px;
  background-color: #c3e8ff;
  font-size: 16px;
}

.section-10__form__button-submit {
  background-color: #3392EA;
  border-radius: 17px;
  padding: 20px;
  font-weight: 500;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0.025em;
  color: #FFFFFF;
  cursor: pointer;
}

.section-10__form__button-submit:hover {
  background-color: #59A9F3;
}

.section-10__form__button-submit:disabled,
.section-10__form__button-submit:disabled:hover {
  cursor: not-allowed;
  background-color: #a0d0fd;
}

.form-submit-loader {
  position: relative;
  padding-left: 36px;
  padding-right: 36px;
  color: #3392EA;
  pointer-events: none;
}

.form-submit-loader::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid #FFF;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.form-submit-error,
.form-submit-error:hover {
  background-color: #F04343;
}

.section-10-container__left-part {
  width: 490px;
  flex-shrink: 0;
}

.section-10-container__right-part {
  display: flex;
  flex-grow: 1;
}

.section-10__call-to-action {
  margin: auto;
  max-width: 686px;
  padding: 60px;
}

.section-10__call-to-action__phrase {
  font-weight: bold;
  font-size: 31px;
  line-height: 151%;
  letter-spacing: 0.025em;
  color: #292A2D;
}

@media (max-width: 1495px) {
  .section-land {
    padding-top: 110px;
  }
  .header-menu-container {
    display: none;
  }

  .mobile-navigator-container {
    display: block;
  }
  .header .mobile-menu-button {
    display: flex;
  }
  .header .login-composite-button {
    display: none;
  }
  .db-card {
    flex-basis: 360px;
  }
  .main-features-grid {
    display: flex;
  }
  .main-features-grid .card {
    flex-basis: 0;
    flex-grow: 1;
  }
  .main-features-grid .card .text {
    max-width: 100%;
  }
  .card.feature-ai-detection {
    background-image: url("../img/features/1.png");
    background-size: 56%;
    background-position: right -20px bottom -20px;
  }
  .card.transparent-reports {
    background-image: url("../img/features/2.png");
    background-size: 270px;
    background-position: center bottom 60px;
  }
  .card.disguises-detector {
    background-image: url("../img/features/3.png");
    background-size: 100px;
    background-position: right 0px bottom 10px;
  }
}

@media (max-width: 1250px) {
  .main-features-grid {
    flex-wrap: wrap;
  }
  .main-features-grid .card {
    flex-basis: 280px;
    flex-grow: 1;
  }
  .container-ai-detector{
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 999px) {
  .header-log-in-button,
  .header-reg-button {
    display: none;
  }
  .container--small {
    padding-left: 15px;
    padding-right: 15px;
  }
  .land-h1 {
    font-size: 42px;
  }

  .land-text {
    max-width: 820px;
    line-height: 170%;
  }

  .land-text br {
    display: none;
  }

  .land-buttons-container {
    flex-direction: column;
  }

  .land-buttons-container .left-part,
  .land-buttons-container .right-part {
    flex-grow: 1;
    width: 100%;
  }

  .land-buttons-container .right-part .login-button {
    width: 100%;
    text-align: center;
  }
  .advantages-grid {
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  }
  .land-2-grid-2 {
    grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
  }

  .advantages-card--2-col,
  .land-2-grid-2-element--2-col {
    grid-column: auto;
  }

  .advantages-card {
    padding: 30px;
  }

  .db-card {
    padding: 20px;
  }

  .land-2-grid-2-element {
    padding: 30px;
  }

  .advantages-card .advantages-h2 {
    font-size: 38px;
  }
  .container--smaller {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header-language {
    display: none;
  }
  .db-card {
    flex-basis: 280px;
  }
}

@media (max-width: 800px) {
  html,
  body {
    font-size: 20px;
  }

  .container {
    padding-left: 5px;
    padding-right: 5px;
  }
  .container--tiny {
    padding-left: 15px;
    padding-right: 15px;
  }

  .section-land,
  .section-features,
  .section-UI,
  .section-capabilities,
  .section-db,
  .section-pricing,
  .section-clients,
  .ection-famous-asked-questions,
  .section-docs,
  .section-feedback {
    margin-bottom: 80px;
    gap: 20px;
  }

  .section-land {
    padding-top: 90px;
  }

  .login-composite-button {
    display: none;
  }

  .header-left-part,
  .header-right-part {
    width: auto;
  }

  .header {
    padding: 3px 5px;
    box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    outline: 1px solid #e7e7e7;
  }

  .logo-header {
    padding: 5px;
    margin: 0;
  }

  .logo-header span,
  .logo-header::after {
    display: none;
  }

  .header .mobile-menu-button {
    padding: 3px;
    width: 36px;
    height: 36px;
  }

  .mobile-menu-a {
    padding: 9px 18px;
  }

  .h2 {
    font-size: 42px;
  }

  .h3 {
    font-size: 32px;
  }

  .features-card {
    gap: 10px;
  }

  .clients-block {
    min-width: 220px;
    padding: 20px;
  }

  .not-found-h1 {
    font-size: 96px;
  }
  .for-whom-card.institute {
    background-image: url("../img/for-whom/1.png");
    background-size: 40%;
    background-position: right 0% bottom 0;
    padding-right: 20%;
  }
  .for-whom-card .h3 {
    width: calc(100% - 160px);
  }
  .section-land {
    padding-left: 15px;
    padding-right: 15px;
  }
  .pricing-type-input-text::placeholder{
    font-size: 12px;
  }
}

@media (max-width: 600px) {
  html,
  body {
    font-size: 18px;
  }
  .header {
    top: auto;
    bottom: 0;
  }

  .section-land {
    padding-top: 20px;
    gap: 25px;
  }

  .h1,
  .h2 {
    font-size: 33px;
  }

  .h3 {
    font-size: 28px;
    font-weight: 100;
  }

  .land-text {
    line-height: 140%;
    font-size: 20px;
  }

  .land-buttons-container .left-part * {
    flex-grow: 1;
    text-align: center;
  }

  .features-grid {
    gap: 120px;
  }

  .footer {
    padding-bottom: 60px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .logo-footer,
  .copyright-text {
    margin: 0 auto;
  }
  .copyright-text {
    font-size: 18px;
  }
  .main-features-grid .card {
    flex-basis: 300px;
    flex-grow: 1;
  }
  .main-features-grid .card .text {
    max-width: calc(100% - 160px);
  }
  .card.disguises-detector {
    background-image: url("../img/features/3.png");
    background-size: 130px;
    background-position: right 0px bottom 10px;
  }
  .card.transparent-reports {
    background-image: url("../img/features/2.png");
    background-size: 190px;
    background-position: right center;
  }
  .card.feature-ai-detection {
    background-image: url("../img/features/1.png");
    background-size: 200px;
    background-position: right 0 bottom 0;
  }

  .for-whom-card.research {
    background-image: url("../img/for-whom/2.png");
    background-size: 30%;
    background-position: right 0 bottom 0;
  }
  .for-whom-card.publisher {
    background-image: url("../img/for-whom/3.png");
    background-size: 30%;
    background-position: right 0% bottom 0;
  }
  .for-whom-card {
    padding: 20px;
  }
  .db-card-header .value-key {
    gap: 5px;
  }
  .db-card-header .value-key .value {
    font-size: 28px;
  }
  .pricing-card,
  .tariff-for-legal-entities .pricing-card-cost {
    padding: 20px;
  }
  .pricing-card-cost {
    flex-wrap: wrap;
    gap: 20px;
  }
  .pricing-card-cost > * {
    flex-basis: 280px;
  }
  .total-price-wrap .value {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .total-price-wrap .value .old-price {
    margin-bottom: -10px;
  }
  .total-price-wrap {
    margin-bottom: 15px;
  }
  .total-price-wrap .value {
    font-size: 28px;
  }
  .section-land-2 {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .section-land {
    margin-bottom: 0;
  }
  .land-2-grid-2-element {
    padding: 20px;
  }
  .section-for-whom {
    margin-top: 40px;
    margin-bottom: 30px;
  }
  .unit-price .value {
    font-size: 28px;
  }
  .pricing-card .submit-button {
    padding: 16px 22px;
    font-size: 18px;
  }
  .container-ai-detector{
    padding-left: 15px;
    padding-right: 15px;
  }
  .section-ai-detector-4-grid{
    gap: 50px;
  }
  .section-ai-detector-2, .section-ai-detector-4, .section-ai-detector-5{
    gap: 20px;
  }
}

@media (max-width: 500px) {
  .for-whom-card .description,
  .for-whom-card .h3 {
    max-width: 100%;
    width: 100%;
  }
  .for-whom-card.institute {
    background-image: url("../img/for-whom/1.png");
    background-size: 140px;
    background-position: right 0% bottom 0;
  }
  .for-whom-card.research {
    background-image: url("../img/for-whom/2.png");
    background-size: 120px;
    background-position: right -20px bottom 0;
  }
  .for-whom-card.publisher {
    background-image: url("../img/for-whom/3.png");
    background-size: 100px;
    background-position: right 0% bottom 0;
  }
  .section-ai-detector-h2,
  .h1, .h2{
    font-size: 22px;
  }
  .section-ai-detector-h3{
    font-size: 19px;
  }
  .h3 {
    font-size: 24px;
    font-weight: 100;
  }
  .land-text {
    line-height: 130%;
    font-size: 18px;
    margin-bottom: 10px;
  }
  .section-land {
    padding-top: 15px;
    gap: 10px;
  }
  .section-ai-detector-block{
    padding: 15px;
  }
  .section-ai-detector-text{
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  .main-features-grid .card {
    background-image: none;
  }
  .main-features-grid .card .text {
    max-width: 100%;
  }
  .main-features-grid .card .statistics {
    max-width: 100%;
  }
  .land-h1 {
    font-size: 23px;
    text-align: left;
    text-wrap: balance;
  }
  .land-text {
    text-align: left;
    text-wrap: balance;
  }
  .land-additional-info {
    text-align: left;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .land-additional-info .element {
    display: inline-block;
    padding: 10px 20px;
  }
  .container-ai-detector{
    padding-left: 5px;
    padding-right: 5px;
  }
  .documents-grid > a{
    font-size: 15px;
  }
}

@media (max-width: 400px) {
  .mobile-navigator-container {
    font-size: 20px;
  }

  .kastrulya-pricing-plans--black-select-2 {
    min-width: 200px;
  }
}

@font-face {
  font-family: "NTSomic";
  src: url("../fonts/NTSomic-Regular.woff2") format("woff2"),
    url("../fonts/NTSomic-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "NTSomic";
  src: url("../fonts/NTSomic-Medium.woff2") format("woff2"),
    url("../fonts/NTSomic-Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "NTSomic";
  src: url("../fonts/NTSomic-Semibold.woff2") format("woff2"),
    url("../fonts/NTSomic-Semibold.ttf");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Thin.woff2") format("woff2"),
    url("../fonts/Geologica-Thin.ttf");
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-ExtraLight.woff2") format("woff2"),
    url("../fonts/Geologica-ExtraLight.ttf");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Light.woff2") format("woff2"),
    url("../fonts/Geologica-Light.ttf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "Geologica";
  src: url("../fonts/Geologica-Regular.woff2") format("woff2"),
    url("../fonts/Geologica-Regular.ttf");
  font-weight: 400;
  font-style: normal;
}
