:root {
    --base-font: "Gilroy";
    --secondary-font: "KyivType Sans";
    --main-text: #1A1C21;
    --main-title: #1A1919;
    --white: #fff;
    --hover-transition: all .3s ease;
    --horse-black: #3E3A39;
    --horse-yellow: #FFEF03
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Regular.woff2) format("woff2"),url(../fonts/Gilroy-Regular.woff) format("woff");
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
    font-display: auto
}

@font-face {
    font-family: Gilroy;
    src: url(../fonts/Gilroy-Medium.woff2) format("woff2"),url(../fonts/Gilroy-Medium.woff) format("woff");
    font-style: normal;
    font-weight: 500;
    font-stretch: normal;
    font-display: auto
}

@font-face {
    font-family: "KyivType Sans";
    src: url(../fonts/KyivTypeSans-Bold.woff2) format("woff2"),url(../fonts/KyivTypeSans-Bold.woff) format("woff");
    font-style: normal;
    font-weight: 700;
    font-stretch: normal;
    font-display: auto
}

a,abbr,acronym,address,applet,article,aside,audio,b,big,blockquote,body,canvas,caption,center,cite,code,dd,del,details,dfn,div,dl,dt,em,embed,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,output,p,pre,q,ruby,s,samp,section,small,span,strike,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,tt,u,ul,var,video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
    display: block
}

ol,ul {
    list-style: none
}

blockquote,q {
    quotes: none
}

blockquote:after,blockquote:before,q:after,q:before {
    content: ""
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

button {
    display: inline-block;
    outline: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer
}

img {
    max-width: 100%;
    height: auto
}

a {
    display: inline-block;
    outline: 0;
    cursor: pointer
}

a:active,input:focus,textarea:focus {
    outline: 0
}

a,label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

input,textarea {
    display: inline-block;
    border-radius: 0;
    outline: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

html {
    height: 100%;
    font-size: 10px;
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth
}

body {
    min-height: 100vh;
    height: 100%;
    width: 100%;
    font-family: var(--base-font);
    font-size: 18px;
    line-height: 1.4;
    color: var(--main-text);
    margin: 0 auto;
    background: center/cover no-repeat #fff
}

.section {
    position: relative;
    background: center/cover;
    padding: 80px 0
}

@media(max-width: 1023px) {
    .section {
        padding:60px 0
    }
}

@media(max-width: 575px) {
    body {
        font-size:14px
    }

    .section {
        padding: 40px 0
    }
}

.container {
    width: 100%;
    max-width: 1290px;
    margin: 0 auto;
    padding: 0 15px
}

@media(max-width: 1199px) {
    .container {
        max-width:970px
    }
}

h1,h2,h3,h4 {
    font-weight: 700;
    line-height: 1.2;
    font-family: var(--secondary-font)
}

h1,h2 {
    font-size: 48px
}

@media(max-width: 1023px) {
    .container {
        max-width:750px
    }

    h1 {
        font-size: 40px
    }
}

@media(max-width: 575px) {
    h1 {
        font-size:24px
    }
}

@media(max-width: 1023px) {
    h2 {
        font-size:40px
    }
}

@media(max-width: 575px) {
    h2 {
        font-size:20px
    }
}

h3 {
    font-size: 32px
}

h4 {
    font-size: 20px
}

.uppercase {
    text-transform: uppercase
}

.more {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: rgba(0,0,0,0);
    font-family: var(--secondary-font);
    border: 0;
    outline: 0;
    padding: 0;
    margin-top: 15px;
    color: inherit
}

.more_text {
    display: none;
    margin-left: auto
}

.more_count {
    display: none;
    width: 100%;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.more span {
    font-size: 14px;
    font-weight: 700;
    margin-right: 10px
}

.more svg {
    margin-bottom: 1px
}

.btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    font-family: var(--secondary-font);
    font-size: 18px;
    text-decoration: none;
    padding: 12px 32px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: .01em;
    border-radius: 8px;
    -webkit-transition: var(--hover-transition);
    -o-transition: var(--hover-transition);
    transition: var(--hover-transition)
}

@media(max-width: 575px) {
    .btn {
        font-size:14px;
        padding: 10px
    }
}

.btn__black {
    background: var(--horse-black);
    color: var(--white)
}

.btn__yellow {
    background: var(--horse-yellow);
    color: var(--main-title)
}

@media(min-width: 768px) {
    .btn__black:hover {
        background:var(--horse-yellow);
        color: var(--main-title)
    }

    .btn__yellow:hover {
        background: var(--horse-black);
        color: var(--white)
    }

    a.footer__link:hover::before {
        opacity: 1
    }
}

.header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 20px 0
}

.header-section {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    background: rgba(255,255,255,.5)
}

.header__logo {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    margin-right: 20px
}

@media(max-width: 575px) {
    .header__logo {
        width:135px;
        margin-right: 5px
    }
}

@media(max-width: 374px) {
    .btn {
        font-size:12px
    }

    .header__logo {
        width: 120px
    }
}

.header__logo img {
    display: block
}

.header__about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.header__lang {
    margin-left: 16px
}

.footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.footer-section {
    background: var(--main-text);
    padding: 60px 0
}

.footer__title {
    margin-bottom: 32px
}

@media(max-width: 575px) {
    .header__lang {
        margin-left:8px
    }

    .footer-section {
        padding: 20px 0
    }

    .footer__title {
        margin-bottom: 24px
    }
}

.footer__info {
    width: 420px;
    padding-right: 30px;
    color: var(--white)
}

@media(max-width: 1023px) {
    .footer__info {
        width:360px
    }
}

@media(max-width: 767px) {
    .footer {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .footer__info {
        width: 100%;
        margin-bottom: 30px
    }
}

.footer__info-contact {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 24px
}

.footer__info-contact:last-child {
    margin-bottom: 0
}

.footer__map {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-bottom: 25%;
    border-radius: 10px;
    overflow: hidden
}

@media(max-width: 1023px) {
    .footer__map {
        padding-bottom:30%
    }
}

@media(max-width: 767px) {
    .footer__map {
        width:100%;
        padding-bottom: 50%
    }
}

.footer__link {
    position: relative;
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    margin-left: 18px;
    font-weight: 500
}

.footer__link::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: var(--white);
    opacity: 0;
    -webkit-transition: var(--hover-transition);
    -o-transition: var(--hover-transition);
    transition: var(--hover-transition)
}

@media(max-width: 575px) {
    .footer__info {
        padding-right:0;
        margin-bottom: 24px
    }

    .footer__map {
        padding-bottom: 58%
    }

    .footer__link {
        margin-left: 9px;
        font-size: 16px
    }
}

.footer iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

a.footer__link {
    cursor: pointer
}

.selectric-wrapper {
    position: relative;
    cursor: pointer
}

.selectric-responsive {
    width: 100%
}

.selectric {
    border: 1px solid #ddd;
    border-radius: 0;
    background: #f8f8f8;
    position: relative;
    overflow: hidden
}

.selectric .label {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    margin: 0 38px 0 10px;
    font-size: 12px;
    line-height: 38px;
    color: #444;
    height: 38px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.selectric .button {
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: 38px;
    height: 38px;
    background-color: #f8f8f8;
    color: #bbb;
    text-align: center;
    font: 0/0 a
}

.selectric .button:after {
    content: " ";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 0;
    height: 0;
    border: 4px solid transparent;
    border-top-color: #bbb;
    border-bottom: none
}

.selectric-focus .selectric {
    border-color: #aaa
}

.selectric-hover .selectric {
    border-color: #c4c4c4
}

.selectric-hover .selectric .button {
    color: #a2a2a2
}

.selectric-hover .selectric .button:after {
    border-top-color: #a2a2a2
}

.selectric-open {
    z-index: 9999
}

.selectric-open .selectric {
    border-color: #c4c4c4
}

.selectric-open .selectric-items {
    display: block
}

.selectric-disabled {
    opacity: .5;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.selectric-hide-select {
    position: relative;
    overflow: hidden;
    width: 0;
    height: 0
}

.selectric-hide-select select {
    position: absolute;
    left: -100%
}

.selectric-hide-select.selectric-is-native {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 10
}

.selectric-hide-select.selectric-is-native select {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    border: none;
    z-index: 1;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    opacity: 0
}

.selectric-input {
    position: absolute!important;
    top: 0!important;
    left: 0!important;
    overflow: hidden!important;
    clip: rect(0,0,0,0)!important;
    margin: 0!important;
    padding: 0!important;
    width: 1px!important;
    height: 1px!important;
    outline: 0!important;
    border: none!important;
    background: 0 0!important
}

.selectric-temp-show {
    position: absolute!important;
    visibility: hidden!important;
    display: block!important
}

.selectric-items {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #f8f8f8;
    border: 1px solid #c4c4c4;
    z-index: -1;
    -webkit-box-shadow: 0 0 10px -6px;
    box-shadow: 0 0 10px -6px
}

.selectric-items .selectric-scroll {
    height: 100%;
    overflow: auto
}

.selectric-above .selectric-items {
    top: auto;
    bottom: 100%
}

.selectric-items li,.selectric-items ul {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    line-height: 20px;
    min-height: 20px
}

.selectric-items li {
    display: block;
    padding: 10px;
    color: #666;
    cursor: pointer
}

.selectric-items li.selected {
    background: #e0e0e0;
    color: #444
}

.selectric-items li.highlighted {
    background: #d0d0d0;
    color: #444
}

.selectric-items li:hover {
    background: #d5d5d5;
    color: #444
}

.selectric-items .disabled {
    opacity: .5;
    cursor: default!important;
    background: 0 0!important;
    color: #666!important;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.selectric-items .selectric-group .selectric-group-label {
    font-weight: 700;
    padding-left: 10px;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background: 0 0;
    color: #444
}

.selectric-items .selectric-group.disabled li {
    opacity: 1
}

.selectric-items .selectric-group li {
    padding-left: 25px
}

.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: 0
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,.slick-slider .slick-track {
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0)
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto
}

.slick-track:after,.slick-track:before {
    display: table;
    content: ""
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-arrow.slick-hidden {
    display: none
}

body.compensate-for-scrollbar {
    overflow: hidden
}

.fancybox-active {
    height: auto
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute!important;
    top: -9999px;
    visibility: hidden
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    height: 100%;
    left: 0;
    outline: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992
}

.fancybox-container * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

.fancybox-bg,.fancybox-inner,.fancybox-outer,.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    -webkit-transition-duration: inherit;
    -o-transition-duration: inherit;
    transition-duration: inherit;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
    -webkit-transition-timing-function: cubic-bezier(.47,0,.74,.71);
    -o-transition-timing-function: cubic-bezier(.47,0,.74,.71);
    transition-timing-function: cubic-bezier(.47,0,.74,.71)
}

.fancybox-is-open .fancybox-bg {
    opacity: .9;
    -webkit-transition-timing-function: cubic-bezier(.22,.61,.36,1);
    -o-transition-timing-function: cubic-bezier(.22,.61,.36,1);
    transition-timing-function: cubic-bezier(.22,.61,.36,1)
}

.fancybox-caption,.fancybox-infobar,.fancybox-navigation .fancybox-button,.fancybox-toolbar {
    direction: ltr;
    opacity: 0;
    position: absolute;
    -webkit-transition: opacity .25s,visibility .25s;
    -o-transition: opacity .25s,visibility .25s;
    transition: opacity .25s,visibility .25s;
    visibility: hidden;
    z-index: 99997
}

.fancybox-show-caption .fancybox-caption,.fancybox-show-infobar .fancybox-infobar,.fancybox-show-nav .fancybox-navigation .fancybox-button,.fancybox-show-toolbar .fancybox-toolbar {
    opacity: 1;
    -webkit-transition: opacity .25s,visibility;
    -o-transition: opacity .25s,visibility;
    transition: opacity .25s,visibility;
    visibility: visible
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.fancybox-toolbar {
    right: 0;
    top: 0
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    z-index: 99994
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    -webkit-transition-property: opacity,-webkit-transform;
    -o-transition-property: transform,opacity;
    transition-property: transform,opacity,-webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994
}

.fancybox-slide:before {
    content: "";
    display: inline-block;
    font-size: 0;
    height: 100%;
    vertical-align: middle;
    width: 0
}

.fancybox-is-sliding .fancybox-slide,.fancybox-slide--current,.fancybox-slide--next,.fancybox-slide--previous {
    display: block
}

.fancybox-slide--image {
    overflow: hidden;
    padding: 44px 0
}

.fancybox-slide--image:before {
    display: none
}

.fancybox-slide--html {
    padding: 6px
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0;
    max-width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: relative;
    text-align: left;
    vertical-align: middle
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(.5,0,.14,1);
    animation-timing-function: cubic-bezier(.5,0,.14,1);
    -webkit-backface-visibility: hidden;
    background: rgba(0,0,0,0);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-transition-property: opacity,-webkit-transform;
    -o-transition-property: transform,opacity;
    transition-property: transform,opacity,-webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in
}

.fancybox-can-pan .fancybox-content,.fancybox-can-swipe .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab
}

.fancybox-is-grabbing .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing
}

.fancybox-container [data-selectable=true] {
    cursor: text
}

.fancybox-image,.fancybox-spaceball {
    background: rgba(0,0,0,0);
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%
}

.fancybox-spaceball {
    z-index: 1
}

.fancybox-slide--iframe .fancybox-content,.fancybox-slide--map .fancybox-content,.fancybox-slide--pdf .fancybox-content,.fancybox-slide--video .fancybox-content {
    height: 100%;
    overflow: visible;
    padding: 0;
    width: 100%
}

.fancybox-slide--video .fancybox-content {
    background: #000
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff
}

.fancybox-iframe,.fancybox-video {
    background: rgba(0,0,0,0);
    border: 0;
    display: block;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%
}

.fancybox-iframe {
    left: 0;
    position: absolute;
    top: 0
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0
}

.fancybox-button {
    background: rgba(30,30,30,.6);
    border: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    padding: 10px;
    position: relative;
    -webkit-transition: color .2s;
    -o-transition: color .2s;
    transition: color .2s;
    vertical-align: top;
    visibility: inherit;
    width: 44px
}

.fancybox-button,.fancybox-button:link,.fancybox-button:visited {
    color: #ccc
}

.fancybox-button:hover {
    color: #fff
}

.fancybox-button:focus {
    outline: 0
}

.fancybox-button.fancybox-focus {
    outline: dotted 1px
}

.fancybox-button[disabled],.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
    outline: 0
}

.fancybox-button div {
    height: 100%
}

.fancybox-button svg {
    display: block;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox-button svg path {
    fill: currentColor;
    stroke-width: 0
}

.fancybox-button--fsenter svg:nth-child(2),.fancybox-button--fsexit svg:first-child,.fancybox-button--pause svg:first-child,.fancybox-button--play svg:nth-child(2) {
    display: none
}

.fancybox-progress {
    background: #ff5268;
    height: 2px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0;
    -ms-transform-origin: 0;
    transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    -o-transition-property: transform;
    transition-property: transform,-webkit-transform;
    -webkit-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
    z-index: 99998
}

.fancybox-close-small {
    background: rgba(0,0,0,0);
    border: 0;
    border-radius: 0;
    color: #ccc;
    cursor: pointer;
    opacity: .8;
    padding: 8px;
    position: absolute;
    right: -12px;
    top: -44px;
    z-index: 401
}

.fancybox-close-small:hover {
    color: #fff;
    opacity: 1
}

.fancybox-slide--html .fancybox-close-small {
    color: currentColor;
    padding: 10px;
    right: 0;
    top: 0
}

.fancybox-slide--image.fancybox-is-scaling .fancybox-content {
    overflow: hidden
}

.fancybox-is-scaling .fancybox-close-small,.fancybox-is-zoomable.fancybox-can-pan .fancybox-close-small {
    display: none
}

.fancybox-navigation .fancybox-button {
    background-clip: content-box;
    height: 100px;
    opacity: 0;
    position: absolute;
    top: calc(50% - 50px);
    width: 70px
}

.fancybox-navigation .fancybox-button div {
    padding: 7px
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 0;
    left: env(safe-area-inset-left);
    padding: 31px 26px 31px 6px
}

.fancybox-navigation .fancybox-button--arrow_right {
    padding: 31px 6px 31px 26px;
    right: 0;
    right: env(safe-area-inset-right)
}

.fancybox-caption {
    background: -webkit-gradient(linear,left bottom,left top,color-stop(0,rgba(0,0,0,.85)),color-stop(50%,rgba(0,0,0,.3)),color-stop(65%,rgba(0,0,0,.15)),color-stop(75.5%,rgba(0,0,0,.075)),color-stop(82.85%,rgba(0,0,0,.037)),color-stop(88%,rgba(0,0,0,.019)),to(transparent));
    background: -o-linear-gradient(bottom,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);
    background: linear-gradient(0deg,rgba(0,0,0,.85) 0,rgba(0,0,0,.3) 50%,rgba(0,0,0,.15) 65%,rgba(0,0,0,.075) 75.5%,rgba(0,0,0,.037) 82.85%,rgba(0,0,0,.019) 88%,transparent);
    bottom: 0;
    color: #eee;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 75px 44px 25px;
    pointer-events: none;
    right: 0;
    text-align: center;
    z-index: 99996
}

@supports(padding: max(0px)) {
    .fancybox-caption {
        padding:75px max(44px,env(safe-area-inset-right)) max(25px,env(safe-area-inset-bottom)) max(44px,env(safe-area-inset-left))
    }
}

.fancybox-caption--separate {
    margin-top: -50px
}

.fancybox-caption__body {
    max-height: 50vh;
    overflow: auto;
    pointer-events: all
}

.fancybox-caption a,.fancybox-caption a:link,.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline
}

.fancybox-loading {
    -webkit-animation: 1s linear infinite a;
    animation: 1s linear infinite a;
    background: rgba(0,0,0,0);
    border: 4px solid #888;
    border-bottom-color: #fff;
    border-radius: 50%;
    height: 50px;
    left: 50%;
    margin: -25px 0 0 -25px;
    opacity: .7;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 50px;
    z-index: 99999
}

@-webkit-keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes a {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

.fancybox-animated {
    -webkit-transition-timing-function: cubic-bezier(0,0,.25,1);
    -o-transition-timing-function: cubic-bezier(0,0,.25,1);
    transition-timing-function: cubic-bezier(0,0,.25,1)
}

.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%,0,0);
    transform: translate3d(-100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%,0,0);
    transform: translate3d(100%,0,0)
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

.fancybox-fx-fade.fancybox-slide--next,.fancybox-fx-fade.fancybox-slide--previous {
    opacity: 0;
    -webkit-transition-timing-function: cubic-bezier(.19,1,.22,1);
    -o-transition-timing-function: cubic-bezier(.19,1,.22,1);
    transition-timing-function: cubic-bezier(.19,1,.22,1)
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1
}

.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5,1.5,1.5);
    transform: scale3d(1.5,1.5,1.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(.5,.5,.5);
    transform: scale3d(.5,.5,.5)
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1)
}

.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-1turn);
    -ms-transform: rotate(-1turn);
    transform: rotate(-1turn)
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(1turn);
    -ms-transform: rotate(1turn);
    transform: rotate(1turn)
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0,0,0) translate3d(-100%,0,0);
    transform: scale3d(0,0,0) translate3d(-100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0,0,0) translate3d(100%,0,0);
    transform: scale3d(0,0,0) translate3d(100%,0,0)
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scaleX(1) translateZ(0);
    transform: scaleX(1) translateZ(0)
}

.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%,0,0) scale(.1) skew(-10deg);
    transform: translate3d(-100%,0,0) scale(.1) skew(-10deg)
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%,0,0) scale(.1) skew(10deg);
    transform: translate3d(100%,0,0) scale(.1) skew(10deg)
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1)
}

@media(max-height: 576px) {
    .fancybox-slide {
        padding-left:6px;
        padding-right: 6px
    }

    .fancybox-slide--image {
        padding: 6px 0
    }

    .fancybox-close-small {
        right: -6px
    }

    .fancybox-slide--image .fancybox-close-small {
        background: #4e4e4e;
        color: #f2f4f6;
        height: 36px;
        opacity: 1;
        padding: 6px;
        right: 0;
        top: 0;
        width: 36px
    }

    .fancybox-caption {
        padding-left: 12px;
        padding-right: 12px
    }

    @supports(padding: max(0px)) {
        .fancybox-caption {
            padding-left:max(12px,env(safe-area-inset-left));
            padding-right: max(12px,env(safe-area-inset-right))
        }
    }
}

.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px
}

.fancybox-share p {
    margin: 0;
    padding: 0
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    -webkit-transition: .2s;
    -o-transition: .2s;
    transition: .2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap
}

.fancybox-share__button:link,.fancybox-share__button:visited {
    color: #fff
}

.fancybox-share__button:hover {
    text-decoration: none
}

.fancybox-share__button--fb {
    background: #3b5998
}

.fancybox-share__button--fb:hover {
    background: #344e86
}

.fancybox-share__button--pt {
    background: #bd081d
}

.fancybox-share__button--pt:hover {
    background: #aa0719
}

.fancybox-share__button--tw {
    background: #1da1f2
}

.fancybox-share__button--tw:hover {
    background: #0d95e8
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px
}

.fancybox-share__button svg path {
    fill: #fff
}

.fancybox-share__input {
    background: rgba(0,0,0,0);
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0;
    outline: 0;
    padding: 10px 15px;
    width: 100%
}

.fancybox-thumbs {
    background: #ddd;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px
}

.fancybox-thumbs__list {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: relative;
    white-space: nowrap;
    width: 100%
}

.fancybox-thumbs-x .fancybox-thumbs__list {
    overflow: hidden
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar {
    width: 7px
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    box-shadow: inset 0 0 6px rgba(0,0,0,.3)
}

.fancybox-thumbs-y .fancybox-thumbs__list::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px
}

.fancybox-thumbs__list a {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: rgba(0,0,0,.1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px
}

.fancybox-thumbs__list a:before {
    border: 6px solid #ff5268;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: .2s cubic-bezier(.25,.46,.45,.94);
    -o-transition: .2s cubic-bezier(.25,.46,.45,.94);
    transition: .2s cubic-bezier(.25,.46,.45,.94);
    z-index: 99991
}

.fancybox-thumbs__list a:focus:before {
    opacity: .5
}

.fancybox-thumbs__list a.fancybox-thumbs-active:before {
    opacity: 1
}

@media(max-width: 576px) {
    .fancybox-thumbs {
        width:110px
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px
    }

    .fancybox-thumbs__list a {
        max-width: calc(100% - 10px)
    }
}

.form-item--select .selectric {
    border-radius: 0;
    border: 0;
    background: rgba(0,0,0,0)
}

.form-item--select .selectric .label {
    font-size: 18px;
    color: var(--main-title);
    height: 48px;
    line-height: 48px;
    margin-left: 0;
    margin-right: 12px;
    font-family: var(--secondary-font);
    font-weight: 700;
    min-width: 40px
}

.form-item--select .selectric svg {
    position: absolute;
    top: 22px;
    right: 5px;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0)
}

.form-item--select .selectric svg.rotate {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.form-item--select .selectric-items {
    width: 52px!important;
    border-radius: 4px;
    overflow: hidden;
    background: rgba(255,255,255,.8);
    -webkit-box-shadow: 0 0 4px rgba(0,0,0,.25);
    box-shadow: 0 0 4px rgba(0,0,0,.25);
    border: 0
}

.form-item--select .selectric-items li {
    font-size: 18px;
    line-height: 20px;
    padding: 10px 8px;
    font-family: var(--secondary-font);
    font-weight: 500;
    color: var(--btu-main-text)
}

.form-item--select .selectric-items li:hover {
    background: var(--white)
}

.form-item--select .selectric-items li.selected {
    font-weight: 700;
    background: rgba(0,0,0,0)
}

.intro {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: 100vh;
    max-width: 430px;
    padding: 100px 0;
    width: 100%
}


.hero-text-wrap {
    display: block;
    position: absolute;
    z-index: 999;
	margin-block: 10rem;
}

.hero-text-wrap .intro {
    min-height: 50vh;
    padding: 10vh 20vw;
    width: 100%;
    max-width: 100vw;
}

h1.d20240530 {
    font-size: 36px;
    color: #ff1b1b;
    text-shadow: 2px 2px 0px white, 1px -1px 2px white;
}



.video1-section .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video1-section video {
	max-width: 100%;
} 

.intro-section {
    position: relative;
    background-image: url(../img/intro-1.jpg);
    background-position: center;
    background-size: cover;
    width: 100%
}

.hero-section {
    position: relative;
    width: 100%
}

@media(max-width: 575px) {
    .form-item--select .selectric .label {
        font-size:14px;
        min-width: 32px
    }

    .form-item--select .selectric-items li {
        font-size: 14px
    }

    .intro {
        max-width: 60%;
        min-height: auto;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        padding-top: 140px;
        padding-bottom: 200px
    }

    .intro-section {
        background-image: url(../img/intro-1-m.jpg)
    }

    .intro__link {
        display: none
    }
}

.intro__text {
    padding: 16px 0
}

.intro__link {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 25px;
    z-index: 2;
    -webkit-animation: 1s ease-in-out infinite alternate scaleToggle;
    animation: 1s ease-in-out infinite alternate scaleToggle
}

.about__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 48px
}

@media(max-width: 1199px) {
    .about__info {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap;
        max-width: 800px;
        margin: 0 auto;
        padding-top: 36px
    }
}

.about__info-text {
    font-weight: 400;
    line-height: 140%;
    color: var(--main-text)
}

.about__info-text-wrap {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    padding-left: 40px
}

.about__info-text p {
    margin-bottom: 20px
}

.about__info-text p:last-of-type {
    margin-bottom: 0
}

.about__title {
    max-width: 720px
}

.about-slider-wrap {
    width: 630px
}

.hero-slider-wrap {
    width: 100%;
	margin: 0;
	overflow: hidden;
}

@media(max-width: 1199px) {
    .about__info-text-wrap {
        padding-left:0
    }

    .about-slider-wrap {
        width: 100%;
        margin-bottom: 30px
    }
}

@media(max-width: 575px) {
    .about__info {
        padding-top:24px
    }

    .about-slider-wrap {
        margin-bottom: 10px
    }
}

.about-slider-wrap .slider-img {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    padding-bottom: 3.2%
}

.about-slider-wrap .slider-img img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}
.hero-slider-wrap .slider-img img {
    width: 100%;
  /*   height: 80vh; */
    -o-object-fit: cover;
    object-fit: cover;
}

.hero-slider-nav .slider-img img {
    width: 100%;
 /*    height: 30vh; */
    -o-object-fit: cover;
    object-fit: cover;
}

.about-slider-wrap img,
.hero-slider-wrap img {
    width: 100%
}

.about-slider__arrow {
    cursor: pointer
}

.about-slider__counter,
.hero-slider__counter {
    font-family: var(--secondary-font);
    font-size: 24px;
    font-weight: 700;
    margin: 0 12px
}

.about-slider__counter-wrap,
.hero-slider__counter-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-top: 16px
}

@media(max-width: 1199px) {
    .about-slider__counter-wrap,
    .hero-slider__counter-wrap {
        -webkit-box-pack:center;
        -ms-flex-pack: center;
        justify-content: center
    }
}

.about-slider-nav {
    padding-top: 16px
}

.about-slider-nav .slick-slide {
    margin: 0 12px
}

@media(max-width: 575px) {
    .about-slider__counter,
    .hero-slider__counter {
        font-size:16px
    }

    .about-slider-nav,
    .hero-slider-nav {
        padding-top: 8px
    }

    .about-slider-nav .slick-slide,
    .hero-slider-nav .slick-slide {
        margin: 0 3px
    }
}

.about-slider-nav .slick-list,
.hero-slider-nav .slick-list {
    margin: 0 -12px
}

.about-slider-nav .slider-img {
    padding-bottom: 1.3%
}

.about.show-more .about__info-text {
    max-height: 494px;
    overflow: hidden
}

.about.show-more .more_text {
    display: block
}

.video {
    height: 0;
    position: relative;
    padding-bottom: 45%;
    max-width: 1060px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden
}

@media(max-width: 575px) {
    .about-slider-nav .slick-list {
        margin:0 -3px
    }

    .video {
        padding-bottom: 52%
    }
}

.video-section {
    background: var(--main-title);
    padding: 60px 80px
}

.video__link {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%
}

.horses__catalog {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -16px
}

@media(max-width: 1023px) {
    .video-section {
        padding:40px
    }

    .horses__catalog {
        margin: 0 -10px
    }
}

@media(max-width: 575px) {
    .video-section {
        padding:15px
    }

    .horses__catalog {
        margin: 0 -8px
    }
}

.horses__cart {
    width: calc(25% - 32px);
    margin: 0 16px 16px
}

@media(max-width: 1023px) {
    .horses__cart {
        margin:0 10px 16px;
        width: calc(25% - 20px)
    }
}

@media(max-width: 767px) {
    .horses__cart {
        width:calc(33.33% - 20px)
    }

    .horses.show-more .horses__cart:nth-of-type(n+4) {
        display: none
    }
}

@media(max-width: 575px) {
    .horses__cart {
        width:calc(50% - 16px);
        margin: 0 8px 16px
    }
}

.horses__cart-img {
    position: relative;
    width: 100%;
    padding-bottom: 140%;
    border-radius: 10px;
    overflow: hidden
}

.horses__cart-img img {
    position: absolute;
    left: 0;
    top: 0;
    display: block;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.horses__cart-name {
    font-family: var(--secondary-font);
    padding: 16px 0;
    font-weight: 700;
    font-size: 24px;
    letter-spacing: .01em
}

@media(max-width: 1023px) {
    .horses__cart-name {
        padding:10px 0
    }
}

.horses__cart-detail {
    font-size: 18px;
    font-weight: 400;
    -ms-flex-item-align: stretch;
    align-self: stretch;
    color: var(--main-text)
}

@media(max-width: 575px) {
    .horses__cart-name {
        font-size:18px;
        padding: 8px 0
    }

    .horses__cart-detail {
        font-size: 16px
    }
}

.horses__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-top: 40px
}

.horses__title {
    padding-bottom: 48px
}

.horses.show-more .more_count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.horses.show-more .horses__cart:nth-of-type(n+5) {
    display: none
}

@media(max-width: 575px) {
    .horses__title {
        padding-bottom:24px
    }

    .horses.show-more .horses__cart:nth-of-type(4) {
        display: block
    }
}

.advantages {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 -16px;
    padding: 60px 0 20px
}

@media(max-width: 1023px) {
    .advantages {
        margin:0 -10px;
        padding-bottom: 0
    }
}

.advantages__item {
    width: calc(16.6666666667% - 32px);
    margin: 0 16px
}

@media(max-width: 1023px) {
    .advantages__item {
        width:calc(16.6666666667% - 20px);
        margin: 0 10px
    }
}

@media(max-width: 767px) {
    .advantages {
        -ms-flex-wrap:wrap;
        flex-wrap: wrap
    }

    .advantages__item {
        width: calc(33.33% - 20px);
        margin-bottom: 20px
    }
}

@media(max-width: 575px) {
    .advantages__item {
        width:calc(50% - 20px);
        margin-bottom: 16px
    }
}

.advantages__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: var(--horse-black);
    border-radius: 10px;
    margin: 0 auto 24px
}

.advantages__text {
    font-size: 16px;
    font-weight: 600;
    text-align: center
}

@media(max-width: 1023px) {
    .advantages__icon {
        margin-bottom:16px
    }

    .advantages__text {
        font-size: 15px
    }
}

@media(max-width: 575px) {
    .advantages__icon {
        width:80px;
        height: 80px;
        padding: 20px
    }

    .advantages__text {
        font-size: 14px;
        line-height: 1.5
    }
}

@-webkit-keyframes scaleToggle {
    0% {
        bottom: 30px
    }

    100% {
        bottom: 20px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@keyframes scaleToggle {
    0% {
        bottom: 30px
    }

    100% {
        bottom: 20px;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

.header__about .menu_item {
    padding: 0 2rem;
    font-family: var(--secondary-font);
    font-size: 18px;
    text-decoration: none;
}

strong {
    font-weight: bold;
}

.prose {
    --space-s-m: clamp(1rem,0.76rem + 1.20vw,1.6875rem);
    --space-l-xl: clamp(2rem,1.52rem + 2.39vw,3.375rem);
    --gutter: var(--space-s-m);
}

.prose {
    --flow-space: var(--space-m-l);
    line-height: 1.5;
}

.wrapper {
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--gutter);
    padding-right: var(--gutter);
    position: relative;
    width: clamp(16rem,93vw,75rem);
}

.prose > *+* {
    margin-top: var(--flow-space,1em);
}

.prose :is(pre,pre+*,figure,figure+*,h2,h3,h4) {
    --flow-space: var(--space-l-xl);
}

.prose ul {
    list-style: disc;
    padding: 1rem 2rem;
}

.footer-terms a {
    color: white;
}

div#donate-button-container {
    text-align: center;
    padding-block: 3rem; }

.header-social {
    display: flex;
    flex-direction: row;
    /* flex-wrap: nowrap; */
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.header-social .svg-icon > svg {
    width: auto;
    height: 2.5rem;
}

a.svg-icon {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-content: center;
    align-items: center;
}

img#donate-button {
    border: 3px solid #3cabf9;
    border-radius: 10px;
}

.btn_white {
    background: white;
    color: black;
	border: 2px solid #222;
}


.pp {
    background: #efefef;
    padding-block: 2rem;
}


.pp h2 {
    text-align: center;
    color: #1d77bf;
    margin-block: 2rem;
}

.pp p {
    text-align: center;
}


.flex-grid {
  display: flex;
}
.flex-grid > * {
  flex: 0 1 100%;
}
.flex-grid > *:not(:first-child) {
  margin-left: 2rem;
}
@media (max-width: 30rem) {
  .flex-grid {
    flex-wrap: wrap;
  }
  .flex-grid > * {
    margin: 2rem 0 0 !important;
  }
}
@media (min-width: 36rem) {
  .flex-grid + .flex-grid {
    margin-top: 2rem;
  }
}

.flex-grid img {width: 100%;}

.project-section {
    padding-block: 2rem;
    text-align: center;
    margin-top: 10rem;
}

.project-section h2 {
	
}