@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;
    box-sizing: border-box;
    font-weight: 600;
    font-family: "Noto Sans", sans-serif;
}

.header {
    background: #171615;
    padding: 15px 60px;
}

.header__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header__nav-list {
    display: flex;
    gap: 24px;
}

.header__nav-list a {
    color: white;
    font-size: 14px;
    transition: 400ms;
}

.header__nav-list a:hover {
    color: yellowgreen;
}

.btn {
    color: white;
    font-size: 20px;
    box-shadow: 0 4px 0 0 #2a631c, inset 0 6px 0 0 #6bc349;
    background: #3b8526;
    padding: 12px 23px;
}

.welcome {
    background: #000;
    color: white;
}

.welcome__content {
    height: 604px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: url(img/welcome.png);
    padding-left: 121px;
}

.container {
    max-width: 1180px;
    margin: auto;
}

h1 {
    max-width: 450px;
    font-size: 38px;
}

.welcome__content p {
    max-width: 557px;
    font-size: 18px;
    margin-bottom: 52px;
}

.info {
    background: url(img/info.png);
    color: white;
    background-size: 40%;
    padding: 50px 0 135px;
}

.info h2 {
    text-align: center;
    margin-bottom: 60px;
}

.info__try {
    background: white;
    text-align: center;
    padding: 72px 0 123px;
}

.info__try h2 {
    color: black;
    font-size: 28px;
}

.info__try-cards {
    display: grid;
    grid-template-columns: repeat(3, 219px);
    gap: 70px;
    justify-content: center;
}

.info__try-cards h3 {
    color: #196D17;
    margin: 28px 0 7px;
    font-size: 18px;
}

.info__try-cards p {
    color: #585858;
    font-size: 14px;
}

.info__news-cards {
    display: grid;
    grid-template-columns: repeat(5, 280px);
    gap: 40px;
    justify-content: center;
}

.info__news {
    margin-top: 25px;
}

.info__news-cards a {
    color: white;
    display: grid;
    gap: 32px;
    font-size: 18px;
    text-align: center;
}

.details {
    background: url(img/detBg.png);
}

.details__card {
    display: flex;
    gap: 130px;
    margin-bottom: 80px;
    align-items: center;
}

.details__card:nth-of-type(2) {
    flex-direction: row-reverse;
}

.details__card-text {
    max-width: 422px;
}

.details__card-text h3 {
    font-size: 28px;
}

.details__card-text p {
    margin: 13px 0 25px;
    font-size: 14px;
}

.details__card-text a {
    display: flex;
    gap: 8px;
    color: #196D17;
}

.details>img {
    width: 100%;
}

.footer {
    background: #000;
    margin-top: -5px;
    padding: 24px 0 31px;
    color: white;
}

.footer__top {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-direction: column;
}

.footer__top ul {
    display: flex;
    gap: 66px;
}

.footer__mid{
    display: flex;
    justify-content: center;
    gap: 80px;
    background: #111;
    padding: 119px 0 195px;
    margin-top: 30px;
}
.footer__mid a {
    color: #7BEB4F;
}

.footer__bot {
    display: flex;
    justify-content: center;
    gap: 102px;
    padding: 31px 0;
}
.footer__bot a {
    color: white;
    display: flex;
    gap: 13px;
    align-items: flex-end;
}