.project-hero {
    min-height: 100vh;
    position: relative;
    padding-top: 147px;
    padding-left: 40px;
    padding-bottom: 56px;
    display: flex;
    flex-direction: column;
}

.project-hero.tablet-v {
    display: none;
}

.project-hero .hero-img {
    position: absolute;
    inset: 0;
    width: 100%;
    z-index: 0;
}

.project-hero .hero-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero a {
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-decoration: underline;
    text-decoration-style: solid;
    text-decoration-thickness: 0;
    color: var(--white);

    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 4px;
    z-index: 1;
}

.project-hero .hero-tags {
    margin-top: auto;
    display: flex;
    gap: 6px;
    z-index: 1;
}

.project-hero .hero-tag {
    padding: 8px 10px;
    background-color: var(--grey-100);
    border-radius: 100px;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.02em;
    text-align: center;
}

.project-hero select.hero-tag {
    appearance: none;
    border: none;
    background: url("../../img/icons/menu-arrow-down.svg") , var(--sun-yellow);
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: 92%;
    width: max-content;
    padding-right: 30px;
    --bs-form-select-bg-img: none;
    position: relative;
    cursor: pointer;
    transition: all 300ms ease;
    text-align: center;
}

.project-hero select.hero-tag option {
    background: var(--white);
    text-align: center;
}

.project-hero select.hero-tag:focus, .project-hero select.hero-tag:active, .project-hero select.hero-tag:focus-visible {
    border: none;
    outline: none;
}

.cost {
    position: absolute;
    right: 40px;
    top: calc(50% + 106px);
    transform: translateY(calc(-50% - 106px / 2));
    min-width: 494px;
    min-height: 69.75vh;
    background-color: var(--white);
    border-radius: 10px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

.cost h4 {
    max-width: 430px;
    margin-bottom: 40px;
}

.cost h4::before {
    content: "";
    display: block;
    margin-top: -0.18em;
}

.cost h4::after {
    content: "";
    display: block;
    margin-bottom: -0.3em;
}

.cost-one {
    background-color: var(--grey-100);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    border-radius: 6px;
    padding: 16px 24px;
    margin-bottom: 18px;
}

.cost-one p {
    max-width: 208px;
    text-align: left;
    font-weight: 400;
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
}

.cost-sum {
    display: flex;
    flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
}

.cost-sum .cost-sum__item {
    display: flex;
    justify-items: stretch;
    align-items: end;
    gap: 10px;
    padding: 8px 0;
}

.cost-sum .cost-sum__item p {
    letter-spacing: -0.02em;
}

.cost-sum .cost-sum__item .dotted-border {
    flex-grow: 1;
    border-bottom: 1px dashed var(--black-1000);
    margin-bottom: 7px;
}

.cost .btn-subscribe {
    margin-top: auto;
    font-weight: 500;
    font-size: 26px;
    line-height: 110%;
    letter-spacing: -0.03em;
    text-decoration: none;
    text-align: center;
    padding: 24px 0;
}

.cost a.btn-subscribe {
    display: block;
    margin-left: 0;
}

.project-page__info.tablet-v {
    display: none;
}

.project-page__info {
    padding: 40px;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 280px;
}

.project-page__info .hero-title {
    text-align: left;
}

.project-page__info .hero-title::before {
    content: "";
    display: block;
    margin-top: -0.14em;
}

.project-page__info .hero-title::after {
    content: "";
    display: block;
    margin-bottom: -0.14em;
}

.project-page__info .bottom-block {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10px;
}

.project-page__info .bottom-block p {
    max-width: 520px;
    text-align: left;
    line-height: 135%;

    grid-column: 1 / span 4;
}

.project-page__info .contacts {
    display: flex;
    flex-wrap: wrap;
    column-gap: 20px;
    row-gap: 18px;

    grid-column: 7 / -1;
}

.project-page__info .contacts .more-link {
    flex: 0 0 100%;
}

.project-page__info .contact-item {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--black-1000);
    padding-top: 8px;
    max-width: 213px;
    flex: 1 0 213px;
}

.project-page__info .contact-item:has(img) {
    max-width: 446px;
}

.project-page__info .contact-item h5 {
    font-weight: 700;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.project-page__info .contact-item p {
    font-size: 18px;
    line-height: 130%;
    letter-spacing: -0.02em;
    text-align: left;
}

.project-page__info .contact-item:has(img) {
    display: grid;
    grid-template-columns: 70px 1fr;
    height: max-content;
    column-gap: 16px;
    row-gap: 8px;
}

.project-page__info .contact-item img {
    grid-row: 1 / span 2;
    max-width: 70px;
    aspect-ratio: 1 / 1;
    align-self: center;
    display: block;
    object-fit: cover;
    object-position: right;
    border-radius: 50%;
    filter: grayscale(1);
}

.project-page__info .contact-item:has(img) p {
    grid-column: 2;
    text-align: left;
}

.project-page__info .contact-item:has(img) h5 {
    margin-bottom: 0;
}

.project-page__info .contacts .more-link {
    grid-column: 1 / -1;
    text-align: left;
}

.project-page__about {
    background-color: var(--grey-100);
    padding-top: 114px;
}

.project-page__about h1 {
    text-align: left;
    margin: 0 40px 40px;
}

.project-page__about h1::before {
    content: "";
    display: block;
    margin-top: -0.14em;
}

.project-page__about h1::after {
    content: "";
    display: block;
    margin-bottom: -0.14em;
}

.project-page__about .video-container {
    position: relative;
}

.project-page__about .video-container iframe
{
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto;
    height: 900px;
    object-fit: cover;
}

.project-page__about img {
    display: block;
    width: calc(100% - 80px);
    margin: 0 auto;
    height: 900px;
    object-fit: cover;
}

.project-page__about .video-container button {
    border: none;
    outline: none;
    width: 100px;
    height: 100px;
    background-color: var(--sun-yellow);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 300ms ease;
}

.project-page__about .video-container button img {
    margin-left: 6px;
}

.project-page__important {
    background-color: var(--grey-100);
    padding-top: 120px;
}

.project-page__important .title {
    margin-bottom: 29px;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10px;
}

.project-page__important .title h1 {
    text-align: left;
    grid-column: 1 / -1;
}

.project-page__important .title h1:last-child {
    grid-column: 2 / -1;
}

.project-page__important.statistic {
    margin-bottom: 0;
}

.project-page__important .statistic__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    grid-column: 2 / span 5;
    height: 100%;
    margin-left: 3px;
    gap: 32px;
    margin-right: 32px;
}

.project-page__important .statistic__left p {
    text-align: left;
    max-width: 512px;
}

.project-page__important .statistic__item .item-desc {
    grid-column: span 4;
    max-width: 454px;
}

.project-page__how-work {
    background-color: var(--grey-100);
    padding-top: 115px;
    padding-bottom: 120px;
}

.project-page__how-work .title {
    grid-column: 7 / -1;
    margin-bottom: 55px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    column-gap: 10px;
}

.project-page__how-work .title h1 {
    text-align: left;
    margin-bottom: 12px;
    grid-column: 1 / -1;
}

.project-page__how-work .title h1:nth-child(2) {
    margin-bottom: 0;
    grid-column: 2 / -1;
}

.project-page__how-work .title h1::before {
    content: "";
    display: block;
    margin-top: -0.14em;
}

.project-page__how-work .title h1::after {
    content: "";
    display: block;
    margin-bottom: -0.14em;
}

.project-page__how-work .photo-text {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10px;
    margin-bottom: 110px;
}

.project-page__how-work .photo-text .img-container {
    grid-column: 1 / span 5;
    width: 100%;
    height: 100%;
}

.project-page__how-work .photo-text .img-container img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-page__how-work .photo-text .text-block {
    grid-column: 8 / span 4;
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, -2.5rem + 8.33vw, 7.5rem);
}

.project-page__how-work .photo-text .text-block p {
    text-align: left;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
}

.project-page__how-work .photo-text .text-block p:nth-child(1) {
    max-width: 450px;
}

.project-page__condition h2 {
    grid-column: 2 / -1;
    text-align: left;
}

.project-page__condition h2:nth-of-type(2) {
    grid-column: 5 / -1;
    max-width: 920px;
    margin-top: -10px;
    margin-bottom: 23px;
}

.project-page__condition p {
    grid-column: 5 / span 5;
    text-align: left;
    font-weight: 400;
    font-size: 20px;
    line-height: 130%;
    letter-spacing: -0.03em;
    margin-bottom: 62px;
}

.project-page__condition .conditions-cards {
    grid-column: 5 / -2;
}

.project-page__condition .conditions-cards h4 {
    text-align: left;
    margin-bottom: 18px;
}

.conditions-cards .cards-container {
    display: grid;
    grid-template-columns: 1fr 1.34fr;
    gap: 10px;
}

.conditions-cards .cards-container .card {
    min-height: 215px;
    background-color: var(--sun-yellow);
    border-radius: 10px;
    border: none;
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.conditions-cards .card .count {
    font-weight: 400;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: -0.03em;
    color: var(--black-1000);
}

.conditions-cards .card p {
    margin-bottom: 0;
    font-size: 22px;
    line-height: 130%;
    letter-spacing: -0.03em;
}

.project-page .gallery .desktop-slider .swiper-thumbs .swiper-slide {
    flex: 1 0 0;
}

.project-page .gallery {
    margin-bottom: 0;
}

.project-page__events {
    padding: 120px 40px;
    background-color: var(--white);
}

.project-page__events h1 {
    text-align: left;
    margin-bottom: 64px;
}

.project-page__events h1::before {
    content: "";
    display: block;
    margin-top: -0.14em;
}

.project-page__events h1::after {
    content: "";
    display: block;
    margin-bottom: -0.14em;
}

.project-page__events .items-container {
    display: flex;
    flex-direction: column;
}

.project-page__events .items-container .item {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 10px;
    padding: 51px 0;
    border-top: 1px solid #000000;
}

.project-page__events .items-container .item:last-of-type {
    border-bottom: 1px solid #000000;
}

.project-page__events .item .count {
    grid-column: 1 / span 5;
    font-size: clamp(1.5rem, 0.833rem + 1.39vw, 2.5rem);
    line-height: 110%;
    letter-spacing: 0;
    text-transform: uppercase;
}

.project-page__events .item  h2 {
    letter-spacing: -0.015em;
    grid-column: 6 / span 5;
    text-align: left;
    margin-bottom: 73px;
}

.project-page__events .item p {
    grid-column: 6 / span 5;
    text-align: left;
}

.project-page .six-circle-block {
    padding: 120px 0;
    background-color: var(--grey-100);
    margin-bottom: 0;
    padding-bottom: 105px;
}

.project-page .six-circle-block h1 {
    max-width: 807px;
    margin-bottom: 31px;
}

.project-page .six-circle-block h1 + p {
    display: block;
    grid-column: 1 / -1;
    justify-self: center;
    text-align: center;
    line-height: 130%;
    letter-spacing: -0.03em;
    max-width: 807px;
    font-size: 22px;
    margin-bottom: 54px;
}

.project-page .support {
    margin-bottom: 0;
}

.project-page .other-cards-block .card {
    min-height: 643px;
}

.project-page .other-cards-block .card-link a img {
    align-self: start;
    margin-top: 8px;
}

.project-page .support .mobile-desk {
    display: none;
}

@media (hover: hover) {
    .project-hero select.hero-tag:hover {
        background-color: var(--green);
    }


    .project-page__about .video-container button:hover {
        background-color: var(--green);
    }
}