@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-family: Noto Sans;
    box-sizing: border-box;
    font-weight: 600;
}

.header {
    background: #171615;
    padding: 15px 60px;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header__nav-list {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.header__nav-list a {
    color: white;
    font-size: 14px;
    display: flex;
    gap: 8px;
}

.btn {
    color: white;
    font-size: 20px;
    box-shadow: 0px 4px 0px 0px #2A631C, 0px 6px 0px 0px #6BC349 inset;
    background: #3B8526;
    padding: 12px 23px;
}

.welcome {
    background: #000;
    color: white;
}

.container {
    max-width: 1180px;
    margin: auto;
}

.welcome .container {
    height: 604px;
    background: url(img/welcome.png);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 121px;
}

.welcome h1 {
    font-weight: 600;
    font-size: 38px;
    max-width: 450px;
}

.welcome p {
    max-width: 557px;
    font-size: 18px;
    margin-bottom: 52px;
}

.info {
    background-image: url(img/info.png);
    padding-top: 50px;
}

.info .container {
    background: white;
    padding: 72px 0 123px;
    text-align: center;
}

.info__cards {
    display: flex;
    margin-top: 56px;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.info__cards a {
    width: 219px;
    color: #585858;
}

.info__cards h3 {
    color: #196D17;
    margin: 23px 0 7px;
}

.info__news {
    text-align: center;
    color: white;
    margin-top: 25px;
}

.info__news-cards {
    display: flex;
    justify-content: center;
    margin-top: 63px;
    gap: 40px;
    padding-bottom: 135px;
    flex-wrap: wrap;
}

.info__news-cards a {
    width: 280px;
    color: white;
    font-size: 18px;
}

.info__news-cards h3 {
    margin-top: 32px;
}

.det {
    background-image: url(img/detBg.png);
}

.det-card {
    display: flex;
    gap: 133px;
    margin-bottom: 92px;
    align-items: center;
}

.det-card:nth-of-type(2) {
    flex-direction: row-reverse;
}

.det-card h3 {
    font-size: 28px;
}

.det-card p {
    font-size: 14px;
    margin: 13px 0 24px;
}

.det-card a {
    color: #196D17;
    font-size: 14px;
    display: flex;
    gap: 8px;
}

.det>img {
    width: 100%;
}

.det-card div {
    max-width: 422px;
}

.footer {
    background: #000;
    padding: 24px 0 31px;
    margin-top: -4px;
}

.footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    gap: 30px;
    flex-wrap: wrap;
}

.footer__social ul {
    display: flex;
    gap: 66px;
    padding-bottom: 37px;
}

.footer__nav {
    background: #111;
    padding: 122px 0 195px;
    display: flex;
    justify-content: center;
    gap: 80px;
    color: white;
    flex-wrap: wrap;
}

.footer__nav a {
    color: #7BEB4F;
    font-size: 14px;
}

.footer__bot {
    color: white;
    display: flex;
    justify-content: center;
    gap: 102px;
    padding-top: 31px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.footer__bot a {
    display: flex;
    align-items: flex-end;
    color: white;
    gap: 13px;
    font-size: 10px;
}

@media (max-width: 960px) {
    .header__nav {
        justify-content: center;
        gap: 50px;
        padding: 20px 0;
    }
    .det .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .det-card {
        flex-wrap: wrap;
        gap: 30px;
        flex-direction: row;
        justify-content: center;
    }
    .det-card > img{
        width: 100%;
    }
    .welcome .container {
        padding-left: 10px;
    }
}