@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,500;0,700;1,400&family=Rosario:wght@700&display=swap');
/* font-family: 'DM Sans', sans-serif;
font-family: 'Rosario', sans-serif; */

:root {
    /* =================== font famaly =================== */
    --ff-dmSans: 'DM Sans', sans-serif;
    --ff-rosario: 'Rosario', sans-serif;

    /* =================== color =================== */
    --color-primary: #222222;
    --color-secondary: #555555;
    --color-black: #000000;
    --color-dark: #333333;
    --color-white: #ffffff;
    --btn-border: #ccc;

    /* =================== background =================== */
    --bg-mint-cream: #F3FBF8;
    --bg-green-lt: #09A66D;
    --bg-white: #ffffff;
    --bg-green-lt-op: #09a66d0d;
    --bg-footer: #FCFEFD;


}

/* =================== default style =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.btn {
    border: none;
    outline: none;
    background: transparent;
    cursor: pointer;
}

input {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;

}

.inner-title {
    font-family: var(--ff-rosario);
    font-weight: 700;
    font-size: 70px;
    line-height: 90px;
}


.inner-text {
    line-height: 30px;
    color: var(--color-secondary);
}

/* =================== main style =================== */
body {
    font-family: var(--ff-dmSans);
    font-weight: 400;
    font-size: 18px;
    line-height: 1;
    color: var(--color-primary);
}

.hidden{
    overflow-y: hidden;
}

.wrapper {
    max-width: 1440px;
    margin: 0 auto;
}

.link-bg--green {
    background-color: var(--bg-green-lt);
    color: var(--color-white);
}

.burger{
    display: none;
}

.header {
    height: 149px;
}

.header__fixed{
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    right: 0;
    padding: 50px 0 43px 0;
    background: var(--bg-white);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
}

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

.menu {
    display: flex;
}

.header-block {
    display: flex;
    align-items: center;
}

.menu__item:not(:last-child) {
    margin-right: 40px;
}

.menu__link {
    line-height: 24px;
}

.header-logo {
    display: block;
    width: 57px;
}

.form {
    display: flex;
    align-items: center;
}

.search {
    width: 0;
}

.header-btn {
    width: 40px;
    height: 40px;
    background-color: var(--bg-mint-cream);
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.cart {
    display: block;
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 32px 0 20px;
    background-color: var(--bg-mint-cream);
    background-image: url(../images/cart.svg);
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.cart::after {
    content: "";
    width: 6px;
    height: 6px;
    position: absolute;
    top: 8px;
    right: 13px;
    background-color: var(--bg-green-lt);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.header-link {
    width: 160px;
    padding: 10px 0;
    line-height: 20px;
    text-align: center;
    border-radius: 8px;

}

/* ******************** End header ******************** */

/* ******************** hero ******************** */
.hero {
    background-color: var(--bg-mint-cream);
}

.hero-inner-wrapper {
    background-image: url(../images/fresh-melientha.png);
    background-repeat: no-repeat;
    background-position: left top;
    padding: 93px 0 33px 0;
}

.hero-title {
    text-align: center;
    margin-bottom: 20px;
}

.herro-text {
    max-width: 637px;
    margin: 0 auto 59px auto;
    text-align: center;
}

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

.hero-img {
    position: relative;
    width: 863px;
}

.link {
    padding: 10px 5px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
}

.link:hover {
    box-shadow: inset 0px 0px 10px 0px #0000006f;
}

.hero-link {
    position: absolute;
    top: -28px;
    right: 20%;
    width: 176px;
    height: 74px;
}

.link::after {
    content: "";
    width: 64px;
    height: 64px;
    background: var(--bg-green-lt) url(../images/arrow-right.svg) no-repeat center;
    right: 0;
    top: 0;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}

.hero-list {
    width: 250px;
}

.hero-item:not(:last-child) {
    margin-bottom: 30px;
}

.hero-item {
    width: 250px;
    padding: 17px 33px 17px 113px;
    font-size: 48px;
    line-height: 48px;
    color: var(--color-black);
}

.hero-item span {
    display: block;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
}

.users {
    background-color: var(--bg-white);
    background-image: url(../images/user.svg);
    background-repeat: no-repeat;
    background-position: left 33px center;
}

.starts {
    background-color: var(--bg-white);
    background-image: url(../images/star.svg);
    background-repeat: no-repeat;
    background-position: left 33px center;
}

.items {
    background-color: var(--bg-white);
    background-image: url(../images/items.svg);
    background-repeat: no-repeat;
    background-position: left 33px center;
}


/* ******************** End hero ******************** */

/* ******************** sction service ******************** */
.service {
    padding: 141px 0 166px 0;
}

.service-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-wrap: wrap;
}

.service-content {
    width: 671px;
    padding-bottom: 32px;
    position: relative;
}

.service-title {
    margin-bottom: 20px;
}

.service-text {
    margin-bottom: 16px;
}

.service-item {
    max-width: 500px;
    width: 100%;
    background: var(--bg-white);
    position: relative;
    padding: 40px 59px 40px 163px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
}

.service-item:hover {
    background: var(--bg-mint-cream);
}

.service-item::before {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--bg-mint-cream);
    top: 50%;
    left: 59px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transition: 0.3s linear;
    -webkit-transition: 0.3s linear;
    -moz-transition: 0.3s linear;
    -ms-transition: 0.3s linear;
    -o-transition: 0.3s linear;
}

.service-item:hover::before {
    background: var(--bg-white);
}

.icon-delivery {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/delivery-man.svg) no-repeat center;
    position: absolute;
    top: 50%;
    left: 79px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.icon-order {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/shopping.svg) no-repeat center;
    position: absolute;
    top: 50%;
    left: 79px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.icon-time {
    display: block;
    width: 40px;
    height: 40px;
    background: url(../images/fast-time.svg) no-repeat center;
    position: absolute;
    top: 50%;
    left: 79px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.service-item__title {
    display: block;
    font-weight: 700;
    font-size: 20px;
    line-height: 30px;
    margin-bottom: 8px;
}

.service-item__text {
    display: block;
    font-size: 14px;
    line-height: 20px;
    color: var(--color-secondary);
}

.service-link {
    display: block;
    position: absolute;
    width: 15px;
    height: 34px;
    background: url(../images/arrow-down.svg) no-repeat center;
    bottom: 0;
    left: 35%;
    animation: move 2s linear infinite;
    -webkit-animation: move 2s linear infinite;
}


.service-img {
    width: 569px;
    height: 569px;
    display: flex;
    justify-content: center;
    padding-top: 31px;
    background-image: url(../images/elips-fruit.png), url(../images/ellipse-bg.png);
    background-repeat: no-repeat;
    background-position: bottom 76px center, right 0 center;
    background-size: 398px, contain;
}

.service-img figure {
    max-width: 354px;
    width: 100%;
    animation: moveImg 2s linear infinite;
    -webkit-animation: moveImg 2s linear infinite;
}

@keyframes move {
    0% {
        bottom: 0;
    }

    50% {
        bottom: 10px;
    }

    100% {
        bottom: 0;
    }
}

@keyframes moveImg {
    0% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }

    50% {
        transform: translateY(20px);
        -webkit-transform: translateY(20px);
        -moz-transform: translateY(20px);
        -ms-transform: translateY(20px);
        -o-transform: translateY(20px);
    }

    100% {
        transform: translateY(0px);
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
    }
}


/* ******************** End section service ******************** */

/* ******************** section vegetable ******************** */
.vegetable {
    background: var(--bg-green-lt-op);
}

.vegetable-inner-wrapper {
    padding: 89px 0 143px 0;
    background-image: url(../images/fresh-melientha-suavis.png);
    background-repeat: no-repeat;
    background-position: right 50px bottom;
    background-size: auto;
}

.vegetable-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
}

.vegetable-img {
    max-width: 600px;
    width: 100%;
}

.vegetable-contant {
    max-width: 574px;
    width: 100%;
    padding-top: 30px;
}

.vegetable-text {
    margin: 20px 0 50px 0;
}

.vegetable-link {
    width: 179px;
    height: 74px;
}


/* ******************** end section vegetable ******************** */
/* ********************  section customers ******************** */
.customers {
    padding: 96px 0 150px 0;
}

.customer-wrapper {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.customer-content {
    width: 640px;
    padding-bottom: 34px;
}

.customer-text {
    width: 586px;
    margin: 30px 0 40px 0;
}

.customer-name {
    font-size: 30px;
    line-height: 36px;
    display: block;
    margin-bottom: 20px;
}

.customer-img {
    width: 500px;
    height: 500px;
    border-radius: 50%;
    animation: moveImg 2s linear infinite;
    -webkit-animation: moveImg 2s linear infinite;

}

.customer-starts {
    display: flex;
    gap: 9px;
}

.slider-btn {
    width: 56px;
    height: 56px;
    background: var(--bg-white);
    border: 1px solid var(--btn-border);
    border-radius: 50%;
    position: absolute;
    z-index: 2;
    bottom: 15px;
}

.slider-prev {
    left: 27%;
}

.slider-prev::before {
    content: "";
    display: block;
    width: 12px;
    height: 18px;
    background: url(../images/vector-left.svg) no-repeat center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-prev.active {
    background: var(--bg-green-lt);
    border: 1px solid var(--bg-green-lt);
}

.slider-prev.active::before {
    content: "";
    background: url(../images/vector-left-active.svg) no-repeat center;
}

.slider-next {
    left: 34%;
}

.slider-next::before {
    content: "";
    display: block;
    width: 12px;
    height: 18px;
    background: url(../images/vector-right.svg) no-repeat center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.slider-next.active {
    background: var(--bg-green-lt);
    border: 1px solid var(--bg-green-lt);
}

.slider-next.active::before {
    content: "";
    background: url(../images/vector-right-active.svg) no-repeat center;
}

.slick-dots {
    display: flex;
    gap: 15px;
    position: absolute;
    left: 50%;
    bottom: -50px;
    transform: translateX(-50%);
}

.slick-dots li{
    font-size: 0;
    line-height: 0;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: #ccc;
}

.slick-dots li.slick-active{
    background: #555;
}

.slick-dots li button{
    font-size: 0;
    line-height: 0;
    border: none;
    background: transparent;
}

/* ******************** end section customers ******************** */

/* ******************** section app ******************** */
.app {
    padding-bottom: 140px;
}

.app-wrapper {
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.app-img {
    width: 265px;
    animation: moveImg 2s linear infinite;
    -webkit-animation: moveImg 2s linear infinite;
}

.app-contant {
    width: 663px;
}

.app-subtitle {
    display: block;
    width: 170px;
    padding: 11px 0;
    text-align: center;
    background: var(--bg-mint-cream);
    border-radius: 50px;
    color: var(--color-dark);
    margin-bottom: 27px;
}

.app-text {
    width: 574px;
    margin: 20px 0 50px 0;
}

.app-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
}

.app-link {
    width: 104px;
    border: 1px solid #A6A6A6;
    border-radius: 5px;
    padding: 5px 0;
    color: var(--color-white);
    display: block;
    transition: 0.3s linear;
}

.app-link:hover {
    box-shadow: 0 0 5px 2px rgba(0, 0, 0, 0.35);
    transform: skew(10deg, 0deg);
}

.app-store {
    background: var(--color-black) url(../images/aple.svg) no-repeat left 12px center;
    font-size: 12px;
    line-height: 12px;
    font-weight: 500;
    letter-spacing: 0.7px;
    padding-left: 34px;
}

.app-store span {
    display: block;
    margin-bottom: 3px;
    font-size: 6px;
    line-height: 7px;
    letter-spacing: 0.7px;
}

.google-play {
    background: var(--color-black) url(../images/google.svg) no-repeat left 8px center;
    font-size: 11px;
    line-height: 12px;
    font-weight: 500;
    letter-spacing: 0.7px;
    padding-left: 32px;
}

.google-play span {
    display: block;
    margin-bottom: 3px;
    font-size: 6px;
    line-height: 7px;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}


/* ******************** end section app ******************** */

/* ******************** section footer ******************** */
.footer {
    background: var(--bg-footer);
    padding: 67px 0 118px;
}

.footer-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-logo {
    display: block;
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.footer-text {
    width: 345px;
}

.footer-title {
    display: block;
    margin:39px 0 40px;
    font-weight: 500;
    font-size: 24px;
    line-height: 31px;
}

.footer-item:not(:last-child){
    margin-bottom: 24px;
}

.footer-link{
    line-height: 23px;
    color: var(--color-secondary);
}

.footer-social{
    display: flex;
    gap: 20px;
    margin-top: 25px;
}

.footer-social a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    box-shadow: 6px 6px 10px -1px rgba(0, 124, 196, 0.15);
    border: 1px solid rgba(0, 124, 196, 0);

    transition: transform 0.5s;
}

.footer-social a img{
    transform: scale(1);
}

.footer-social a:hover{
    box-shadow: inset 4px 4px 6px -2px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 124, 196, 0.1);
}

.footer-social a:hover img{
    transform: scale(0.7);
    transition: transform 0.5s;
}

/* ******************** end section footer ******************** */