@import url(./fonts.css);

:root {
    --white: white;
    --background-green: rgba(105, 207, 23, 0.75);
    --raleway: "Raleway";
    --roboto: "Roboto";
}

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

body {
    font-family: "Raleway";
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
}

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


/* header */
    /* ads */
    .ads {
        background: black;
        width: 100%;
    }
    .ads__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .ads__item {
        display: flex;
        align-items: center;
    }
    .ads__list {
        display: flex;
        column-gap: 20px;
    }
    .ads__title {
        margin: 20px 0;
        color: #FFF;
        font-family: var(--roboto);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        padding-left: 5px;
    }
    .ads__icon-img {
        width: 20px;
        height: 23.077px;
        flex-shrink: 0;
    }
    .ads__link {
        color: #FFF;
        text-align: right;
        font-family: var(--roboto);
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
    }

    /* ads */

    hr {
        border: 1px solid rgb(94, 88, 88);
    }

    /* nav */
    
    .nav__container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .nav__list {
        display: flex;
    }
    .nav__logo {
        color: #FFF;
        text-align: center;
        font-family: var(--roboto);
        font-size: 36px;
        font-style: normal;
        font-weight: 700;
        line-height: 30px;
        padding: 12px 18px;
        flex-shrink: 0;
        border-radius: 4px;
        border: 4px solid #06600F;
        background: rgba(10, 148, 24, 0.75);
        margin: 6px 0;
    }

    .nav {
        background: black;
        width: 100%;
    }
    .nav__link {
        color: #fff;
        padding: 27px 14px;
        transition: .5s;
        font-size: 18px;
    }
    
    .nav__link:hover {
        background: #69CF17BF;
    }
    /* nav */

    /* content */
    .content__container {
        padding: 170px 0;
    }
    .content {
        margin: auto;
        background: url(../img/food-burger-wallpaper-preview\ 1.jpg) no-repeat center center / cover;
        display: flex;
        flex-direction: column;
        align-items: center;
        border-bottom: 50px solid black;
    }
    .item__title {
        color: #69CF17;
        font-family: var(--raleway);
        font-size: 72px;
        font-style: normal;
        font-weight: 900;
        line-height: normal;
    }
    .item__text {
        color: #69CF17;
        font-family: var(--raleway);
        font-size: 36px;
        font-style: normal;
        font-weight: 400;
        line-height: 17px;
    }
    .content__text {
        color: #FFF;
        font-family: var(--raleway);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: 24px;
    }
    .content__item {
        display: flex;
        flex-direction: column;
        row-gap: 18px;
        margin-bottom: 30px;
    }
    .box__btn-number {
        color: #FFF;
        text-align: right;
        font-family: var(--raleway);
        font-size: 50px;
        font-style: normal;
        font-weight: 100;
        line-height: 25px;
        background: rgba(105, 207, 23, 0.50);
        backdrop-filter: blur(9px);
        padding: 33px 76px;
    }
    .box__btn-text {
        color: #FFF;
        text-align: right;
        font-family: var(--raleway);
        font-size: 18px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        border-radius: 6px;
        background: linear-gradient(90deg, #69CF17 0%, #417D11 100%);
        padding: 12px 70px;
    }
    .content__box {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    /* content */
/* header */

/* Main */
.main {
    border-bottom: 50px solid black;
}
.main__cards{
    background: #393636;
    display: flex;
    padding: 78px 15px 15px 15px;
    column-gap: 20px;
}
.main__cards2{
    background: #393636;
    display: flex;
    padding: 30px 15px 15px 15px;
    column-gap: 20px;
}
.main__card{
    padding: 15px;
    color: var(--white);
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    max-width: 370px;
    width: 100%;
    min-height: 524px;
    height: 100%;
    background: black;
    border: 1px solid var(--white);
    border-radius: 5px;
}

.main__card-img{
    object-fit: cover;
    background: url(../img/unnamed\ 1.png) no-repeat center center /cover;
    height: 325px;
    width: 338.73px;
    transition: .5s;
}
.main__card-img:hover{
    background: url(../img/hover.jpg) no-repeat center center /cover;
}

.main__card-title{
    font-family: var(--fm-2);
    font-size: 19px;
    font-weight: 700;
    line-height: 15px;
}
.main__card-text{
    max-width: 338.73px;
    width: 100%;
    font-family: var(--fm-2);
    font-weight: 400;
    font-size: 19px;
    line-height: 25px;
}


/* Main */

/* section */
.section__title {
    margin: 20px 0;
    text-align: center;
    color: #69CF17;
    font-family: var(--raleway);
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
}
/* section */



/* Footer */

.footer__card {
    margin-top: 30px;
}
.footer {
    width: 100%;
    height: 325px;
    display: flex;
    flex-direction: column;
}

.footer__content {
    width: 100%;
    height: 268px;
    background: #060606;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 81px;
    padding-bottom: 51px;
    background: linear-gradient(180deg, #000000 0%, #376810 100%);
}

.footer__card {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 725px;
}

.footer__number {
    color: #FFF;
    text-align: right;
    font-family: var(--roboto);
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.footer__list {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 20px;
}

.footer__link {
    color: #FFF;
    text-align: center;
    font-family: var(--roboto);
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.footer__about {
    width: 100%;
    height: 57px;
    color: #FFF;
    text-align: center;
    font-family: var(--roboto);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background: #1A3406;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Footer */