:root {
    --font-family: "Wix Madefor Text", sans-serif;
    --second-family: "Wix Madefor Display", sans-serif;
    --color-white: #fff;
    --color-black: #202020;
    --color-blue: #6aa9dc;
    --color-light-blue: #daeaf6;
    --color-dark-blue: #4181b4;
    --color-pink: #ff8585;
    --color-rose: #ba87e1;
    --color-lilac: #aba9eb;
    --color-yellow: #f0c74a;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

*::-webkit-scrollbar {
    width: 4px;
    background: var(--color-pink);
}

*::-webkit-scrollbar-button {
    background: var(--color-lilac);
}

*::-webkit-scrollbar-track {
    border-radius: 5px;
    background: var(--color-lilac);
}

*::-webkit-scrollbar-track-piece {
    background-color: var(--color-pink);
    border: 1px solid var(--color-pink);
}

*::-webkit-scrollbar-thumb {
    border-radius: 2px;
    width: 100%;
    background: var(--color-lilac);
}

* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-lilac) transparent;
}

html {
    font-size: calc(100vw / 192);
}

body {
    position: relative;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

body._lock {
    overflow-y: hidden;
}

body._home {
    background-color: var(--color-blue);
}

main {
    padding-top: 14.4rem;
}

._home main {
    padding-top: 16rem;
}

h1, h2, h3, h4, h5 {
    margin: 0;
}

a, button, p, ul {
    margin: 0;
    padding: 0;
    text-decoration: none;
    border: none;
    list-style: none;
    background: transparent;
}

button {
    cursor: pointer;
}

svg {
    display: block;
    -webkit-transition: fill .3s, stroke .3s;
    -o-transition: fill .3s, stroke .3s;
    transition: fill .3s, stroke .3s;
}

.container {
    margin: 0 auto;
    width: 100%;
    max-width: 118rem;
}

.row {
    margin: 0 auto;
    padding: 0 2rem;
    max-width: 114rem;
    width: 100%;
}

.page-title {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 6rem;
    line-height: 105%;
    letter-spacing: -0.03em;
    text-align: center;
}

.title-medium {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 3.8rem;
    line-height: 112%;
    letter-spacing: -0.03em;
}

.title-small {
    font-family: var(--second-family);
    font-weight: 800;
    font-size: 2.8rem;
    line-height: 112%;
    letter-spacing: -0.04em;
}

.page-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
}

.button-transparent {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 15.9rem;
    height: 4.6rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    white-space: nowrap;
    border: 1.50px solid var(--color-white);
    border-radius: 0.6rem;
    transition: color .3s, background-color .3s, border .3s;
}

.button-transparent:hover,
.button-transparent:focus,
.button-transparent:active {
    border-color: var(--color-pink);
    background-color: var(--color-pink);
}

.button-white {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    border-radius: 0.6rem;
    border: .1rem solid var(--color-white);
    background-color: var(--color-white);
    transition: color .3s, background .3s;
}

.button-white:hover,
.button-white:focus,
.button-white:active {
    color: var(--color-white) !important;
    background-color: transparent;
}

.button-white svg {
    transition: fill .3s, stroke .3s;
}

.button-blue {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    width: 33.5rem;
    height: 4.6rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    background-color: var(--color-blue);
    border-radius: 0.6rem;
    transition: background 0.3s;
}

.button-blue:hover,
.button-blue:focus,
.button-blue:active {
    background-color: var(--color-dark-blue);
}

/* header home */
header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 5;
    margin-bottom: 4.8rem;
    width: 100vw;
    background-color: var(--color-white);
}

.header-home {
    margin-bottom: 7rem;
    background-color: var(--color-blue);
}

.header-container {
    max-width: 148rem;
}

.header-row {
    max-width: 140rem;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2.2rem 0;
}

.header-logo {
    width: auto;
    height: auto;
}

.header-logo img {
    display: block;
    width: 33.9rem;
    height: auto;
}

.header-home .header-logo img {
    display: block;
    width: 16.1rem;
    height: auto;
}

.header-menu {
    display: flex;
    align-items: center;
    gap: 3.7rem;
}

.header-menu li {
    width: auto;
}

.header-menu a {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 120%;
    text-transform: uppercase;
    text-align: center;
    color: var(--color-black);
    transition: color .3s;
}

.header-menu a:hover,
.header-menu a:focus,
.header-menu a:active {
    color: var(--color-blue);
}

.header-menu li.active a {
    color: var(--color-blue);
}

.header-control {
    display: flex;
    align-items: center;
    gap: 2.2rem;
}

.header-control-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 120%;
    color: var(--color-blue);
    text-transform: uppercase;
    transition: color .3s;
}

.header-home .header-control-phone {
    color: var(--color-white);
}

.header-control-phone:hover,
.header-control-phone:focus,
.header-control-phone:active {
    color: var(--color-pink);
}

.header-control-phone svg {
    display: block;
    width: 1.3rem;
    height: 1.8rem;
    fill: var(--color-blue);
    transition: fill .3s;
}

.header-home .header-control-phone svg {
    fill: var(--color-white);
}

.header-control-phone:hover svg,
.header-control-phone:focus svg,
.header-control-phone:active svg {
    fill: var(--color-pink);
}

.header-control-button.button-blue {
    max-width: 15.9rem;
    white-space: nowrap;
}

.header-burger {
    display: none;
}

.hedaer-mobile-fixed {
    display: none;
}

/* home */
.hero {
    margin-bottom: 7rem;
    width: 100%;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    margin: 0 auto 2.8rem auto;
    width: 100%;
    max-width: 73rem;
}

.hero-image-bgd {
    display: block;
    width: 100%;
}

.hero-image-bgd-mobile {
    display: none;
}

.hero-image-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: scale(0);
    margin: -1rem;
    height: 0;
    width: 0;
    overflow: hidden;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.hero-image-name {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-desc {
    display: block;
    margin: 0 auto 2.4rem auto;
    max-width: 85rem;
    color: var(--color-white);
}

.hero-text {
    margin: 0 auto;
    max-width: 78rem;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 2rem;
    line-height: 137%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--color-white);
}

.park {
    position: relative;
    margin-bottom: 2.8rem;
    width: 100%;
    background-image: url('../img/home/park-bgd.svg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.park::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    z-index: 3;
    display: block;
    width: 100%;
    height: .1rem;
    background-color: var(--color-blue);
}

.park-content {
    position: absolute;
    left: 3.2rem;
    bottom: 3.3rem;
    max-width: 49rem;
    color: var(--color-white);
}

.park-image {
    margin-left: auto;
    width: 54.3rem;
    height: 46.2rem;
}

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

.park-content-top {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    margin-bottom: 1.6rem;
}

.park-content-top-name {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .9rem 1.6rem;
    width: 6.6rem;
    height: 3.4rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: #202020;
    border-radius: 2rem;
    background-color: var(--color-white);
}

.park-content-top-time {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--color-white);
}

.park-content-title {
    margin-bottom: .8rem;
}

.park-content-text {
    margin-bottom: 2.3rem;
    max-width: 47rem;
}

.park-link {
    max-width: 49rem;
    height: 6.6rem;
    color: var(--color-dark-blue);
}

.park-link svg {
    width: 1.7rem;
    height: 2.1rem;
    fill: var(--color-dark-blue);
}

.park-link:hover svg,
.park-link:focus svg,
.park-link:active svg {
    fill: var(--color-white);
}

.cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.8rem;
    margin-bottom: 2.8rem;
    width: 100%;
}

.cards-slider {
    margin-bottom: 7rem;
    width: 100%;
}

.cards-slider .cards-wrapper {
    width: 100%;
    align-items: stretch;
}

.card {
    width: calc((100% - 5.6rem)/3);
    color: var(--color-white);
}

.card-big:nth-child(1) {
    background-color: var(--color-pink);
}

.card-big:nth-child(2) {
    background-color: var(--color-rose);
}

.card-small._rose {
    background-color: var(--color-rose);
}

.card-small._lilac {
    background-color: var(--color-lilac);
}

.card-small._yellow {
    background-color: var(--color-yellow);
}

.card-big {
    display: flex;
    flex-direction: column;
    margin-top: 5rem;
    width: calc((100% - 2.8rem)/2);
}

.card-img {
    width: 100%;
}

.card-img img {
    display: block;
    margin-top: -5rem;
    width: 100%;
}

.card-content {
    display: flex;
    flex-direction: column;
    padding: 3.2rem;
    height: 100%;
}

.card-small .card-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-content-top {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.6rem;
}

.card-content-top-name {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 1.6rem;
    width: 10.6rem;
    height: 3.4rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--color-black);
    border-radius: 2rem;
    background-color: var(--color-white);
}

.card-content-top-time {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: #fff;
}

.card-content-name {
    margin-bottom: 2.3rem;
}

.card-big .card-content-name {
    margin-bottom: .8rem;
}

.card-content-text {
    display: block;
    margin-bottom: 2.3rem;
}

.card-big .card-content-link {
    margin-top: auto;
    height: 6.6rem;
}

.card-big .card-content-link svg {
    width: 2.7rem;
    height: 1.6rem;
}

.card-small .card-content-link {
    margin-top: auto;
    height: 6.6rem;
}

.card-big:nth-child(1) .card-content-link {
    color: var(--color-pink);
}

.card-big:nth-child(2) .card-content-link {
    color: var(--color-rose);
}

.card-small._rose .card-content-link {
    color: var(--color-rose);
}

.card-small._lilac .card-content-link {
    color: var(--color-lilac);
}

.card-small._yellow .card-content-link {
    color: var(--color-yellow);
}

.card-big:nth-child(1) .card-content-link svg {
    fill: var(--color-pink);
}

.card-big:nth-child(2) .card-content-link svg {
    fill: var(--color-rose);
}

.card-small._rose .card-content-link svg {
    fill: var(--color-rose);
    stroke: var(--color-rose);
}

.card-small._lilac .card-content-link svg {
    fill: var(--color-lilac);
    stroke: var(--color-lilac);
}

.card-small._yellow .card-content-link svg {
    fill: var(--color-yellow);
    stroke: var(--color-yellow);
}

.card-content-link svg {
    width: 3.1rem;
    height: 2rem;
}

.card-content-link:hover svg,
.card-content-link:focus svg,
.card-content-link:active svg {
    fill: var(--color-white) !important;
    stroke: var(--color-white) !important;
}

footer {
    width: 100%;
    background-color: var(--color-blue);
}

.footer {
    padding: 7rem 0;
    width: 100%;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.7rem;
    margin-bottom: 2.9rem;
}

.footer-social {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8rem;
    width: 4.7rem;
    height: 4.7rem;
    background-color: var(--color-white);
    border-radius: 1.2rem;
}

.footer-social:nth-child(1) {
    padding: 1.4rem 1.2rem 1.2rem .8rem;
}

.footer-social:nth-child(2) {
    padding: 1.4rem 1rem 1.5rem .9rem;
}

.footer-social:nth-child(3) {
    padding: 1.3rem 1.2rem;
}

.footer-social:nth-child(4) {
    padding: 1.1rem;
}

.footer-social:nth-child(1) {
    padding: .8rem 1rem .8rem .8rem;
}

.footer-social svg {
    display: block;
    max-width: 100%;
    max-height: 100%;
    fill: var(--color-blue);
    transition: fill .3s;
}

.footer-social:hover svg,
.footer-social:focus svg,
.footer-social:active svg {
    fill: var(--color-pink);
}

.footer-copyrite {
    margin-bottom: 2.9rem;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.22em;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.footer-link {
    position: relative;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: rgba(255, 255, 255, 0.6);
    transition: color .3s;
}

.footer-link:hover,
.footer-link:focus,
.footer-link:active {
    color: var(--color-white);
}

.footer-link::before {
    content: '';
    position: absolute;
    bottom: -.3rem;
    left: 0;
    display: block;
    width: 100%;
    height: .1rem;
    background-color: rgba(255, 255, 255, 0.6);
    transition: background .3s;
}

.footer-link:hover:before,
.footer-link:focus:before,
.footer-link:active:before {
    background-color: var(--color-white);
}

/* article */
.article-padding-left {
    padding-left: 7.7rem;
}

.article {
    margin-bottom: 5rem;
    width: 100%;
}

.article-back {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.4rem;
    padding: 0.8rem 1.6rem;
    width: 12.6rem;
    height: 3.2rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--color-white);
    background-color: var(--color-blue);
    border-radius: 2rem;
    transition: background .3s;
}

.article-back:hover,
.article-back:focus,
.article-back:active {
    background-color: var(--color-dark-blue);
}

.article-back svg {
    display: block;
    width: .45rem;
    height: .9rem;
    fill: var(--color-white);
}

.article-title {
    margin-bottom: 2.1rem;
    text-align: left;
    word-break: break-all;
}

.article-links {
    display: flex;
    flex-wrap: wrap;
    gap: .8rem;
    width: 100%;
}

.article-link {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2rem;
    padding: 0.9rem 1.6rem;
    width: auto;
    height: 3.4rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: var(--color-black);
    border: 1px solid var(--color-blue);
    transition: color .3s;
}

.article-link:hover,
.article-link:focus,
.article-link:active {
    color: var(--color-blue);
}

.article-map-container {
    max-width: 144rem;
}

.article-map-row {
    padding: 0 !important;
    max-width: 100%;
}

.article-map {
    margin-bottom: 4.4rem;
    width: 100%;
    position: relative;
}

.article-map img {
    width: 100%;
}

.article-map__url {
    display: flex;
    align-items: center;
    column-gap: 20px;
    position: absolute;
    right: 0;
    top: 0;
    background: #fff;
    z-index: 2;
    text-decoration: none;
    color: #202020;
    padding: 30px 64px;
    font-weight: 500;
}

.article-map__url-text {
    text-decoration: underline;
}

.article-map__url:hover .article-map__url-text {
    text-decoration: none;
}

.article-map__url-icon img{
    width: 35px;
    max-width: 100%;
}

.article-introduction {
    margin-bottom: 5rem;
    width: 100%;
}

.article-introduction-title {
    margin-bottom: 2.4rem;
}

.article-introduction-text {
    max-width: 67.7rem;
}

.article-photo-row {
    max-width: 117rem;
}

.article-photo {
    position: relative;
    display: flex;
    gap: 2.8rem;
    margin-bottom: 2rem;
}

.article-photo::before {
    content: '';
    position: absolute;
    top: -6.5rem;
    left: -33rem;
    display: block;
    width: 69.2rem;
    height: 71.6rem;
    background-image: url('../img/article/introduction-1.svg');
    background-repeat: no-repeat;
}

.article-photo::after {
    content: '';
    position: absolute;
    bottom: -15.5rem;
    right: -24rem;
    display: block;
    width: 69.2rem;
    height: 71.7rem;
    background-image: url('../img/article/introduction-2.svg');
    background-repeat: no-repeat;
}

.article-photo-image {
    position: relative;
    z-index: 1;
    width: 55.6rem;
    height: 60.7rem;
}

.article-photo-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-photo-right {
    position: relative;
    z-index: 1;
    width: 55.6rem;
    height: 100%;
}

.article-photo-right-image {
    margin-bottom: 2.8rem;
    width: 100%;
}

.article-photo-right-image img {
    display: block;
    width: 100%;
}

.article-photo-right-quots {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    margin-bottom: 5rem;
    padding: 5.45rem 3rem 5.45rem 7.8rem;
    background: var(--color-light-blue);
}

.article-photo-right-quots::before {
    content: '';
    position: absolute;
    top: 6.1rem;
    left: 3rem;
    display: block;
    width: 2.5rem;
    height: 2.8rem;
    background-image: url('../img/icons/quot.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.article-center-row {
    max-width: 118rem;
}

.article-center {
    width: 100%;
}

.article-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    padding-left: 9.7rem;
    width: 100%;
}

.article-block-content {
    max-width: 68.2rem;
    width: 100%;
}

.article-block-content-title {
    margin-bottom: 2.4rem;
}

.article-aside {
    margin-top: 13.8rem;
    width: 32rem;
}

.article-aside-img {
    margin-bottom: 1.6rem;
    width: 100%;
}

.article-aside-img img {
    display: block;
    width: 100%;
}

.article-aside-text {
    margin-bottom: 1.6rem;
    width: 100%;
}

.article-aside-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    padding: 1rem 1rem 1.2rem;
    width: 32rem;
    height: 5rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 110%;
    letter-spacing: -0.05em;
    text-align: center;
    color: #fff;
    background-color: var(--color-blue);
    border-radius: 0.6rem;
    transition: background .3s;
}

.article-aside-link:hover,
.article-aside-link:focus,
.article-aside-link:active {
    background-color: var(--color-dark-blue);
}

.article-aside-link svg {
    width: 3.4rem;
    height: 2.1rem;
    fill: var(--color-white);
    stroke: var(--color-white);
}

.article-block-content ul, .article-block-content ol {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin: 2rem 0;
}

.article-block-content li {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
    color: #434343;
}

.article-block-content-text:not(:last-child) {
    padding-bottom: 2.4rem;
}

.article-block-content-quot {
    padding: 2.4rem 3rem;
    border-top: .1rem solid var(--color-blue);
    border-bottom: .1rem solid var(--color-blue);
}

.article-block-content-quot-title {
    position: relative;
    margin-bottom: 2.5rem;
    padding-left: 4.4rem;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
    color: var(--color-black);
}

.article-block-content-quot-title::before {
    content: '';
    position: absolute;
    top: -.5rem;
    left: 0;
    display: block;
    width: 2.5rem;
    height: 2.8rem;
    background-image: url(../img/icons/quot.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.article-block-content-quot-text {
    font-family: var(--font-family);
    font-style: italic;
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
    color: #202020;
}

.article-block-name {
    margin-bottom: 1.8rem;
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 1.6rem;
    line-height: 135%;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-black);
}

.article-block-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.8rem;
    margin-bottom: 2.4rem;
}

.article-block-card {
    position: relative;
    padding: 2.4rem 1.5rem 2.4rem 2.4rem;
    height: max-content;
    width: calc((100% - 2.8rem) / 2);
}

.article-block-card>span {
    position: relative;
}

.article-block-card-value {
    display: block;
    margin-bottom: .6rem;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 2.8rem;
    line-height: 112%;
    letter-spacing: -0.04em;
    color: var(--color-black);
}

.article-block-cards-values .article-block-card:nth-child(4n + 1) {
    background: var(--color-light-blue);
}

.article-block-cards-values .article-block-card:nth-child(4n + 2) {
    background: #f3e2e2;
}

.article-block-cards-values .article-block-card:nth-child(4n + 3) {
    background: #e3e3ff;
}

.article-block-cards-values .article-block-card:nth-child(4n + 4) {
    background: #e6daee;
}

.article-block-cards-values .article-block-card:nth-child(3)::before {
    content: '';
    position: absolute;
    top: 3rem;
    left: -46rem;
    display: block;
    width: 65.9rem;
    height: 55.8rem;
    background-image: url(../img/article/cadr.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}

.article-block-cards-values.no-decor .article-block-card:nth-child(3)::before {
    display: none;
}

.article-block-cards-values+.article-block-text {
    position: relative;
}

.article-block-content-quot.mb {
    margin-bottom: 2.4rem;
}

.article-block-card-icon {
    position: relative;
    display: flex;
    align-items: center;
    padding: 2.4rem 2.4rem 2.4rem 8.6rem;
    width: calc((100% - 2.8rem) / 2);
}

.article-block-card-icon:nth-child(7n + 1) {
    background: #e6daee;
}

.article-block-card-icon:nth-child(7n + 2) {
    padding: 2.4rem 4.4rem 2.4rem 8.6rem;
    background: var(--color-light-blue);
}

.article-block-card-icon:nth-child(7n + 3) {
    padding: 2.4rem 3.4rem 2.4rem 8.6rem;
    background: #f3e2e2;
}

.article-block-card-icon:nth-child(7n + 4) {
    background: #e3e3ff;
}

.article-block-card-icon:nth-child(7n + 5) {
    background: var(--color-light-blue);
}

.article-block-card-icon:nth-child(7n + 6) {
    background: #f6f0df;
}

.article-block-card-icon:nth-child(7n + 7) {
    padding: 2.4rem 3.4rem 2.4rem 8.6rem;
    background: #e3e3ff;
}

.article-block-card-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 2.4rem;
    display: block;
    width: 4rem;
    height: 4rem;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    transform: translateY(-50%);
}

.article-block-card-icon:nth-child(7n + 1):before {
    background-image: url('../img/article/article-icon-1.svg');
}

.article-block-card-icon:nth-child(7n + 2):before {
    background-image: url('../img/article/article-icon-2.svg');
}

.article-block-card-icon:nth-child(7n + 3):before {
    background-image: url('../img/article/article-icon-3.svg');
}

.article-block-card-icon:nth-child(7n + 4):before {
    background-image: url('../img/article/article-icon-4.svg');
}

.article-block-card-icon:nth-child(7n + 5):before {
    background-image: url('../img/article/article-icon-5.svg');
}

.article-block-card-icon:nth-child(7n + 6):before {
    background-image: url('../img/article/article-icon-6.svg');
}

.article-block-card-icon:nth-child(7n + 7):before {
    background-image: url('../img/article/article-icon-7.svg');
}

.article-block-card-text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 135%;
    letter-spacing: 0.01em;
    color: #434343;
}

.article-block-card-icon .article-block-card-text {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 2rem;
    line-height: 137%;
    letter-spacing: 0.01em;
    color: #202020;
}

.article-video-row {
    max-width: 116rem;
}

.article-video {
    margin-bottom: 5rem;
    width: 100%;
}

.article-video-title {
    position: relative;
    z-index: 1;
    margin-bottom: 2.4rem;
    padding-left: 9.5rem;
}

.article-video-block {
    position: relative;
    width: 100%;
}

.article-video-block::before {
    content: '';
    position: absolute;
    top: -25.5rem;
    left: -36rem;
    display: block;
    width: 69.2rem;
    height: 71.7rem;
    background-image: url('../img/article/performance-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.article-video-block::after {
    content: '';
    position: absolute;
    bottom: -20.5rem;
    right: -25rem;
    display: block;
    width: 69.2rem;
    height: 71.7rem;
    background-image: url('../img/article/performance-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.article-video-block img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
}

.article-bottom-row {
    max-width: 117rem;
}

.article-form {
    position: relative;
    margin-bottom: 5rem;
    padding: 7rem 9.7rem 10.9rem 9.7rem;
    background-color: var(--color-light-blue);
}

.article-form::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    width: 41.4rem;
    height: 15.9rem;
    background-image: url('../img/article/details-1.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.article-form::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 38.9rem;
    height: 8.7rem;
    background-image: url('../img/article/details-2.svg');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.article-form-title {
    margin-bottom: 2rem;
}

.article-form-text {
    margin-bottom: 2.2rem;
    max-width: 62rem;
}

.article-form-body {
    width: 65.4rem;
}

.article-form-body-top {
    display: flex;
    align-items: center;
    gap: 2.4rem;
    margin-bottom: 2.2rem;
    width: 100%;
}

.article-form-label {
    position: relative;
    width: 31.5rem;
}

.article-form-label span {
    position: absolute;
    top: .9rem;
    left: 2rem;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    text-align: center;
    color: var(--color-black);
    opacity: 0.7;
}

.article-form-label input {
    display: flex;
    align-items: center;
    padding: 1.9rem 2rem .9rem 2rem;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 135%;
    letter-spacing: 0.01em;
    color: #1b1c1c;
    border-radius: 0.7rem;
    background: #f2f4f5;
    border: .1rem solid #f2f4f5;
    transition: border .3s;
}

.article-form-label input:hover,
.article-form-label input:focus {
    border-color: var(--color-blue);
    outline: none;
}

.article-form-send {
    width: 31.5rem;
}

.article-form-privacy-text {
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 1.4rem;
    line-height: 112%;
    letter-spacing: 0.01em;
    color: #434343;
}

.article-form-privacy-text a {
    color: var(--color-blue);
    transition: color .3s;
}

.article-form-privacy-text a:hover,
.article-form-privacy-text a:focus,
.article-form-privacy-text a:active {
    color: var(--color-dark-blue);
}

.article-form-privacy {
    display: inline-flex;
    gap: 1rem;
    position: relative;
}

.article-form-privacy-input {
    opacity: 0;
    left: 0;
    top: 0;
    position: absolute;
}

.article-form-privacy-decor {
    flex-shrink: 0;
    display: block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: .5rem;
    background-color: var(--color-blue);
    background-image: url('../img/icons/check.svg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transition: background .3s;
}

.article-form-privacy-input:checked+.article-form-privacy-decor {
    background-color: transparent;
}

.card-big.swiper-slide._blue {
    background-color: var(--color-blue);
}

.card-big.swiper-slide._blue .card-content-link {
    color: var(--color-blue);
}

.card-big.swiper-slide._blue .card-content-link svg {
    fill: var(--color-blue);
    stroke: var(--color-blue);
}

.card-big.swiper-slide._rose {
    background-color: var(--color-rose);
}

.card-big.swiper-slide._rose .card-content-link {
    color: var(--color-rose);
}

.card-big.swiper-slide._rose .card-content-link svg {
    fill: var(--color-rose);
    stroke: var(--color-rose);
}

.card-big.swiper-slide._lilac {
    background-color: var(--color-lilac);
}

.card-big.swiper-slide._lilac .card-content-link {
    color: var(--color-lilac);
}

.card-big.swiper-slide._lilac .card-content-link svg {
    fill: var(--color-lilac);
    stroke: var(--color-lilac);
}

.article-materials {
    margin-bottom: 5rem;
    width: 100%;
}

.article-materials-title {
    margin-bottom: 4.3rem;
}

.article-materials-slider {
    margin-right: -15rem;
}

.article-materials .card-content-name {
    margin-bottom: 4.9rem;
}

.article-materials .card-img img {
    display: block;
    margin-top: -8.5rem;
    width: 100%;
}

.article-materials .card-big {
    margin-top: 0;
}

.article-materials-wrapper {
    align-items: stretch !important;
    padding-top: 8.5rem;
}

.article-materials-pagination {
    display: none;
}

/* video */
body._video {
    background-image: url('../img/video/hero-bgd.svg');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: auto;
}

.video {
    width: 100%;
}

.video-title {
    margin-bottom: 1rem;
    text-align: start;
}

.video-desc {
    display: block;
    margin-bottom: 4rem;
    max-width: 86rem;
    font-family: var(--second-family);
    font-weight: 500;
    font-size: 3.8rem;
    line-height: 123%;
    letter-spacing: -0.03em;
    color: var(--color-black);
    text-shadow: 0 0 5.2rem 0 rgba(255, 255, 255, 0.25);
}

.video-banner {
    margin-bottom: 5rem;
    width: 100%;
}

.video-banner img {
    display: block;
    width: 100%;
}

.video-b__block {
    cursor: pointer;
}

.fancybox__slide {
  width: 80%;
  height: 80%;
  max-width: 900px;
  max-height: 600px;
  margin: auto 0;
}

.fancybox__slide .f-html {
    background: transparent;    
}

@media (max-width: 768px) {
  .fancybox__slide {
    width: 95%;
    height: 60%;
  }
}

.video-adaptive {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    z-index: 2;
}

.video-adaptive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-width: 0;
  outline-width: 0;
}

.video-content {
    display: flex;
    gap: 2.9rem;
    width: 100%;
}

.video-aside {
    margin: 0;
    width: 26.4rem;
    overflow: visible !important;
}

.video-aside-wrapper.near-top {
    padding-top: 10rem;
}

.video-aside-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    position: sticky;
    top: 0;
    align-self: flex-start;
    padding-bottom: 6rem;
    height: max-content;
}

.video-aside-slide {
    width: 100%;
    height: max-content;
}

.video-aside-slide a {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 2rem;
    line-height: 137%;
    letter-spacing: 0.01em;
    color: var(--color-black);
    transition: color .3s;
}

.video-aside-slide a:hover,
.video-aside-slide a:focus,
.video-aside-slide a:active,
.video-aside-slide a._active {
    color: var(--color-blue);
}

.video-aside-slide a svg {
    flex-shrink: 0;
    display: block;
    width: 2.1rem;
    height: 1.7rem;
    fill: var(--color-black);
    opacity: 0;
    transition: opacity .3s, fill .3s;
}

.video-aside-slide a:hover svg,
.video-aside-slide a:focus svg,
.video-aside-slide a:active svg,
.video-aside-slide a._active svg {
    fill: var(--color-blue);
    opacity: 1;
}

.article-block-color-block {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
    width: 100%;
}

.article-block-color {
    position: relative;
    padding: 2.4rem 2.4rem 2.4rem 8.6rem;
    width: 100%;
}

.article-block-color:nth-child(odd) {
    background: #daeaf6;
}

.article-block-color:nth-child(even) {
    background: #e3e3ff;
}

.article-block-color::before {
    content: '';
    position: absolute;
    top: 2.4rem;
    left: 2.4rem;
    display: block;
    width: 4rem;
    height: 4rem;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.article-block-color:nth-child(odd)::before {
    background-image: url('../img/video/color-1.svg');
}

.article-block-color:nth-child(even)::before {
    background-image: url('../img/video/color-2.svg');
}

.article-block-color-name {
    display: block;
    margin-bottom: .5rem;
    max-width: 100%;
    font-family: var(--second-family);
    font-weight: 700;
    font-size: 2rem;
    line-height: 128%;
    color: var(--color-black);
    word-break: break-all;
}

.article-block-color-text {
    display: block;
    max-width: 100%;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 138%;
    letter-spacing: 0.01em;
    color: var(--color-black);
}

.article-materials-button {
    position: absolute;
    top: 50%;
    right: 15rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 7.9rem;
    height: 5.8rem;
    background-color: rgba(9, 7, 20, 0.3);
    border-radius: 3.6rem;
    transition: background .3s;
    transform: translateY(-50%);
}

.article-materials-button:hover,
.article-materials-button:focus,
.article-materials-button:active {
    background-color: var(--color-black);
}

.article-materials-button svg {
    display: block;
    width: 3rem;
    height: 2.4rem;
}

.page-up {
    position: fixed;
    right: 5rem;
    bottom: 5rem;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6rem;
    height: 6rem;
    background-color: var(--color-blue);
    transition: background .3s, opacity .3s, visibility .3s;
    transform: rotate(-90deg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.page-up:hover,
.page-up:focus,
.page-up:active {
    background-color: var(--color-dark-blue);
}

.page-up._show {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.page-up svg {
    width: 2.9rem;
    height: 2.3rem;
    fill: var(--color-white);
}

@media (max-width: 1600px) {
    html {
        font-size: calc(100vw / 160);
    }

    .page-title {
        font-size: 5rem;
    }

    .title-medium {
        font-size: 3.2rem;
    }

    .title-small {
        font-size: 2.4rem;
    }

    /* header */
    .header-home .header-logo img {
        width: 13.1rem;
    }

    /* home */
    .hero-image-name {
        max-width: 70rem;
    }

    .park-content {
        max-width: 35rem;
    }

    .park-link {
        max-width: 35rem;
    }
}

@media (max-width: 1400px) {
    html {
        font-size: calc(100vw / 140);
    }
}

@media (max-width: 1200px) {
    html {
        font-size: calc(100vw / 120);
    }

    /* header */
    .header-burger {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 2.4rem;
        height: 2.4rem;
    }

    .header-burger span {
        display: block;
        width: 100%;
        height: .2rem;
        background-color: var(--color-blue);
        transition: background .3s;
    }

    .header-home .header-burger span {
        background-color: var(--color-white);
    }

    .header-burger:hover span,
    .header-burger:focus span,
    .header-burger:active span {
        background-color: var(--color-pink);
    }

    .header-control {
        margin-left: auto;
    }

    .hedaer-mobile-fixed {
        position: fixed;
        left: -110%;
        top: 0;
        z-index: 10;
        display: block;
        padding: 1.6rem 2rem 2.7rem 2rem;
        width: 100%;
        max-width: 376px;
        height: 100%;
        max-height: 80rem;
        background-color: var(--color-white);
        transition: left .6s;
    }

    .hedaer-mobile-fixed._open {
        left: 0;
    }

    .hedaer-mobile {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        gap: 2rem;
        width: 100%;
        height: 100%;
        overflow-y: auto;
    }

    .header-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 2rem;
        margin-bottom: 6rem;
        width: 100%;
    }

    .header-top-logo {
        display: block;
        max-width: 22.8rem;
    }

    .header-top-logo img {
        display: block;
        width: 100%;
    }

    .header-top-close {
        font-size: 4rem;
        line-height: 1;
        font-weight: 300;
    }

    .hedaer-mobile-fixed .header-menu {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6.2rem;
    }

    .header-menu {
        display: none;
    }

    .header-menu li {
        width: 100%;
    }

    .header-menu a {
        display: block;
        margin: 0 auto;
        width: max-content;
        max-width: 100%;
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 2.4rem;
        line-height: 120%;
        text-transform: uppercase;
        text-align: center;
        color: var(--color-black);
        transition: color .3s;
    }

    .header-menu a:hover,
    .header-menu a:focus,
    .header-menu a:active {
        color: var(--color-blue);
    }

    .header-top-phone {
        display: flex;
        align-items: center;
        gap: 1.5rem;
        margin: auto 0 0 0;
        width: max-content;
        font-family: var(--font-family);
        font-weight: 700;
        font-size: 2.4rem;
        line-height: 120%;
        text-transform: uppercase;
        color: var(--color-blue);
        transition: color .3s;
    }

    .header-top-phone:hover,
    .header-top-phone:focus,
    .header-top-phone:active {
        color: var(--color-pink);
    }

    .header-top-phone svg {
        width: 2rem;
        height: 2.8rem;
        fill: var(--color-blue);
    }

    .header-top-phone:hover svg,
    .header-top-phone:focus svg,
    .header-top-phone:active svg {
        fill: var(--color-pink);
    }

    .hedaer-mobile .header-control-button {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    html {
        font-size: calc(100vw / 102.4);
    }

    /* article */
    .article-materials-slider {
        margin-right: -2rem;
    }

    .article-materials-button {
        right: 5rem;
    }
}

@media (max-width: 992px) {
    html {
        font-size: calc(100vw / 92.2);
    }

    /* home */
    .park-image {
        width: 49.3rem;
        height: auto;
    }

    /* articles */
    .article-block-cards-values .article-block-card {
        width: 100%;
    }
    
    .article-map__url {
        padding: 10px 30px;
        font-size: 1.4rem;
    }
}

@media (max-width: 850px) {
    html {
        font-size: calc(100vw / 85);
    }

    main {
        padding-top: 11rem;
    }

    ._home main {
        padding-top: 12rem;
    }

    .page-title {
        font-size: 4.5rem;
    }

    /* home */
    .park-content {
        left: 2.5rem;
        bottom: 2.5rem;
    }

    .card-content {
        padding: 2.5rem;
    }

    .card-small .card-content {
        min-height: 30rem;
    }

    /* article */
    .article-photo {
        flex-direction: column;
        align-items: center;
        overflow: hidden;
    }

    .article-photo::before {
        left: -36rem;
    }

    /* video */
    .video-desc {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    html {
        font-size: calc(100vw / 76.8);
    }
    
    .hero-image-name {
        max-width: 52rem;
    }

    .page-title {
        font-size: 3.4rem;
    }

    .title-medium {
        font-size: 3rem;
    }

    .page-text {
        font-size: 1.6rem;
    }

    /* header */
    header {
        margin-bottom: 4rem;
    }

    .header-home {
        margin-bottom: 4.8rem;
    }

    .header-control {
        display: none;
    }

    .header-logo img {
        width: 22.9rem;
    }

    /* home */
    .hero {
        margin-bottom: 4.8rem;
    }

    .hero-desc {
        margin-bottom: 1.6rem;
        max-width: 57rem;
    }

    .hero-text {
        max-width: 46rem;
    }

    .park {
        position: relative;
        display: flex;
        flex-direction: column-reverse;
        padding-top: 27rem;
        background-image: url('../img/home/park-mobile-bgd.svg');
        background-position: top;
    }

    .park-content {
        position: relative;
        z-index: 2;
        max-width: 28.5rem;
    }

    .park-image {
        position: absolute;
        top: 0;
        right: 0;
        z-index: 1;
        width: 46.3rem;
        height: auto;
    }

    /* article */
    .article-padding-left {
        padding-left: 3.7rem;
    }

    .article-padding-left, .article-block {
        padding-left: 3rem;
    }

    .article-video-title {
        padding-left: 6rem;
    }

    .article-video {
        margin-bottom: 7rem;
    }

    .article-block {
        flex-wrap: wrap;
        justify-content: center;
    }

    .article-aside {
        margin-top: 0;
        margin-bottom: 3rem;
        width: 100%;
        max-width: 50rem;
    }

    .article-form {
        padding: 3.3rem 2.7rem 8.1rem 2.7rem;
    }

    .article-materials-slider {
        margin-right: 0;
    }

    .article-block-cards-values .article-block-card:nth-child(3)::before {
        display: none;
    }

    .video-content {
        flex-wrap: wrap;
        overflow: hidden;
    }

    .video-aside {
        margin-right: -1.8rem;
        width: calc(100% + 1.8rem);
    }

    .video-aside-wrapper {
        flex-direction: row;
        gap: 0;
        padding-bottom: 0;
    }

    .video-aside-slide {
        width: max-content;
    }

    .video-aside-slide a svg {
        display: none;
    }

    .video-aside-wrapper.near-top {
        padding-top: 0;
    }
}

@media (max-width: 650px) {
    html {
        font-size: calc(100vw / 65);
    }

    /* hero */
    .park-image {
        width: 39.3rem;
    }

    .card-big {
        width: 100%;
    }

    /* footer */
    .footer-links {
        flex-direction: column;
        align-items: center;
    }

    /* article */
    .article-padding-left, .article-block {
        padding-left: 0;
    }

    .article-block {
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .article-block-card-icon {
        width: 100%;
    }

    .article-introduction-title {
        margin-bottom: 1.6rem;
    }

    .article-photo::before {
        display: none;
    }

    .article-photo::after {
        display: none;
    }

    .article-introduction {
        margin-bottom: 4rem;
    }

    .article-photo {
        gap: 1.6rem;
        margin-bottom: 4rem;
    }

    .article-photo-image {
        width: 100%;
        height: auto;
    }

    .article-photo-right {
        width: 100%;
        height: 100%;
    }

    .article-photo-right-image {
        margin-bottom: 1.6rem;
    }

    .article-photo-right-quots {
        margin-bottom: 0;
        padding: 2.4rem 2.4rem 2.4rem 5.4rem;
    }

    .article-photo-right-quots::before {
        top: 2.4rem;
        left: 2.4rem;
        width: 1.5rem;
        height: 2.1rem;
    }

    .article-block-content-title {
        margin-bottom: 1.6rem;
    }

    .article-block-content-text {
        padding-bottom: 1.6rem;
    }

    .article-block-content-quot {
        padding: 2.4rem 0 2.4rem 3rem;
    }

    .article-block-content-quot-title {
        margin-bottom: 2rem;
    }

    .article-block-cards {
        gap: 1.6rem;
    }

    .article-video-block::before,
    .article-video-block::after {
        display: none;
    }

    .article-video-title {
        padding-left: 0;
    }

    .article-video {
        margin-bottom: 5rem;
    }

    .article-aside-link {
        width: 33.5rem;
    }

    .article-form-body {
        width: 100%;
    }

    .article-form-body-top {
        flex-direction: column;
    }

    .article-form-label {
        max-width: 28.4rem;
    }

    .article-form::before {
        top: -.5rem;
        right: 0;
        width: 17.9rem;
        height: 8rem;
    }

    .article-form::after {
        width: 24rem;
        height: 5.7rem;
    }

    /* video */
    .video-banner {
        margin-bottom: 3.5rem;
    }

    .video-content {
        gap: 2.4rem;
    }
}

@media (max-width: 576px) {
    html {
        font-size: calc(100vw / 57.6);
    }

    /* header */
    .header-home .header-logo img {
        width: 8.7rem;
    }

    /* home */
    .hero-image-bgd-mobile {
        display: block;
    }

    .hero-image-bgd-desk {
        display: none;
    }

    .hero-image-name {
        margin-left: .5rem;
        max-width: 33.7rem;
    }

    .park-image {
        width: 33.3rem;
    }

    .cards-slider {
        margin-bottom: 4.8rem;
    }

    /* video */
    body._video {
        background-image: url('../img/video/hero-mobile-bgd.svg');
        background-size: contain;
    }

    .page-up {
        right: 2rem;
        bottom: 2rem;
    }
    
    .article-map__url {
        padding: 10px 10px;
    }
    
    .article-map__url-text {
        display: none;
    }
    
    .article-map__url-icon {
        font-size: 0;
        line-height: 0;
    }
    
    
    .article-map__url-icon img{
        width: 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: calc(100vw / 48);
    }

    /* home */
    .park-image {
        width: 28.3rem;
    }

    .article-materials-pagination {
        position: static;
        display: flex;
        justify-content: center;
        gap: .7rem;
        margin-top: 3rem;
        width: 100%;
    }

    .article-materials-pagination .swiper-pagination-bullet {
        margin: 0 !important;
        width: 0.8rem;
        height: 0.8rem;
        background: var(--color-blue);
        border-radius: 0;
        opacity: 0.5;
        transition: opacity .3s;
    }

    .article-materials-pagination .swiper-pagination-bullet-active {
        opacity: 1;
    }

    .article-materials-button {
        display: none !important;
    }
}

@media (max-width: 400px) {
    html {
        font-size: calc(100vw / 40);
    }

    /* home */
    .park {
        padding-top: 20rem;
    }

    .park-image {
        width: 21.3rem;
    }
}

@media (max-width: 375px) {
    html {
        font-size: calc(100vw / 37.5);
    }

    .row {
        padding: 0 1.7rem;
    }

    .card-big .card-content-name br:first-child {
        display: none;
    }
}