@font-face {
    font-family: "Buyan";
    src: url("../fonts/BuyanRegular.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: "Buyan";
    src: url("../fonts/BuyanBold.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: "Buyan";
    src: url("../fonts/BuyanThin.ttf") format("truetype");
    font-weight: 200;
    font-style: normal;
}

body {
    font-family: "Buyan", sans-serif !important;
}

h2,
p,
span {
    margin: 0;
    line-height: 100%;
}

button {
    outline: none;
    border: none;
    cursor: pointer;
}

.section {
    padding: 90px 0;
    background-color: rgba(22, 22, 22, 1);
    color: #fff;
}

.container-farm {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.yellow-text {
    color: rgba(209, 174, 54, 1);
    font-weight: 700;
}

/* Общие стили */
/* .header {
    background: rgba(0, 0, 0, 0.5);
    padding: 30px 0;
    position: sticky;
    width: 100%;
    z-index: 5;
    top: 0;
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header__logo img {
    height: 40px;
}

.header__menu-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header__menu-item {
    margin: 0 15px;
}

.header__menu-item a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
}

.header__menu-item a:hover {
    color: #ffc940;
}

.header__lang {
    position: relative;
}

.header__lang-select {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.header__lang-img {
    width: 30px;
    height: 20px;
    margin-right: 5px;
}

.header__lang-drop {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 10px;
    display: none;
    z-index: 100;
}

.header__lang-drop.show {
    display: block;
    animation: fadeIn 0.3s;
}

.header__lang-item {
    padding: 5px 0;
    display: flex;
    align-items: center;
}

.header__lang-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
}

.header__burger {
    display: none;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 101;
    cursor: pointer;
    margin: auto;
}

.header__burger span {
    position: absolute;
    background-color: #fff;
    width: 100%;
    height: 2px;
    left: 0;
    top: 9px;
    transition: all 0.3s ease;
}

.header__burger span:first-child {
    top: 0;
}

.header__burger span:last-child {
    top: auto;
    bottom: 0;
}

.header__burger.active span {
    transform: scale(0);
}

.header__burger.active span:first-child {
    transform: rotate(45deg);
    top: 9px;
}

.header__burger.active span:last-child {
    transform: rotate(-45deg);
    bottom: 9px;
}

@media (max-width: 992px) {
    .header__menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: #fff;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        padding: 80px 20px 20px;
        transition: all 0.3s ease;
        z-index: 100;
    }
    .active span {
        background-color: #333;
    }

    .header__menu.active {
        left: 0;
    }

    .header__menu-list {
        flex-direction: column;
    }

    .header__menu-item {
        margin: 10px 0;
    }

    .header__burger {
        display: block;
    }

    .header__lang {
        margin-left: auto;
        margin-right: 20px;
    }

    .header__menu-item a {
        color: #333;
    }
}

@media (max-width: 576px) {
    .header__logo img {
        height: 30px;
    }

    .header__lang-img {
        width: 25px;
        height: 15px;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} */
