.first-screen {
    margin-top: 80px;
    padding: 36px 0
}
.first-screen__wrapper {
    display: flex;
    flex-direction: column;
    gap: 36px;
    align-items: center
}
.first-screen__header {
    display: flex;
    flex-direction: column;
    gap: 3px;
    align-items: center;
    text-align: center
}
.first-screen__title {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 100%;
    text-transform: uppercase;
    color: #161414;
    margin-bottom: clamp(20px, 2vw, 24px);
}
.first-screen__subtitle-main {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 400;
    font-size: clamp(20px, 2vw, 28px);
    line-height: normal;
    color: #161414
}
.first-screen__scheme-container {
    position: relative;
    width: 100%;
    max-width: 1279px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 16px;
}
.first-screen__points {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 337px;
    flex-shrink: 0
}
.first-screen__points_left {
    order: 1
}
.first-screen__points_right {
    order: 3
}
.first-screen__point-item {
    display: flex;
    gap: 20px;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px;
    border-radius: 60px
}
@media(min-width: 768px) {
    .first-screen__point-item:hover {
        background: #EBEBEB;
    }
}
.first-screen__point-item.active {
    background: #EBEBEB;
}
.first-screen__point-number {
    position: relative;
    flex-shrink: 0;
    width: 36px;
    height: 36px
}
.first-screen__point-number svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}
.first-screen__point-number span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: normal;
    color: #000
}
.first-screen__point-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1
}
.first-screen__point-title {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    color: #161414;
    margin: 0
}
.first-screen__point-desc {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: normal;
    color: #161414;
    margin: 0
}
.first-screen__scheme {
    position: relative;
    width: 520px;
    flex-shrink: 0;
    order: 2
}

.first-screen__scheme svg {
    width: 100%;
    height: auto;
    display: block
}
/* Анимация точки */
.animation-block {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 35.6%;
    left: 49.9%;
    cursor: pointer;
}
.animation-block-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.circle {
    position: absolute;
    border-radius: 50%;
    animation-duration: 1.5s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    color: #000;
}
.circle-1 {
    width: 60px;
    height: 60px;
    background: rgba(245, 198, 67, 0.3);
    animation-name: circle-1-animation;
}
.circle-2 {
    width: 40px;
    height: 40px;
    background: rgba(245, 198, 67, 0.6);
    animation-name: circle-3-animation;
}
.circle-3 {
    width: 20px;
    height: 20px;
    background: rgba(228, 185, 67, 1);
    animation-name: circle-4-animation;
}
.circle-4 {
    width: 30px;
    height: 30px;
    background: rgba(228, 185, 67, 1);
}
@media (max-width: 1300px) {
    .circle-4 {
        font-size: clamp(16px, 5vw, 24px)
    }
}
@keyframes circle-1-animation {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}
@keyframes circle-2-animation {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}
@keyframes circle-3-animation {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}
@keyframes circle-4-animation {
0% {
    transform: scale(1);
}
50% {
    transform: scale(1.2);
}
100% {
    transform: scale(1);
}
}

.animation-block.first-screen__point-item-animation  {
    display: none;
}

#mobile-scheme {
    display: none;
}
@media(max-width: 1300px) {
    .animation-block.first-screen__point-item-animation {
        display: block;
        top: 18px;
        left: 18px;
    }
    #mobile-scheme {
        display: block;
    }
    #desktop-scheme {
        display: none;
    }
    .first-screen__scheme {
        order: 2;
        width: 100%;
        max-width: 520px
    }
    .animation-block {
        top: 31.6%;
        left: 49.5%;
    }
}
@media(max-width: 600px) {
    .first-screen__scheme {
        width: 100%;
        max-width: 100%
    }
}
.first-screen__popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none
}
.first-screen__popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto
}
.first-screen__popup-modal {
    position: relative;
    background: transparent;
    width: 498px;
    max-width: 90vw;
    max-height: 90vh;
    transform: scale(0.9);
    transition: transform 0.3s ease
}
.first-screen__popup-overlay.active .first-screen__popup-modal {
    transform: scale(1)
}
.first-screen__popup-close {
    position: absolute;
    top: 24.5px;
    right: 25.5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    padding: 0
}
.first-screen__popup-close:hover {
    opacity: 0.7
}
.first-screen__popup-close img,
.first-screen__popup-close svg {
    width: 100%;
    height: 100%;
    display: block
}
.first-screen__popup-slider {
    position: relative;
}
.first-screen__popup-slider .slick-list {
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0px 30px 31px 0px rgba(9, 44, 22, 0.2);
}
.first-screen__popup-slide {
    outline: none
}
.first-screen__popup-slide-image {
    width: 100%;
    height: clamp(210px, 55vw, 326px);
    overflow: hidden;
    position: relative
}
.first-screen__popup-slide-image img {
    object-fit: cover;
}
.first-screen__popup-slide-content {
    padding: 16px;
    display: flex;
    gap: clamp(20px, 2vw, 32px);
    align-items: center;
    background: #fff;
    min-height: clamp(80px, 109px, 12vw);
}
.first-screen__popup-slide-number {
    position: relative;
    width: 52px;
    height: 52px;
    flex-shrink: 0
}
.first-screen__popup-slide-number svg {
    width: 100%;
    height: 100%
}
.first-screen__popup-slide-number span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 2vw, 28px);
    line-height: normal;
    color: #161414
}

.first-screen__popup-slide-title {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 700;
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 100%;
    color: #161414;
    margin: 0 0 4px 0
}
.first-screen__popup-slide-desc {
    font-family: "TT Norms Pro", sans-serif;
    font-weight: 400;
    font-size: clamp(13px, 1.6vw, 18px);
    line-height: 100%;
    color: #161414;
    margin: 0
}
.first-screen__popup-slider .slick-arrow {
    position: absolute;
    bottom: -60px;
    z-index: 5;
    width: 24px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #161414;
    transition: opacity 0.3s ease;
    padding: 0
}
.first-screen__popup-slider .slick-arrow:hover {
    opacity: 0.7
}
.first-screen__popup-slider .slick-arrow svg {
    width: 100%;
    height: 100%
}
.first-screen__popup-slider .slick-prev {
    left: 0;
}
.first-screen__popup-slider .slick-next {
    right: 0;
}
.first-screen__popup-slider .slick-next svg path {
    stroke: #fff;
}
.first-screen__popup-slider .slick-prev svg path {
    stroke: #fff;
}
.first-screen__popup-slider .slick-dots {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    z-index: 5;
    width: auto;
    height: 10px;
    justify-content: center;
    align-items: center
}
.first-screen__popup-slider .slick-dots li {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #fff;
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
    margin: 0;
    flex-shrink: 0
}
.first-screen__popup-slider .slick-dots li.slick-active,
.first-screen__popup-slider .slick-dots li.dot-center {
    width: 8px;
    height: 8px;
    background: #fff;
    opacity: 1
}
.first-screen__popup-slider .slick-dots li.dot-near {
    width: 6px;
    height: 6px;
    opacity: 0.7
}
.first-screen__popup-slider .slick-dots li.dot-far {
    width: 5px;
    height: 5px;
    opacity: 0.5
}
.first-screen__popup-slider .slick-dots li.dot-edge {
    width: 4px;
    height: 4px;
    opacity: 0.35
}
.first-screen__popup-slider .slick-dots li.dot-hidden {
    display: none
}
.first-screen__popup-slider .slick-dots li.dot-pos-m3 {
    order: 1
}
.first-screen__popup-slider .slick-dots li.dot-pos-m2 {
    order: 2
}
.first-screen__popup-slider .slick-dots li.dot-pos-m1 {
    order: 3
}
.first-screen__popup-slider .slick-dots li.dot-pos-0 {
    order: 4
}
.first-screen__popup-slider .slick-dots li.dot-pos-p1 {
    order: 5
}
.first-screen__popup-slider .slick-dots li.dot-pos-p2 {
    order: 6
}
.first-screen__popup-slider .slick-dots li.dot-pos-p3 {
    order: 7
}
.first-screen__popup-slider .slick-dots li button {
    display: none
}
.first-screen__list li p,
.field__item p {
    margin-bottom: 0
}
.photos__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    gap: 20px
}
@media(max-width: 768px) {
    .photos__wrapper {
        gap: 10px
    }
}
.photos__img-wrapper {
    position: relative;
    aspect-ratio: 2/1;
    -ms-flex-preferred-size: 48.5%;
    flex-basis: 48.5%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 50%
}
@media(max-width: 768px) {
    .photos__img-wrapper {
        max-width: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%
    }
}
.photos__img-wrapper_little {
    -ms-flex-preferred-size: 23%;
    flex-basis: 23%;
    max-width: 25%;
    aspect-ratio: 1/1
}
@media(max-width: 768px) {
    .photos__img-wrapper_little {
        max-width: 50%;
        -ms-flex-preferred-size: 48%;
        flex-basis: 48%
    }
}
.field__inner {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    row-gap: 40px;
    -webkit-column-gap: 75px;
    -moz-column-gap: 75px;
    column-gap: 75px
}
.scheme-mobile-buttons {
    display: none;
}
@media(max-width: 1300px) {
    .first-screen__scheme-container {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }
    .scheme-mobile-buttons {
        display: block;
    }
    .scheme-tab-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
    }
    .scheme-tab-button {
        background: #fff;
        color: #302C2C;
        font-size: 16px;
        font-weight: 700;
        border: 2px solid #302C2C;
        cursor: pointer;
        padding: 8px 20px;
        width: 150px;
        font-size: 16px;
        border-radius: 80px;
        transition: all 0.3s ease;
    }
    .scheme-tab-button.active {
        background: #302C2C;
        color: #fff;
    }
    .first-screen__points_left,
    .first-screen__points_right {
        display: none;
    }
    .first-screen__wrapper {
        gap: 24px
    }
}
@media(max-width: 1300px) {
    .first-screen__points {
        width: 100%;
        max-width: 600px
    }
}
@media(max-width: 768px) {
    .first-screen__points {
        width: 100%
    }
    .first-screen__popup-close {
        top: 16px;
        right: 16px;
        width: 24px;
        height: 24px;
    }
    .first-screen__popup-slide-number {
        width: 32px;
        height: 32px;
    }
    .field__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        row-gap: 20px
    }
}
.field__img {
    width: 100%;
    aspect-ratio: 1
}
@media(max-width: 768px) {
    .field__img {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }
}
.field__img_small {
    aspect-ratio: 1.62/1
}
@media(max-width: 768px) {
    .field__img_small {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: 20px
    }
}
.field__subtitle {
    font-family: "TT Norms Pro", sans-serif;
    letter-spacing: .05em;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 10px;
    text-transform: uppercase
}
@media(max-width: 768px) {
    .field__subtitle {
        font-family: "TT Norms Pro", sans-serif;
        letter-spacing: .05em;
        font-weight: 700;
        font-size: 18px;
        line-height: 30px
    }
}
.field__content {
    font-family: "TT Norms Pro", sans-serif;
    letter-spacing: .05em;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    padding: 10px 20px;
    border-radius: 8px;
    background: color-mix(in srgb, var(--black) 6%, transparent 100%)
}
@media(max-width: 768px) {
    .field__content {
        font-family: "TT Norms Pro", sans-serif;
        letter-spacing: .05em;
        font-weight: 400;
        font-size: 16px;
        line-height: 30px;
        padding: 5px 10px
    }
}
.field__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px
}
.field__item {
    padding-left: 40px;
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 20px 20px;
    min-height: 20px
}
.field__item_big {
    min-height: 40px;
    padding-left: 60px;
    background-size: 40px 40px
}
@media(max-width: 768px) {
    .field__shell {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }
}
.field__shell_spacing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 20px
}
@media(max-width: 768px) {
    .field__shell_order {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}
@media(max-width: 1300px) {
    .first-screen__scheme {
        order: 1;
    }
    .first-screen__points_left {
        order: 2;
    }
    .first-screen__points_right {
        order: 3;
    }
}