html, body {
    height: 100%;
}

body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd {
    margin: 0;
}

a {
    text-decoration: none;
}

.arrow {
    border: solid black;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: transform 0.3s ease; /* ⬅️ плавный переход */
}

.right {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
}

.left {
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}

.up {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
}

.down {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}

.switch {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.current {
    display: flex;
    align-items: center;
    text-transform: uppercase;
    height: 42px;
    position: relative;
    z-index: 1;
    text-align: center;
    transition: all 0.2s ease-out;
    margin-right: 20px;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    color: rgb(26, 40, 51);
}

.current img {
    margin-right: 10px;
}

.current span {
    display: inline-block;
    margin-right: 7px;
}

.current .arrow {
    display: inline-block;
    width: 1px;
    height: 1px;
    border-width: 0 2px 2px 0;
    margin-top: -6px;
    border-color: rgb(26, 40, 51);
}

.options {
    position: absolute;
    right: 0;
    top: 0.6em;
    z-index: 0;
    opacity: 0;
    transition: all 0.36s ease-out;
    display: none;
    overflow: hidden;
    box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
}

.switch.show-options .options {
    display: block;
    z-index: 5;
}

.switch.anim-options .options {
    opacity: 1;
}

.switch.show-shadow .options {
    box-shadow: 0 2px 12px -4px rgba(0, 0, 0, 0.4);
}

.options-list {
    color: #313436;
    margin: 0;
    padding: 0.4rem 0.8em;
    position: relative;
    z-index: 5;
}

.options-list li {
    list-style: none;
    padding: 0;
    margin: 0;
    padding: 0.75em;
    border-bottom: 1px solid #E1E4E6;
    transform: translateX(10px);
    transition: all 0.24s ease-out;
    transition-delay: 0.1s;
    opacity: 0;
    font-size: 1rem;
    line-height: 1.3;
    white-space: nowrap;
}

.options-list li:last-child {
    border-bottom: none;
}

.options-list li:nth-child(1) {
    transition-delay: 0.1s;
}

.options-list li:nth-child(2) {
    transition-delay: 0.15s;
}

.options-list li:nth-child(3) {
    transition-delay: 0.2s;
}

.options-list li:nth-child(4) {
    transition-delay: 0.25s;
}

.options-list li:nth-child(5) {
    transition-delay: 0.3s;
}

.options-list li.selected {
    color: #3498DB;
}

.switch.anim-options .options-list li {
    transform: translateX(0);
    opacity: 1;
}

#trans-circle {
    width: 80px;
    height: 80px;
    position: absolute;
    top: -80px;
    right: -80px;
    padding: 0;
    margin: 0;
    border: none;
    z-index: 1;
    transition: all 0.4s ease-out;
    transform: scale(0.5);
    overflow: hidden;
}

#trans-circle svg {
    max-width: 100%;
    max-height: 100%;
}

.switch.anim-options #trans-circle {
    transform: scale(9);
}

/* TOOLTIP STYLES FROM THIS PEN https://codepen.io/tutsplus/pen/WROvdG */
[tooltip] {
    position: relative; /* opinion 1 */
    font-weight: bold;
}

/* Applies to all tooltips */
[tooltip]::before,
[tooltip]::after {
    text-transform: none; /* opinion 2 */
    font-size: 12px; /* opinion 3 */
    line-height: 1;
    user-select: none;
    pointer-events: none;
    position: absolute;
    display: none;
    opacity: 0;
}

[tooltip]::before {
    content: "";
    border: 5px solid transparent; /* opinion 4 */
    z-index: 1001; /* absurdity 1 */
}

[tooltip]::after {
    content: attr(tooltip); /* magic! */
    /* most of the rest of this is opinion */
    font-family: Helvetica, sans-serif;
    text-align: center;
    /*
      Let the content set the size of the tooltips
      but this will also keep them from being obnoxious
      */
    width: 40px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 3px 0px;
    border-radius: 0.3ch;
    box-shadow: 0 1em 2em -0.5em rgba(0, 0, 0, 0.35);
    background: #465663;
    color: #fff;
    z-index: 1000; /* absurdity 2 */
}

/* Make the tooltips respond to hover */
[tooltip]:hover::before,
[tooltip]:hover::after {
    display: block;
}

/* don't show empty tooltips */
[tooltip=""]::before,
[tooltip=""]::after {
    display: none !important;
}

/* FLOW: UP */
[tooltip]:not([flow])::before,
[tooltip][flow^=up]::before {
    bottom: 50%;
    border-bottom-width: 0;
    border-top-color: #465663;
}

[tooltip]:not([flow])::after,
[tooltip][flow^=up]::after {
    bottom: calc(50% + 5px);
}

[tooltip]:not([flow])::before,
[tooltip]:not([flow])::after,
[tooltip][flow^=up]::before {
    left: -15.5px;
    bottom: 40px;
    transform: translate(-50%, -0.5em);
}

[tooltip][flow^=up]::after {
    left: -15.5px;
    bottom: 45px;
    transform: translate(-50%, -0.5em);
}

/* FLOW: DOWN */
[tooltip][flow^=down]::before {
    top: 70%;
    border-top-width: 0;
    border-bottom-color: #465663;
}

[tooltip][flow^=down]::after {
    top: calc(70% + 5px);
}

[tooltip][flow^=down]::before,
[tooltip][flow^=down]::after {
    left: -15.5px;
    transform: translate(-50%, 0.5em);
}

/* KEYFRAMES */
@keyframes tooltips-vert {
    to {
        opacity: 0.9;
        transform: translate(-50%, 0);
    }
}

/* FX All The Things */
[tooltip]:not([flow]):hover::before,
[tooltip]:not([flow]):hover::after,
[tooltip][flow^=up]:hover::before,
[tooltip][flow^=up]:hover::after,
[tooltip][flow^=down]:hover::before,
[tooltip][flow^=down]:hover::after {
    animation: tooltips-vert 300ms ease-out forwards;
}

.container {
    position: relative;
    max-width: 1470px;
    margin: 0 auto;
    padding: 0 15px;
}

.container-right {
    padding-left: calc((100% - 1470px) / 2 + 15px);
}

body {
    color: #1e1e1e;
    font-size: clamp(16px, 5vw, 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.header {
    background-color: #FFF;
    padding: 20px 10px 20px 10px;
    border-bottom: 0.5px solid #849FB4;
}

.header__buttons {
    display: flex;
}

.header__buttons-register {
    padding: 13px 36px;
    border-radius: 50px;
    margin-right: 10px;
    background: #82CAFF;
    border: 1px solid #82CAFF;
    color: #1D4766;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    text-align: center;
    display: block;
    width: auto;
}

.header__buttons-register:hover {
    background-color: #FFFFFF;
    color: #1D4766;
    border: 1px solid #849FB4;
}

.header__buttons-auth {
    font-family: Inter;
    display: block;
    padding: 10px 20px;
    border: 1px solid #849FB4;
    text-align: center;
    border-radius: 50px;
    width: auto;
    color: #1D4766;
}

.header__buttons-auth:hover {
    background-color: #82CAFF;
    color: #1D4766;
    border-color: #82CAFF;
}

.header-top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header-top__menu a {
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: black;
}

.header-top__menu a:hover {
    text-decoration: underline;
}

.header-top__menu a:not(:last-child) {
    margin-right: 17px;
}

.header-top__logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
}

.header-top__logo-img {
    max-width: 175px;
}

.top {
    background-image: url(/assets/images/top.png);
    background-repeat: no-repeat;
    background-position: center center;
    padding-top: 75px;
}

.top-absolute-images {
    position: absolute;
}

.top .dollar {
    bottom: 0;
}

.top .euro {
    right: 0;
}

.top .eth {
    bottom: 0;
    right: 0;
}

.top__inner {
    display: flex;
    flex-direction: column;
}

.top__title {
    font-family: Paytone One, Playfair Display;
    font-size: 80px;
    font-weight: 400;
    line-height: 104px;
    text-align: center;
    color: rgb(26, 40, 51);
    margin-bottom: 40px;
}

.top__subtitle {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 36px;
    text-align: center;
    color: rgb(102, 104, 111);
    letter-spacing: 1px;
    margin-bottom: 50px;
}

.top__buttons {
    display: flex;
    align-items: center;
    justify-content: center;
}

.top__buttons a {
    width: fit-content;
}

.top__buttons-default-link {
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 22px;
    text-align: center;
    color: rgb(29, 71, 102);
    text-decoration: underline;
    letter-spacing: 0.5px;
}

.transfer {
    margin-top: 150px;
    margin-bottom: 100px;
}

.choose_card h3 {
    font-family: Inter;
    font-size: 46px;
    font-weight: 700;
    line-height: 69px;
    text-align: center;
    display: block;
    margin-bottom: 30px;
}

.blue {
    color: rgb(84, 144, 236);
    background: linear-gradient(180deg, #5490EC 0%, rgba(84, 144, 236, 0) 33%);
}

.black {
    color: rgb(48, 55, 69);
    background: linear-gradient(180deg, #303745 0%, rgba(48, 55, 69, 0) 33%);
}

.green {
    background: linear-gradient(180deg, #2FC562 0%, rgba(47, 197, 98, 0) 33%);
    color: rgb(47, 197, 98);
}

.choose_card-block {
    background: rgb(205, 234, 255);
    display: flex;
    justify-content: space-around;
    padding: 40px 50px;
    border-radius: 40px;
}

.choose_card-block-item {
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    max-width: 390px;
}

.choose_card-block-item-text {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
    padding-left: 20px;
    padding-bottom: 20px;
}

.choose_card-block-item-text h4 {
    font-family: Inter;
    font-size: 24px;
    font-weight: 600;
    line-height: 29.05px;
    text-align: left;
    margin-bottom: 10px;
}

.choose_card-block-item-text-title {
    font-family: Inter;
    font-size: 30px;
    font-weight: 800;
    line-height: 36.31px;
    text-align: left;
    color: rgb(26, 40, 51);
    margin-bottom: 20px;
}

.choose_card-block-item-text-p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: left;
    color: rgb(102, 104, 111);
    margin-bottom: 20px;
}

.advantages {
    margin-top: 40px;
    margin-bottom: 40px;
}

.advantages__inner {
    border-top: 1px solid rgb(132, 159, 180);
    border-bottom: 1px solid rgb(132, 159, 180);
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
}

.advantages__inner-item {
    display: flex;
    align-items: center;
}

.advantages__inner-item img {
    margin-right: 15px;
}

.advantages__inner-item p {
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: left;
    color: rgb(26, 40, 51);
}

.explore-service {
    background: rgb(29, 71, 102);
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.explore-service__inner img {
    width: 48%;
}

.explore-service__inner-block {
    height: 100%;
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.explore-service__inner-block-badge {
    background: rgba(130, 202, 255, 0.3);
    color: rgb(130, 202, 255);
    display: block;
    width: fit-content;
    padding: 8px 16px 8px 16px;
    border-radius: 20px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 400;
    line-height: 16.94px;
    text-align: left;
    margin-bottom: 20px;
}

.explore-service__inner-block-title {
    font-family: Inter;
    font-size: 36px;
    font-weight: 600;
    line-height: 43.57px;
    text-align: left;
    color: rgb(130, 202, 255);
    margin-bottom: 20px;
}

.explore-service__inner-block-text {
    font-family: Inter;
    font-size: 18px;
    font-weight: 400;
    line-height: 21.78px;
    text-align: left;
    color: rgb(205, 234, 255);
    margin-bottom: 70px;
}

.explore-service__inner-block a {
    width: fit-content;
}

/*===== Vertical Timeline =====*/
#conference-timeline {
    position: relative;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

#conference-timeline .timeline-start,
#conference-timeline .timeline-end {
    display: table;
    font-family: "Roboto", sans-serif;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    background: #00b0bd;
    padding: 15px 23px;
    color: #fff;
    max-width: 5%;
    width: 100%;
    text-align: center;
    margin: 0 auto;
}

#conference-timeline .conference-center-line {
    position: absolute;
    width: 4px;
    height: 80%;
    top: 0;
    left: 50%;
    margin-left: -2px;
    margin-top: 125px;
    background: linear-gradient(-180deg, #82CAFF 0%, rgba(130, 202, 255, 0) 100%);
    z-index: -1;
}

.timeline {
    margin-top: 75px;
}

.timeline h3 {
    font-family: Inter;
    font-size: 46px;
    font-weight: 700;
    line-height: 69px;
    text-align: center;
    color: rgb(26, 40, 51);
}

#conference-timeline .conference-timeline-content {
    padding-top: 67px;
    padding-bottom: 67px;
}

.timeline-article {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.timeline-article .content-left-container,
.timeline-article .content-right-container {
    max-width: 44%;
    width: 100%;
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 27px;
    text-align: left;
    color: rgb(102, 104, 111);
}

.timeline-article .timeline-author {
    display: block;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #242424;
    text-align: right;
}

.year-title {
    color: rgb(130, 202, 255);
    font-family: Paytone One;
    font-size: 64px;
    font-weight: 400;
    line-height: 96px;
    text-align: right;
}

.year-subtitle {
    font-family: Inter;
    font-size: 32px;
    font-weight: 600;
    line-height: 48px;
    text-align: right;
    color: rgb(29, 71, 102);
}

.timeline-article .content-left,
.timeline-article .content-right {
    position: relative;
    width: auto;
    background-color: #fff;
}

.timeline-article p {
    margin: 0 0 0 60px;
    padding: 0;
    font-weight: 400;
    color: #242424;
    font-size: 14px;
    line-height: 24px;
    position: relative;
}

.timeline-article p span.article-number {
    position: absolute;
    font-weight: 300;
    font-size: 44px;
    top: 10px;
    left: -60px;
    color: #00b0bd;
}

.timeline-article .content-left-container {
    float: left;
}

.timeline-article .content-right-container {
    float: right;
}

.timeline-article .content-left:before,
.timeline-article .content-right:before {
    position: absolute;
    top: 20px;
    font-size: 23px;
    font-family: "FontAwesome";
    color: #fff;
}

.timeline-article .meta-date {
    position: absolute;
    top: 25px;
    left: 50%;
    width: 44px;
    height: 44px;
    margin-left: -22px;
    color: #fff;
    border-radius: 100%;
    background: rgb(130, 202, 255);
}

.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
    display: block;
    text-align: center;
    font-weight: 900;
}

.timeline-article .meta-date .date {
    font-size: 30px;
    line-height: 40px;
}

.timeline-article .meta-date .month {
    font-size: 18px;
    line-height: 10px;
}

/*===== // Vertical Timeline =====*/
/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
    #conference-timeline .timeline-start,
    #conference-timeline .timeline-end {
        margin: 0;
    }

    #conference-timeline .conference-center-line {
        margin-left: 0;
        left: 50px;
    }

    .timeline-article .meta-date {
        margin-left: 0;
        left: 20px;
    }

    .timeline-article .content-left-container,
    .timeline-article .content-right-container {
        max-width: 100%;
        width: auto;
        float: none;
        margin-left: 110px;
        min-height: 53px;
    }

    .timeline-article .content-left-container {
        margin-bottom: 20px;
    }

    .timeline-article .content-left,
    .timeline-article .content-right {
        padding: 10px 25px;
        min-height: 65px;
    }

    .timeline-article .content-left:before {
        content: "\f0d9";
        right: auto;
        left: -8px;
    }

    .timeline-article .content-right:before {
        display: none;
    }
}

@media only screen and (max-width: 400px) {
    .timeline-article p {
        margin: 0;
    }

    .timeline-article p span.article-number {
        display: none;
    }
}

/*===== // Resonsive Vertical Timeline =====*/
.slick-list {
    padding: 0 10% 0 0 !important;
    align-items: center;
}

.slick-track, .slider-element, .slick-list {
    height: 583px;
}

.slider-inner {
    display: flex;
    margin-bottom: 100px;
}

.left-block {
    width: 50%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    height: 100%;
}

.text-block h3 {
    font-family: Paytone One;
    font-size: 96px;
    font-weight: 400;
    line-height: 104px;
    text-align: left;
    color: rgb(26, 40, 51);
    margin-bottom: 30px;
}

.text-block p {
    font-family: Inter;
    font-size: 24px;
    font-weight: 500;
    line-height: 36px;
    text-align: left;
    color: rgb(102, 104, 111);
}

.slider-block {
    width: 50%;
}

.arrows {
    margin-top: 100px;
}

.arrow-left {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgb(132, 159, 180);
    margin-right: 20px;
}

.arrow-right {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgb(132, 159, 180);
}

.arrow-right:hover .arrow-left:hover {
    background: rgb(244, 247, 250);
    cursor: pointer;
}

.arrow-right::after,
.arrow-left::after {
    content: "";
    position: absolute;
    z-index: 11;
    display: block;
    width: 20px;
    height: 20px;
    border-top: 5px solid rgb(29, 71, 102);
    border-left: 5px solid rgb(29, 71, 102);
}

.arrow-right::after {
    top: 32%;
    left: 30%;
    transform: rotate(130deg);
}

.arrow-left::after {
    top: 32%;
    right: 30%;
    transform: rotate(320deg);
}

.slider-card div {
    height: 400px;
    max-width: 600px;
    width: 100%;
    background: rgb(130, 202, 255);
    margin-right: 15px;
    border-radius: 40px;
    display: block;
    padding: 120px 20px 20px 20px;
    position: relative;
}

.dark div {
    background: rgb(29, 71, 102);
    color: rgb(130, 202, 255);
}

.slider-card-quote {
    font-family: Inter;
    font-size: 20px;
    font-weight: 500;
    line-height: 30px;
    text-align: left;
    color: rgb(29, 71, 102);
    margin-bottom: 20px;
}

.slider-card-quote.dark {
    color: rgb(130, 202, 255);
}

.slider-card-author.dark {
    color: rgb(130, 202, 255);
}

.slider-card-author {
    font-family: Inter;
    font-size: 24px;
    font-style: italic;
    font-weight: 400;
    line-height: 36px;
    color: rgb(29, 71, 102);
    text-align: right;
}

.slider-card-button {
    background: rgb(29, 71, 102);
    color: rgb(205, 234, 255);
    font-family: Inter;
    font-size: 18px;
    font-weight: 500;
    line-height: 21.78px;
    text-align: center;
    padding: 13px 36px 13px 36px;
    gap: 10px;
    border-radius: 25px;
    position: absolute;
    left: 20px;
    bottom: 20px;
}

.slider-card-button.dark {
    background: rgb(130, 202, 255);
    color: rgb(29, 71, 102);
}

/*# sourceMappingURL=index.css.map */

@media (max-width: 1441px) {
    .transfer img {
        max-width: 1350px;
        width: 100%;
        margin: auto;
        display: block;
    }
}

@media (max-width: 1025px) {
    .top-absolute-images {
        display: none;
    }

    .transfer img {
        max-width: 1000px;
    }

    .transfer {
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .choose_card-block {
        padding: 30px 15px;
    }

    .choose_card-block-item {
        max-width: 275px;
    }

    .choose_card-block-item-text-p {
        font-size: 12px;
    }

    .advantages__inner-item p {
        font-size: 14px;
    }

    .text-block h3 {
        font-size: 64px;
    }

    .text-block p {
        font-size: 16px
    }

    .slider-card div {
        max-width: 400px;
        padding: 40px 20px 20px 20px;
    }

    .footer__top-right {
        padding-left: 10px;
    }
}

@media (max-width: 769px) {
    .choose_card-block-item {
        width: 100%;
        max-width: 600px;
        margin-bottom: 30px;
    }

    .choose_card-block {
        flex-wrap: wrap;
        align-items: start;
    }

    .advantages__inner {
        flex-wrap: wrap;
    }

    .advantages__inner-item {
        margin-bottom: 20px;
        margin-right: auto;
        margin-left: auto;
        flex-direction: column;
        align-items: center;
    }

    .advantages__inner-item img {
        width: 100%;
        max-width: 150px;
        display: block;
        margin-bottom: 20px;
    }

    .advantages__inner-item p {
        width: 100%;
        font-size: 18px;
        margin-bottom: 40px;
    }

    .explore-service__inner {
        flex-direction: column;
    }

    .explore-service__inner img {
        width: 100%;
        margin-bottom: 50px;
    }

    .explore-service__inner-block {
        width: 100%;
    }

    .top__title {
        font-size: 64px;
    }

    .top__subtitle {
        font-size: 16px;
    }

    .timeline-article {
        display: flex;
        flex-wrap: wrap;
    }

    .year-title {
        text-align: left;
    }

    .year-subtitle {
        text-align: left;
    }

    .content-left {
        text-align: left !important;
    }

    .timeline-article:nth-child(2n) .content-left-container {
        order: 2;
    }

    .slider-inner {
        flex-wrap: wrap;
    }

    .left-block {
        width: 100%;
        align-items: center;
        margin-bottom: 30px;
    }

    .text-block h3 {
        text-align: center;
    }

    .text-block p {
        text-align: center;
    }

    .slider-block {
        width: 100%;
    }

    .slick-list {
        padding: 0 40% 0 0 !important;
    }

    .slick-track, .slider-element, .slick-list {
        height: 400px;
    }

    .slider-card-quote {
        font-size: 12px;
    }

    .content {
        width: 90%;
    }

    .footer__top-left {
        padding-left: 50px;
        width: 35%;
    }

    .footer__top-right {
        width: 64%;
    }

    .header-top__menu {
        display: none;
    }

    .header__buttons-register {
        display: none;
    }

    .header__buttons-auth {
        background: #82CAFF;
        border: 1px solid #82CAFF;
        color: #1D4766;
    }

    .slider-card-author {
        font-size: 16px;
    }

    .slider-card-button {
        font-size: 16px;
        padding: 13px 18px 13px 18px;
    }

    .choose_card-block-item .header__buttons-register {
        display: block;
    }
}

@media (max-width: 450px) {
    .footer__top {
        width: 100%;
        border-bottom: 0;
        flex-wrap: wrap;
    }

    .logo-block {
        margin: auto;
    }

    .footer__top-left {
        width: 100%;
        border-right: 0;
        padding: 0;
        gap: 0;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .footer__top-right {
        width: 100%;
        padding-top: 30px;
        gap: 25px;
        border-top: 1px solid rgba(30, 40, 51, 0.07);
        flex-direction: column;
    }

    .link-group__list_horizontal {
        justify-content: space-around;
    }

    .content {
        width: 100%;
    }

    .slick-list {
        padding: 0 5% 0 0 !important;
    }

    .slider-card div {
        max-width: 350px;
    }

    .text-block h3 {
        line-height: 25px;
        font-size: 36px;
    }

    .year-title {
        font-size: 36px;
    }

    .top__title {
        font-size: 36px;
        line-height: 50px;
    }

    .top__buttons {
        flex-wrap: wrap;
    }

    .top__buttons a {
        width: 100%;
        margin-bottom: 15px;
    }
}
