@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter/Inter-VariableFont_opsz,wght.ttf') format('truetype');
  font-weight: 100 900; /* диапазон веса */
  font-style: normal;
  font-optical-sizing: auto;
}

@font-face {
  font-family: 'Inter';
  src: url('/fonts/Inter/Inter-Italic-VariableFont_opsz,wght.ttf') format('truetype');
  font-style: italic;
  font-weight: 100 900; /* переменный диапазон толщины */
  font-optical-sizing: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

    font-family: 'Inter', sans-serif;
}


li {
    list-style: none;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
    overflow-y: scroll;
}

button {
    border: 0;
    cursor: pointer;
}

.button {
    border: 0;
    cursor: pointer;
}

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

body {
    background: var(--background);
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-response-output {
    display: none !important;
}

.wpcf7-not-valid-tip {
    color: var(--error-color) !important;
    font-size: 14px !important;
    margin-top: 5px !important;
}

.wpcf7-not-valid {
    border-color: var(--error-color) !important;
}

.footer__content-contacts-socials-link svg rect,
.footer__content-contacts-socials-link svg path {
    transition: var(--default-hover-transition);
}

.footer__content-contacts-socials-link svg rect {
    fill: #F2F3F899 !important;
}

.footer__content-contacts-socials-link:hover svg rect {
    fill: #00ADD7 !important;
    fill-opacity: 1 !important;
}

.no-scroll {
    overflow: hidden;
}

.modal__body::-webkit-scrollbar {
    width: 6px;
}

.modal__body::-webkit-scrollbar-thumb {
    background-color: transparent;
    border-radius: 3px;
}

.modal__body::-webkit-scrollbar-track {
    background: transparent;
}

.modal__body {
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.4) transparent;
}

:root {
    /*region bp*/
        --L-bp: 1440px;
        --M-bp: 1024px;
        --S-bp: 768px;
        --XS-bp: 375px;
    /*endregion*/

    --default-block-br: 20px;

    /*region transition*/
    --default-hover-transition: 0.4s;
    /*endregion*/

    /*region color*/
    --background: #0F161E;

    --nav-primary: #F2F3F8;
    --nav-hover: #00ADD7;

    --primary-button-background: #00ADD7;

    --black-color: #0F161E;
    --white-color: #F2F3F8;

    --header-border: #203040;

    --footer-tile-background: #203040;
    --foter-tile-counter-color: #00ADD7;
    --footer-border-top: #FDFDFD1A;

    --content-offer-linear: linear-gradient(180deg, #0067CB 0%, #9739FF 62.51%, #9739FF 70.67%);

    --button-linear: linear-gradient(0deg, #0D161F 36%, #008BC1 164%);
    --button-linear-hover: linear-gradient(0deg, #0D161F -8%, #008BC1 131%);

    --button-transparent-background-hover: #00E0FF;
    --authors-linear-background :linear-gradient(180deg, #0066CD 0%, #0D161F 100%);

    --author-image-bg: #E3E5EB;
    --reviews-linear-bg: linear-gradient(180deg, #F2F3F9 -26.63%, #E1FBFF 125.75%);

    --border-focus: #CBD4FFCC;
    --error-color: #FFB73A;
    /*endregion*/
}

.app {

}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 22, 30, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
    z-index: 900;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 50px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 25px;
    }
}

@media (max-width: 425px) {
    .container {
        padding: 0 20px;
    }
}

.content-block {
    border-radius: var(--default-block-br);
    padding: 30px;
}

.linear-button {
    padding: 13px 26px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-transform: uppercase;
    border-radius: 88px;
    background: var(--button-linear);
    color: var(--white-color);
    display: block;
    text-align: center;
    text-decoration: none;
}

/*TODO (linear-gradient) нельзя анимировать напрямую*/
.linear-button:hover {
    background: var(--button-linear-hover);
    transition: var(--default-hover-transition);
}

.content__form-block-button-container {
    margin-top: auto;
}

.transparent-button {
    padding: 13px 36px;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: var(--white-color);
    background: transparent;
    border-radius: 48px;
    border: 1px solid var(--white-color);
    display: block;
}

.transparent-button:hover {
    background: var(--button-transparent-background-hover);
    border: 1px solid var(--button-transparent-background-hover);
    color: var(--black-color);
    transition: var(--default-hover-transition);
}

.fill-button {
    border: 0;
    padding: 13px 19px;
    border-radius: 48px;
    background: var(--primary-button-background);
    color: var(--white-color);
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    display: block;
    width: max-content;
}

.fill-button:hover {
    transition: var(--default-hover-transition);
    color: var(--black-color);
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input.error {
    border-color: var(--error-color);
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border: 1px solid var(--border-focus);
    border-radius: 5px;
    background: transparent;
    color: var(--white-color);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 16px;
    color: var(--white-color);
    pointer-events: none;
    transition: 0.2s ease all;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
}

.form-group input:focus {
    outline: none;
    border-color: var(--white-color);
}

.form-group.focused label,
.form-group.filled  label {
    top: -8px;
    left: 16px;
    background: var(--content-offer-linear);
    border-radius: 4px;
    padding: 1px 3px;
    font-size: 10px;
    line-height: 150%;
}

.checkbox-privacy {
    margin-top: -5px;
    margin-bottom: 10px;
}

.content__tile-1 {
    grid-column: 1/2;
    grid-row: 1/2;
}

.content__tile-2 {
    grid-column: 1/2;
    grid-row: 2/3;
}

.content__tile-3 {
    grid-column: 2/3;
    grid-row: 1/3;
}

.preview-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1000;
}

.preview-modal.visible {
    opacity: 1;
    pointer-events: auto;
}

.preview-modal__content {
    max-width: 660px;
    width: 90%;
    border-radius: 8px;
    position: relative;
}

.preview-modal .content__preview-description-text {
    padding-right: 0;
    max-height: unset;
    overflow: auto;
}

.modal__body {
    max-height: 80vh;
    overflow-y: scroll;
    border-radius: 20px;
}

.preview-modal__close {
    position: absolute;
    top: -51px;
    right: 0;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background: var(--foter-tile-counter-color);
    border-radius: 100%;
}

.preview-modal__close img {

}

/*region header*/
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header {
    transition: var(--default-hover-transition);
    background: var(--background);

    overflow: hidden;
    /*height: 80px;*/
    max-height: 80px;
}

.header.open {
    /*height: 520px;*/
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-color: var(--header-border);
    max-height: 1000px;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
}

.header.scrolled {
    border-width: 0 1px 1px 1px;
    border-style: solid;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border-color: var(--header-border);
    transition: var(--default-hover-transition);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0 16px 0;
}

.header__logo {
    display: block;
    width: 45px;
    height: 51px;
    overflow: hidden;
    cursor: pointer;
}

.header__logo img {
    width: 100%;
    height: 100%;
}

.header__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.header__nav-item {
    text-decoration: none;
    display: block;
    font-weight: 500;
    font-size: 16px;
    color: var(--nav-primary);
    cursor: pointer;
    padding: 4px;
}

.header__nav-item:hover {
    color: var(--nav-hover);
    transition: var(--default-hover-transition);
}

.header__menu-button-container {
    display: none;
    align-items: center;
    margin-left: auto;
}

.header__menu-button-wrapper {
    background: var(--primary-button-background);
    width: 50px;
    height: 50px;
    margin-left: auto;
    margin-right: 20px;
    border-radius: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__menu-button {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.header__menu-button span {
    width: 22px;
    height: 2px;
    background: white;
    transition: 0.3s;
}

.header__menu-button-wrapper.active .header__menu-button span:nth-child(1) {
    transform: rotate(45deg);
    position: absolute;
}
.header__menu-button-wrapper.active .header__menu-button span:nth-child(2) {
    transition: none;
    opacity: 0;
}
.header__menu-button-wrapper.active .header__menu-button span:nth-child(3) {
    transform: rotate(-45deg);
    position: absolute;
}

.header__menu {
    height: 0;
    overflow: hidden;
    transition: var(--default-hover-transition);
}

.header.open .header__menu {
    display: block;
}

.header__menu-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
    background: var(--header-border);
    padding: 50px;
    border-radius: 20px;
    margin-bottom: 50px;
}

.header__menu-list-item {
    text-align: center;
}

.header__menu-list-item a {
    font-weight: 500;
    font-size: 24px;
    line-height: 110%;
    color: var(--white-color);
    text-decoration: none;
}

.header__menu-list-item-button {
    display: none;
    width: 100%;
}

.header__menu-list-item-button button {
    width: 100%;
}

/*endregion*/

/*region content*/
.content {

}

.content__offer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 10px;
    min-height: 600px;
    margin-bottom: 50px;
}

.content__offer-text {
    min-width: 0;
    grid-column: 1/2;
    background: var(--content-offer-linear);
    display: flex;
    flex-direction: column;
}

.content__offer-text-top-row {
    opacity: 0.7;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white-color);
    padding-bottom: 20px;
    border-bottom: 1px solid var(--white-color);
}

.content__offer-content {
    margin-top: auto;
}

.content__offer-title {
    font-weight: 500;
    font-size: 64px;
    color: var(--white-color);
    line-height: 103%;
    margin-bottom: 20px;
    padding-top: 25px;

    /*TODO*/
    padding-right: 20px;
}

.content__offer-title-veb {
    padding-right: 35px;
}

.content__offer-subtitle {
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
    line-height: 150%;
    margin-bottom: 30px;

    max-width: 440px;
}

.content__offer-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.content__offer-actions-button-container {

}

.content__offer-actions-button {
    white-space: nowrap;
    display: block;
    text-align: center;
    text-decoration: none;
}

.content__offer-text-top-row-title {
    font-weight: 400;
    font-size: 14px;
}

.content__offer-text-top-row-content span {
    font-weight: 400;
    font-size: 14px;
}

.content__offer-text-top-row-content {
    display: flex;
    align-items: center;
}

.content__offer-text-top-row-content span {
    padding-left: 6px;
}

.content__offer-text-top-row-content-image {
    width: 24px;
    height: 24px;
}

.content__offer-text-top-row-content-image img {
    width: 100%;
    height: 100%;
}

.content__offer-image {
    grid-column: 2/3;
    background: var(--content-offer-linear);
    padding: 0;
    overflow: hidden;
    position: relative;
}

.content__offer-image-main {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    min-width: 100%;
    height: 100%;
    z-index: 2;
    object-fit: cover;
}

.content__offer-image-back {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    bottom: 30px;
    width: auto;
    height: auto;
    z-index: 1;
}

.content__tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 40px;
    align-items: stretch;
}

.content__tile {
    background: var(--white-color);
    border-radius: var(--default-block-br);
    padding: 24px 30px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.content__tile-image {
    overflow: hidden;
    padding: 0;
    background: var(--background);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    display: block;
}

.content__tile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--default-block-br);
}

.content__tile-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
}

.content__tile-icon img {
    width: 100%;
    height: 100%;
}

.content__tile-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 119%;
    color: var(--black-color);
    margin-top: auto;
    margin-bottom: 10px;
}

.content__tile-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
}

.content__tile-text-first {
    max-width: 530px;
}

.content__tile-list {
    font-weight: 400;
    font-size: 16px;
    color: var(--black-color);
    line-height: 150%;
    list-style: none;
    padding-left: 0;
}

.content__tile-list li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
}

.content__tile-list li:last-child {
    margin-bottom: 0;
}

.content__tile-list li::before {
    content: "–";
    position: absolute;
    left: 0;
}

.content__small-offer {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 4fr 2fr;
    gap: 10px;
}

.content__small-offer-text {
    grid-column: 1/2;
    margin: auto 0;
}

.content__small-offer-text-title {
    font-weight: 500;
    font-size: 48px;
    line-height: 111%;
    color: var(--white-color);
    margin-bottom: 30px;
}

.content__small-offer-text-button-container {

}

.content__small-offer-text-button-container a {
    padding: 13px 38px;
}

.content__small-offer-image {
    display: flex;
    justify-content: right;
    align-items: center;
}

.content__small-offer-image img {
    width: 85px;
    height: auto;
    margin-left: -43px;
}

.content__small-offer-image img:first-child {
    margin-left: 0;
}

.content__additional {
    margin-bottom: 100px;
}

.content__additional-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 119%;
    color: var(--white-color);
    margin-bottom: 20px;
}

.content__additional-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
}

.content__additional-item {

}

.content__additional-item img {
    transition: var(--default-hover-transition);
}

.content__additional-item:hover img {
    transition: var(--default-hover-transition);
    transform: scale(1.2);
}

.content__additional-item-image-container {
    position: relative;
    margin-bottom: 30px;
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
}

.content__additional-item-image-container img {
    z-index: 1;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.content__additional-item-sticker {
    position: absolute;
    z-index: 2;
    left: 10px;
    top: 10px;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--black-color);
    padding: 5px 10px;
    border-radius: 5px;
    background: var(--white-color);
}

.content__additional-item-date {
    margin-bottom: 5px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-color);
}

.content__additional-item-description {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--white-color);
}

.content__authors {
    background: var(--authors-linear-background);
    width: 100vw;
    margin-left: calc(-1 * (100vw - 100%) / 2);
    padding: 50px 0;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 50px;
}

.content__authors-title {
    font-weight: 700;
    font-size: 42px;
    line-height: 119%;
    color: var(--white-color);
    margin-bottom: 20px;
}

.content__authors-about {
    margin-bottom: 70px;
}

.content__authors-about-items {

}

.content__authors-about-item {
    background: linear-gradient(180deg, #F2F3F9 -26.63%, #E1FBFF 125.75%);

    border-radius: 10px;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 380px auto;
    grid-column-gap: 10px;
    padding: 10px;
}

.content__authors-about-item-image {
    background: var(--author-image-bg);

    position: relative;
    overflow: hidden;
    height: 380px;
    width: 380px;
}

.content__authors-about-item-image img {
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.content__authors-about-item-text-wrapper {
    display: flex;
    flex-direction: column;
    padding: 40px ;
}

.content__authors-about-item-text-top-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.content__authors-about-item-text-title {

}

.content__authors-about-item-text-title-name {
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    color: var(--black-color);
}

.content__authors-about-item-text-title-job-title {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
    opacity: 0.5;
    max-width: 440px;
}

.content__authors-about-item-text-icon {

}

.content__authors-about-item-text-description {
    font-weight: 400;
    font-size: 20px;
    line-height: 150%;
    color: var(--black-color);
    margin-top: auto;
    max-width: 700px;
}

.content__authors-reviews {

}

.content__authors-reviews-title {
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 42px;
    line-height: 119%;
    color: var(--white-color);
}

.content__authors-reviews-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.content__authors-reviews-item {
    padding: 30px;
    background: var(--reviews-linear-bg);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.content__authors-reviews-item-text {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
    margin-bottom: 20px;
}

.content__authors-reviews-item-person {
    margin-top: auto;
    display: flex;
    align-items: center;
}

.content__authors-reviews-item-person-image-container {
    width: 80px;
    height: 80px;
    border-radius: 100%;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 30px;
}

.content__authors-reviews-item-person-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content__authors-reviews-item-person-info {

}

.content__authors-reviews-item-person-title {
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    color: var(--black-color);
}

.content__authors-reviews-item-person-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
    opacity: 0.5;
}

.content__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    overflow: hidden;
    margin-bottom: 96px;
}

.retry-button {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    text-transform: uppercase;
    padding: 13px 21px;
    background: var(--black-color);
    border-radius: 48px;
    color: var(--white-color);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
    -webkit-text-fill-color: var(--white-color) !important;
    caret-color: var(--white-color) !important;
    transition: background-color 5000s ease-in-out 0s;
}

.content__form-left {
    padding: 30px;
    color: var(--white-color);
}

.content__form-title-result {
    margin-bottom: 30px;
}

.content__form-title {
    margin-bottom: 20px;
    font-weight: 500;
    font-size: 48px;
    line-height: 111%;
}

.error-message {
    color: var(--error-color);
    font-size: 14px;
    margin-top: 5px;
    display: none;
}

.content__form-checkbox label span.error {
    color: var(--error-color);
}

.content__form-title span {
    display: block;
}

.content__form-form {
    display: flex;
    flex-direction: column;
}

.content__form-result {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.content__form-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.content__form-checkbox label span {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: var(--border-focus);
    display: block;
}

.content__form-checkbox label span::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    width: 20px;
    height: 20px;
    border: 1px solid var(--border-focus);
    border-radius: 5px;
    background: transparent;
    transition: background 0.2s, border-color 0.2s;
}

.content__form-checkbox input:checked + span::before {
    background: var(--border-focus);
}

.content__form-right {
    position: relative;
    background: var(--content-offer-linear);
    overflow: hidden;
}

.content__form-right-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    position: absolute;
    left: 0;
    top: 0;
}

.content__form-right-bg-image {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 30px;
}

.content__form-right-bg-image-mac {
    padding: 30px;
}

.content__form-block {
    background: var(--content-offer-linear);
    overflow: hidden;
    border-radius: var(--default-block-br);
}

.content__form-block-items {
    margin-top: 30px;
}

.content__form-block-items li {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--white-color);
    margin-bottom: 20px;
}

.content__form-left-register {
    min-height: 600px;
    display: flex;
    flex-flow: column;
}

.content__form-left-register-description {
    padding-top: 30px;
    margin-bottom: 30px;
}

.content__form-button {
    width: 100%;
    margin-top: 24px;
    max-width: 210px;
}

.content__preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
    gap: 10px;
}

.content__preview-list {
    background: var(--white-color);
    padding-top: 24px;
}

.content__preview-text {
    background: var(--white-color);
    padding-top: 24px;
}

.content__preview-description-text {
    margin-bottom: 40px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    padding-right: 35px;

    max-height: 333px;
    overflow: auto;
}

.content__preview-description-item {
    margin-bottom: 20px;
}

.content__preview-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 119%;
    margin-bottom: 17px;
    color: var(--black-color);
}

.content__preview-subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
    margin-bottom: 12px;
}

.content__preview-description {
    padding-left: 14px;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
}

.part {
    display: flex;
    margin-bottom: 18px;
}

.part-label {
    display: block;
}

.part-title {
    display: block;
}

.content__preview-description strong {
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    color: var(--black-color);
    margin-right: 28px;
}

.content__preview-description li {
    display: flex;
    gap: 28px;
    margin-bottom: 20px;
}

.chapter-label {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    color: #0F161E80;
}

@media (min-width: 769px) {
    .content__preview-description strong,
    .chapter-label {
        flex: 0 0 65px;
        width: 65px;
        max-width: 65px;
        text-align: right;
        word-wrap: break-word;
    }
}

.chapter-title {
    display: block;
}

.content__preview-modal-button {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--primary-button-background);
    margin-left: 105px;
    background: var(--white-color);
    cursor: pointer;
    text-decoration-color: var(--primary-button-background);
}

.content__preview-text .content__preview-modal-button {
    margin-left: 0;
    margin-bottom: 20px;
}

.content__preview-modal-button:hover {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    text-align: center;
    vertical-align: middle;
    text-decoration: underline;
    text-decoration-style: solid;
    color: #0F161E;
    transition: var(--default-hover-transition);
    text-decoration-color: var(--primary-button-background);
}

.content__preview-pdf {
    background: var(--white-color);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.content__preview-pdf a {
    position: relative;
    display: block;
    z-index: 2;
}

.content__preview-pdf img {
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    object-fit: contain;
    position: absolute;
    z-index: 1;
    height: calc(100% - 60px);
}
/*endregion*/

/*region footer*/
.footer {
    padding-top: 50px;
    border-top: 1px solid var(--footer-border-top);
}

.content__stats-title {
    font-weight: 500;
    font-size: 64px;
    color: var(--white-color);
    margin-bottom: 30px;
    padding-right: 40px;
    line-height: 100%;
}

.content__stats-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
    margin-bottom: 50px;
}

.content__stats-tiles-tile {
    position: relative;
    background-color: var(--footer-tile-background);
    padding: 30px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-flow: column;
}

.content__stats-tiles-tile-counter {
    z-index: 2;
    font-weight: 500;
    font-size: 64px;
    color: var(--foter-tile-counter-color);
    margin-bottom: 15px;
}

.content__stats-tiles-tile-description {
    z-index: 2;
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
    max-width: 70%;
}

.content__stats-tiles-tile-image {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    max-width: 50%;
    display: flex;
    justify-content: right;
    align-items: center;
    padding-right: 30px;
}

.content__stats-tiles-tile-image img {

}

.footer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 50px 0;
}

.footer__content-description {
    color: var(--white-color);
    max-width: 70%;
    grid-column: 1/2;
}

.footer__content-description-title {
    font-weight: 400;
    font-size: 20px;
    margin-bottom: 30px;
}

.footer__content-description-text {
    font-weight: 400;
    font-size: 14px;
    margin-bottom: 10px;
}

.footer__content-contacts {
    grid-column: 2/3;
    display: grid;
    grid-template-columns: 1fr 2fr;
}

.footer__content-contacts-socials {

}

.footer__content-contacts-contact-wrapper {
    display: flex;
    justify-content: end;
}

.footer__content-contacts-contact {
    width: max-content;
}

.footer__content-contacts-title {
    font-weight: 400;
    font-size: 20px;
    color: var(--white-color);
    margin-bottom: 20px;
}

.footer__content-contacts-socials-links {
    display: flex;
    gap: 10px;
}

.footer__content-contacts-socials-link {
    width: 50px;
    height: 50px;
}

/*.footer__content-contacts-socials-link:hover img svg {*/
/*    fill: var(--button-transparent-background-hover);*/
/*}*/

.footer__content-contacts-socials-link svg {
    width: 100%;
    height: 100%;
}

.footer__content-contacts-contact-phone a {
    display: block;
    font-weight: 400;
    font-size: 32px;
    color: var(--white-color);
    margin-bottom: 19px;
}

.footer__content-contacts-contact-mail a {
    display: block;
    font-weight: 400;
    font-size: 16px;
    color: var(--white-color);
}

.footer__bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 50px;
    align-items: center;
}

.footer__bottom-policy {
    font-weight: 400;
    font-size: 14px;
    color: var(--white-color);
    grid-column: 1/2;
}

.footer__bottom-cookie {
    font-weight: 400;
    font-size: 14px;
    color: var(--white-color);
    grid-column: 2/3;
}
/*endregion*/

/*region animation*/
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
/*     transition: opacity 0.6s ease-out, transform 0.6s ease-out; */
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.content__form-right-main-image-mac {
    position: absolute;
    left: 0;
    bottom: 0;
    top: 0;
    right: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.content__tile-text p:not(:last-child),
.content__authors-about-item-text-description p:not(:last-child),
.content__authors-reviews-item-text p:not(:last-child),
.footer__content-description-text p:not(:last-child),
.content__preview-description-text p:not(:last-child),
.content__form-left-register-description p:not(:last-child) {
    margin-bottom: 15px;
}


/*endregion*/

/*region adaptive*/
@media (max-width: 1250px) {
    .content__stats-tiles-tile-image {
        padding-right: 0;
        right: -8%;
    }
}

@media (max-width: 1024px) {
	.content__additional-title,
	.content__authors-reviews-title,
	.content__authors-title {
		font-size: 38px;
	}
	
    .content__preview-description-text {
        padding-right: 0;
    }

    .content__tile-title {
        font-weight: 700;
        font-size: 32px;
        line-height: 119%;
    }

    .content__authors-about-item-text-description {
        font-weight: 400;
        font-size: 20px;
        line-height: 150%;
    }

    .content__tile-text-first {
        max-width: 360px;
    }

    .linear-button {
        padding: 13px 20px;
    }

    .transparent-button {
        padding: 13px 30px;
    }

    .header__nav {
        display: none;
    }

    .header__menu-button-container {
        display: flex;
    }

    .content__offer-title {
        font-weight: 500;
        font-size: 44px;
        line-height: 103%;
        padding-right: 0;
    }

    .content__offer-title-veb {
        padding-right: 0;
    }

    .content__small-offer-text-title {
        font-weight: 500;
        font-size: 36px;
        line-height: 111%;
    }

    .content__stats-title {
        font-weight: 500;
        font-size: 44px;
        line-height: 103%;
    }

    .content__stats-tiles-tile-image {
        right: -15%;
    }

    .content__stats-tiles-tile-counter {
        font-weight: 500;
        font-size: 44px;
        line-height: 110%;
    }

    .content__stats-tiles-tile-description {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .footer__content-contacts-socials-link {
        height: 30px;
        width: 30px;
    }

    .footer {
        padding-top: 0;
    }

    .content__authors-reviews-item-person {
        display: block;
    }

    .content__authors-reviews-item-text {
        margin-bottom: 50px;
    }

    .content__authors-reviews-item-person-image-container {
        margin-bottom: 10px;
        width: 40px;
        height: 40px;
        margin-right: 0;
    }

    .content__authors-reviews-item-person-info {

    }

    .content__form-title {
        font-weight: 500;
        font-size: 36px;
        line-height: 103%;
    }

    .content__authors {
        margin-bottom: 0;
    }

    .content__form-button {
        margin-top: 30px;
    }

    .content__form {
        margin-bottom: 46px;
    }

    .content__tile-3 {
        display: none;
    }

    .content__tiles-3 .content__tile-1 {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .content__tiles-3 .content__tile-2 {
        grid-column: 2/3;
        grid-row: 1/2;
    }

    .content__additional {
        margin-bottom: 50px;
    }
}

@media (max-width: 1023px) {
    .content__offer-actions {
        display: block;
    }

    .content__offer-actions-button {
        width: 100%;
    }

    .content__offer-actions-button.linear-button {
        margin-bottom: 10px;
    }

    .footer__content-description-title {
        margin-bottom: 20px;
    }

    .footer__content {
        display: block;
    }

    .footer__content-description {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .content__stats-tiles-tile-description {
        max-width: 90%;
    }

    .content__authors-about-item {
/* 
        display: block;
        padding: 50px;
 */
    }

    .content__authors-about-item-image {
        width: 200px;
        height: 200px;
        margin-bottom: 20px;
    }

    .content__authors-about-item-text-wrapper {
/*         padding: 0; */
    }

    .content__authors-about-item-text-top-row {
        margin-bottom: 20px;
    }
}

@media (min-width: 851px) {
    .content__tile-regular {
        min-height: 350px;
    }
}

@media (max-width: 850px) {

    .content__authors-about-item {
        display: block;
        padding: 50px;
    }

    .content__authors-about-item-text-wrapper {
        padding: 0;
    }

    .content__tiles {
        display: block;
        margin-bottom: 50px;
    }

    .content__tile {
        margin-bottom: 10px;
    }

    .content__preview {
        display: block;
    }

    .content__preview-list {
        margin-bottom: 10px;
    }

    .content__preview-text {
        margin-bottom: 10px;
    }

    .content__preview-text .content__preview-modal-button {
        margin-bottom: 0;
    }

    .content__preview-pdf {
        min-height: 300px;
    }

    .content__preview-description-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .content__form-block-button-container {
        width: 100%;
    }

    .content__form-block-button-container button {
        width: 100%;
    }

    .header__menu-list {
        margin-bottom: 25px;
        padding: 25px;
        gap: 30px;
    }

    .header__menu-list-item a {
        font-size: 20px;
    }

    .content__offer {
        display: block;
        min-height: max-content;
    }

    .content__offer-image {
        display: none;
    }

    .content__offer-title {
        padding-right: 15px;
    }

    .content-block {
        padding: 30px 25px;
    }

    .content__tile {
        padding: 30px 25px;
    }

    .content__tile-image {
        padding: 0;
        min-height: 380px;
    }

    .content__small-offer {
        display: block;
    }

    .content__small-offer-image {
        display: none;
    }

    .footer__content-contacts {
        display: block;
    }

    .footer__content-contacts-contact-wrapper {
        display: block;
    }

    .footer__content-contacts-socials {
        margin-bottom: 30px;
    }

    .footer__bottom {
        display: block;
        margin-bottom: 25px;
    }

    .footer__bottom-policy {
        margin-bottom: 10px;
    }

    .content__stats-tiles {
        display: block;
    }

    .content__stats-tiles-tile {
/*         margin-bottom: 10px; */
        padding: 25px;
    }

    .content__stats-tiles-tile-image {
        right: 0;
    }

    .content__stats-tiles-tile-image img {
        transform: scale(0.7);
    }

    .content__stats-tiles-tile-description {
        width: 60%;
    }

    .content__stats-title {
        font-weight: 500;
        font-size: 36px;
        line-height: 103%;
    }

    .content__authors-reviews-item {
        padding: 25px;
        min-height: 300px;
    }

    .content__authors-reviews-item-text {
        margin-bottom: 30px;
    }

    .content__authors-about-item {
        padding: 25px;
    }

    .content__authors-about-item-text-wrapper {
        display: block;
    }

    .content__authors-about-item-text-top-row {
        display: block;
    }

    .content__authors-about-item-text-title {
        margin-bottom: 20px;
    }

    .content__authors {
        padding: 20px 0 30px;
        margin-bottom: 20px;
    }

    .content__form-right {
        display: none;
    }

    .content__form {
        display: block;
    }

    .content__form-block {
        padding: 30px 25px;
    }

    .content__form-form {
        gap: 0;
    }

    .content__form-checkbox {
        margin-bottom: 10px;
    }

    .content__form-right-bg-image {
        padding: 25px;
    }

    .part {
        display: block;
    }

    .part-label {
        margin-bottom: 15px;
    }

    .content__preview-description {
        padding-left: 0;
    }

    .content__preview-description.content__preview-description_short {
        max-height: 333px;
        overflow: hidden;
    }

    .content__preview-description li {
        display: block;
        margin-bottom: 20px;
    }

    .content__preview-description-text {
        margin-bottom: 20px;
    }

    .chapter-label {
        padding-left: 0;
        margin-bottom: 15px;
    }

    .content__preview-subtitle {
        margin-bottom: 12px;
    }

    .content__preview-modal-button {
        margin-left: 0;
    }

    .hide-m {
        display: none !important;
    }

    .content__form-button {
        width: 100%;
        max-width: 100%;
    }

    .no-margin-m {
        margin-bottom: 0;
    }

    .content__form-result {
        max-height: 455px;
    }
}

@media (max-width: 425px) {

	.content__additional-title,
	.content__authors-reviews-title,
	.content__authors-title  {
		font-size: 28px;
	}
	
    .content__tile-regular {
            min-height: 0;
    }

    .content__preview-pdf a {
        width: 100%;
    }

    .part-label {
        margin-bottom: 6px;
    }

    .content__preview-subtitle {
        margin-bottom: 10px
    }

    .footer__content-contacts-socials-link {
        height: 50px;
        width: 50px;
    }

    .content__additional-title {
        font-weight: 700;
        line-height: 100%;
    }

    .content__form-button {
        margin-top: 20px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .content__small-offer-text-button-container a {
        width: 100%;
        text-align: center;
    }

    .linear-button {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .transparent-button {
        font-weight: 600;
        font-size: 16px;
        line-height: 24px;
    }

    .header__button-container {
        display: none;
    }

    .header__menu-list-item-button {
        display: block;
    }

    .header__menu-list-item-button a {
        width: 100%;
        padding: 13px;
        font-weight: 600;
        font-size: 16px;
        line-height: 24px !important;
        text-align: center;
        vertical-align: middle;
    }

    .header__menu-button-wrapper {
        margin-right: 0;
    }

    .header__menu-list {
        margin-bottom: 20px;
        padding: 20px;
    }

    .header__menu-list-item a {
        font-weight: 500;
        font-size: 16px;
        line-height: 110%;
    }



    .content__preview-pdf {
        align-items: end;
        padding: 20px;
    }

    .content__offer-title {
        font-weight: 500;
        font-size: 36px;
        line-height: 103%;
        padding-right: 40px;
    }

    .content__offer-subtitle {
        margin-bottom: 20px;
    }

    .content__offer-text-top-row {
        display: block;
    }

    .content__offer-text-top-row-title {
        margin-bottom: 8px;
    }

    .content__tile {
        padding: 30px 20px;
    }

    .content__tile-image {
        padding: 0;
    }

    .content__small-offer-text-title {
        padding-right: 24px;
    }

    .footer__bottom {
        display: block;
        margin-bottom: 20px;
    }

    .content__stats-tiles-tile {
        padding: 20px;
    }

    .content__authors-about-item {
        padding: 20px;
    }

    .content__authors-about-item-image {
        width: 100%;
    }

    .content__form-block {
        padding: 30px 20px;
    }

    .content__form-right-bg-image {
        padding: 20px;
    }

    .preview-modal__close {
        top: -51px;
        right: 0;
    }

    .checkbox-privacy {
        margin-top: 5px;
    }

    .content__form-button {
        margin-top: 10px;
    }

    .hide-m {
        display: none !important;
    }

    .content__authors-about-item-text-description {
        font-weight: 400;
        font-size: 16px;
        line-height: 150%;
    }

    .content__additional-item-image-container {
        margin-bottom: 20px;
    }

    .content__additional-items {
        gap: 30px;
    }

    .content__stats-title {
        padding-right: 10px;
    }

    .content__preview-list {
        padding-top: 20px;
    }

    .content__preview-title {
        margin-bottom: 20px;
    }

    .content__tiles-3 {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .content__tile-3 {
        display: block;
    }

    .content__tiles-3 .content__tile-1 {
        grid-column: 1/2;
        grid-row: 1/2;
    }

    .content__tiles-3 .content__tile-2 {
        grid-column: 1/2;
        grid-row: 3/4;
    }

    .content__tiles-3 .content__tile-3 {
        grid-column: 1/2;
        grid-row: 2/3;
    }

    .no-margin-m {
        margin-bottom: 0;
    }
}
/*endregion*/



/* edited */





body {
    overflow-x: hidden;
}

h1.wp-block-heading,
h2.wp-block-heading,
h3.wp-block-heading {
	color: #F2F3F9;
	font-family: Inter;
	font-size: 42px;
	font-style: normal;
	font-weight: 700;
	line-height: 120%; /* 50.4px */
	
	max-width: 662px;
	margin-bottom: 44px;
}

@media (max-width: 1025px) {

	h1.wp-block-heading,
	h2.wp-block-heading,
	h3.wp-block-heading {
		font-size: 38px;
/* 		margin-bottom: 20px; */
	}

}

@media (max-width: 425px) {

	h1.wp-block-heading,
	h2.wp-block-heading,
	h3.wp-block-heading {
		font-size: 28px;
		margin-bottom: 20px;
	}

}



@media (min-width: 425px) {

	.content__offer,
	.content__tiles,
	.content__small-offer,
	.content__preview,
	.content__preview,
	.content__authors,
	.content__form,
	.content__additional,
	.content__stats {
		margin-bottom: 70px;
	}
	
	.content__small-offer {
	    padding: 30px;	
	}
	
}

.content__form-left-register-description h1,
.content__form-left-register-description h2,
.content__form-left-register-description h3 {
	color: #fff;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 36px */
	
	margin-bottom: 10px;
}

.content__preview-description-text h1,
.content__preview-description-text h2,
.content__preview-description-text h3,
.content__authors-reviews-item-text h1,
.content__authors-reviews-item-text h2,
.content__authors-reviews-item-text h3,
.content__tile-text h1,
.content__tile-text h2,
.content__tile-text h3 {
	color: #0D161F;
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 36px */
	
	margin-bottom: 10px;
}

.content__authors-about-item-text-description h1,
.content__authors-about-item-text-description h2,
.content__authors-about-item-text-description h3 {
	color: #0D161F;
	color: color(display-p3 0.0588 0.0863 0.1176);
	font-family: Inter;
	font-size: 24px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 36px */
	
	margin-bottom: 10px;
}


.content__authors-about-item-text-description p {
	color: #0D161F;
	color: color(display-p3 0.0588 0.0863 0.1176);
	font-family: Inter;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 30px */
}

.content__form-left-register-description ul,
.content__preview-description-text ul,
.content__authors-reviews-item-text ul,
.content__tile-text ul,
.content__authors-about-item-text-description ul {
    margin-bottom: 15px;
}

.content__form-left-register-description ul li,
.content__preview-description-text ul li,
.content__authors-reviews-item-text ul li,
.content__tile-text ul li,
.content__authors-about-item-text-description ul li {
    list-style: disc;
    margin-left: 28px;
}

.content__form-left-register-description ol,
.content__preview-description-text ol,
.content__authors-reviews-item-text ol,
.content__tile-text ol,
.content__authors-about-item-text-description ol {
    margin-bottom: 15px;
}

.content__form-left-register-description ol li,
.content__preview-description-text ol li,
.content__authors-reviews-item-text ol li,
.content__tile-text ol li,
.content__authors-about-item-text-description ol li {
    list-style: auto;
    margin-left: 28px;
}


@media (max-width: 425px) {

	.content__form-left-register-description h1,
	.content__form-left-register-description h2,
	.content__form-left-register-description h3,
	.content__preview-description-text h1,
	.content__preview-description-text h2,
	.content__preview-description-text h3,
	.content__authors-reviews-item-text h1,
	.content__authors-reviews-item-text h2,
	.content__authors-reviews-item-text h3,
	.content__tile-text h1,
	.content__tile-text h2,
	.content__tile-text h3 {
		font-size: 16px;		
	}
	
	.content__authors-about-item-text-description h1,
	.content__authors-about-item-text-description h2,
	.content__authors-about-item-text-description h3 {
		font-size: 20px;
	}
	
	.content__authors-about-item-text-description p {
		font-size: 16px;
	}

}

.content__stats-tiles-tile-counter {
	color: #00B0DC;
	color: color(display-p3 0 0.6784 0.8431);
	font-family: Inter;
	font-size: 35px;
	font-style: normal;
	font-weight: 700;
	line-height: 110%; /* 38.5px */
}

.content__stats-tiles-tile {
	padding: 30px 40px 40px 30px;
}

.content__stats-tiles-tile-description {
	max-width: 100%;
	width: 100%;
}


/* поведение блоков */

.content__stats-tiles {
	display: flex;
	flex-wrap: wrap;
}

.content__stats-tiles-tile {
	flex: 1 0 100%;
	box-sizing: border-box;
}

@media (min-width: 1025px) {
	
	.content__stats-tiles-tile {
		flex: 0 0 calc(33.333% - 10px);
	}

	.content__stats-tiles-tile:nth-last-child(1):nth-child(3n+2) {
		flex: 1 0 calc(50% - 10px);
	}
	
	.content__stats-tiles-tile:nth-last-child(2):nth-child(3n+1) {
		flex: 1 0 calc(50% - 10px);
	}
	
	.content__stats-tiles.is-single .content__stats-tiles-tile {
		flex: 0 0 calc(50% - 10px);
	}
	
	.content__stats-tiles.is-multiple-4 .content__stats-tiles-tile {
		flex: 0 0 calc(50% - 10px);
	}

}

@media (min-width: 767px) and (max-width: 1024px) {
	.content__stats-tiles-tile {
		flex: 1 0 calc(50% - 10px); /* 2 в строку */
	}
	
	.content__stats-tiles-tile:nth-last-child(1):nth-child(2n+1) {
		width: calc(100% - 10px);
	}
	
	.content__stats-tiles-tile:nth-last-child(1):nth-child(2n+1) .content__stats-tiles-tile-counter {
		width: calc(50% - 10px);
	}
	
	.content__stats-tiles-tile:nth-last-child(1):nth-child(2n+1) .content__stats-tiles-tile-description {
		width: calc(50% - 10px);
	}
	
}

@media (max-width: 766px) {
	
	.content__stats-tiles-tile-counter {
		font-size: 28px;
		margin-bottom: 15px;
	}

	.content__stats-tiles-tile {
		flex: 1 0 100%; /* 1 в строку */
		padding: 20px 30px 30px 20px;
	}
}



/* новый блок с книгой */

.content__previewV2 {
	display: flex;
	gap: 10px;
    flex-wrap: nowrap;
}

.content__previewV2 .content__preview-list {
	min-width: 395px;
    width: 395px;
    padding: 58px 40px 30px 30px;
}

.content__previewV2 .content__preview-list h3 {
	color: #697386;
	color: color(display-p3 0.4196 0.451 0.5176);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
}

.content__previewV2 .content__preview-list p {
	color: #0D161F;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-color: rgba(13, 22, 31, 0.20);
	text-decoration-thickness: auto;
	text-underline-offset: 25%; /* 4px */
	text-underline-position: from-font;

    cursor: pointer;	
	margin-bottom: 24px;
}

.content__previewV2 .content__preview-list p.active {
	color: #697386;
	color: color(display-p3 0.4196 0.451 0.5176);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	text-decoration: none;
	
	cursor: default;
}

.content__previewV2 .content__preview-title {
	color: #000;
	color: color(display-p3 0 0 0);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	margin-bottom: 24px;
}

.content__previewV2 .content__preview-pdf {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    display: flex;
    
    padding: 60px 30px 60px 30px;
}

.glavademo {
	max-width: 605px;
}

.glavademo .glava {
	color: #000;
	color: color(display-p3 0 0 0);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 700;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	
	margin-bottom: 20px;
}

.glavademo h1,
.glavademo h2,
.glavademo h3 {
	color: #0D161F;
	color: color(display-p3 0.0588 0.0863 0.1176);
	font-family: Inter;
	font-size: 28px;
	font-style: normal;
	font-weight: 700;
	line-height: 119%; /* 33.32px */
	
	margin-bottom: 20px;
}

.glavademo {}

.glavademo p {
	color: #0D161F;
	color: color(display-p3 0.0588 0.0863 0.1176);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
    margin-bottom: 15px;
}

.glavademo ul {
    margin-bottom: 15px;
}

.glavademo ul li {
    list-style: disc;
    margin-left: 28px;
}

.glavademo ol {
    margin-bottom: 15px;
}

.glavademo li {
    list-style: auto;
    margin-left: 28px;
}

.textcrop {
	max-height: 400px;     /* или любая другая высота */
	overflow: hidden;
	position: relative;
}

.textcrop:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
    height: 200px;
    background: linear-gradient(to bottom, rgb(242 243 249 / 0%), #f2f3f9);
    pointer-events: none;
}

.textcropbutton {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.textcropbutton > a {
    color: #F2F3F9;
    color: color(display-p3 0.949 0.9529 0.9725);
    text-align: center;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    display: flex;
    height: 50px;
    width: 234px;
    border-radius: 88px;
    background: #00B0DC;
    background: color(display-p3 0 0.6784 0.8431);
    backdrop-filter: blur(4px);
    justify-content: center;
    align-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.textcropbutton > div {
	color: #0D161F;
	color: color(display-p3 0.0588 0.0863 0.1176);
	text-align: center;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	max-width: 300px;
}


.mobile-content-toggle {
	display: none;
}

#modal-3 {
	
}

#modal-3 .content__preview-text h3 {
	color: #697386;
	color: color(display-p3 0.4196 0.451 0.5176);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
}

#modal-3 .content__preview-text p {
	color: #0D161F;
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-skip-ink: none;
	text-decoration-color: rgba(13, 22, 31, 0.20);
	text-decoration-thickness: auto;
	text-underline-offset: 25%; /* 4px */
	text-underline-position: from-font;

    cursor: pointer;	
	margin-bottom: 24px;
}

#modal-3 .content__preview-text p.active {
	color: #697386;
	color: color(display-p3 0.4196 0.451 0.5176);
	font-family: Inter;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%; /* 24px */
	letter-spacing: -0.304px;
	text-decoration: none;
	
	cursor: default;
}


@media (max-width: 930px) {

	.mobile-content-toggle {
        display: flex;
        width: 221px;
        padding: 10px 15px;
        border-radius: 100px;
        border: 1px solid #00B0DC;
        align-items: center;
        justify-content: space-between;
		margin: 0px auto 38px auto;
        cursor: pointer;
	}

	.mobile-content-toggle span {
		color: #0D161F;
		font-family: Inter;
		font-size: 16px;
		font-style: normal;
		font-weight: 600;
		line-height: 150%; /* 24px */
		letter-spacing: -0.304px;	
		display: block;
	}	


	.content__previewV2 .content__preview-list {
		display: none;
	}
	
	.content__previewV2 .content__preview-pdf {
		padding: 38px 20px 48px 20px;
	}
	
	.glavademo h1, .glavademo h2, .glavademo h3 {
		font-size: 20px;
	}
	
	.glavademo p {
		font-size: 14px;
	}
	
	.textcropbutton > div {
    	font-size: 14px;
	}
	
	.textcropbutton > a {
		margin-bottom: 10px;
	}
	
	.content__preview-title {
		margin-bottom: 24px;
		font-size: 16px;
	}
	
	#modal-3 .content__preview-text h3 {
    	font-size: 14px;	
	}
	
	#modal-3 .content__preview-text p.active {
    	font-size: 14px;	
	}
	
	#modal-3 .content__preview-text p {
    	font-size: 14px;	
	}
}



@media (max-width: 1025px) {
	.content__previewV2 .content__preview-list {
		min-width: 300px;
		width: 300px;
		padding: 40px 40px 40px 30px;
	}
	
	.content__authors-about-item-image {
		height: 200px;
		width: 200px;
	}
	
	.content__authors-about-item {
    	grid-template-columns: 200px auto;
	}
	
	.content__previewV2 .content__preview-pdf {
		padding: 40px 30px 30px 30px;
	}
}

@media (max-width: 450px) {
	.textcropbutton > a {
		width: 100%;
	}
	
	.content__authors-about {
		margin-bottom: 50px;
	}
	
	.content__authors-about-item-image {
        width: 100%;
        height: 100%;
                aspect-ratio: 1 / 1;
        margin-bottom: 20px;
    }
    
    .content__previewV2 .content-block {
        padding: 38px 20px 48px 20px;
        max-height: 628px;
    }
    
    .textcrop {
    max-height: 300px;
    position: relative;
	}
}

.content__authors-reviews-item-text a,
.content__form-left-register-description a,
.content__authors-reviews-item-text a,
.content__authors-about-item-text-description a,
.content__preview-description-text a,
.textcrop a,
.content__tile-text a {
	text-decoration-line: underline;
	text-decoration-style: solid;
	text-decoration-color: #ccc;
	text-decoration-thickness: auto;
	text-underline-offset: auto;
	text-underline-position: from-font;
}
























