@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-Bold.otf') format('truetype');
    font-weight: 900;
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-Heavy.otf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-Regular.otf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-Thin.otf') format('truetype');
    font-weight: 300;
}

/* @font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-Slanted.otf') format('truetype');
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-BoldSlanted.otf') format('truetype');
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-HeavySlanted.otf') format('truetype');
}

@font-face {
    font-family: 'Object Sans';
    src: url('fonts/ObjectSans-ThinSlanted.otf') format('truetype');
} */



* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    outline: 0;
}

:root {
    --white-color: #ffffff;
    --black-color: #000;
    --red-color: #ff0000;
    --horts-red: #cf0000;
    --light-gray-color: #f2f2f2;
    --aqua-color: aqua;
    --swiper-theme-color: #cf0000 !important;
}

html {
    font-size: 16px;
    /* line-height: 20px; */
    scroll-behavior: smooth;
}

body {
    font-family: 'Object Sans', 'Helvetica', sans-serif;
    background-color: var(--white-color);
}

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

.site-wrapper {
    min-height: calc(100vh - 383px);
    border-radius: 0 0 1.875rem 1.875rem;
    background-color: var(--white-color);
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    margin-bottom: 370px;
}

.wrapper {
    width: 81.25rem;
    margin: auto;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    padding: 2.625rem 0;
    transition: all 150ms ease-in-out;
    z-index: 10000;
}

.header.scroll {
    position: fixed;
    background-color: var(--white-color);
    padding: 1.5rem 0;
    box-shadow: 0 4px 29px -2px rgba(0,0,0,0.5);
}

.header .wrapper{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: block;
    margin-left: -10%;
}

.header-logo__mobile {
    display: none;
    max-width: 34vw;
    margin: auto;
    /* transform: rotate(-5deg); */
}

#burger-menu,
#mobileMenuClose {
    display: block;
    position: relative;
    width: 3rem;
    height: 2.575rem;
    transition: all 0.3s ease-in-out;
}

.phone-image img {
    width: 1.5rem;
    margin: 7px 0 0 0;
}

/* #burger-menu.active,
#mobileMenuClose {
    height: 3rem;
} */

#burger-menu:before,
#mobileMenuClose:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0.5rem;
    height: 100%;
    background-color: var(--horts-red);
    transition: all 0.3s ease-in-out;
    transform-origin: left top;
}

#burger-menu span {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0.5rem;
    height: 100%;
    margin: 0 0 0 -0.25rem;
    background-color: var(--horts-red);
    transition: all 0.3s ease-in-out;
    transform-origin: left top;
}

#burger-menu:after,
#mobileMenuClose:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 0.5rem;
    height: 100%;
    background-color: var(--horts-red);
    transition: all 0.3s ease-in-out;
    transform-origin: left center;
}

#burger-menu.active:before,
#mobileMenuClose:before {
    height: 90%;
    left: 86%;
    /* top: 1px; */
    transform: rotate(45deg);
}

#burger-menu.active:after,
#mobileMenuClose:after {
    height: 90%;
    right: 24%;
    /* top: -2px; */
    transform: rotate(-45deg);
}

#burger-menu.active span {
    height: 0;
}

.banner-wrapper {
    background-color: #ffffff;
    height: 100vh;
    overflow: hidden;
    /* background-image: url(img/slider/all-sky-bg_2.png); */
    background: rgb(255,255,255);
background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(213,239,241,1) 100%);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 1;
}

.banner-item {
    position: relative;
    width: 100%;
    height: 100vh;
}

.swiper-wrapper {
    z-index: 10;
}

#top-slider .swiper-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* mix-blend-mode: screen; */
}

.swiper-slide {
    z-index: 2;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    overflow: hidden;
}

.swiper-slide__header {
    position: relative;
    top: 20%;
    /* left: 0;
    width: 100%; */
    padding: 0 15%;
    text-align: center;
    z-index: 1000;
}

.swiper-slide__header h2 {
    font-size: 4rem;
    line-height: 4.5rem;
    font-weight: 500;
    display: block;
    margin: 0 0 1rem 0;
}

.swiper-slide__header p {
    font-size: 1.5rem;
    line-height: 110%;
    font-weight: 100;
}

.swiper-slide.s1 {
    background-image: url(img/slider/b1_bg_6.png);
}

.swiper-slide.s2 {
    background-image: url(img/slider/b1_bg_4.png);
}

.swiper-slide.s3 {
    background-image: url(img/slider/b3_bg.png);
}

.swiper-slide.s4 {
    background-image: url(img/slider/b4_bg_1.png);
}

.swiper-slide.s5 {
    background-image: url(img/slider/b5_bg_1.png);
}

.top-banner__tag {
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    font-size: 7.125rem;
    line-height: 100%;
    font-weight: 700;
    text-align: center;
    z-index: 10;
}

.top-banner__tag a {
    color: var(--black-color);
    text-decoration-color: var(--aqua-color);
    text-decoration-style: wavy;
}

/* #slide1-left-block {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    transition: all 5500ms ease-in-out;
}

#slide2-left-block {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 50;
    transition: all 5500ms ease-in-out;
}

#mountine-center {
    bottom: 0;
    left: 25%;
    right: 5%;
    height: 93%;
    z-index: 30;
}

#slide1-right-block {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 70;
    transition: all 5500ms ease-in-out;
}

#slide2-right-block {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 40;
    transition: all 5500ms ease-in-out;
} */

#slide1-left-block {
    z-index: 41;
}

#slide1-right-block {
    z-index: 50;
}

#slide1-front-block {
    z-index: 92;
}

#slide1-back-block {
    z-index: 20;
}

#slide2-left-block {
    z-index: 41;
}

#slide2-right-block {
    z-index: 50;
}

#slide2-front-block {
    z-index: 92;
}

#slide2-bush {
    z-index: 92;
}

#slide3-people-block {
    z-index: 50;
}

#slide3-voleyball-block {
    z-index: 41;
}

#slide3-trees-block {
    z-index: 41;
}

#slide3-bush-block {
    z-index: 92;
}

#slide4-main-block {
    z-index: 50;
}

#slide4-scooter-block,
#slide4-shaurma-block {
    z-index: 41;
}

#slide4-zabor-block {
    z-index: 92;
}

#slide5-people-block {
    z-index: 92;
}

#slide5-train-block {
    z-index: 50;
}

#slide5-bliny-block,
#slide5-peter-block {
    z-index: 45;
}

#slide5-lions-block {
    z-index: 100;
}
/* .swiper-slide-active #slide1-left-block {
    left: 0;
    opacity: 1;
}

.swiper-slide-active #slide1-right-block {
    right: 0;
    opacity: 1;
} */

.swiper-switcher.swiper-pagination-bullets.swiper-pagination-horizontal {
    /* display: flex; */
    position: absolute;
    bottom: 4rem;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 1000;
}

#top-slider .swiper-button-prev {
    left: 3vw;
}

#top-slider .swiper-button-next {
    right: 3vw;
}

#swiperSwitch {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    margin: auto;
    background-color: #eaeaea;
    border-radius: 3px;
    text-transform: uppercase;
}

#swiperSwitch a {
    display: flex;
    color: var(--black-color);
    align-items: center;
    padding: 12px 20px 8px;
    text-decoration: none;
}

#swiperSwitch a.active {
    color: var(--white-color);
    background-color: var(--black-color);
    border-radius: 3px;
}

.swiper-switcher .swiper-pagination-bullet {
	padding: 12px 20px 7px;
	border-radius: 3px;
    font-size: 1rem;
    line-height: 1rem;
    height: auto;
	width: auto;
	text-align: center;
	color:#000;
	opacity: 1;
	background: var(--light-gray-color);
    text-transform: uppercase;
}
.swiper-switcher .swiper-pagination-bullet-active {
	color: var(--white-color);
	background: var(--horts-red);
}

.landing-block {
    position: relative;
    padding: 11.25rem 0 0 0;
    z-index: 1000;
}

.landing-block:last-child {
    padding: 11.25rem 0;
}

.landing-block .landing-block__header {
    margin: 0 0 2.8125rem 0;
}

.landing-block.ten-reason .landing-block__header,
.horts-rules .landing-block__header {
    text-align: center;
}

.landing-block__header h2 {
    font-size: 3.5rem;
    line-height: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.landing-block__header h2 span {
    color: var(--white-color);
    -webkit-text-stroke: 2px var(--black-color);
}

.landing-block.choose-horts .landing-block__header h2 {
    text-transform: uppercase;
}

.ten-reason__block {
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 6rem;
}

/* .reason {
    flex: 1 0 calc(25% - 6rem);
} */

.reason {
    position: relative;
    cursor: default;
}

.reason:hover span {
    animation: shake 0.82s cubic-bezier(.36,.07,.19,.97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.reason span {
    display: block;
    position: absolute;
    right: 0;
    top: -10px;
    width: 65px;
    height: 65px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.reason.r2 span{
    background-image: url(img/ten/okay.svg);
    right: 45%;
    top: -20px;
}

.reason.r5 span{
    background-image: url(img/ten/beer.svg);
    right: 45%;
    top: -20px;
}

.reason.r6 span{
    background-image: url(img/ten/power.svg);
    right: 34%;
    top: -15px;
}

.reason.r7 span{
    background-image: url(img/ten/yum.svg);
    right: 54%;
    top: -20px;
}

.reason.r9 span{
    background-image: url(img/ten/attention.svg);
    right: 54%;
    top: -20px;
}

.add-reason {
    background-color: var(--light-gray-color);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    cursor: pointer;
}

.reason h3 {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 700;
    margin: 0 0 0.8125rem 0;
}

.horts-all-flavors {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 3rem; */
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 3rem;
}

.horts-flavor {
    flex: 1 0 calc(33% - 3rem);
}

.horts-flavor.one-in-row {
    flex: 1 0 100%;
}

.horts-flavor.two-in-row {
    flex: 1 0 calc(45% - 3rem);
}

/*
.horts-flavor:last-child {
    text-align: center;
} */

.horts-flavor img {
    display: block;
    margin: 0 0 1.25rem 0;
}

.horts-flavor.flexim {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.horts-flavor.flexim .horts-flavor__text-block{
    margin: 2.5rem 0 0 0;
}

.horts-flavor h3 {
    font-size: 3.5625rem;
    font-size: calc(30vw * .08);
    line-height: 100%;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}

/* .horts-flavor h3 span {
    font-size: 2em;
    line-height: 1em;
} */

.horts-flavor .up-header {
    font-size: 1.25rem;
    font-size: calc(30vw * .045);
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    text-transform: uppercase;
}

.two-in-row.horts-flavor h3 {
    font-size: 6.625rem; /*fallback*/
    font-size: calc(30vw * .1);
    line-height: 100%;
    font-weight: 700;
    margin: 0;
    white-space: nowrap;
    text-transform: uppercase;
}

/* .two-in-row.horts-flavor:first-child h3 {
    font-size: calc(30vw * .1);
} */

.two-in-row.horts-flavor .up-header {
    font-size: 1.75rem; /*fallback*/
    font-size: calc(30vw * .04);
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 0.2rem 0;
    text-transform: uppercase;
}

.horts-flavor p {
    font-size: 1.125rem;
    line-height: 1.5rem;
    font-size: calc(30vw * .03);
    line-height: calc(30vw * .03);
    margin: 0;
}

.horts-flavor.two-in-row p {
    font-size: 1.4375rem;
    line-height: 1.5rem;
    font-size: calc(30vw * .04);
    line-height: calc(30vw * .04);
    margin: 0;
}

.horts-flavor__info-block {
    display: flex;
    gap: 2rem;
    padding: 1rem 0 0 0;
    margin: 1rem 0 0 0;
    align-items: baseline;
    justify-content: space-between;
    border-top: 2px solid var(--black-color);
}

.horts-flavor__data {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    font-size: 2.5rem;
    line-height: 2.5rem;
    font-weight: 700;
}

.landing__big-slogan {
    font-size: 7.125rem;
    font-size: calc(70vw * .075);
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 2rem 0;
    text-transform: uppercase;
}

.landing__big-slogan a {
    color: var(--black-color);
}

.landing__big-slogan a:hover {
    color: var(--aqua-color);
    text-decoration-color: var(--aqua-color);
    text-decoration-style: wavy;
}

.white-text {
    color: var(--white-color);
    -webkit-text-stroke: 2px var(--black-color);
}

.socmedia-board,
.where-buy-board {
    /* display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 2rem; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.where-buy-board {
    gap: 2rem;
}

.horts-big-rotate {
    display: block;
    max-width: 70vw;
    margin: auto;
    transform: rotate(-0.5deg);
    z-index: -1;
}

.horts-big-rotate.no-rotate {
    transform: rotate(0deg);
}

.horts-rules__wrapper {
    margin: 5rem 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 5rem;
    text-align: center;
}

.horts-rule {
    padding: 2rem;
    background-color: rgba(243, 243, 243, 0.45);
    border-radius: 2rem;
}

/* .horts-rule:first-child,
.horts-rule:last-child {
    margin: -20vh 0 0 0;
    z-index: 100;
} */

.horts-rule h3 {
    color: var(--black-color);
    font-size: 1.5rem;
    line-height: 1.5rem;
    font-weight: 900;
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
}

.horts-rule p {
    font-size: 0.9rem;
    line-height: 1.1rem;
}

.horts-not__wrapper {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: auto;
    max-width: 70%;
}

.horts-not {
    padding: 1.5rem;
    background-color: #eaeaea;
    border-radius: 0.3rem;
}

/* .socmeida-block {
    flex: 1 0 calc(25% - 3rem);
    text-align: center;
    align-items: center;
    min-height: 150px;
} */

.horts-info__popup {
    display: block;
    color: var(--black-color);
    text-decoration: none;
    font-size: .9rem;
    line-height: 100%;
    padding: 10px 20px;
    border: 1px solid var(--black-color);
    border-radius: 30px;
}

.horts-info__popup:hover {
    color: var(--white-color);
    background-color: var(--black-color);
}

.where-to-buy__block {
    flex: 1 0 calc(25% - 2rem);
    text-align: center;
    align-items: center;
    min-height: 150px;
    border-radius: 1rem;
    transition: all 0.2s ease-in-out;
    /* border: 2px solid #eaeaea; */
}

.where-to-buy__block:hover {
    /* border: 2px solid var(--horts-red); */
    /* box-shadow: 0 12px 36px 0 rgb(0 0 0 / 15%);
    transform: translateY(-4px); */
}

.where-to-buy__block a {
    display: flex;
    width: 100%;
    color: var(--black-color);
    padding: 2rem;
    border-radius: 1rem;
    /* background-color: #f5f5f5;
    border: 2px solid #fdfdfd; */
    /* background: rgb(253,253,253);
background: linear-gradient(138deg, rgba(253,253,253,1) 0%, rgba(248,248,248,1) 100%); */
background: rgb(242,242,242);
background: linear-gradient(146deg, rgba(242,242,242,1) 0%, rgba(232,254,255,1) 100%);
    text-decoration: none;
    align-items: center;
    text-align: center;
    justify-content: center;
    min-height: 150px;
    filter: grayscale(0.65);
}

.where-to-buy__block a:hover {
    filter: grayscale(0)
}

.horts-flavor__info,
.horts__add-reason {
    position: fixed;
    bottom: -1000px;
    /* left: calc((100vw - 81.25rem)/2);
    right: calc((100vw - 81.25rem)/2); */
    right: 2rem;
    max-width: 25vw;
    padding: 2rem;
    z-index: 10000;
    /* background: rgb(21,230,143);
    background: linear-gradient(269deg, rgba(21,230,143,1) 24%, rgba(18,237,194,1) 100%); */
    background: rgb(253,253,253);
    background: linear-gradient(
138deg, rgba(253,253,253,1) 0%, rgba(248,248,248,1) 100%);
    border-radius: 1.5rem;
    transition: all 0.8s ease-in-out;
    box-shadow: 0 12px 35px 0 rgb(0 0 0 / 20%);
}

.horts__add-reason.success {
  color: var(--white-color);
  background: rgb(21,230,143);
  background: linear-gradient(269deg, rgba(21,230,143,1) 24%, rgba(18,237,194,1) 100%);
}

.horts__add-reason.error {
  color: var(--white-color);
  background: rgb(255,127,131);
  background: linear-gradient(146deg, rgba(255,127,131,0.9962359943977591) 0%, rgba(240,24,30,1) 100%);
}

.horts__add-reason .horts__add-reason__normal-block {
  display: block;
}

.horts__add-reason .horts__add-reason__success-block,
.horts__add-reason .horts__add-reason__error-block {
  display: none;
}

.horts__add-reason.success .horts__add-reason__success-block,
.horts__add-reason.error .horts__add-reason__error-block {
  display: block;
}

.horts__add-reason.success .horts__add-reason__normal-block,
.horts__add-reason.error .horts__add-reason__normal-block {
  display: none;
}

.horts-flavor__info.active,
.horts__add-reason.active {
    bottom: 2rem;
}

.horts__add-reason__field {
    display: block;
    width: 100%;
    margin: 1rem 0;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.2rem;
    border: 2px solid var(--black-color);
    border-radius: 10px;
}

textarea.horts__add-reason__field {
    font-family: 'Object Sans', 'Helvetica', sans-serif;
    min-height: 100px;
    font-size: 1rem;
    line-height: 1rem;
}

.horts__add-reason__field.error,
textarea.horts__add-reason__field.error {
  border: 2px solid var(--horts-red);
}

.horts__add-reason__send {
    color: var(--white-color);
    background-color: var(--black-color);
    border: 2px solid var(--black-color);
    width: 100%;
    text-align: center;
    padding: 1rem;
    font-size: 1rem;
    line-height: 1.2rem;
    border-radius: 10px;
    cursor: pointer;
    text-transform: uppercase;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-image: url(img/footer-bg.png);
    padding: 7.5rem 0 7.5rem 0;
    z-index: -10;
}

.footer__block__wrapper {
    position: absolute;
    display: flex;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -15;
    overflow: hidden;
}

.footer__block {
    height: 100vh;
    margin: 0;
    transition: all 1.2s ease-in-out;
}

.footer__block.hide {
    margin: 100vh 0 0 0;
}

.footer__block:nth-child(odd) {
    background-color: #ff0000;
}

/* .footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 7.5rem;
    background: linear-gradient(rgba(255,255,255,1), rgba(255,255,255,0));
    z-index: 15;
} */

.footer .wrapper {
    background-color: var(--white-color);
    padding: 3.53rem;
    border-radius: 1rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    /* box-shadow: 0 0 12px 4px rgba(0, 0, 0, 0.25); */
}

.footer__social {
    display: flex;
    align-items: center;
    gap: 1.84375rem;
}

.footer__social img {
    width: 1.5625rem;
}

.footer__copy {
    font-size: 2rem;
    line-height: 2rem;
    font-weight: 900;
}

.footer__phone,
.footer__who-made {
    font-size: 0.9375rem;
    line-height: 1.5625rem;
}

.footer__phone a,
.footer__who-made a,
.malahovsky__logo a {
    color: var(--black-color);
}

.footer__phone a {
    text-decoration: none;
}

.footer__logo {
    max-width: 190px;
    transform: rotate(-5deg)
}

#mobileMenu {
    position: fixed;
    top: 0;
    right: -100vw;
    bottom: 0;
    padding: 3rem;
    width: 35vw;
    min-width: 310px;
    background-color: var(--white-color);
    box-shadow: 0px 4px 4px rgb(0 0 0 / 25%);
    transition: all 0.7s ease-in-out ;
    z-index: 10000;
}

#mobileMenu.active {
    right: 0;
}

.mobile-menu__menu {
    margin: 3rem 0 0 0;
    list-style-type: none;
    font-size: 1.1rem;
    line-height: 1.5rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mobile-menu__menu li {
    margin: 2rem 0;
}

.mobile-menu__menu li a {
    color: var(--black-color);
    /* -webkit-text-stroke: 2px var(--black-color); */
    letter-spacing: 2px;
    transition:  all 0.2 ease;
    text-decoration: none;
}

.mobile-menu__menu li a:hover,
.mobile-menu__menu li a.active {
    color: var(--black-color);
}

.black-link {
    color: var(--black-color);
    text-decoration: none;
}

.red {
    color: #FF0000;
}

#horts-flavor__info__header {
    font-size: 1.1rem;
    line-height: 100%;
    font-weight: 700;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

.horts-flavor__info__text {
    font-size: 0.9rem;
    line-height: 120%;
}

.horts-flavor__info__close {
    display: block;
    color: var(--white-color);
    background-color: var(--black-color);
    font-size: 16px;
    line-height: 13px;
    text-decoration: none;
    padding: 25px 35px;
    border-radius: 35px;
    text-align: center;
}

.horts-flavor__info__data {
    display: flex;
    color: var(--black-color);
    font-size: 1.1rem;
    line-height: 110%;
    font-weight: 700;
    justify-content: space-between;
    margin: 2rem 0;
}

#cookie-bar {
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    gap: 3rem;
    align-items: center;
    color: var(--black-color);
    min-width: 35vw;
    max-width: 55vw;
    bottom: -100vh;
    right: 2rem;
    padding: 2rem;
    border-radius: 2rem;
    background: rgb(21,230,143);
    background: linear-gradient(269deg, rgba(21,230,143,1) 24%, rgba(18,237,194,1) 100%);
    background: rgb(242,242,242);
    background: linear-gradient(
146deg, rgba(242,242,242,1) 0%, rgba(232,254,255,1) 100%);
    transition: all 0.8s ease-in-out;
    box-shadow: 0 12px 35px 0 rgb(0 0 0 / 20%);
    z-index: 10000;
}

#cookie-bar.active {
    bottom: 2rem;
}

#cookie-bar h4 {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 400;
    margin: 0 0 1rem 0;
    text-transform: uppercase;
}

#cookie-bar p {
    font-size: 1.2rem;
    line-height: 1.5rem;
    font-weight: 100;
}

.cookie-bar__yes {
    display: inline-block;
    vertical-align: middle;
    align-items: center;
    color: var(--white-color);
    background-color: var(--black-color);
    padding: 1rem;
    font-size: 1.5rem;
    line-height: 100%;
    text-decoration: none;
    border-radius: 1rem;
}

.desktop {
    display: block;
}

.mobile {
    display: none;
}

/* swiper's */

#socMeidaBoard .swiper-horizontal>.swiper-pagination-bullets,
#socMeidaBoard .swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0px;
}

#socMeidaBoard.swiper {
    padding: 0 35px 2rem 35px;
}

#socMeidaBoard .swiper-button-prev {
    left: 0;
}

#socMeidaBoard .swiper-button-next {
    right: 0;
}

@media only screen and (max-width: 1350px) {
    .wrapper {
        width: auto;
        margin: 0 1.5625rem;
    }
}

@media only screen and (max-width: 1100px) {
    .ten-reason__block {
        gap: 2rem 3rem;
    }
    .horts-flavor.two-in-row p,
    .horts-flavor p {
        font-size: .9375rem;
        line-height: 100%;
    }
}

@media only screen and (max-width: 1000px) {

    .horts-rules__wrapper {
        display: flex;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .horts-rule {
        flex: 1 0 calc(33% - 3rem);
    }

    .where-buy-board {
        gap: 2rem;
    }

    .where-to-buy__block {
        flex: 1 0 calc(25% - 2rem);
        min-height: 100px;
    }

    .where-to-buy__block a {
        padding: 1rem;
        min-height: 100px;
    }

    .where-to-buy__block img {
        min-width: 120px;
    }

    .footer {
        padding: 7.5rem 0 4.5rem 0;
    }

    .footer .wrapper {
        gap: 2rem;
    }

    .footer .wrapper > div {
        flex: 1 0 calc(33% - 2rem);
    }

    .malahovsky__logo {
        display: none;
    }

    .footer__phone {
        text-align: center;
    }

    .footer__who-made {
        text-align: right;
    }

    .footer__copy {
        font-size: 1.1rem;
        line-height: 100%;
        font-weight: 400;
        text-align: center;
    }
}

@media only screen and (max-width: 900px) {
    .header-logo,
    .desktop {
        display: none;
    }

    .header-logo__mobile,
    .mobile {
        display: block;
    }

    #burger-menu, #mobileMenuClose {
        width: 1.5rem;
        height: 1.5rem;
    }
    #burger-menu:before,
    #mobileMenuClose:before,
    #burger-menu span,
    #burger-menu:after,
    #mobileMenuClose:after {
        width: 3px;
    }

    #burger-menu span {
        margin: 0 0 0 -1.5px;
    }

    #burger-menu.active:before,
    #mobileMenuClose:before {
        height: 90%;
        left: 86%;
        /* top: 1px; */

    }

    #burger-menu.active:after,
    #mobileMenuClose:after {
        height: 90%;
        right: 31%;
        top: -2px;
    }

    .banner-wrapper {
        height: 70vh;
    }

    .landing-block {
        padding: 8rem 0 0 0;
    }

    .landing-block#tenreason {
        padding: 0;
        margin: -4rem 0 0 0;
    }

    #tenreason .horts-rules__wrapper.first-one {
        margin: 0 0 5rem 0;
    }

    .swiper-slide__header h2 {
        font-size: 2.5rem;
        line-height: 3rem;
    }

    .swiper-slide__header p {
        font-size: 1.1rem;
    }

    #cookie-bar {
        min-width: auto;
        width: auto;
        max-width: 100%;
        left: 2rem;
        right: 2rem;
    }
}

@media only screen and (max-width: 850px) {
    .header {
        padding: 1.5rem 0;
    }
    .ten-reason__block {
        grid-template-columns: repeat(3, 1fr);
    }
    .two-in-row.horts-flavor h3,
    .horts-flavor h3 {
        font-size: 1.9375rem;
        font-size: calc(10vw * 0.7);
        line-height: 100%;
        white-space: nowrap;
    }
    .horts-flavor .up-header,
    .two-in-row.horts-flavor .up-header {
        font-size: calc(10vw * 0.4);
    }

    .landing-block__header h2 {
        font-size: 2.5rem;
        line-height: 2.5rem;
    }

    .two-in-row.horts-flavor h4,
    .horts-flavor h4 {
        font-size: 1.5rem;
        line-height: 100%;
        white-space: nowrap;
    }

    #mobileMenu {
        width: 100vw;
    }

    .horts-flavor__info,
    .horts__add-reason {
        max-width: none;
        right: 1rem;
        left: 1rem;
        padding: 1rem;
    }

    .horts-flavor__info.active,
    .horts__add-reason.active {
        bottom: 1rem;
    }

}

@media only screen and (max-width: 700px) {
    .swiper-switcher .swiper-pagination-bullet {
        font-size: 0.8rem;
        line-height: 0.8rem;
        padding: 6px 10px 4px;
    }

    .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 4px var(--swiper-pagination-bullet-horizontal-gap,4px);
    }
}

@media only screen and (max-width: 650px) {
    .footer .wrapper {
        display: block;
    }

    .footer .wrapper > div {
        margin: 1.4rem 0;
    }

    .footer__phone,
    .footer__who-made,
    .footer__copy {
        text-align: center;
    }

    .footer__social {
        justify-content: space-between;
    }
}

@media only screen and (max-width: 550px) {
    .ten-reason__block {
        grid-template-columns: repeat(2, 1fr);
    }

    .swiper-switcher.swiper-pagination-bullets.swiper-pagination-horizontal {
        bottom: 18vh;
    }

    .banner-wrapper {
        position: relative;
        background: unset;
    }

    #top-slider-bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 65%;
        z-index: 2;
        background: rgb(255,255,255);
        background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(213,239,241,1) 100%);
    }

    .swiper-slide__header {
        padding: 0;
    }

    .landing-block .landing-block__header {
        margin: 0 0 1.5rem 0;
    }

    .swiper-slide__header h2 {
        font-size: 2.3rem;
        line-height: 2.5rem;
        margin: 0 0 0.5rem 0;
        font-weight: 900;
        text-transform: uppercase;
    }

    .swiper-slide__header p {
        font-size: 0.8rem;
    }

    .swiper-switcher .swiper-pagination-bullet {
        font-size: 0.45rem;
        line-height: 0.5rem;
    }

    .swiper-button-next, .swiper-button-prev {
        width: 15px;
        height: 25px;
    }

    .swiper-button-next:after, .swiper-button-prev:after {
        font-size: 22px;
    }

    .landing-block__header h2 {
        font-size: 2.2rem;
        line-height: 2.2rem;
    }

    #cookie-bar {
        display: block;
        left: 1rem;
        right: 1rem;
    }

    #cookie-bar.active {
        bottom: 1rem;
    }

    #cookie-bar h4 {
        font-size: 1.2rem;
        line-height: 1.3rem;
    }

    #cookie-bar p {
        font-size: 1rem;
        line-height: 1.3rem;
        margin: 0 0 1rem 0;
    }

    .cookie-bar__yes {
        width: 100%;
        text-align: center;
    }
}

@media only screen and (max-width: 420px) {
    .ten-reason__block {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}


/* animations */
@keyframes shake {
    10%, 90% {
      transform: translate3d(-1px, 0, 0);
    }

    20%, 80% {
      transform: translate3d(2px, 0, 0);
    }

    30%, 50%, 70% {
      transform: translate3d(-4px, 0, 0);
    }

    40%, 60% {
      transform: translate3d(4px, 0, 0);
    }
  }
