@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans:ital,wght@0,1..1000;1,1..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inder&display=swap');
* {
    padding: 0;
    margin: 0;
    border: 0;
    transition: all 0.3s ease-in-out;
}

*,
*:before,
*:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

h2.title__text {}

:focus,
 :active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-style: 100%;
    line-height: 1.5;
    font-style: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style-type: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-style: inherit;
    font-weight: 400;
}


/* --------------------------- */

.container {
    max-width: 1170px;
    margin: auto;
}

.wrap {
    overflow: hidden;
}

.title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.nav__line {
    border-left: 2px solid #fff;
    height: 39px;
}

.header__nav {
    display: flex;
    background-color: #729100;
    border-radius: 20px;
    align-items: center;
    text-align: center;
    padding: 10px 25px;
    justify-content: space-between;
}

.nav__list {
    display: flex;
    gap: 34px;
    font-family: "Sofia Sans", sans-serif;
}

.action {
    display: flex;
    gap: 10px;
}

.item__link {
    color: #fff;
    position: relative;
    width: 100%;
    margin: auto;
}

.item__link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: all 0.3s ease-in-out !important;
    visibility: hidden;
}

.item__link:hover::after {
    visibility: visible;
    width: 100%;
}

.nav__socials {
    display: flex;
    gap: 14px;
}

.socials__item {
    background-color: rgba(217, 217, 217, 0.5);
    padding: 6px 10px;
    border-radius: 100%;
}

.nav__register {
    display: flex;
    gap: 15px;
}

.register__text {
    font-family: "Sofia Sans", sans-serif;
    margin-top: 5px;
    color: #fff;
    position: relative;
    width: 100%;
    margin: auto;
}

.register__text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fff;
    transition: all 0.3s ease-in-out !important;
    visibility: hidden;
}

.register__text:hover::after {
    visibility: visible;
    width: 100%;
}

@media screen and (max-width: 768px) {
    .header__nav {
        margin: 0 15px;
        border-radius: 15px;
    }
    .logo__img {
        display: none;
    }
}

@media screen and (max-width: 426px) {
    .header__nav {
        margin: 0;
        border-radius: 0;
        padding: 10px 0;
        justify-content: space-around;
    }
    .nav__line,
    .nav__socials,
    .register__text {
        display: none;
    }
}

.socials__item {
    border: 2px solid transparent;
    transition: all 0.3s linear;
}

.socials__item:hover {
    border: 2px solid #fff;
}


/* styles for main */

.main__hero {
    display: flex;
    gap: 50px;
}

.hero__body {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 20px;
    color: #fff;
    padding-top: 70px;
}

.body__title {
    font-family: "Outfit", sans-serif;
    font-size: 64px;
    line-height: 80px;
    font-weight: 400;
}

.body__title span {
    font-weight: 700;
}

.body__text {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
}

.body__buttons {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}

.buttons__link {
    padding: 5px 20px;
    background-color: #729100;
    border-radius: 15px;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 36px;
}

.buttons__more {
    padding: 5px 20px;
    border: 2px solid #fff;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 36px;
}

@media screen and (max-width: 768px) {
    .main__hero {
        margin: 0 40px;
    }
    .hero__body {
        align-items: center;
    }
    .body__title {
        font-size: 42px;
    }
    .body__text {
        font-size: 26px;
    }
    .body__buttons {
        gap: 80px;
    }
    .hero__img {
        display: none;
    }
    .header::before {
        display: none;
    }
}

@media screen and (max-width: 426px) {
    .body__title {
        line-height: 50px;
    }
    .body__buttons {
        flex-direction: column;
        gap: 20px;
    }
}

.yellow {
    background-color: #D8B422;
}

.main__boxes {
    background-color: #fff;
    margin-left: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.boxes__title {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    font-size: 50px;
    text-align: center;
}

.boxes__filter {
    display: flex;
    justify-content: space-between;
    gap: 240px;
}

.filter__edit {
    padding: 10px;
    background-color: #D9D9D978;
    display: flex;
    align-items: center;
    border-radius: 50px;
}

.edit__title {
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.filter__slider {
    display: flex;
    align-items: center;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    gap: 30px;
}

.slider__title {
    font-size: 20px;
}

.slider__range {
    position: relative;
    width: 200px;
}

.slider__labels {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
}

#volume {
    max-width: 200px;
}

input[type="range"] {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: #729100;
    border-radius: 5px;
    outline: none;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 10px;
    height: 10px;
    background: #729100;
    cursor: pointer;
    border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
    background: #729100;
    cursor: pointer;
    border-radius: 50%;
}

@media screen and (max-width: 768px) {
    .main__boxes {
        margin: 50px 0 0 0;
        padding: 10px;
        gap: 20px;
    }
    .boxes__filter {
        flex-direction: column;
        gap: 10px;
    }
}

@media screen and (max-width: 426px) {
    .main__boxes {
        padding: 0 50px;
    }
}

.boxes__set {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    padding-top: 10px;
}

.set__box {
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: relative;
    padding-bottom: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.box__img {
    position: relative;
}

.img__photo {
    display: block;
    width: 100%;
    border-radius: 20px 20px 0 0;
}

.set__box .box__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    /* Тінь знизу */
    pointer-events: none;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.set__box:hover .box__img::after {
    opacity: 1;
}

.box__set .set__img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
    /* Тінь знизу */
    pointer-events: none;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.box__set:hover .set__img::after {
    opacity: 1;
}

.box__buy:hover,
.box__price:hover,
.set__buy:hover {
    background-color: #A0CC00;
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    box-shadow: 0px 0px 10px #9CC601;
}

.img__text {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #9CC601;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.box__text {
    font-family: "Sofia Sans", sans-serif;
    padding-left: 15px;
}

.text__title {
    font-weight: 800;
    font-size: 20px;
}

.text__weight {
    font-weight: 300;
    font-size: 14px;
}

.box__buy {
    margin: auto;
    background-color: #729100;
    display: flex;
    gap: 70px;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.box__price {
    margin: auto;
    background-color: #729100;
    border-radius: 10px;
    position: relative;
}

.box__price span {
    position: absolute;
    top: 0;
    left: 5px;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 8px;
    color: rgba(255, 255, 255, 0.41);
    cursor: pointer;
}

.price__buy {
    padding: 5px 10px;
    margin: auto;
    display: flex;
    gap: 70px;
    align-items: center;
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.set__picked {
    display: flex;
    gap: 10px;
    flex-direction: column;
    border-radius: 20px;
    position: relative;
    box-shadow: 0px 0px 20px #00000070;
    padding-bottom: 10px;
}

.picked__img {
    position: relative;
}

.img__composition {
    position: absolute;
    bottom: 35px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    color: #fff;
    z-index: 3;
    opacity: 0;
    /* Спочатку текст прозорий */
    transition: opacity 0.5s ease;
    /* Плавна поява тексту */
}

.set__box:hover .img__composition {
    opacity: 1;
    /* Текст стає видимим при наведенні */
}

.composition__title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.img__composition ul li {
    list-style-type: disc;
}

.img__composition li {
    margin-left: 15px;
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.picked__text {
    font-family: "Sofia Sans", sans-serif;
    padding-left: 15px;
}

.text__title {
    font-weight: 800;
    font-size: 20px;
}

.text__weight {
    font-weight: 300;
    font-size: 14px;
}

.picked__buy {
    margin: auto;
    background-color: #A0CC00;
    display: flex;
    gap: 70px;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
    box-shadow: 0px 0px 10px #9CC601;
}

.active:hover {
    box-shadow: 0px 0px 20px #00000070;
}

.img__action {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #FF0000;
    color: #fff;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px 0 20px 0;
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px;
    padding-right: 10px;
}

.main__special {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-bottom: 100px;
}

.special__title {
    text-align: center;
}

.special__box {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.box__set {
    display: flex;
    gap: 10px;
    flex-direction: column;
    position: relative;
    padding-bottom: 10px;
    border-radius: 20px;
    background-color: #fff;
}

.set__img {
    position: relative;
}

.img__photo {
    border-radius: 20px 20px 0 0;
}

.set__text {
    font-family: "Sofia Sans", sans-serif;
    padding-left: 15px;
}

.text__title {
    font-weight: 800;
    font-size: 20px;
}

.text__weight {
    font-weight: 300;
    font-size: 14px;
}

.set__buy {
    margin: auto;
    background-color: #729100;
    display: flex;
    gap: 70px;
    padding: 5px 10px;
    border-radius: 10px;
    color: #fff;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 600;
    font-size: 14px;
    align-items: center;
}

.main__title {
    text-align: center;
    padding: 60px 0 25px 0;
}

.title__text {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 50px;
    padding: 35px 0;
}

.title__upline {
    max-width: 1000px;
    border-top: 2px solid black;
    margin: 0 auto;
}

.title__downline {
    max-width: 200px;
    border-top: 2px solid black;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .title__upline {
        margin: 0 50px;
    }
}

.main__fruits {
    background-color: #4b5f00;
}

.fruits__process {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process__title {
    text-align: center;
}

.process__description {
    display: flex;
    justify-content: center;
    gap: 50px;
    padding-bottom: 50px;
}

.description__block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 20px;
    background-color: #6b7a37;
    max-width: 258px;
}

.block__depiction {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 10px 40px 10px;
    font-family: "Sofia Sans", sans-serif;
    font-weight: 400;
    color: #fff;
}

.depiction__title {
    border-bottom: 2px solid #fff;
    font-size: 20px;
    text-align: center;
}

.depiction__p {
    padding: 0 10px;
}

@media screen and (max-width: 768px) {
    .process__description {
        flex-wrap: wrap;
    }
}

.main__content {
    padding-top: 50px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    padding-bottom: 60px;
}

.content__delivery {
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
    padding-bottom: 40px;
}

.delivery__img {
    position: relative;
    max-width: 100%;
}

.delivery__img img,
.payment__img img {
    max-width: 100%;
    border-radius: 20px 20px 0 0;
}

.img__delivery {
    position: absolute;
    top: 0;
    left: 0;
    padding: 115px 145px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.delivery__ukraine {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 35px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.delivery__ukraine ul li {
    list-style-type: disc;
}

.ukraine__text {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.delivery__chernihiv {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 35px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.delivery__chernihiv ul li {
    list-style-type: disc;
}

.chernihiv__text {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.content__payment {
    border-radius: 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    gap: 35px;
    position: relative;
}

.payment__img {
    position: relative;
}

.img__payment {
    position: absolute;
    top: 0;
    left: 0;
    padding: 115px 170px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 50px;
    color: #fff;
}

.content__payment ul li {
    list-style-type: disc;
}

.payment__list {
    padding-left: 35px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

@media screen and (max-width: 768px) {
    .main__content {
        gap: 50px;
    }
}

@media screen and (max-width:426px) {
    .img__delivery,
    .img__payment {
        padding: 77.5px 122.5px;
    }
}

.main__box {
    background-color: #f9f6f6;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 55px 0 40px 0;
}

.box__title {
    color: #000;
    text-align: center;
}

.box__question {
    display: flex;
    gap: 200px;
}

.question__list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.list__question {
    display: flex;
    max-width: 540px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 30px 15px 10px;
    justify-content: space-between;
}

.question__text {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.list__answer {
    display: flex;
    flex-direction: column;
    max-width: 540px;
    gap: 15px;
    background-color: #fff;
    border-radius: 15px;
    padding: 15px 30px 15px 10px;
}

.answer__question {
    display: flex;
    justify-content: space-between;
}

.answer__text {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
}

.answer__p {
    font-family: "Outfit", sans-serif;
    font-weight: 400;
}

.question__response {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: #ffffff;
    text-align: center;
    padding: 35px 15px 25px 15px;
    border-radius: 15px;
}

.response__title {
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 0 15px;
}

.response__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__input {
    display: flex;
    justify-content: space-between;
    background-color: #d9d9d9;
    border-radius: 20px;
}

.form__input input {
    background-color: #d9d9d9;
    border-radius: 20px;
    padding-left: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.input__a {
    padding: 6px 10px;
    background-color: #fff;
    border-radius: 100%;
    margin: 4px 8px 4px 0;
}

.input__button {
    margin: auto;
    padding: 5px 15px;
    border-radius: 15px;
    background-color: #729100;
    font-family: "Outfit", sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .box__question {
        flex-direction: column;
        gap: 50px;
    }
}

.footer {
    padding-top: 30px;
    background: url('../img/footer/background.jpg') no-repeat center/cover;
}

.footer__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

@media (prefers-reduced-motion: no-preference) {
     :root {
        scroll-behavior: smooth;
    }
}

.footer__up {
    padding: 5px 10px 10px 10px;
    background: rgba(217, 217, 217, 0.2);
    border-radius: 20px;
}

.subscribe__form {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.form__title {
    font-family: "Inder", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
}

.form__input {
    display: flex;
    justify-content: space-between;
    background-color: #d9d9d9;
    border-radius: 20px;
}

.form__input input {
    background-color: #d9d9d9;
    border-radius: 20px;
    padding-left: 15px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 15px;
}

.input__a {
    padding: 6px 10px;
    background-color: #fff;
    border-radius: 100%;
    margin: 4px 8px 4px 0;
}

.footer__contacts {
    display: flex;
    gap: 100px;
}

.footer__title {
    font-family: "Inder", sans-serif;
    font-weight: 400;
    font-size: 20px;
    color: #fff;
    border-bottom: 2px solid #fff;
}

.phone__numbers {
    display: flex;
    flex-direction: column;
    font-family: "Inder", sans-serif;
    font-weight: 400;
    font-size: 20px;
}

.numbers__a {
    color: #fff;
}

.socials__title {
    margin-bottom: 10px;
}

.contacts__geo iframe {
    border-radius: 20px;
    margin-top: 10px;
}

.footer__info {
    background: rgba(0, 0, 0, 0.7);
    padding: 15px 0 10px 0;
}

.info__container {
    display: flex;
    justify-content: space-between;
}

.container__left,
.container__right {
    display: flex;
    gap: 50px;
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-size: 17px;
    color: #fff;
}

@media screen and (max-width: 768px) {
    .footer__contacts {
        flex-direction: column;
        gap: 30px;
    }
    .contacts__geo {
        margin-bottom: 30px;
    }
    .contacts__geo iframe {
        display: none;
    }
    .info__container {
        display: flex;
        align-items: center;
    }
    .container__left,
    .container__right {
        gap: 20px;
        padding: 0 10px;
    }
}

@media screen and (max-width: 426px) {
    .footer__container {
        padding: 0 40px;
    }
    .form__title {
        text-align: center;
    }
    .info__container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .container__left,
    .container__right {
        flex-direction: column;
    }
}

.box__img {
    position: relative;
}

.img__text {
    position: absolute;
    top: 0;
    left: 0;
}

.img__action {
    position: absolute;
    top: 0;
    left: 0;
}