@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-MediumItalic.woff2') format('woff2');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans';
    src: url('../fonts/OpenSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSans_Condensed-ExtraBold.woff2') format('woff2');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Open Sans Condensed';
    src: url('../fonts/OpenSans_Condensed-ExtraBoldItalic.woff2') format('woff2');
    font-weight: 800;
    font-style: italic;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
}

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
button,
textarea,
select {
    font: inherit;
    color: inherit;
}

button {
    cursor: pointer;
    background: none;
    border: none;
}

ul,
ol {
    list-style: none;
}

a {
    color: inherit;
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: inherit;
    font-size: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

#root,
#__next {
    isolation: isolate;
}

/* END RESET */

html {
    font-size: 10px;
}

body {
    font-size: 1.4rem;
    color: #2d3132;
}

body {
    font-family: 'Open Sans', sans-serif;
    font-weight: 300;
}

em, .italic-text {
    font-weight: 300;
    font-style: italic;
}

h1, h2, strong {
    font-weight: 700;
}

.btn {
    position: relative;
    border-radius: .6rem;
    padding: 1.2rem 1.3rem;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 0.075em;
    text-align: center;
    text-transform: uppercase;
    line-height: 100%;
    border: .2rem solid transparent;
    transition: all .5s ease-in-out;
}

.btn:before {
    content: '';
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    transition: all .5s ease-in-out;
    border-radius: .6rem;
}

.btn:hover:before {
    width: 100%;
}

.btn-text {
    position: relative;
    z-index: 0;
}

.btn-primary {
    background: linear-gradient(90deg, #e72b5e 0%, #f3921b 100%);
    color: #fff;
}

.btn-primary:hover {
    color: #e7315a;
    border: .2rem solid #e7315a;
}

.btn-primary:hover:before {
    background: #ffffff;
}

.btn-secondary {
    background: #ffffff;
    color: #2d3132;
    border: .2rem solid #2d3132;
}

.btn-secondary:hover {
    color: #fff;
    border: .2rem solid transparent;
}

.btn-secondary:before {
    background: linear-gradient(90deg, #e72b5e 0%, #f3921b 100%);
}

.header {
    position: sticky;
    padding: 1.5rem;
    top: 0;
    background: #FFFFFF;
    z-index: 55;
}

@media (max-width: 768px) {
    .header {
        padding: 1rem;
        padding-left: 2rem;
    }
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 127.5rem;
    margin: auto;
}

.header__logo-image {
    max-width: 11.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .header__logo-image {
        max-width: 9.4rem;
    }

    .header__menu {
        display: none;
    }
}

.header_menu-list {
    display: flex;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 0.05em;
    gap: 3rem;
}

@media (max-width: 989px) {
    .header_menu-list {
        gap: 1.5rem;
    }
}

.header_menu-item {
    color: inherit;
    transition: all .5s ease-in-out;
}

.header_menu-item:hover {
    color: #ee6837;
}

@media (max-width: 989px) {
    .header__actions .btn {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .header__actions {
        display: none;
    }
}

.header__burger {
    display: none;
}

@media (max-width: 768px) {
    .header__burger {
        display: flex;
    }
}

.header__burger-icon {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 100%;
    background-color: transparent;
    transition: .5s ease-in-out ;
    overflow: clip;
}

.header__burger-icon-item {
    transition: .5s;
}

.header__burger-icon-lines {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    width: 2rem;
    height: 1.5rem;
}

.header__burger.active .header__burger-icon-lines {
    justify-content: center;
}

.header__burger-icon-line {
    height: 0.2rem;
    width: 100%;
    background-color: currentColor;
    border-radius: .2rem;
    transform-box: fill-box;
    transform-origin: center;
    opacity: 1;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

.header__burger.active .header__burger-icon-line {
    position: absolute;
}

.header__burger.active .header__burger-icon-lines .header__burger-icon-line {
    opacity: 0;
}

.header__burger.active .header__burger-icon-lines .header__burger-icon-line:nth-child(2) {
    transform: rotate(45deg);
    opacity: 1;
}

.header__burger.active .header__burger-icon-lines .header__burger-icon-line:nth-child(3) {
    transform: rotate(-45deg);
    opacity: 1;
}

.header__burger-menu {
    position: absolute;
    height: calc(100vh - 6.6rem);
    width: 0;
    top: 100%;
    left: -10%;
    background: linear-gradient(180deg, #f3921b 0%, #e72b5e 100%);
    padding: 4.5rem 1.5rem 1.5rem 1.5rem;
    overflow-x: auto;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.header__burger.active .header__burger-menu {
    opacity: 1;
    width: 100%;
    left: 0;
}

.header__burger-menu-list {
    display: flex;
    gap: 7.5rem;
    flex-direction: column;
    align-items: center;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 2.0rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.header__burger-menu-item {
    position: relative;
    line-height: 100%;
    z-index: 1;
}

.header__burger-nav-container {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    padding-bottom: 60%;
}

.header__burger-background {
    position: absolute;
    bottom: 0;
    width: 100%;
}

.main-banner {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner__media-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.main-banner__image {
    display: flex;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.main-banner__text-content {
    position: relative;
    max-width: 127.5rem;
    width: 100%;
    height: 100%;
    padding: 4.5rem 1.5rem 7rem;
    color: #ffffff;
    font-weight: 800;
}

@media (max-width: 768px) {
    .main-banner__text-content {
        padding: 3rem 1.5rem 2rem;
    }
}

.main-banner__text-header {
    display: flex;
    justify-content: space-between;
}

@media (max-width: 768px) {
    .main-banner__text-header {
        flex-direction: column-reverse;
        align-items: center;
        gap: 4rem;
    }
}

.main-banner__date {
    font-family: "Open Sans Condensed";
    font-style: italic;
    font-size: 3.2rem;
    line-height: 100%;
}

@media (max-width: 768px) {
    .main-banner__date {
        font-size: 1.8rem;
    }
}

.main-banner__partners {
    display: flex;
    gap: 4rem;
}

@media (max-width: 768px) {
    .main-banner__partners {
        justify-content: center;
    }
}

.main-banner__partner {
    max-height: 3.5rem;
    height: 100%;
    max-width: initial;
    width: auto;
}

@media (max-width: 768px) {
    .main-banner__partner {
        max-height: 2.8rem;
    }
}

.main-banner__text-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4.5rem;
    padding: 4.5rem;
}

@media (max-width: 768px) {
    .main-banner__text-main {
        padding: 0;
        padding-top: 1.5rem;
        gap: 0;
    }
}

.main-banner__heading {
    font-family: "Open Sans Condensed";
    font-weight: 800;
    font-style: italic;
    font-size: 6.0rem;
    line-height: 124%;
    text-align: center;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .main-banner__heading {
        font-size: 3.8rem;
    }
}

.main-banner__goal {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-banner__goal-decor-mobile {
    display: none;
}

@media (max-width: 768px) {
    .main-banner__goal {
        margin-top: 4.5rem;

    }

    .main-banner__goal-decor-desktop {
        display: none;
    }

    .main-banner__goal-decor-mobile {
        display: flex;
    }
}

.main-banner__goal-target {
    position: absolute;
    line-height: 110%;
    font-size: 7rem;
    text-align: center;
    text-transform: uppercase;
    margin-top: 1rem;
}

@media (max-width: 768px) {
    .main-banner__goal-target {
        font-size: 4.4rem;
    }
}

.main-banner__subheading {
    font-weight: 500;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 146%;
    max-width: 37rem;
    text-align: center;
}

@media (max-width: 768px) {
    .main-banner__subheading {
        font-size: 1.6rem;
        line-height: 146%;
        margin-top: 2rem;
    }
}

.main-banner__text-footer {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 2rem;
}

@media (max-width: 768px) {
    .main-banner__text-footer {
        flex-direction: column;
        gap: 1rem;
    }
}

.main-banner__text-footer .btn {
    padding: 1.9rem 2.8rem;
}

.heroes {
    max-width: 100%;
    overflow: clip;
}

.heroes__container {
    display: flex;
    gap: 2.5rem;
    padding: 6rem 2rem;
    align-items: flex-start;
}

@media (min-width: 1440px) {
    .heroes__container {
        max-width: 100%;
        margin: initial;
        margin-left: calc((100% - 127.5rem) / 2);
    }
}

@media (max-width: 1024px) {
    .heroes__container {
        flex-direction: column;
        gap: 1rem;
        padding: 4rem 2rem;
    }
}

.heroes__header {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    font-weight: 800;
    flex: 0 0 39rem;
    max-width: 39rem;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .heroes__header {
        width: 100%;
        max-width: 100%;
        gap: 0;
        padding: 0 3rem 1rem 0;
        flex: none;
    }
}

.heroes__colored {
    color: #ee6837;
}

.heroes__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-size: 6rem;
    line-height: 102%;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .heroes__heading {
        max-width: 39rem;
        font-size: 4rem;
        line-height: 104%;
    }
}

.heroes__subheading {
    font-style: italic;
    font-size: 2.4rem;
    line-height: 150%;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .heroes__subheading {
        padding-top: 2.5rem;
        padding-right: 2.5rem;
        font-size: 1.6rem;
        line-height: 150%;
        text-align: right;
    }
}

.heroes__text {
    line-height: 260%;
    padding-right: 2rem;
}

@media (max-width: 1024px) {
    .heroes__text {
        line-height: 200%;
        text-align: right;
        padding-right: 3.5rem;
        padding-top: 1.3rem;
    }
}

.heroes__first-point {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    color: #898989;
    font-style: italic;
    font-weight: 500;
    font-size: 3.2rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .heroes__first-point {
        justify-content: flex-end;
        font-size: 2.1rem;
    }
}

.heroes__path {
    font-weight: 800;
    font-size: 1.8rem;
}

@media (max-width: 1024px) {
    .heroes__path {
        font-size: 1.2rem;
    }
}

.heroes__route {
    position: absolute;
    max-width: 9rem;
    width: 100%;
    top: 1.8rem;
    right: -1.2rem;
}

@media (max-width: 1024px) {
    .heroes__route {
        max-width: 6.2rem;
        top: 1.5rem;
        right: -3rem;
    }
}

.heroes__second-point {
    color: #ee6837;
    font-weight: 800;
    font-style: italic;
    font-size: 3.2rem;
    text-transform: uppercase;
}

@media (max-width: 1024px) {
    .heroes__second-point {
        font-size: 2.1rem;
        line-height: 150%;
        padding-right: 4rem;
    }
}

.heroes__slider-wrapper {
    flex: 1 1 auto;
    width: 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.heroes__items {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    height: 51rem;
}

@media (max-width: 652px) {
    .heroes__items {
        height: 30.6rem;
    }
}

@media (max-width: 462px) {
    .heroes__items {
        height: 26.6rem;
    }
}

.heroes__items::-webkit-scrollbar {
    display: none;
}

.heroes__items:active {
    cursor: grabbing;
}

.heroes__item {
    display: flex;
    scroll-snap-align: start;
    background: #eaeaea;
    transition: background .5s ease-in-out;
    height: 100%;
    width: auto;
    flex-shrink: 0;
}

/*@media (max-width: 768px) {*/
/*    .heroes__item {*/
/*        flex: 0 0 22rem;*/
/*        min-width: 22rem;*/
/*    }*/
/*}*/

.heroes__item:hover {
    background: #fbc806;
}

.heroes__media-content {
    display: flex;
    justify-content: center;
    position: relative;
    overflow: clip;
    height: 100%;
    width: 100%;
    aspect-ratio: 16/14;
}

.heroes__item-image {
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: filter .5s ease-in-out;
}

.heroes__item-button {
    position: absolute;
    transition: bottom .5s ease-in-out;
    bottom: -50%;
}

.heroes__item:hover .heroes__item-button {
    bottom: 2rem;
}

.heroes__item-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem 2rem;
}

.heroes__item-heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 800;
    font-style: italic;
    font-size: 1.8rem;
    line-height: 117%;
    text-transform: uppercase;
    max-width: 15rem;
    width: 100%;
}

.heroes__item-text {
    font-weight: 600;
    line-height: 135%;
}

.heroes__scrollbar {
    max-width: calc(24rem * 2 + 2rem);
    width: 100%;
    height: 4px;
    background-color: #d1d1d1;
    border-radius: 2px;
    position: relative;
    overflow: clip;
}

@media (max-width: 1024px) {
    .heroes__scrollbar {
        max-width: 26rem;
    }
}

.heroes__scrollbar-thumb {
    height: 100%;
    background-color: #ee6837;
    border-radius: 2px;
    width: 0;
    position: absolute;
    top: 0;
    left: 0;
    will-change: transform, width;
}

.mission {
    position: relative;
    width: 100%;
    background-color: #eeeded;
    padding: 8rem 0;
    margin-top: 4rem;
}

.mission__container {
    position: relative;
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 8rem;
    z-index: 1;
}

.mission__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 102%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.mission__colored {
    color: #ee6837;
}

.mission__accent {
    color: #fbc806;
}

.mission__cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.mission__card {
    background: #ffffff;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: .6rem;
    overflow: clip;
}

.mission__card-title {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 110%;
    text-transform: uppercase;
    color: #1a1a1a;
    min-height: 8.8rem;
    max-width: 24rem;
}

.mission__card-line {
    height: .2rem;
    width: 7.7rem;
    background: #ee6837;
}

.mission__cards .mission__card:nth-child(2n) .mission__card-line {
    background: #000;
}

.mission__card-title.mission__colored {
    color: #ee6837;
}

.mission__card-text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 150%;
}

.mission__banners {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.mission__banner {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border-radius: .6rem;
    overflow: clip;
}

.mission__banner-content {
    padding: 4rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 51rem;
}

.mission__banner-heading {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 110%;
    text-transform: uppercase;
    color: #1a1a1a;
}

.mission__banner-subheading {
    font-size: 1.5rem;
    line-height: 140%;
    letter-spacing: 0.055em;
    max-width: 40rem;
}

.mission__banner-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission__banner-list li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333333;
    letter-spacing: 0.065em;
}

.mission__banner-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.8rem;
    height: 0.8rem;
    border-radius: 50%;
    background-color: #ee6837;
}

.mission__banners .mission__banner:nth-child(2n) li::before {
    background-color: #fbc806;
}

.mission__stats {
    display: grid;
    display: flex;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: auto;
}

.mission__stat {
    display: flex;
    flex-direction: column;
    position: relative;
    padding-right: 1.5rem;
    min-width: 13rem;
}

.mission__stat:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background-color: #2d3132;
}

.mission__stat-number {
    font-style: italic;
    font-weight: 800;
    font-size: 3.3rem;
    line-height: 150%;
    letter-spacing: 0.085em;
}

.mission__stat-label {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 60%;
    text-transform: uppercase;
}

.mission__banner-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 38rem;
    background-color: #e0e0e0;
}

.mission__banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.mission__background {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    width: 100%;
}

.mission__background-image {
    width: 100%;
}

@media (max-width: 1090px) {
    .mission__cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .mission {
        margin-top: 0;
        padding: 4rem 0;
    }

    .mission__container {
        gap: 4rem;
    }

    .mission__banners {
        gap: 2rem;
    }

    .mission__heading {
        font-size: 4rem;
    }

    .mission__cards {
        grid-template-columns: 1fr;
        padding:0 2.7rem;
    }

    .mission__card {
        gap: 4rem;
    }

    .mission__card-title {
        min-height: auto;
    }

    .mission__banner {
        grid-template-columns: 1fr;
    }

    .mission__banner-content {
        padding: 2.5rem;
        padding-bottom: 3rem;
    }

    .mission__banner-media {
        min-height: 20rem;
        order: -1;
    }

    .mission__stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.5rem;
    }
    .mission__stat {
        min-width: 8rem;
    }

    .mission__stat-number {
        font-size: 2.4rem;
    }

    .mission__stat-label {
        font-size: 1rem;
    }

    .mission__stat:not(:last-child)::after {
        right: 0.5rem;
    }

    .mission__background {
        display: none;
    }
}

.help {
    width: 100%;
    padding: 9rem 0;
    background-color: #ffffff;
}

.help__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.help__header {
    display: flex;
    flex-direction: column;
    gap: 8rem;
    flex: 0 0 60rem;
    max-width: 60rem;
}

.help__heading {
    display: flex;
    flex-direction: column;
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    color: #1a1a1a;
    max-width: 40rem;
}

.help__colored {
    color: #ee6837;
}

.help__media {
    width: 100%;
}

.help__image-placeholder {
    width: 100%;
    height: 30rem;
    background-color: #eaeaea;
}

.help__list-container {
    display: flex;
    gap: 2rem;
}

.help__list-road-image {
    transform: translateY(-1.5rem);
    flex-shrink: 0;
}

.help__list {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    max-width: 43rem;
    margin-top: 1rem;
}

.help__item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.1rem;
}

.help__time {
    font-family: 'Open Sans Condensed', sans-serif;
    display: inline-block;
    padding: .2rem .6rem;
    background: #ee6837;
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    border-radius: .6rem;
    letter-spacing: 0.08em;
}

.help__time-current {
    background: #e72b5e;
}

.help__title {
    font-weight: 800;
    font-size: 2.4rem;
    line-height: 146%;
    text-transform: uppercase;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .help__container {
        gap: 4rem;
    }

    .help__header {
        flex: 0 0 35rem;
        max-width: 35rem;
    }

    .help__heading {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    .help {
        padding: 3rem 0;
    }

    .help__container {
        flex-direction: column;
        gap: 3rem;
    }

    .help__media {
        display: none;
    }

    .help__list-container {
        position: relative;
        /*align-items: center;*/
        padding-left: 4.4rem;
    }

    .help__list-road-image {
        position: absolute;
        transform: translateY(0);
        height: 96%;
        left: 0;
    }

    .help__header {
        flex: none;
        width: 100%;
        max-width: 100%;
        gap: 2rem;
        align-items: center;
    }

    .help__heading {
        font-size: 3.8rem;
        max-width: 30rem;
        text-align: center;
    }

    .help__image {
        height: 22rem;
    }

    .help__list {
        width: 100%;
        gap: 1.8rem;
        margin-top: 0;
    }

    .help__title {
        font-size: 1.8rem;
    }
}

.path {
    width: 100%;
    padding: 6rem 0;
    background-color: #ffffff;
}

.path__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 8.5rem;
}

.path__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.path__colored {
    color: #ee6837;
}

.path__content {
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
    gap: 4rem;
    align-items: start;
}

.path__list {
    display: flex;
    flex-direction: column;
    gap: .9rem;
    max-width: 36rem;
}

.path__item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.path__number {
    flex: 0 0 2.6rem;
    width: 2.6rem;
    height: 2.6rem;
    background-color: #ee6837;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 800;
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 0.2rem;
}

.path__info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: .5rem;
}

.path__title {
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 130%;
    color: #1a1a1a;
}

.path__desc {
    font-size: 1.2rem;
    line-height: 130%;
    color: #666666;
}

.path__map {
    position: sticky;
    top: 2rem;
    width: 100%;
}

.path__map-container {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    border-radius: 0.8rem;
    width: 100%;
}

.path__map-img {
    width: 100%;
    height: auto;
    display: block;
}

.path__map-zoom {
    position: absolute;
    width: 40%;
    aspect-ratio: 1;
    height: auto;
    border: 2px solid #ee6837;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background-repeat: no-repeat;

    transform: translate(-50%, -50%);
    left: var(--x, 0px);
    top: var(--y, 0px);

    background-image: var(--bg-img);
    background-size: var(--bg-width) var(--bg-height);
    background-position: var(--bg-x) var(--bg-y);
}

.path__map-container:hover .path__map-zoom {
    opacity: 1;
}

@media (max-width: 1024px) {
    .path__map-container {
        cursor: default;
    }
    .path__map-container:hover .path__map-zoom {
        opacity: 0;
    }
}

@media (max-width: 1024px) {
    .path__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .path__map {
        position: static;
        order: -1;
    }

    .path__heading {
        font-size: 4.8rem;
    }
}

@media (max-width: 768px) {
    .path {
        padding: 4rem 0;
    }

    .path__heading {
        font-size: 3.8rem;
    }

    .path__container {
        gap: 4rem;
    }

    .path__map-img {
        height: 64rem;
        object-fit: cover;
        object-position: left;
    }

    .path__title {
        font-size: 1.4rem;
    }

    .path__desc {
        font-size: 1.2rem;
    }
}

.organizers {
    width: 100%;
    padding: 3rem 0;
    background-color: #ffffff;
}

.organizers__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 7.3rem;
}

.organizers__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.organizers__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7.5rem;
}

.organizers__card {
    border: 1px solid #1a1a1a;
    border-radius: .6rem;
    overflow: hidden;
    background-color: #ffffff;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.organizers__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.organizers__card-header {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid #1a1a1a;
    text-align: center;
    background-color: #ffffff;
}

.organizers__card-title {
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 110%;
    text-transform: uppercase;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

.organizers__card-body {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10rem;
    flex-grow: 1;
}

.organizers__card-logo {
    max-width: 100%;
    max-height: 8rem;
    width: auto;
    height: auto;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .organizers__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .organizers__heading {
        font-size: 4.8rem;
    }
}

@media (max-width: 576px) {
    .organizers {
        padding: 3rem 0;
    }

    .organizers__heading {
        font-size: 4rem;
    }

    .organizers__container {
        gap: 3.4rem;
    }

    .organizers__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        align-self: center;
    }

    .organizers__card-body {
        min-height: 10rem;
        padding: 1.5rem 1.5rem;
    }

    .organizers__card-title {
        font-size: 1.8rem;
    }
}

.partners {
    width: 100%;
    padding: 6rem 0;
    background-color: #ffffff;
}

.partners__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 9rem;
}

.partners__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.partners__colored {
    color: #ee6837;
}

.partners__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 4rem;
}

.partners__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
}

.partners__item:not(:nth-child(4n))::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 5.5rem;
    background-color: #1a1a1a;
}

.partners__logo {
    max-width: 100%;
    max-height: 5rem;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(0%);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.partners__item:hover .partners__logo {
    transform: scale(1.05);
}

@media (max-width: 1024px) {
    .partners__heading {
        font-size: 4.8rem;
    }

    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 3rem;
    }

    .partners__item:not(:nth-child(4n))::after {
        display: none;
    }

    .partners__item:not(:nth-child(2n))::after {
        display: block;
    }
}

@media (max-width: 576px) {
    .partners {
        padding: 0;
    }

    .partners__container {
        gap: 3.5rem;
    }

    .partners__heading {
        font-size: 3.8rem;
    }

    .partners__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .partners__item {
        padding: 1.5rem 1rem;
    }

    .partners__item::after {
        height: 4rem;
    }

    .partners__logo {
        max-height: 4rem;
        max-width: 11.3rem;
    }
}

.become-partner {
    width: 100%;
    padding: 6rem 0;
    background-color: #ffffff;
}

.become-partner__container {
    max-width: 127rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6.5rem;
}

.become-partner__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.become-partner__colored {
    color: #ee6837;
}

.become-partner__content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    text-align: center;
}

.become-partner__intro {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 140%;
    letter-spacing: 0.025em;
    color: #1a1a1a;
}

.become-partner__intro strong {
    font-weight: 700;
}

.become-partner__desc {
    font-weight: 600;
    font-size: 2.4rem;
    line-height: 140%;
    letter-spacing: 0.025em;
    color: #1a1a1a;
}

.become-partner__callout {
    position: relative;
    max-width: 97rem;
    width: 100%;
    padding: 2rem 4rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 3.5rem;
    letter-spacing: 0.01em;
}

.become-partner__callout::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    border-left: 12px solid #fbc806;
    border-top: 5px solid #fbc806;
    border-bottom: 5px solid #fbc806;
}

.become-partner__callout::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3rem;
    border-right: 12px solid #fbc806;
    border-top: 5px solid #fbc806;
    border-bottom: 5px solid #fbc806;
}

.become-partner__callout-text {
    font-weight: 600;
    font-size: 1.8rem;
    line-height: 150%;
    color: #1a1a1a;
    max-width: 53rem;
}

.become-partner__callout-divider {
    width: 1px;
    height: 6rem;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.become-partner__callout-contact {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 150%;
    color: #1a1a1a;
}

.become-partner__link {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.become-partner__link:hover {
    color: #ee6837;
}

@media (max-width: 1024px) {
    .become-partner__heading {
        font-size: 4.8rem;
    }

    .become-partner__intro {
        font-size: 1.8rem;
    }

    .become-partner__desc {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .become-partner__container {
        gap: 3.2rem;
    }

    .become-partner__content {
        gap: 2.5rem;
    }

    .become-partner__callout {
        flex-direction: column;
        gap: 2rem;
        padding: 1rem 2.5rem;
        text-align: center;
        margin-top: 0;
    }

    .become-partner__callout-divider {
        width: 80%;
        height: 1px;
    }

    .become-partner__callout::before,
    .become-partner__callout::after {
        width: 2rem;
    }
}

@media (max-width: 576px) {
    .become-partner {
        padding: 4rem 0;
    }

    .become-partner__heading {
        font-size: 3.8rem;
    }

    .become-partner__callout-text,
    .become-partner__callout-contact {

    }
}

.media {
    position: relative;
    width: 100%;
    padding: 6rem 0;
    background-color: #ffffff;
    margin-top: 4rem;
}

.media__container {
    position: relative;
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    z-index: 1;
}

.media__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 6rem;
    align-items: start;
}

.media__col--left {
    display: flex;
    flex-direction: column;
    gap: 9rem;
}

.media__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 5.4rem;
    line-height: 105%;
    text-transform: uppercase;
    color: #1a1a1a;
}

.media__colored {
    color: #ee6837;
}

.media__contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.media__contact-mobile {
    display: none;
}

.media__contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.media__contact-divider {
    width: 1px;
    height: 5rem;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.media__contact-text {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 140%;
    color: #1a1a1a;
    max-width: 27rem;
}

.media__link {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.media__link:hover {
    color: #ee6837;
}

.media__col--right {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-top: 1rem;
    height: 100%;
    justify-content: center;
}

.media__desc {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 139%;
    color: #1a1a1a;
    max-width: 56rem;
}

.media__background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.media__background-image {
    width: 100%;
    height: 100%;
}

@media (max-width: 1024px) {
    .media__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .media__heading {
        font-size: 4.6rem;
    }

    .media__col--right {
        padding-top: 0;
    }

    .media__desc {
        max-width: initial;
    }

    .media__col--left {
        flex-direction: row;
        justify-content: space-between;
        gap: 2rem;
    }
}

@media (max-width: 576px) {
    .media {
        padding: 4rem 0;
    }

    .media__col--left {
        justify-content: center;
    }

    .media__heading {
        font-size: 3.6rem;
        text-align: center;
    }

    .media__desc {
        font-size: 1.8rem;
        padding: 0 2rem;
    }

    .media__contact {
        gap: 1.5rem;
    }

    .media__contact-divider {
        height: 4rem;
    }

    .media__contact-text {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .media__contact-desktop {
        display: none;
    }

    .media__contact-mobile {
        display: flex;
    }
}

.contacts {
    width: 100%;
    padding: 6rem 0;
    background-color: #ffffff;
}

.contacts__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 3rem 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
}

.contacts__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 102%;
    text-transform: uppercase;
    color: #1a1a1a;
    flex-shrink: 0;
}

.contacts__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 64rem;
    width: 100%;
}

.contacts__colored {
    color: #ee6837;
}

.contacts__text {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 150%;
    color: #1a1a1a;
    max-width: 30rem;
}

.contacts__divider {
    width: 1px;
    height: 11rem;
    background-color: #1a1a1a;
    flex-shrink: 0;
}

.contacts__info {
    display: flex;
    flex-direction: column;
    gap: 2.2rem;
    flex-shrink: 0;
}

.contacts__item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.contacts__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    flex-shrink: 0;
}

.contacts__details {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.contacts__label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a1a;
}

.contacts__value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts__value:hover {
    color: #ee6837;
}

@media (max-width: 1100px) {
    .contacts__container {
        gap: 3rem;
    }

    .contacts__heading {
        font-size: 4.4rem;
    }

    .contacts__text {
        font-size: 1.6rem;
        max-width: 30rem;
    }

    .contacts__value {
        font-size: 1.8rem;
    }
}

@media (max-width: 900px) {
    .contacts__container {
        flex-direction: column;
        align-items: center;
        gap: 3.5rem;
        padding: 0 3rem 0 3rem;
    }

    .contacts__content {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
        max-width: 100%;
        width: 100%;
    }

    .contacts__divider {
        display: none;
    }

    .contacts__text {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .contacts {
        padding: 5rem 0;
    }

    .contacts__container {
        margin: initial;
    }

    .contacts__heading {
        font-size: 4rem;
        text-align: center;
    }

    .contacts__text {
        font-size: 1.8rem;
       text-align: center;
    }

    .contacts__value {
        font-size: 1.7rem;
    }

    .contacts__label {
        font-size: 1.3rem;
    }
}

.footer {
    width: 100%;
    padding: 8rem 0 3rem;
    background: linear-gradient(91.36deg, #4e0f20 1.16%, #100407 95.1%);
    color: #ffffff;
}

.footer__container {
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 4rem;
}

.footer__about {
    max-width: 28rem;
    height: 100%;
    font-weight: 400;
}

.footer__desc {
    font-size: 1.4rem;
    line-height: 160%;
    color: rgba(255, 255, 255, 0.75);
}

.footer__logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer__logo {
    max-width: 16rem;
    width: 100%;
    height: auto;
    object-fit: contain;
}

.footer__nav {
    display: flex;
    justify-content: flex-end;
    gap: 6rem;
}

.footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
}

.footer__nav-title {
    font-weight: 700;
    font-size: 1.6rem;
    color: #ffffff;
    letter-spacing: 0.03em;
}

.footer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer__nav-link,
.footer__privacy {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff;
    text-decoration: none;
    transition: all .5s ease-in-out;
}

.footer__nav-link:hover,
.footer__privacy:hover {
    color: #ee6837;
}

.footer__divider {
    width: 100%;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
}

.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.footer__copyright {
    font-size: 1.4rem;
    color: #ffffff;
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 2rem;
    text-decoration: none;
    color: #ffffff;
    transition: opacity 0.2s ease;
}

.footer__social:hover {
    opacity: 0.85;
}

.footer__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__social-info {
    display: flex;
    flex-direction: column;
    /*gap: 0.2rem;*/
}

.footer__social-label {
    font-size: 1.4rem;
    font-weight: 400;
    color: #ffffff
}

.footer__social-handle {
    font-size: 1.6rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer__logo-wrapper {
        order: -1;
        grid-column: span 2;
        justify-content: flex-start;
    }

    .footer__nav {
        justify-content: flex-start;
    }
}

@media (max-width: 680px) {
    .footer {
        padding: 7rem 0 2.5rem;
    }

    .footer__container {
        max-width: 31rem;
        align-items: center;
        padding: 0 1rem;
        gap: 5rem;
    }

    .footer__about {
        max-width: initial;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 5.5rem;
    }

    .footer__logo-wrapper {
        justify-content: center;
        grid-column: span 1;
    }

    .footer__divider {
        display: none;
    }

    .footer__nav {
        gap: 6rem;
    }

    .footer__privacy {
        order: -1;
    }

    .footer__copyright {
        order: -2;
    }

    .footer__bottom {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 2.5rem;
    }
}

.distances {
    position: relative;
    width: 100%;
    padding: 6rem 0 0;
    background-color: #ffffff;
    overflow: hidden;
}

.distances__container {
    position: relative;
    z-index: 2;
    max-width: 127.5rem;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.distances__heading {
    font-family: "Open Sans Condensed", sans-serif;
    font-style: italic;
    font-weight: 800;
    font-size: 6rem;
    line-height: 100%;
    text-transform: uppercase;
    text-align: center;
    color: #1a1a1a;
}

.distances__colored {
    color: #ee6837;
}

.distances__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.distances__card {
    position: relative;
    background-color: #ffffff;
    border: 1px solid #1a1a1a;
    border-radius: .5rem;
    padding: 3rem 1.5rem 1.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.distances__card-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.distances__value {
    font-family: "Open Sans Condensed", sans-serif;
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 100%;
    color: #1a1a1a;
}

.distances__title {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 125%;
    color: #1a1a1a;
}

.distances__desc {
    font-size: 1.3rem;
    font-weight: 600;
    line-height: 155%;
    color: #4a4a4a;
}

.distances__card-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.8rem;
    min-height: 9.3rem;
}

.distances__btn {
    width: 100%;
    padding: .2rem 1rem;
    border: 1px solid #1a1a1a;
    border-radius: 0.4rem;
    background-color: transparent;
    color: #1a1a1a;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.03em;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    transition: all 0.25s ease;
}

.distances__card:not(.distances__card--gradient):hover {
    border-color: #ee6837;
}

.distances__card:not(.distances__card--gradient) .distances__btn:hover {
    background: linear-gradient(90deg, #e03063 0%, #ee6837 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(238, 104, 55, 0.35);
}

.distances__price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ee6837;
    letter-spacing: 0.02em;
    text-align: center;
}

.distances__card--gradient {
    background: linear-gradient(160deg, #f26522 0%, #e03063 50%, #c41851 100%);
    border: none;
    color: #ffffff;
}

.distances__card--gradient .distances__value,
.distances__card--gradient .distances__title,
.distances__card--gradient .distances__price {
    color: #ffffff;
}

.distances__card--gradient .distances__desc {
    color: rgba(255, 255, 255, 0.9);
}

.distances__card--gradient .distances__btn {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.distances__card--gradient .distances__btn:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #e03063;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.distances__bg {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: -13rem;
    pointer-events: none;
}

.distances__bg-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: top center;
    mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 25%);
}

@media (max-width: 1200px) {
    .distances__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .distances__container {
        padding-right: 0;
    }

    .distances__grid {
        display: flex;
        gap: 2rem;
        padding: 1rem 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-x pan-y;
        scrollbar-width: none;
        -ms-overflow-style: none;
        cursor: grab;
        user-select: none;
    }
}

@media (max-width: 768px) {
    .distances {
        padding: 1rem 0 0;
    }

    .distances__container {
        gap: 2.5rem;
        padding-right: 0;
    }

    .distances__heading {
        font-size: 4rem;
    }

    .distances__bg {
        margin-top: -4rem;
        min-height: 22rem;
    }

    .distances__bg-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
        display: flex;
        position: absolute;
        left: 0;
        top: 0;
    }
}

@media (max-width: 480px) {
    .distances__grid {
        grid-template-columns: 1fr;
    }

    .distances__card {
        padding: 2.5rem 1.6rem 2rem;
    }
}